From 3e983d98dbf7016cacde69be86a83145e3d3aa25 Mon Sep 17 00:00:00 2001 From: Jason House Date: Wed, 7 Oct 2020 22:43:10 +0900 Subject: [PATCH 1/9] Adding more tests. Moving tests to Java. Making tests less brittle. Adding Jackson annotations for MoviesFromCollection. Added tests to serialize/deserialize. --- .../jasonhhouse/gaps/MovieFromCollection.java | 15 +- .../gaps/MovieFromCollectionTest.java | 49 +++ .../AbstractNotificationAgent.java | 24 +- .../DiscordNotificationAgent.java | 32 +- .../notifications/EmailNotificationAgent.java | 18 +- .../GotifyNotificationAgent.java | 30 +- .../gaps/notifications/NotificationAgent.java | 12 +- .../notifications/NotificationStatus.java | 13 +- .../PushBulletNotificationAgent.java | 37 +- .../PushOverNotificationAgent.java | 55 ++- .../notifications/SlackNotificationAgent.java | 42 +- .../TelegramNotificationAgent.java | 32 +- .../gaps/service/Notification.java | 23 +- .../gaps/service/NotificationService.java | 116 ++++-- .../resources/templates/configuration.html | 4 +- .../main/resources/templates/libraries.html | 5 +- .../main/resources/templates/recommended.html | 4 +- .../DiscordNotificationAgentTest.java | 43 ++ .../EmailNotificationAgentTest.java | 44 ++ .../GotifyNotificationAgentTest.java | 43 ++ .../PushBulletNotificationAgentTest.java | 43 ++ .../PushOverNotificationAgentTest.java | 43 ++ .../SlackNotificationAgentTest.java | 43 ++ .../TelegramNotificationAgentTest.java | 45 ++ .../gaps/service/FakeIoService.java | 150 +++++++ .../gaps/service/NotificationServiceTest.java | 66 +++ cypress/fixtures/gaps.properties.json | 179 ++++++++ cypress/fixtures/libraries.joker.1.json | 1 + cypress/fixtures/libraries.joker.4.json | 384 ++++++++++++++++++ cypress/fixtures/libraries.joker.5.json | 20 + cypress/fixtures/libraries.joker.6.json | 328 +++++++++++++++ cypress/integration/common.js | 77 +--- .../integration/configuration/plex.spec.js | 30 +- .../duplication/duplication.spec.js | 90 ++-- cypress/integration/libraries/api.js | 24 +- cypress/integration/libraries/empty.js | 6 +- .../libraries/searchOwnedMovies.js | 40 +- .../integration/notifications/discord.spec.js | 73 ---- .../integration/notifications/email.spec.js | 112 ----- .../integration/notifications/gotify.spec.js | 78 ---- .../notifications/pushBullet.spec.js | 78 ---- .../notifications/pushOver.spec.js | 96 ----- .../integration/notifications/slack.spec.js | 73 ---- .../notifications/telegram.spec.js | 78 ---- cypress/integration/recommended/api.js | 27 +- cypress/integration/recommended/empty.js | 4 +- .../recommended/searchRecommendedMovies.js | 32 +- cypress/integration/rss/rss.js | 25 +- 48 files changed, 1966 insertions(+), 920 deletions(-) create mode 100644 Core/src/test/java/com/jasonhhouse/gaps/MovieFromCollectionTest.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/DiscordNotificationAgentTest.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/EmailNotificationAgentTest.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/GotifyNotificationAgentTest.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/PushBulletNotificationAgentTest.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/PushOverNotificationAgentTest.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/SlackNotificationAgentTest.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/TelegramNotificationAgentTest.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/service/FakeIoService.java create mode 100644 GapsWeb/src/test/java/com/jasonhhouse/gaps/service/NotificationServiceTest.java create mode 100644 cypress/fixtures/gaps.properties.json create mode 100644 cypress/fixtures/libraries.joker.1.json create mode 100644 cypress/fixtures/libraries.joker.4.json create mode 100644 cypress/fixtures/libraries.joker.5.json create mode 100644 cypress/fixtures/libraries.joker.6.json diff --git a/Core/src/main/java/com/jasonhhouse/gaps/MovieFromCollection.java b/Core/src/main/java/com/jasonhhouse/gaps/MovieFromCollection.java index eca6d8d8..a06ee855 100644 --- a/Core/src/main/java/com/jasonhhouse/gaps/MovieFromCollection.java +++ b/Core/src/main/java/com/jasonhhouse/gaps/MovieFromCollection.java @@ -1,7 +1,11 @@ package com.jasonhhouse.gaps; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Objects; +import org.apache.commons.lang3.StringUtils; import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; public final class MovieFromCollection { @NotNull @@ -11,10 +15,13 @@ public final class MovieFromCollection { @NotNull private final Boolean owned; - public MovieFromCollection(@NotNull String title, @NotNull String tmdbId, @NotNull Boolean owned) { - this.title = title; - this.tmdbId = tmdbId; - this.owned = owned; + @JsonCreator + public MovieFromCollection(@JsonProperty(value = "title") @Nullable String title, + @JsonProperty(value = "tmdbId") @Nullable String tmdbId, + @JsonProperty(value = "owned") @Nullable Boolean owned) { + this.title = StringUtils.isEmpty(title) ? "" : title; + this.tmdbId = StringUtils.isEmpty(tmdbId) ? "" : tmdbId; + this.owned = owned != null && owned; } @NotNull diff --git a/Core/src/test/java/com/jasonhhouse/gaps/MovieFromCollectionTest.java b/Core/src/test/java/com/jasonhhouse/gaps/MovieFromCollectionTest.java new file mode 100644 index 00000000..ca3006eb --- /dev/null +++ b/Core/src/test/java/com/jasonhhouse/gaps/MovieFromCollectionTest.java @@ -0,0 +1,49 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.jasonhhouse.gaps.properties.DiscordProperties; +import org.apache.commons.collections4.CollectionUtils; +import org.apache.commons.lang3.StringUtils; +import org.jetbrains.annotations.NotNull; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class MovieFromCollectionTest { + + @NotNull + private ObjectMapper objectMapper; + + @BeforeEach + void setUp() { + objectMapper = new ObjectMapper(); + } + + @Test + void testReadingFromJson() throws JsonProcessingException { + MovieFromCollection movieFromCollection = objectMapper.readValue("{\"title\":\"TITLE\",\"tmdbId\":\"123QWE\",\"owned\":true}", MovieFromCollection.class); + assertEquals("TITLE", movieFromCollection.getTitle(), "Title should be 'TITLE'"); + assertEquals("123QWE", movieFromCollection.getTmdbId(), "tmdbId should be '123QWE'"); + assertTrue(movieFromCollection.getOwned(), "Title should be 'TITLE'"); + } + + @Test + void testWritingToJson() throws JsonProcessingException { + MovieFromCollection movieFromCollection = new MovieFromCollection("TITLE","123QWE",true); + String json = objectMapper.writeValueAsString(movieFromCollection); + assertEquals("{\"title\":\"TITLE\",\"tmdbId\":\"123QWE\",\"owned\":true}", json, "JSON output should be equal"); + } +} \ No newline at end of file diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/AbstractNotificationAgent.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/AbstractNotificationAgent.java index e98aeefa..fbb83b68 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/AbstractNotificationAgent.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/AbstractNotificationAgent.java @@ -13,6 +13,8 @@ import com.jasonhhouse.gaps.NotificationType; import com.jasonhhouse.gaps.properties.NotificationProperties; import com.jasonhhouse.gaps.service.FileIoService; +import com.jasonhhouse.gaps.service.IO; +import org.jetbrains.annotations.NotNull; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -22,34 +24,24 @@ public abstract class AbstractNotificationAgent { + @NotNull private static final Logger LOGGER = LoggerFactory.getLogger(DiscordNotificationAgent.class); + @NotNull private static final ObjectMapper objectMapper = new ObjectMapper(); + @NotNull private final OkHttpClient client; - public DiscordNotificationAgent(FileIoService fileIoService) { - super(fileIoService); + public DiscordNotificationAgent(@NotNull IO ioService) { + super(ioService); client = new OkHttpClient.Builder() .connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS) @@ -51,17 +55,17 @@ public DiscordNotificationAgent(FileIoService fileIoService) { } @Override - public int getId() { + public @NotNull Integer getId() { return 6; } @Override - public String getName() { + public @NotNull String getName() { return "Discord Notification Agent"; } @Override - public boolean sendMessage(NotificationType notificationType, String level, String title, String message) { + public @NotNull Boolean sendMessage(@NotNull NotificationType notificationType, @NotNull String level, @NotNull String title, @NotNull String message) { LOGGER.info("sendMessage( {}, {}, {} )", level, title, message); if (sendPrepMessage(notificationType)) { @@ -108,40 +112,42 @@ public boolean sendMessage(NotificationType notificationType, String level, Stri } } - @NotNull @Override - public DiscordProperties getNotificationProperties() { - return fileIoService.readProperties().getDiscordProperties(); + public @NotNull DiscordProperties getNotificationProperties() { + return ioService.readProperties().getDiscordProperties(); } private static final class Discord { + @NotNull private final List embeds; - private Discord(String title, String message) { + private Discord(@NotNull String title, @NotNull String message) { Embeds embed = new Embeds(title, message); embeds = Collections.singletonList(embed); } - public List getEmbeds() { + public @NotNull List getEmbeds() { return embeds; } } private static final class Embeds { + @NotNull private final String title; + @NotNull private final String description; - private Embeds(String title, String description) { + private Embeds(@NotNull String title, @NotNull String description) { this.title = title; this.description = description; } - public String getTitle() { + public @NotNull String getTitle() { return title; } - public String getDescription() { + public @NotNull String getDescription() { return description; } } diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/EmailNotificationAgent.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/EmailNotificationAgent.java index 9d918809..0d4b7cc0 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/EmailNotificationAgent.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/EmailNotificationAgent.java @@ -13,6 +13,7 @@ import com.jasonhhouse.gaps.NotificationType; import com.jasonhhouse.gaps.properties.EmailProperties; import com.jasonhhouse.gaps.service.FileIoService; +import com.jasonhhouse.gaps.service.IO; import java.util.Properties; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; @@ -26,24 +27,26 @@ public final class EmailNotificationAgent extends AbstractNotificationAgent { + @NotNull private static final Logger LOGGER = LoggerFactory.getLogger(EmailNotificationAgent.class); - public EmailNotificationAgent(FileIoService fileIoService) { - super(fileIoService); + @NotNull + public EmailNotificationAgent(@NotNull IO ioService) { + super(ioService); } @Override - public int getId() { + public @NotNull Integer getId() { return 4; } @Override - public String getName() { + public @NotNull String getName() { return "Email Notification Agent"; } @Override - public boolean sendMessage(NotificationType notificationType, String level, String title, String message) { + public @NotNull Boolean sendMessage(@NotNull NotificationType notificationType, @NotNull String level, @NotNull String title, @NotNull String message) { LOGGER.info(SEND_MESSAGE, level, title, message); if (sendPrepMessage(notificationType)) { @@ -66,10 +69,9 @@ public boolean sendMessage(NotificationType notificationType, String level, Stri } } - @NotNull @Override - public EmailProperties getNotificationProperties() { - return fileIoService.readProperties().getEmailProperties(); + public @NotNull EmailProperties getNotificationProperties() { + return ioService.readProperties().getEmailProperties(); } private JavaMailSenderImpl getJavaMailSender() { diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/GotifyNotificationAgent.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/GotifyNotificationAgent.java index c3fae3ff..094d9b85 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/GotifyNotificationAgent.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/GotifyNotificationAgent.java @@ -15,6 +15,7 @@ import com.jasonhhouse.gaps.NotificationType; import com.jasonhhouse.gaps.properties.GotifyProperties; import com.jasonhhouse.gaps.service.FileIoService; +import com.jasonhhouse.gaps.service.IO; import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.HttpUrl; @@ -24,7 +25,6 @@ import okhttp3.RequestBody; import okhttp3.Response; import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -34,12 +34,17 @@ public final class GotifyNotificationAgent extends AbstractNotificationAgent { + @NotNull private static final Logger LOGGER = LoggerFactory.getLogger(GotifyNotificationAgent.class); + + @NotNull private static final ObjectMapper objectMapper = new ObjectMapper(); + + @NotNull private final OkHttpClient client; - public GotifyNotificationAgent(FileIoService fileIoService) { - super(fileIoService); + public GotifyNotificationAgent(@NotNull IO ioService) { + super(ioService); client = new OkHttpClient.Builder() .connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS) @@ -50,17 +55,17 @@ public GotifyNotificationAgent(FileIoService fileIoService) { } @Override - public int getId() { + public @NotNull Integer getId() { return 3; } @Override - public String getName() { + public @NotNull String getName() { return "Gotify Notification Agent"; } @Override - public boolean sendMessage(NotificationType notificationType, String level, String title, String message) { + public @NotNull Boolean sendMessage(@NotNull NotificationType notificationType, @NotNull String level, @NotNull String title, @NotNull String message) { LOGGER.info(SEND_MESSAGE, level, title, message); if (sendPrepMessage(notificationType)) { @@ -102,26 +107,27 @@ public boolean sendMessage(NotificationType notificationType, String level, Stri } } - @NotNull @Override - public GotifyProperties getNotificationProperties() { - return fileIoService.readProperties().getGotifyProperties(); + public @NotNull GotifyProperties getNotificationProperties() { + return ioService.readProperties().getGotifyProperties(); } public static final class Gotify { + @NotNull private final String title; + @NotNull private final String message; - public Gotify(String title, String message) { + public Gotify(@NotNull String title, @NotNull String message) { this.message = message; this.title = title; } - public String getTitle() { + public @NotNull String getTitle() { return title; } - public String getMessage() { + public @NotNull String getMessage() { return message; } } diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/NotificationAgent.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/NotificationAgent.java index 27a970b9..14d8de3f 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/NotificationAgent.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/NotificationAgent.java @@ -13,18 +13,16 @@ import com.jasonhhouse.gaps.NotificationType; import com.jasonhhouse.gaps.properties.NotificationProperties; import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; public interface NotificationAgent { - int getId(); + @NotNull Integer getId(); - String getName(); + @NotNull String getName(); - boolean isEnabled(); + @NotNull Boolean isEnabled(); - boolean sendMessage(NotificationType notificationType, String level, String title, String message); + @NotNull Boolean sendMessage(@NotNull NotificationType notificationType, @NotNull String level, @NotNull String title, @NotNull String message); - @NotNull - T getNotificationProperties(); + @NotNull T getNotificationProperties(); } diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/NotificationStatus.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/NotificationStatus.java index 2ac4ce68..f0f8793f 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/NotificationStatus.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/NotificationStatus.java @@ -1,12 +1,23 @@ package com.jasonhhouse.gaps.notifications; +import org.jetbrains.annotations.NotNull; + public final class NotificationStatus { + @NotNull public static final String FAILED_TO_READ_PROPERTIES = "Failed to read %s from Properties file."; + + @NotNull public static final String AGENT_NOT_ENABLED_FOR_NOTIFICATION_TYPE = "{} not enabled for notification type {}"; + + @NotNull public static final String FAILED_TO_PARSE_JSON = "Failed to turn %s message into JSON"; + + @NotNull public static final String SEND_MESSAGE = "sendMessage( {}, {}, {} )"; - public static final long TIMEOUT = 2500; + + @NotNull + public static final Long TIMEOUT = 2500L; private NotificationStatus() { //No init diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/PushBulletNotificationAgent.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/PushBulletNotificationAgent.java index 894fc9f4..208edcf2 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/PushBulletNotificationAgent.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/PushBulletNotificationAgent.java @@ -15,6 +15,7 @@ import com.jasonhhouse.gaps.NotificationType; import com.jasonhhouse.gaps.properties.PushBulletProperties; import com.jasonhhouse.gaps.service.FileIoService; +import com.jasonhhouse.gaps.service.IO; import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.Headers; @@ -25,7 +26,6 @@ import okhttp3.RequestBody; import okhttp3.Response; import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -35,12 +35,17 @@ public final class PushBulletNotificationAgent extends AbstractNotificationAgent { + @NotNull private static final Logger LOGGER = LoggerFactory.getLogger(PushBulletNotificationAgent.class); + + @NotNull private static final ObjectMapper objectMapper = new ObjectMapper(); + + @NotNull private final OkHttpClient client; - public PushBulletNotificationAgent(FileIoService fileIoService) { - super(fileIoService); + public PushBulletNotificationAgent(@NotNull IO ioService) { + super(ioService); client = new OkHttpClient.Builder() .connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS) @@ -49,19 +54,18 @@ public PushBulletNotificationAgent(FileIoService fileIoService) { .build(); } - @Override - public int getId() { + public @NotNull Integer getId() { return 1; } @Override - public String getName() { + public @NotNull String getName() { return "PushBullet Notification Agent"; } @Override - public boolean sendMessage(NotificationType notificationType, String level, String title, String message) { + public @NotNull Boolean sendMessage(@NotNull NotificationType notificationType, @NotNull String level, @NotNull String title, @NotNull String message) { LOGGER.info(SEND_MESSAGE, level, title, message); if (sendPrepMessage(notificationType)) { @@ -114,19 +118,22 @@ public boolean sendMessage(NotificationType notificationType, String level, Stri } } - @NotNull @Override - public PushBulletProperties getNotificationProperties() { - return fileIoService.readProperties().getPushBulletProperties(); + public @NotNull PushBulletProperties getNotificationProperties() { + return ioService.readProperties().getPushBulletProperties(); } public static final class PushBullet { + @NotNull private final String type; + @NotNull private final String channelTag; + @NotNull private final String title; + @NotNull private final String body; - public PushBullet(String channelTag, String title, String body) { + public PushBullet(@NotNull String channelTag, @NotNull String title, @NotNull String body) { this.channelTag = channelTag; this.title = title; this.body = body; @@ -134,19 +141,19 @@ public PushBullet(String channelTag, String title, String body) { } @JsonProperty("channel_tag") - public String getChannelTag() { + public @NotNull String getChannelTag() { return channelTag; } - public String getType() { + public @NotNull String getType() { return type; } - public String getTitle() { + public @NotNull String getTitle() { return title; } - public String getBody() { + public @NotNull String getBody() { return body; } } diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/PushOverNotificationAgent.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/PushOverNotificationAgent.java index 9d89ff44..c4f039bf 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/PushOverNotificationAgent.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/PushOverNotificationAgent.java @@ -16,6 +16,7 @@ import com.jasonhhouse.gaps.NotificationType; import com.jasonhhouse.gaps.properties.PushOverProperties; import com.jasonhhouse.gaps.service.FileIoService; +import com.jasonhhouse.gaps.service.IO; import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.HttpUrl; @@ -25,7 +26,6 @@ import okhttp3.RequestBody; import okhttp3.Response; import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -34,13 +34,15 @@ import static com.jasonhhouse.gaps.notifications.NotificationStatus.TIMEOUT; public final class PushOverNotificationAgent extends AbstractNotificationAgent { + @NotNull private static final Logger LOGGER = LoggerFactory.getLogger(PushOverNotificationAgent.class); + @NotNull private static final ObjectMapper objectMapper = new ObjectMapper(); - + @NotNull private final OkHttpClient client; - public PushOverNotificationAgent(FileIoService fileIoService) { - super(fileIoService); + public PushOverNotificationAgent(@NotNull IO ioService) { + super(ioService); client = new OkHttpClient.Builder() .connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS) @@ -50,17 +52,17 @@ public PushOverNotificationAgent(FileIoService fileIoService) { } @Override - public int getId() { + public @NotNull Integer getId() { return 5; } @Override - public String getName() { + public @NotNull String getName() { return "PushOver Notification Agent"; } @Override - public boolean sendMessage(NotificationType notificationType, String level, String title, String message) { + public @NotNull Boolean sendMessage(@NotNull NotificationType notificationType, @NotNull String level, @NotNull String title, @NotNull String message) { LOGGER.info(SEND_MESSAGE, level, title, message); if (sendPrepMessage(notificationType)) { @@ -107,24 +109,37 @@ public boolean sendMessage(NotificationType notificationType, String level, Stri } } - @NotNull @Override - public PushOverProperties getNotificationProperties() { - return fileIoService.readProperties().getPushOverProperties(); + public @NotNull PushOverProperties getNotificationProperties() { + return ioService.readProperties().getPushOverProperties(); } private static final class PushOver { - + @NotNull private final String token; + @NotNull private final String user; + @NotNull private final Integer priority; + @NotNull private final String sound; + @NotNull private final String title; + @NotNull private final String message; + @NotNull private final Integer retry; + @NotNull private final Integer expire; - public PushOver(String token, String user, Integer priority, String sound, String title, String message, Integer retry, Integer expire) { + public PushOver(@NotNull String token, + @NotNull String user, + @NotNull Integer priority, + @NotNull String sound, + @NotNull String title, + @NotNull String message, + @NotNull Integer retry, + @NotNull Integer expire) { this.token = token; this.user = user; this.priority = priority; @@ -135,35 +150,35 @@ public PushOver(String token, String user, Integer priority, String sound, Strin this.expire = expire; } - public String getToken() { + public @NotNull String getToken() { return token; } - public String getUser() { + public @NotNull String getUser() { return user; } - public Integer getPriority() { + public @NotNull Integer getPriority() { return priority; } - public String getSound() { + public @NotNull String getSound() { return sound; } - public String getTitle() { + public @NotNull String getTitle() { return title; } - public String getMessage() { + public @NotNull String getMessage() { return message; } - public Integer getRetry() { + public @NotNull Integer getRetry() { return retry; } - public Integer getExpire() { + public @NotNull Integer getExpire() { return expire; } } diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/SlackNotificationAgent.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/SlackNotificationAgent.java index 081dcdcc..44e94908 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/SlackNotificationAgent.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/SlackNotificationAgent.java @@ -15,7 +15,7 @@ import com.fasterxml.jackson.databind.ObjectMapper; import com.jasonhhouse.gaps.NotificationType; import com.jasonhhouse.gaps.properties.SlackProperties; -import com.jasonhhouse.gaps.service.FileIoService; +import com.jasonhhouse.gaps.service.IO; import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.Headers; @@ -26,7 +26,6 @@ import okhttp3.RequestBody; import okhttp3.Response; import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -34,12 +33,15 @@ public final class SlackNotificationAgent extends AbstractNotificationAgent { + @NotNull private static final Logger LOGGER = LoggerFactory.getLogger(SlackNotificationAgent.class); + @NotNull private static final ObjectMapper objectMapper = new ObjectMapper(); + @NotNull private final OkHttpClient client; - public SlackNotificationAgent(FileIoService fileIoService) { - super(fileIoService); + public SlackNotificationAgent(@NotNull IO ioService) { + super(ioService); client = new OkHttpClient.Builder() .connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS) @@ -49,17 +51,17 @@ public SlackNotificationAgent(FileIoService fileIoService) { } @Override - public int getId() { + public @NotNull Integer getId() { return 2; } @Override - public String getName() { + public @NotNull String getName() { return "Slack Notification Agent"; } @Override - public boolean sendMessage(NotificationType notificationType, String level, String title, String message) { + public @NotNull Boolean sendMessage(@NotNull NotificationType notificationType, @NotNull String level, @NotNull String title, @NotNull String message) { LOGGER.info("sendMessage( {}, {}, {} )", level, title, message); if (sendPrepMessage(notificationType)) { @@ -106,58 +108,62 @@ public boolean sendMessage(NotificationType notificationType, String level, Stri } } - @NotNull @Override - public SlackProperties getNotificationProperties() { - return fileIoService.readProperties().getSlackProperties(); + public @NotNull SlackProperties getNotificationProperties() { + return ioService.readProperties().getSlackProperties(); } private static final class Slack { + @NotNull private final Block[] blocks; - private Slack(String message) { + private Slack(@NotNull String message) { blocks = new Block[1]; blocks[0] = new SlackNotificationAgent.Block(new Text(message)); } - public Block[] getBlocks() { + public @NotNull Block[] getBlocks() { return blocks; } } private static final class Block { + @NotNull private final String type; + @NotNull private final Text text; - private Block(Text text) { + private Block(@NotNull Text text) { this.type = "section"; this.text = text; } - public String getType() { + public @NotNull String getType() { return type; } - public Text getText() { + public @NotNull Text getText() { return text; } } private static final class Text { + @NotNull private final String type; + @NotNull private final String value; - private Text(String value) { + private Text(@NotNull String value) { this.type = "mrkdwn"; this.value = value; } - public String getType() { + public @NotNull String getType() { return type; } @JsonProperty("text") - public String getValue() { + public @NotNull String getValue() { return value; } } diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/TelegramNotificationAgent.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/TelegramNotificationAgent.java index 9b5d1db0..cbb380c8 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/TelegramNotificationAgent.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/notifications/TelegramNotificationAgent.java @@ -14,7 +14,7 @@ import com.fasterxml.jackson.databind.ObjectMapper; import com.jasonhhouse.gaps.NotificationType; import com.jasonhhouse.gaps.properties.TelegramProperties; -import com.jasonhhouse.gaps.service.FileIoService; +import com.jasonhhouse.gaps.service.IO; import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.HttpUrl; @@ -32,13 +32,15 @@ import static com.jasonhhouse.gaps.notifications.NotificationStatus.TIMEOUT; public final class TelegramNotificationAgent extends AbstractNotificationAgent { + @NotNull private static final Logger LOGGER = LoggerFactory.getLogger(TelegramNotificationAgent.class); + @NotNull private static final ObjectMapper objectMapper = new ObjectMapper(); - + @NotNull private final OkHttpClient client; - public TelegramNotificationAgent(FileIoService fileIoService) { - super(fileIoService); + public TelegramNotificationAgent(@NotNull IO ioService) { + super(ioService); client = new OkHttpClient.Builder() .connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS) @@ -48,17 +50,17 @@ public TelegramNotificationAgent(FileIoService fileIoService) { } @Override - public int getId() { + public @NotNull Integer getId() { return 0; } @Override - public String getName() { + public @NotNull String getName() { return "Telegram Notification Agent"; } @Override - public boolean sendMessage(NotificationType notificationType, String level, String title, String message) { + public @NotNull Boolean sendMessage(@NotNull NotificationType notificationType, @NotNull String level, @NotNull String title, @NotNull String message) { LOGGER.info(SEND_MESSAGE, level, title, message); if (sendPrepMessage(notificationType)) { @@ -105,34 +107,36 @@ public boolean sendMessage(NotificationType notificationType, String level, Stri } } - @NotNull @Override - public TelegramProperties getNotificationProperties() { - return fileIoService.readProperties().getTelegramProperties(); + public @NotNull TelegramProperties getNotificationProperties() { + return ioService.readProperties().getTelegramProperties(); } public static final class Telegram { + @NotNull private final String chatId; + @NotNull private final String text; + @NotNull private final String parseMode; - public Telegram(String chatId, String text, String parseMode) { + public Telegram(@NotNull String chatId, @NotNull String text, @NotNull String parseMode) { this.chatId = chatId; this.text = text; this.parseMode = parseMode; } @JsonProperty("chat_id") - public String getChatId() { + public @NotNull String getChatId() { return chatId; } - public String getText() { + public @NotNull String getText() { return text; } @JsonProperty("parse_mode") - public String getParseMode() { + public @NotNull String getParseMode() { return parseMode; } } diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/Notification.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/Notification.java index ae31cec2..695a9659 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/Notification.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/Notification.java @@ -2,28 +2,29 @@ import com.jasonhhouse.gaps.PlexServer; import com.jasonhhouse.plex.libs.PlexLibrary; +import org.jetbrains.annotations.NotNull; public interface Notification { - void plexServerConnectFailed(PlexServer plexServer, String error); + @NotNull Boolean plexServerConnectFailed(@NotNull PlexServer plexServer, @NotNull String error); - void plexServerConnectSuccessful(PlexServer plexServer); + @NotNull Boolean plexServerConnectSuccessful(@NotNull PlexServer plexServer); - void plexLibraryScanFailed(PlexServer plexServer, PlexLibrary plexLibrary, String error); + @NotNull Boolean plexLibraryScanFailed(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary, @NotNull String error); - void plexLibraryScanSuccessful(PlexServer plexServer, PlexLibrary plexLibrary); + @NotNull Boolean plexLibraryScanSuccessful(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary); - void tmdbConnectionFailed(String error); + @NotNull Boolean tmdbConnectionFailed(@NotNull String error); - void tmdbConnectionSuccessful(); + @NotNull Boolean tmdbConnectionSuccessful(); - void recommendedMoviesSearchStarted(PlexServer plexServer, PlexLibrary plexLibrary); + @NotNull Boolean recommendedMoviesSearchStarted(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary); - void recommendedMoviesSearchFailed(PlexServer plexServer, PlexLibrary plexLibrary, String error); + @NotNull Boolean recommendedMoviesSearchFailed(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary,@NotNull String error); - void recommendedMoviesSearchFinished(PlexServer plexServer, PlexLibrary plexLibrary); + @NotNull Boolean recommendedMoviesSearchFinished(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary); - boolean test(); + @NotNull Boolean test(); - boolean test(int id) throws IllegalArgumentException, IllegalAccessException; + @NotNull Boolean test(@NotNull Integer id) throws IllegalArgumentException, IllegalAccessException; } diff --git a/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/NotificationService.java b/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/NotificationService.java index 68624749..8e80dcb3 100644 --- a/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/NotificationService.java +++ b/GapsWeb/src/main/java/com/jasonhhouse/gaps/service/NotificationService.java @@ -1,11 +1,12 @@ /* - * Copyright 2019 Jason H House + * Copyright 2020 Jason H House * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package com.jasonhhouse.gaps.service; @@ -15,6 +16,7 @@ import com.jasonhhouse.gaps.properties.NotificationProperties; import com.jasonhhouse.plex.libs.PlexLibrary; import java.util.List; +import org.jetbrains.annotations.NotNull; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Service; @@ -31,145 +33,197 @@ public NotificationService(List notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.PLEX_SERVER_CONNECTION, "ERROR", "Gaps Search", String.format("Connection to Plex Server %s Failed. %s", plexServer.getFriendlyName(), error)); + Boolean result = notificationAgent.sendMessage(NotificationType.PLEX_SERVER_CONNECTION, "ERROR", "Gaps Search", String.format("Connection to Plex Server %s Failed. %s", plexServer.getFriendlyName(), error)); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when plex server connection failed to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public void plexServerConnectSuccessful(PlexServer plexServer) { + public @NotNull Boolean plexServerConnectSuccessful(@NotNull PlexServer plexServer) { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.PLEX_SERVER_CONNECTION, "INFO", "Gaps Search", String.format("Connection to Plex Server %s Successful", plexServer.getFriendlyName())); + Boolean result = notificationAgent.sendMessage(NotificationType.PLEX_SERVER_CONNECTION, "INFO", "Gaps Search", String.format("Connection to Plex Server %s Successful", plexServer.getFriendlyName())); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when plex server connection successful to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public void plexLibraryScanFailed(PlexServer plexServer, PlexLibrary plexLibrary, String error) { + public @NotNull Boolean plexLibraryScanFailed(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary, @NotNull String error) { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.PLEX_METADATA_UPDATE, "INFO", "Gaps Search", String.format("Scanning Plex Server %s in %s Library Failed. %s", plexServer.getFriendlyName(), plexLibrary.getTitle(), error)); + Boolean result = notificationAgent.sendMessage(NotificationType.PLEX_METADATA_UPDATE, "INFO", "Gaps Search", String.format("Scanning Plex Server %s in %s Library Failed. %s", plexServer.getFriendlyName(), plexLibrary.getTitle(), error)); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when plex library scan failed to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public void plexLibraryScanSuccessful(PlexServer plexServer, PlexLibrary plexLibrary) { + public @NotNull Boolean plexLibraryScanSuccessful(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary) { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.PLEX_METADATA_UPDATE, "INFO", "Gaps Search", String.format("Scanning Plex Server %s in %s Library Successful", plexServer.getFriendlyName(), plexLibrary.getTitle())); + Boolean result = notificationAgent.sendMessage(NotificationType.PLEX_METADATA_UPDATE, "INFO", "Gaps Search", String.format("Scanning Plex Server %s in %s Library Successful", plexServer.getFriendlyName(), plexLibrary.getTitle())); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when plex library scan succeeded to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public void tmdbConnectionFailed(String error) { + public @NotNull Boolean tmdbConnectionFailed(@NotNull String error) { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.TMDB_API_CONNECTION, "INFO", "Gaps Search", String.format("TMDB Connection Failed. %s", error)); + Boolean result = notificationAgent.sendMessage(NotificationType.TMDB_API_CONNECTION, "INFO", "Gaps Search", String.format("TMDB Connection Failed. %s", error)); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when TMDB connection test failed to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public void tmdbConnectionSuccessful() { + public @NotNull Boolean tmdbConnectionSuccessful() { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.TMDB_API_CONNECTION, "INFO", "Gaps Search", "TMDB Connection Successful"); + Boolean result = notificationAgent.sendMessage(NotificationType.TMDB_API_CONNECTION, "INFO", "Gaps Search", "TMDB Connection Successful"); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when TMDB connection test succeeded to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public void recommendedMoviesSearchStarted(PlexServer plexServer, PlexLibrary plexLibrary) { + public @NotNull Boolean recommendedMoviesSearchStarted(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary) { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "INFO", "Gaps Search", String.format("Scanning Plex Server %s on Library %s Started", plexServer.getFriendlyName(), plexLibrary.getTitle())); + Boolean result = notificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "INFO", "Gaps Search", String.format("Scanning Plex Server %s on Library %s Started", plexServer.getFriendlyName(), plexLibrary.getTitle())); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when recommending movies started to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public void recommendedMoviesSearchFailed(PlexServer plexServer, PlexLibrary plexLibrary, String error) { + public @NotNull Boolean recommendedMoviesSearchFailed(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary, @NotNull String error) { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "INFO", "Gaps Search", String.format("Scanning Plex Server %s on Library %s Failed %s", plexServer.getFriendlyName(), plexLibrary.getTitle(), error)); + Boolean result = notificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "INFO", "Gaps Search", String.format("Scanning Plex Server %s on Library %s Failed %s", plexServer.getFriendlyName(), plexLibrary.getTitle(), error)); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when recommending movies failed to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public void recommendedMoviesSearchFinished(PlexServer plexServer, PlexLibrary plexLibrary) { + public @NotNull Boolean recommendedMoviesSearchFinished(@NotNull PlexServer plexServer, @NotNull PlexLibrary plexLibrary) { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { if (notificationAgent.isEnabled()) { try { - notificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "INFO", "Gaps Search", String.format("Scanning Plex Server %s on Library %s Successfully Finished", plexServer.getFriendlyName(), plexLibrary.getTitle())); + Boolean result = notificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "INFO", "Gaps Search", String.format("Scanning Plex Server %s on Library %s Successfully Finished", plexServer.getFriendlyName(), plexLibrary.getTitle())); + if (!result) { + sentAllNotifications = false; + } } catch (Exception e) { LOGGER.error(String.format("Failed to send message when recommending movies finished to %s", notificationAgent.getName()), e); + sentAllNotifications = false; } } } + return sentAllNotifications; } @Override - public boolean test() { - boolean passedTest = true; - + public @NotNull Boolean test() { + boolean sentAllNotifications = true; for (NotificationAgent notificationAgent : notificationAgents) { try { - boolean result = notificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); + Boolean result = notificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); if (!result) { - passedTest = false; + sentAllNotifications = false; } } catch (Exception e) { LOGGER.error(String.format("Failed to send test all message to %s", notificationAgent.getName()), e); - return false; + sentAllNotifications = false; } } - - return passedTest; + return sentAllNotifications; } @Override - public boolean test(int id) throws IllegalArgumentException { + public @NotNull Boolean test(@NotNull Integer id) throws IllegalArgumentException { for (NotificationAgent notificationAgent : notificationAgents) { - if (notificationAgent.getId() == id) { + if (notificationAgent.getId().equals(id)) { try { return notificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); } catch (Exception e) { diff --git a/GapsWeb/src/main/resources/templates/configuration.html b/GapsWeb/src/main/resources/templates/configuration.html index a60c8260..90152220 100755 --- a/GapsWeb/src/main/resources/templates/configuration.html +++ b/GapsWeb/src/main/resources/templates/configuration.html @@ -418,10 +418,10 @@

Success!

-
{{friendlyName}}
+
{{friendlyName}}
    {{#each plexLibraries}} -
  • {{title}}
  • +
  • {{title}}
  • {{/each}}
diff --git a/GapsWeb/src/main/resources/templates/libraries.html b/GapsWeb/src/main/resources/templates/libraries.html index 54faaf05..e82b667c 100755 --- a/GapsWeb/src/main/resources/templates/libraries.html +++ b/GapsWeb/src/main/resources/templates/libraries.html @@ -94,6 +94,7 @@

Libraries

Libraries
@@ -160,7 +161,7 @@
Your movies are really missing
- Plex Poster
diff --git a/GapsWeb/src/main/resources/templates/recommended.html b/GapsWeb/src/main/resources/templates/recommended.html index 30f551f4..dbf18907 100755 --- a/GapsWeb/src/main/resources/templates/recommended.html +++ b/GapsWeb/src/main/resources/templates/recommended.html @@ -93,6 +93,7 @@

Missing Movies

Missing Movies
@@ -171,6 +172,7 @@

Searching for Movies

Plex Poster
diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/DiscordNotificationAgentTest.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/DiscordNotificationAgentTest.java new file mode 100644 index 00000000..5add36ea --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/DiscordNotificationAgentTest.java @@ -0,0 +1,43 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.notifications; + +import com.jasonhhouse.gaps.NotificationType; +import com.jasonhhouse.gaps.service.FakeIoService; +import org.jetbrains.annotations.NotNull; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class DiscordNotificationAgentTest { + + @NotNull + private DiscordNotificationAgent discordNotificationAgent; + + @BeforeEach + void setUp() { + discordNotificationAgent = new DiscordNotificationAgent(new FakeIoService()); + } + + @Test + void sendMessage() { + Boolean sentSuccessfully = discordNotificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); + assertTrue(sentSuccessfully, "Should have sent test discord message"); + } + + @Test + void failToMessage() { + Boolean sentUnsuccessfully = discordNotificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "DEBUG", "Gaps Test", "Test Successful"); + assertFalse(sentUnsuccessfully, "Should have not sent test discord message"); + } +} \ No newline at end of file diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/EmailNotificationAgentTest.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/EmailNotificationAgentTest.java new file mode 100644 index 00000000..aba63915 --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/EmailNotificationAgentTest.java @@ -0,0 +1,44 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.notifications; + +import com.jasonhhouse.gaps.NotificationType; +import com.jasonhhouse.gaps.service.FakeIoService; +import org.jetbrains.annotations.NotNull; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; + +class EmailNotificationAgentTest { + + @NotNull + private EmailNotificationAgent emailNotificationAgent; + + @BeforeEach + void setUp() { + emailNotificationAgent = new EmailNotificationAgent(new FakeIoService()); + } + + @Test + void sendMessage() { + Boolean sentSuccessfully = emailNotificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); + assertTrue(sentSuccessfully, "Should have sent test email message"); + } + + @Test + void failToMessage() { + Boolean sentUnsuccessfully = emailNotificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "DEBUG", "Gaps Test", "Test Successful"); + assertFalse(sentUnsuccessfully, "Should have not sent test email message"); + } +} \ No newline at end of file diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/GotifyNotificationAgentTest.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/GotifyNotificationAgentTest.java new file mode 100644 index 00000000..469a2e33 --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/GotifyNotificationAgentTest.java @@ -0,0 +1,43 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.notifications; + +import com.jasonhhouse.gaps.NotificationType; +import com.jasonhhouse.gaps.service.FakeIoService; +import org.jetbrains.annotations.NotNull; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class GotifyNotificationAgentTest { + + @NotNull + private GotifyNotificationAgent gotifyNotificationAgent; + + @BeforeEach + void setUp() { + gotifyNotificationAgent = new GotifyNotificationAgent(new FakeIoService()); + } + + @Test + void sendMessage() { + Boolean sentSuccessfully = gotifyNotificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); + assertTrue(sentSuccessfully, "Should have sent test gotify message"); + } + + @Test + void failToMessage() { + Boolean sentUnsuccessfully = gotifyNotificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "DEBUG", "Gaps Test", "Test Successful"); + assertFalse(sentUnsuccessfully, "Should have not sent test gotify message"); + } +} \ No newline at end of file diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/PushBulletNotificationAgentTest.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/PushBulletNotificationAgentTest.java new file mode 100644 index 00000000..eca60b2c --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/PushBulletNotificationAgentTest.java @@ -0,0 +1,43 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.notifications; + +import com.jasonhhouse.gaps.NotificationType; +import com.jasonhhouse.gaps.service.FakeIoService; +import org.jetbrains.annotations.NotNull; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class PushBulletNotificationAgentTest { + + @NotNull + private PushBulletNotificationAgent pushBulletNotificationAgent; + + @BeforeEach + void setUp() { + pushBulletNotificationAgent = new PushBulletNotificationAgent(new FakeIoService()); + } + + @Test + void sendMessage() { + Boolean sentSuccessfully = pushBulletNotificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); + assertTrue(sentSuccessfully, "Should have sent test pushBullet message"); + } + + @Test + void failToMessage() { + Boolean sentUnsuccessfully = pushBulletNotificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "DEBUG", "Gaps Test", "Test Successful"); + assertFalse(sentUnsuccessfully, "Should have not sent pushBullet email message"); + } +} \ No newline at end of file diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/PushOverNotificationAgentTest.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/PushOverNotificationAgentTest.java new file mode 100644 index 00000000..d37a5a17 --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/PushOverNotificationAgentTest.java @@ -0,0 +1,43 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.notifications; + +import com.jasonhhouse.gaps.NotificationType; +import com.jasonhhouse.gaps.service.FakeIoService; +import org.jetbrains.annotations.NotNull; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class PushOverNotificationAgentTest { + + @NotNull + private PushOverNotificationAgent pushOverNotificationAgent; + + @BeforeEach + void setUp() { + pushOverNotificationAgent = new PushOverNotificationAgent(new FakeIoService()); + } + + @Test + void sendMessage() { + Boolean sentSuccessfully = pushOverNotificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); + assertTrue(sentSuccessfully, "Should have sent test pushOver message"); + } + + @Test + void failToMessage() { + Boolean sentUnsuccessfully = pushOverNotificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "DEBUG", "Gaps Test", "Test Successful"); + assertFalse(sentUnsuccessfully, "Should have not sent pushOver email message"); + } +} \ No newline at end of file diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/SlackNotificationAgentTest.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/SlackNotificationAgentTest.java new file mode 100644 index 00000000..1cf73806 --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/SlackNotificationAgentTest.java @@ -0,0 +1,43 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.notifications; + +import com.jasonhhouse.gaps.NotificationType; +import com.jasonhhouse.gaps.service.FakeIoService; +import org.jetbrains.annotations.NotNull; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class SlackNotificationAgentTest { + + @NotNull + private SlackNotificationAgent slackNotificationAgent; + + @BeforeEach + void setUp() { + slackNotificationAgent = new SlackNotificationAgent(new FakeIoService()); + } + + @Test + void sendMessage() { + Boolean sentSuccessfully = slackNotificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); + assertTrue(sentSuccessfully, "Should have sent test slack message"); + } + + @Test + void failToMessage() { + Boolean sentUnsuccessfully = slackNotificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "DEBUG", "Gaps Test", "Test Successful"); + assertFalse(sentUnsuccessfully, "Should have not sent slack email message"); + } +} \ No newline at end of file diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/TelegramNotificationAgentTest.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/TelegramNotificationAgentTest.java new file mode 100644 index 00000000..4db6300d --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/notifications/TelegramNotificationAgentTest.java @@ -0,0 +1,45 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.notifications; + +import com.jasonhhouse.gaps.NotificationType; +import com.jasonhhouse.gaps.service.FakeIoService; +import com.jasonhhouse.gaps.service.IO; +import org.jetbrains.annotations.NotNull; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; + +class TelegramNotificationAgentTest { + + @NotNull + private TelegramNotificationAgent telegramNotificationAgent; + + @BeforeEach + void setUp() { + telegramNotificationAgent = new TelegramNotificationAgent(new FakeIoService()); + } + + @Test + void sendMessage() { + Boolean sentSuccessfully = telegramNotificationAgent.sendMessage(NotificationType.TEST, "DEBUG", "Gaps Test", "Test Successful"); + assertTrue(sentSuccessfully, "Should have sent test telegram message"); + } + + @Test + void failToMessage() { + Boolean sentUnsuccessfully = telegramNotificationAgent.sendMessage(NotificationType.GAPS_MISSING_COLLECTIONS, "DEBUG", "Gaps Test", "Test Successful"); + assertFalse(sentUnsuccessfully, "Should have not sent telegram email message"); + } +} \ No newline at end of file diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/service/FakeIoService.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/service/FakeIoService.java new file mode 100644 index 00000000..80f67d9b --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/service/FakeIoService.java @@ -0,0 +1,150 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.service; + +import com.jasonhhouse.gaps.BasicMovie; +import com.jasonhhouse.gaps.NotificationType; +import com.jasonhhouse.gaps.Payload; +import com.jasonhhouse.gaps.PlexServer; +import com.jasonhhouse.gaps.properties.DiscordProperties; +import com.jasonhhouse.gaps.properties.EmailProperties; +import com.jasonhhouse.gaps.properties.GotifyProperties; +import com.jasonhhouse.gaps.properties.PlexProperties; +import com.jasonhhouse.gaps.properties.PushBulletProperties; +import com.jasonhhouse.gaps.properties.PushOverProperties; +import com.jasonhhouse.gaps.properties.SlackProperties; +import com.jasonhhouse.gaps.properties.TelegramProperties; +import java.io.File; +import java.util.ArrayList; +import java.util.Base64; +import java.util.List; +import java.util.Set; +import org.jetbrains.annotations.NotNull; + +public class FakeIoService implements IO { + @Override + public @NotNull List readRecommendedMovies(@NotNull String machineIdentifier, @NotNull Integer key) { + return null; + } + + @Override + public @NotNull Boolean doesRssFileExist(@NotNull String machineIdentifier, @NotNull Integer key) { + return null; + } + + @Override + public @NotNull String getRssFile(String machineIdentifier, @NotNull Integer key) { + return null; + } + + @Override + public void writeRssFile(@NotNull String machineIdentifier, @NotNull Integer key, @NotNull Set recommended) { + + } + + @Override + public void writeRecommendedToFile(@NotNull Set recommended, @NotNull String machineIdentifier, @NotNull Integer key) { + + } + + @Override + public void writeOwnedMoviesToFile(@NotNull List ownedBasicMovies, @NotNull String machineIdentifier, @NotNull Integer key) { + + } + + @Override + public @NotNull List readOwnedMovies(@NotNull String machineIdentifier, @NotNull Integer key) { + return null; + } + + @Override + public void writeMovieIdsToFile(@NotNull Set everyBasicMovie) { + + } + + @Override + public void writeMovieIdsToFile(@NotNull Set everyBasicMovie, @NotNull File file) { + + } + + @Override + public @NotNull Set readMovieIdsFromFile() { + return null; + } + + @Override + public void writeProperties(@NotNull PlexProperties plexProperties) { + + } + + @Override + public @NotNull PlexProperties readProperties() { + List notificationTypes = new ArrayList<>(); + notificationTypes.add(NotificationType.TEST); + notificationTypes.add(NotificationType.PLEX_SERVER_CONNECTION); + + String telegramArg1 = new String(Base64.getDecoder().decode("MTMwMjEzOTExOTpBQUV1cGh0RXVvcFhhVHBpdGlHbFdDWS0zbDMzU0JrUGUybw")); + String telegramArg2 = new String(Base64.getDecoder().decode("MTA0MTA4MTMxNw==")); + TelegramProperties telegramProperties = new TelegramProperties(true, notificationTypes, telegramArg1, telegramArg2); + + String slackArg1 = new String(Base64.getDecoder().decode("aHR0cHM6Ly9ob29rcy5zbGFjay5jb20vc2VydmljZXMvVDAxN1hSMEJNUlYvQjAxOEs0TkE3NjAvemsxcVVWMno1N0w4c3lqQ0ExUU8xRFFE")); + SlackProperties slackProperties = new SlackProperties(true, notificationTypes, slackArg1); + + String pushOverArg1 = new String(Base64.getDecoder().decode("YWM1ZjJya2JwejEyMnBqenNlMnBlbmJkdmYxZ2dh")); + String pushOverArg2 = new String(Base64.getDecoder().decode("dTdiemZkZW5kdmRqbnM1eXRrMmV3YjIxZDduaWJ5")); + Integer priority = 1; + String sound = "spacealarm"; + Integer retry = 1; + Integer expire = 2; + PushOverProperties pushOverProperties = new PushOverProperties(true, notificationTypes, pushOverArg1, pushOverArg2, priority, sound, retry, expire); + + String pushBulletArg1 = new String(Base64.getDecoder().decode("Z2Fwcw==")); + String pushBulletArg2 = new String(Base64.getDecoder().decode("by5pdjBXbXRuTFdJM3hmaFRTTmh1dVF2Tm1vdlVGSHN6dA==")); + PushBulletProperties pushBulletProperties = new PushBulletProperties(true, notificationTypes, pushBulletArg1, pushBulletArg2); + + String gotifyArg1 = new String(Base64.getDecoder().decode("aHR0cDovLzE5Mi4xNjguMS44OjgwNzA=")); + String gotifyArg2 = new String(Base64.getDecoder().decode("QVJkbS55SHRQUTlhaW5i")); + GotifyProperties gotifyProperties = new GotifyProperties(true, notificationTypes, gotifyArg1, gotifyArg2); + + String emailArg1 = new String(Base64.getDecoder().decode("amg1OTc1")); + String emailArg2 = new String(Base64.getDecoder().decode("aWJnYnR3aXdyd2xvZWNucA==")); + String emailArg3 = new String(Base64.getDecoder().decode("amg1OTc1QGdtYWlsLmNvbQ==")); + String emailArg4 = new String(Base64.getDecoder().decode("amg1OTc1QGdtYWlsLmNvbQ==")); + String emailArg5 = new String(Base64.getDecoder().decode("c210cC5nbWFpbC5jb20=")); + Integer emailArg6 = Integer.valueOf(new String(Base64.getDecoder().decode("NTg3"))); + String emailArg7 = new String(Base64.getDecoder().decode("c210cA==")); + String emailArg8 = new String(Base64.getDecoder().decode("amg1OTc1")); + EmailProperties emailProperties = new EmailProperties(true, notificationTypes, emailArg1, emailArg2, emailArg3, emailArg4, emailArg5, emailArg6, emailArg7, emailArg8, true); + + String discordArg1 = new String(Base64.getDecoder().decode("aHR0cHM6Ly9kaXNjb3JkYXBwLmNvbS9hcGkvd2ViaG9va3MvNzU2MzExMTkwOTU0NTczOTU2L0Uwa25VRF91akxIQU5oZTA3MGEwYW9PMUNnMGRNQUV4Z1FBbEZGTS1GZUgwNnl3VGExLU42c2ZhREpQSC1lM2dDVEZz")); + DiscordProperties discordProperties = new DiscordProperties(true, notificationTypes, discordArg1); + + PlexServer plexServer = new PlexServer(); + //plexServer.setAddress(); + + PlexProperties plexProperties = new PlexProperties(); + plexProperties.setTelegramProperties(telegramProperties); + plexProperties.setSlackProperties(slackProperties); + plexProperties.setPushOverProperties(pushOverProperties); + plexProperties.setPushBulletProperties(pushBulletProperties); + plexProperties.setGotifyProperties(gotifyProperties); + plexProperties.setEmailProperties(emailProperties); + plexProperties.setDiscordProperties(discordProperties); + + return plexProperties; + } + + @Override + public @NotNull Payload nuke() { + return null; + } +} diff --git a/GapsWeb/src/test/java/com/jasonhhouse/gaps/service/NotificationServiceTest.java b/GapsWeb/src/test/java/com/jasonhhouse/gaps/service/NotificationServiceTest.java new file mode 100644 index 00000000..2c3bc15f --- /dev/null +++ b/GapsWeb/src/test/java/com/jasonhhouse/gaps/service/NotificationServiceTest.java @@ -0,0 +1,66 @@ +/* + * Copyright 2020 Jason H House + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + */ + +package com.jasonhhouse.gaps.service; + +import com.jasonhhouse.gaps.PlexServer; +import com.jasonhhouse.gaps.notifications.DiscordNotificationAgent; +import com.jasonhhouse.gaps.notifications.EmailNotificationAgent; +import com.jasonhhouse.gaps.notifications.GotifyNotificationAgent; +import com.jasonhhouse.gaps.notifications.NotificationAgent; +import com.jasonhhouse.gaps.notifications.PushBulletNotificationAgent; +import com.jasonhhouse.gaps.notifications.PushOverNotificationAgent; +import com.jasonhhouse.gaps.notifications.SlackNotificationAgent; +import com.jasonhhouse.gaps.notifications.TelegramNotificationAgent; +import com.jasonhhouse.gaps.properties.NotificationProperties; +import java.util.ArrayList; +import java.util.List; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; + +class NotificationServiceTest { + + private NotificationService notificationService; + + @BeforeEach + void setUp() { + List> notificationTypeList = new ArrayList<>(); + + notificationTypeList.add(new DiscordNotificationAgent(new FakeIoService())); + notificationTypeList.add(new EmailNotificationAgent(new FakeIoService())); + notificationTypeList.add(new GotifyNotificationAgent(new FakeIoService())); + notificationTypeList.add(new PushBulletNotificationAgent(new FakeIoService())); + notificationTypeList.add(new PushOverNotificationAgent(new FakeIoService())); + notificationTypeList.add(new SlackNotificationAgent(new FakeIoService())); + notificationTypeList.add(new TelegramNotificationAgent(new FakeIoService())); + + notificationService = new NotificationService(notificationTypeList); + } + + @Test + public void plexServerConnectFailed() { + PlexServer plexServer = new PlexServer(); + plexServer.setFriendlyName("Friendly Name"); + String error = ""; + + Boolean result = notificationService.plexServerConnectFailed(plexServer, error); + assertTrue(result, "Should have sent plex server connect failed message"); + } + + @Test + public void tmdbConnectionFailed() { + Boolean result = notificationService.tmdbConnectionFailed(""); + assertFalse(result, "Should have failed to send plex server connect failed"); + } +} \ No newline at end of file diff --git a/cypress/fixtures/gaps.properties.json b/cypress/fixtures/gaps.properties.json new file mode 100644 index 00000000..715977a1 --- /dev/null +++ b/cypress/fixtures/gaps.properties.json @@ -0,0 +1,179 @@ +{ + "plexServers": [ + { + "plexLibraries": [ + { + "location": { + "value": "", + "id": 4, + "path": "/data/gaps/Best Movies" + }, + "allowSync": 1, + "art": "/:/resources/movie-fanart.jpg", + "composite": "/library/sections/4/composite/1602040076", + "filters": 1, + "refreshing": 0, + "thumb": "/:/resources/movie.png", + "key": 4, + "type": "movie", + "title": "Best Movies", + "agent": "com.plexapp.agents.imdb", + "scanner": "Plex Movie Scanner", + "language": "en", + "uuid": "4f7abfee-824d-485b-906a-27c917e222d5", + "updatedAt": 1601899630, + "createdAt": 1601864973, + "scannedAt": 1602040076, + "content": 1, + "directory": 1, + "contentChangedAt": -30488, + "hidden": 0 + }, + { + "location": { + "value": "", + "id": 1, + "path": "/data/Movies" + }, + "allowSync": 1, + "art": "/:/resources/movie-fanart.jpg", + "composite": "/library/sections/1/composite/1602040754", + "filters": 1, + "refreshing": 0, + "thumb": "/:/resources/movie.png", + "key": 1, + "type": "movie", + "title": "Movies", + "agent": "com.plexapp.agents.themoviedb", + "scanner": "Plex Movie Scanner", + "language": "en", + "uuid": "07c0a834-dbd1-43eb-b647-0099474bfd00", + "updatedAt": 1601969240, + "createdAt": 1584962634, + "scannedAt": 1602040754, + "content": 1, + "directory": 1, + "contentChangedAt": -20533, + "hidden": 0 + }, + { + "location": { + "value": "", + "id": 6, + "path": "/data/gaps/Movies" + }, + "allowSync": 1, + "art": "/:/resources/movie-fanart.jpg", + "composite": "/library/sections/6/composite/1602040754", + "filters": 1, + "refreshing": 0, + "thumb": "/:/resources/movie.png", + "key": 6, + "type": "movie", + "title": "Movies with new Metadata", + "agent": "tv.plex.agents.movie", + "scanner": "Plex Movie", + "language": "en-US", + "uuid": "f6763a83-03d8-4c88-af3f-15b2f45a37ad", + "updatedAt": 1601899889, + "createdAt": 1601865143, + "scannedAt": 1602040754, + "content": 1, + "directory": 1, + "contentChangedAt": -26463, + "hidden": 0 + }, + { + "location": { + "value": "", + "id": 5, + "path": "/data/gaps/Movies2" + }, + "allowSync": 1, + "art": "/:/resources/movie-fanart.jpg", + "composite": "/library/sections/5/composite/1602040763", + "filters": 1, + "refreshing": 0, + "thumb": "/:/resources/movie.png", + "key": 5, + "type": "movie", + "title": "Saw", + "agent": "com.plexapp.agents.imdb", + "scanner": "Plex Movie Scanner", + "language": "en", + "uuid": "236126a3-a526-470c-b59e-9c83efb03b05", + "updatedAt": 1601900204, + "createdAt": 1601865059, + "scannedAt": 1602040763, + "content": 1, + "directory": 1, + "contentChangedAt": -29899, + "hidden": 0 + } + ], + "friendlyName": "Joker", + "machineIdentifier": "c51c432ae94e316d52570550f915ecbcd71bede8", + "plexToken": "mQw4uawxTyYEmqNUrvBz", + "address": "192.168.1.8", + "port": 32400 + } + ], + "telegramProperties": { + "enabled": false, + "notificationTypes": [], + "botId": "", + "chatId": "" + }, + "pushBulletProperties": { + "enabled": false, + "notificationTypes": [], + "channel_tag": "", + "accessToken": "" + }, + "emailProperties": { + "enabled": false, + "notificationTypes": [], + "username": "", + "password": "", + "mailTo": "", + "mailFrom": "", + "mailServer": "", + "mailPort": 0, + "mailTransportProtocol": "", + "mailSmtpAuth": "", + "mailSmtpTlsEnabled": false + }, + "gotifyProperties": { + "enabled": false, + "notificationTypes": [], + "address": "", + "token": "" + }, + "slackProperties": { + "enabled": false, + "notificationTypes": [], + "webHookUrl": "" + }, + "pushOverProperties": { + "enabled": false, + "notificationTypes": [], + "token": "", + "user": "", + "priority": 0, + "sound": "", + "retry": 0, + "expire": 0 + }, + "discordProperties": { + "enabled": false, + "notificationTypes": [], + "webHookUrl": "" + }, + "movieDbApiKey": "723b4c763114904392ca441909aa0375", + "password": "", + "schedule": { + "id": 2, + "message": "Weekly", + "enabled": true + } +} \ No newline at end of file diff --git a/cypress/fixtures/libraries.joker.1.json b/cypress/fixtures/libraries.joker.1.json new file mode 100644 index 00000000..aa12e6a7 --- /dev/null +++ b/cypress/fixtures/libraries.joker.1.json @@ -0,0 +1 @@ +{"code":40,"reason":"Plex's library movies found.","extras":[{"name":"The Current War","year":2017,"posterUrl":"/library/metadata/27356/thumb/1599309069","imdbId":"","language":"en","overview":"Electricity titans Thomas Edison and George Westinghouse compete to create a sustainable system and market it to the American people","moviesInCollection":[],"ratingKey":27356,"key":"/library/metadata/27356","collectionTitle":"","collectionId":-1,"tmdbId":418879},{"name":"From a House on Willow Street","year":2017,"posterUrl":"/library/metadata/954/thumb/1599308176","imdbId":"","language":"en","overview":"After a young woman is kidnapped, her captors soon come to realize that in fact they may be the ones in danger and this young woman has a dark secret inside her.","moviesInCollection":[],"ratingKey":954,"key":"/library/metadata/954","collectionTitle":"","collectionId":-1,"tmdbId":404584},{"name":"Big Brother","year":2018,"posterUrl":"/library/metadata/347/thumb/1599307953","imdbId":"","language":"en","overview":"A soldier-turned-high school teacher uses unusual methods to reach to a class of poor students, while dealing with a greedy entrepreneur and his gang of fighters as well as the government.","moviesInCollection":[],"ratingKey":347,"key":"/library/metadata/347","collectionTitle":"","collectionId":-1,"tmdbId":504056},{"name":"The Conjuring 2","year":2016,"posterUrl":"/library/metadata/2371/thumb/1599308749","imdbId":"","language":"en","overview":"Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.","moviesInCollection":[],"ratingKey":2371,"key":"/library/metadata/2371","collectionTitle":"","collectionId":-1,"tmdbId":259693},{"name":"Sabotage","year":2014,"posterUrl":"/library/metadata/1951/thumb/1599308585","imdbId":"","language":"en","overview":"John \"Breacher\" Wharton leads an elite DEA task force that takes on the world's deadliest drug cartels. When the team successfully executes a high-stakes raid on a cartel safe house, they think their work is done – until, one-by-one, the team members mysteriously start to be eliminated. As the body count rises, everyone is a suspect.","moviesInCollection":[],"ratingKey":1951,"key":"/library/metadata/1951","collectionTitle":"","collectionId":-1,"tmdbId":144336},{"name":"Escape Plan 2 Hades","year":2018,"posterUrl":"/library/metadata/836/thumb/1599308129","imdbId":"","language":"en","overview":"Ray Breslin manages an elite team of security specialists trained in the art of breaking people out of the world's most impenetrable prisons. When his most trusted operative, Shu Ren, is kidnapped and disappears inside the most elaborate prison ever built, Ray must track him down with the help of some of his former friends.","moviesInCollection":[],"ratingKey":836,"key":"/library/metadata/836","collectionTitle":"","collectionId":-1,"tmdbId":440471},{"name":"Death Wish","year":1974,"posterUrl":"/library/metadata/675/thumb/1599308072","imdbId":"","language":"en","overview":"After his wife is murdered by street punks, a pacifistic New York City architect becomes a one-man vigilante squad, prowling the streets for would-be muggers after dark.","moviesInCollection":[],"ratingKey":675,"key":"/library/metadata/675","collectionTitle":"","collectionId":-1,"tmdbId":13939},{"name":"Maze Runner The Scorch Trials","year":2015,"posterUrl":"/library/metadata/1478/thumb/1599308379","imdbId":"","language":"en","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’s vastly superior forces and uncover its shocking plans for them all.","moviesInCollection":[],"ratingKey":1478,"key":"/library/metadata/1478","collectionTitle":"","collectionId":-1,"tmdbId":294254},{"name":"Pulse","year":1988,"posterUrl":"/library/metadata/1822/thumb/1599308528","imdbId":"","language":"en","overview":"An intelligent pulse of electricity is moving from house to house. It terrorizes the occupants by taking control of the appliances, either killing them or causing them to wreck the house in an effort to destroy it. Then it travels along the power lines to the next house, and the terror restarts. Having thus wrecked one household in a quiet neighbourhood, the pulse finds itself in the home of a boy's divorced father whom he is visiting. It gradually takes control of everything, badly injures the stepmother, and traps father and son, who must fight their way out.","moviesInCollection":[],"ratingKey":1822,"key":"/library/metadata/1822","collectionTitle":"","collectionId":-1,"tmdbId":32033},{"name":"The Lord of the Rings The Return of the King","year":2003,"posterUrl":"/library/metadata/2653/thumb/1599308858","imdbId":"","language":"en","overview":"Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile, Frodo and Sam take the ring closer to the heart of Mordor, the dark lord's realm.","moviesInCollection":[],"ratingKey":2653,"key":"/library/metadata/2653","collectionTitle":"","collectionId":-1,"tmdbId":122},{"name":"Vivarium","year":2020,"posterUrl":"/library/metadata/40852/thumb/1599309106","imdbId":"","language":"en","overview":"A young woman and her fiancé 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.","moviesInCollection":[],"ratingKey":40852,"key":"/library/metadata/40852","collectionTitle":"","collectionId":-1,"tmdbId":458305},{"name":"Wild","year":2014,"posterUrl":"/library/metadata/3147/thumb/1599309047","imdbId":"","language":"en","overview":"A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.","moviesInCollection":[],"ratingKey":3147,"key":"/library/metadata/3147","collectionTitle":"","collectionId":-1,"tmdbId":228970},{"name":"The Great Mouse Detective","year":1993,"posterUrl":"/library/metadata/2512/thumb/1599308803","imdbId":"","language":"en","overview":"When the diabolical Professor Ratigan kidnaps London's master toymaker, the brilliant master of disguise Basil of Baker Street and his trusted sidekick Dawson try to elude the ultimate trap and foil the perfect crime.","moviesInCollection":[],"ratingKey":2512,"key":"/library/metadata/2512","collectionTitle":"","collectionId":-1,"tmdbId":9994},{"name":"The Secret Life of Pets","year":2016,"posterUrl":"/library/metadata/2804/thumb/1599308925","imdbId":"","language":"en","overview":"The quiet life of a terrier named Max is upended when his owner takes in Duke, a stray whom Max instantly dislikes.","moviesInCollection":[],"ratingKey":2804,"key":"/library/metadata/2804","collectionTitle":"","collectionId":-1,"tmdbId":328111},{"name":"Sahara","year":2005,"posterUrl":"/library/metadata/1955/thumb/1599308587","imdbId":"","language":"en","overview":"Scouring the ocean depths for treasure-laden shipwrecks is business as usual for a thrill-seeking underwater adventurer and his wisecracking buddy. But when these two cross paths with a beautiful doctor, they find themselves on the ultimate treasure hunt.","moviesInCollection":[],"ratingKey":1955,"key":"/library/metadata/1955","collectionTitle":"","collectionId":-1,"tmdbId":7364},{"name":"Possession","year":1983,"posterUrl":"/library/metadata/1794/thumb/1599308515","imdbId":"","language":"en","overview":"A young woman left her family for an unspecified reason. The husband determines to find out the truth and starts following his wife. At first, he suspects that a man is involved. But gradually, he finds out more and more strange behaviors and bizarre incidents that indicate something more than a possessed love affair.","moviesInCollection":[],"ratingKey":1794,"key":"/library/metadata/1794","collectionTitle":"","collectionId":-1,"tmdbId":21484},{"name":"Marriage Story","year":2019,"posterUrl":"/library/metadata/1459/thumb/1599308370","imdbId":"","language":"en","overview":"A stage director and an actress struggle through a grueling, coast-to-coast divorce that pushes them to their personal extremes.","moviesInCollection":[],"ratingKey":1459,"key":"/library/metadata/1459","collectionTitle":"","collectionId":-1,"tmdbId":492188},{"name":"Hotel Transylvania 2","year":2015,"posterUrl":"/library/metadata/1133/thumb/1599308245","imdbId":"","language":"en","overview":"When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together, Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.","moviesInCollection":[],"ratingKey":1133,"key":"/library/metadata/1133","collectionTitle":"","collectionId":-1,"tmdbId":159824},{"name":"The Suspect","year":2014,"posterUrl":"/library/metadata/2843/thumb/1599308943","imdbId":"","language":"en","overview":"Dong-chul was the best special field agent in North Korea, but he’s abandoned by his government during a mission. While on the run, he looks for his wife and child, who were sold as slaves to China, only to discover their corpses. He soon finds out that his colleague was behind the killing and defects to the South in search of his nemesis. He looks for him during the day, and works as a temp driver at night and as a personal driver for Chairman PARK. One night the chairman is attacked and killed by an assassin, but not before handing over a pair of glasses to Dong-chul. He is now on the run again, accused of the chairman’s murder by the intelligence service, while trying to uncover the secret contained inside the glasses. Little did he know that depending on who ultimately gains control of the secret, it could either become a national threat or treasure.","moviesInCollection":[],"ratingKey":2843,"key":"/library/metadata/2843","collectionTitle":"","collectionId":-1,"tmdbId":242454},{"name":"Savages","year":2012,"posterUrl":"/library/metadata/1961/thumb/1599308590","imdbId":"","language":"en","overview":"Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.","moviesInCollection":[],"ratingKey":1961,"key":"/library/metadata/1961","collectionTitle":"","collectionId":-1,"tmdbId":82525},{"name":"Beverly Hills Cop","year":1984,"posterUrl":"/library/metadata/340/thumb/1599307951","imdbId":"","language":"en","overview":"Tough-talking Detroit cop Axel Foley heads to the rarified world of Beverly Hills in his beat-up Chevy Nova to investigate a friend's murder, but soon realizes he's stumbled onto something much more complicated. Bungling rookie detective, Billy Rosewood joins the fish-out-of-water Axel and shows him the West Los Angeles ropes.","moviesInCollection":[],"ratingKey":340,"key":"/library/metadata/340","collectionTitle":"","collectionId":-1,"tmdbId":90},{"name":"The Atticus Institute","year":2015,"posterUrl":"/library/metadata/2305/thumb/1599308726","imdbId":"","language":"en","overview":"In the early 1970s, Dr. Henry West creates an institute to find people with supernatural abilities. When Judith Winstead comes to the facility, she exhibits amazing abilities that the military wants to turn into a weapon.","moviesInCollection":[],"ratingKey":2305,"key":"/library/metadata/2305","collectionTitle":"","collectionId":-1,"tmdbId":299551},{"name":"A Christmas Story","year":1983,"posterUrl":"/library/metadata/52/thumb/1599307844","imdbId":"","language":"en","overview":"The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.","moviesInCollection":[],"ratingKey":52,"key":"/library/metadata/52","collectionTitle":"","collectionId":-1,"tmdbId":850},{"name":"Major Dundee","year":1965,"posterUrl":"/library/metadata/1444/thumb/1599308362","imdbId":"","language":"en","overview":"During the last winter of the Civil War, cavalry officer Amos Dundee leads a contentious troop of Army regulars, Confederate prisoners and scouts on an expedition into Mexico to destroy a band of Apaches who have been raiding U.S. bases in Texas.","moviesInCollection":[],"ratingKey":1444,"key":"/library/metadata/1444","collectionTitle":"","collectionId":-1,"tmdbId":29715},{"name":"The 2nd","year":2020,"posterUrl":"/library/metadata/48404/thumb/1601544668","imdbId":"","language":"en","overview":"Secret-service agent Vic Davis is on his way to pick up his estranged son, Sean, from his college campus when he finds himself in the middle of a high-stakes terrorist operation. His son's friend Erin Walton, the daughter of Supreme Court Justice Walton is the target, and this armed faction will stop at nothing to kidnap her and use her as leverage for a pending landmark legal case.","moviesInCollection":[],"ratingKey":48404,"key":"/library/metadata/48404","collectionTitle":"","collectionId":-1,"tmdbId":724717},{"name":"Beverly Hills Cop II","year":1987,"posterUrl":"/library/metadata/341/thumb/1599307951","imdbId":"","language":"en","overview":"Axel heads for the land of sunshine and palm trees to find out who shot police Captain Andrew Bogomil. Thanks to a couple of old friends, Axel's investigation uncovers a series of robberies masterminded by a heartless weapons kingpin—and the chase is on.","moviesInCollection":[],"ratingKey":341,"key":"/library/metadata/341","collectionTitle":"","collectionId":-1,"tmdbId":96},{"name":"Metropolis","year":2002,"posterUrl":"/library/metadata/1501/thumb/1599308390","imdbId":"","language":"en","overview":"Duke Red has overseen the construction of a massive Ziggurat to extend his power across the whole planet. Tima, a robot-girl built in the image of his deceased daughter, is at the core of these plans. However, after escaping the Duke's clutches in a laboratory fire, she meets and befriends Kenichi, a boy who's traveled to Metropolis with his detective uncle in search of a scientist wanted for organ trafficking. Will her relationship with Kenichi, and the realization of the truth of her existence, change her destiny?","moviesInCollection":[],"ratingKey":1501,"key":"/library/metadata/1501","collectionTitle":"","collectionId":-1,"tmdbId":9606},{"name":"Dredd","year":2012,"posterUrl":"/library/metadata/778/thumb/1599308109","imdbId":"","language":"en","overview":"In the future, America is a dystopian wasteland. The latest scourge is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and aims to take over the city. The only possibility of stopping her is an elite group of urban police called Judges, who combine the duties of judge, jury and executioner to deliver a brutal brand of swift justice. But even the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isn’t as easy as it seems in this explosive adaptation of the hugely popular comic series.","moviesInCollection":[],"ratingKey":778,"key":"/library/metadata/778","collectionTitle":"","collectionId":-1,"tmdbId":49049},{"name":"Ingrid Goes West","year":2017,"posterUrl":"/library/metadata/1193/thumb/1599308267","imdbId":"","language":"en","overview":"Ingrid becomes obsessed with a social network star named Taylor Sloane who seemingly has a perfect life. But when Ingrid decides to drop everything and move west to be Taylor's friend, her behaviour turns unsettling and dangerous.","moviesInCollection":[],"ratingKey":1193,"key":"/library/metadata/1193","collectionTitle":"","collectionId":-1,"tmdbId":411741},{"name":"The Butterfly Effect","year":2004,"posterUrl":"/library/metadata/2344/thumb/1599308739","imdbId":"","language":"en","overview":"A young man struggles to access sublimated childhood memories. He finds a technique that allows him to travel back into the past, to occupy his childhood body and change history. However, he soon finds that every change he makes has unexpected consequences.","moviesInCollection":[],"ratingKey":2344,"key":"/library/metadata/2344","collectionTitle":"","collectionId":-1,"tmdbId":1954},{"name":"Emperor","year":2013,"posterUrl":"/library/metadata/815/thumb/1599308122","imdbId":"","language":"en","overview":"As the Japanese surrender at the end of WWII, Gen. Fellers is tasked with deciding if Emperor Hirohito will be hanged as a war criminal. Influencing his ruling is his quest to find Aya, an exchange student he met years earlier in the U.S.","moviesInCollection":[],"ratingKey":815,"key":"/library/metadata/815","collectionTitle":"","collectionId":-1,"tmdbId":127372},{"name":"Killerman","year":2019,"posterUrl":"/library/metadata/1304/thumb/1599308308","imdbId":"","language":"en","overview":"A New York City money launderer desperately searches for answers after waking up with no memory, millions in stolen cash and drugs, and an insane crew of dirty cops violently hunting him down.","moviesInCollection":[],"ratingKey":1304,"key":"/library/metadata/1304","collectionTitle":"","collectionId":-1,"tmdbId":492449},{"name":"Kung Fu League","year":2018,"posterUrl":"/library/metadata/1325/thumb/1599308316","imdbId":"","language":"en","overview":"A poor comic book artist summons four legendary Kung Fu masters to learn the highest level of martial arts and help him get his girl.","moviesInCollection":[],"ratingKey":1325,"key":"/library/metadata/1325","collectionTitle":"","collectionId":-1,"tmdbId":523873},{"name":"Death Wish","year":2018,"posterUrl":"/library/metadata/676/thumb/1599308072","imdbId":"","language":"en","overview":"A mild-mannered father is transformed into a killing machine after his family is torn apart by a violent act.","moviesInCollection":[],"ratingKey":676,"key":"/library/metadata/676","collectionTitle":"","collectionId":-1,"tmdbId":395990},{"name":"Almost Human","year":2013,"posterUrl":"/library/metadata/168/thumb/1599307888","imdbId":"","language":"en","overview":"Mark Fisher disappeared from his home in a brilliant flash of blue light almost two years ago. His friend Seth Hampton was the last to see him alive. Now a string of grisly, violent murders leads Seth to believe that Mark is back, and something evil is living inside of him.","moviesInCollection":[],"ratingKey":168,"key":"/library/metadata/168","collectionTitle":"","collectionId":-1,"tmdbId":210910},{"name":"Bad Dreams","year":1988,"posterUrl":"/library/metadata/267/thumb/1599307925","imdbId":"","language":"en","overview":"Unity Field, a \"free love\" cult from the '70s, is mostly remembered for its notorious mass suicide led by Harris, its charismatic leader. While all members are supposed to burn in a fire together, young Cynthia is spared by chance. Years later, the nightmare of Unity Field remains buried in her mind. But when those around Cynthia start killing themselves, and she begins having visions of Harris, she may be forced to confront the past -- before it confronts her.","moviesInCollection":[],"ratingKey":267,"key":"/library/metadata/267","collectionTitle":"","collectionId":-1,"tmdbId":59797},{"name":"Dallas Buyers Club","year":2013,"posterUrl":"/library/metadata/626/thumb/1599308054","imdbId":"","language":"en","overview":"Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.","moviesInCollection":[],"ratingKey":626,"key":"/library/metadata/626","collectionTitle":"","collectionId":-1,"tmdbId":152532},{"name":"A Place at the Table","year":2012,"posterUrl":"/library/metadata/87/thumb/1599307856","imdbId":"","language":"en","overview":"Using personal stories, this powerful documentary illuminates the plight of the 49 million Americans struggling with food insecurity. A single mother, a small-town policeman and a farmer are among those for whom putting food on the table is a daily battle.","moviesInCollection":[],"ratingKey":87,"key":"/library/metadata/87","collectionTitle":"","collectionId":-1,"tmdbId":84198},{"name":"Ace Ventura Pet Detective","year":1994,"posterUrl":"/library/metadata/113/thumb/1599307867","imdbId":"","language":"en","overview":"He's Ace Ventura: Pet Detective. Jim Carrey is on the case to find the Miami Dolphins' missing mascot and quarterback Dan Marino. He goes eyeball to eyeball with a man-eating shark, stakes out the Miami Dolphins and woos and wows the ladies. Whether he's undercover, under fire or underwater, he always gets his man… or beast!","moviesInCollection":[],"ratingKey":113,"key":"/library/metadata/113","collectionTitle":"","collectionId":-1,"tmdbId":3049},{"name":"Detour","year":2016,"posterUrl":"/library/metadata/702/thumb/1599308082","imdbId":"","language":"en","overview":"A young law student, grieving for his dying mother, struggles to decide whether he should kill his unfaithful step-father.","moviesInCollection":[],"ratingKey":702,"key":"/library/metadata/702","collectionTitle":"","collectionId":-1,"tmdbId":356500},{"name":"Last Plane Out","year":1983,"posterUrl":"/library/metadata/1343/thumb/1599308322","imdbId":"","language":"en","overview":"An American journalist covering the civil war in Nicaragua falls in love with a beautiful Sandinista rebel.","moviesInCollection":[],"ratingKey":1343,"key":"/library/metadata/1343","collectionTitle":"","collectionId":-1,"tmdbId":405264},{"name":"Chappie","year":2015,"posterUrl":"/library/metadata/494/thumb/1599308009","imdbId":"","language":"en","overview":"Every child comes into the world full of promise, and none more so than Chappie: he is gifted, special, a prodigy. Like any child, Chappie will come under the influence of his surroundings—some good, some bad—and he will rely on his heart and soul to find his way in the world and become his own man. But there's one thing that makes Chappie different from any one else: he is a robot.","moviesInCollection":[],"ratingKey":494,"key":"/library/metadata/494","collectionTitle":"","collectionId":-1,"tmdbId":198184},{"name":"Resident Evil Afterlife","year":2010,"posterUrl":"/library/metadata/1885/thumb/1599308556","imdbId":"","language":"en","overview":"In a world ravaged by a virus infection, turning its victims into the Undead, Alice continues on her journey to find survivors and lead them to safety. Her deadly battle with the Umbrella Corporation reaches new heights, but Alice gets some unexpected help from an old friend. A new lead that promises a safe haven from the Undead takes them to Los Angeles, but when they arrive the city is overrun by thousands of Undead - and Alice and her comrades are about to step into a deadly trap.","moviesInCollection":[],"ratingKey":1885,"key":"/library/metadata/1885","collectionTitle":"","collectionId":-1,"tmdbId":35791},{"name":"The Conjuring","year":2013,"posterUrl":"/library/metadata/2370/thumb/1599308748","imdbId":"","language":"en","overview":"Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.","moviesInCollection":[],"ratingKey":2370,"key":"/library/metadata/2370","collectionTitle":"","collectionId":-1,"tmdbId":138843},{"name":"Creed II","year":2018,"posterUrl":"/library/metadata/594/thumb/1599308045","imdbId":"","language":"en","overview":"Between personal obligations and training for his next big fight against an opponent with ties to his family's past, Adonis Creed is up against the challenge of his life.","moviesInCollection":[],"ratingKey":594,"key":"/library/metadata/594","collectionTitle":"","collectionId":-1,"tmdbId":480530},{"name":"Focus","year":2015,"posterUrl":"/library/metadata/924/thumb/1599308162","imdbId":"","language":"en","overview":"Nicky, an accomplished con artist, gets romantically involved with his disciple Jess but later ends their relationship. Years later, she returns as a femme fatale to spoil his plans.","moviesInCollection":[],"ratingKey":924,"key":"/library/metadata/924","collectionTitle":"","collectionId":-1,"tmdbId":256591},{"name":"A Private War","year":2018,"posterUrl":"/library/metadata/88/thumb/1599307857","imdbId":"","language":"en","overview":"One of the most celebrated war correspondents of our time, Marie Colvin is an utterly fearless and rebellious spirit, driven to the frontlines of conflicts across the globe to give voice to the voiceless.","moviesInCollection":[],"ratingKey":88,"key":"/library/metadata/88","collectionTitle":"","collectionId":-1,"tmdbId":475132},{"name":"Takers","year":2010,"posterUrl":"/library/metadata/2238/thumb/1599308702","imdbId":"","language":"en","overview":"A seasoned team of bank robbers, including Gordon Jennings (Idris Elba), John Rahway (Paul Walker), A.J. (Hayden Christensen), and brothers Jake (Michael Ealy) and Jesse Attica (Chris Brown) successfully complete their latest heist and lead a life of luxury while planning their next job. When Ghost (Tip T.I. Harris), a former member of their team, is released from prison he convinces the group to strike an armored car carrying $20 million. As the \"Takers\" carefully plot out their strategy and draw nearer to exacting the grand heist, a reckless police officer (Matt Dillon) inches closer to apprehending the criminals.","moviesInCollection":[],"ratingKey":2238,"key":"/library/metadata/2238","collectionTitle":"","collectionId":-1,"tmdbId":22907},{"name":"Starbuck","year":2011,"posterUrl":"/library/metadata/2152/thumb/1599308672","imdbId":"","language":"en","overview":"Starbuck is a 2011 Canadian comedy film directed by Ken Scott and written by Martin Petit and Ken Scott. The main character David Wozniak is a perpetual adolescent who discovers that, as a sperm donor, he has fathered 533 children. David, a deliveryman for a butcher shop, is being pursued by thugs because he owes them money. Next, he is advised that more than 100 of his offspring are trying to force the fertility clinic to reveal the true identity of \"Starbuck\", the pseudonym he used when donating sperm. In addition, his girlfriend Valérie is pregnant with his child but doesn't feel that he is mature enough to be a father. The film's title refers to a Canadian Holstein bull who produced hundreds of thousands of progeny by artificial insemination in the 1980s and 1990s.","moviesInCollection":[],"ratingKey":2152,"key":"/library/metadata/2152","collectionTitle":"","collectionId":-1,"tmdbId":79108},{"name":"The World's Fastest Indian","year":2005,"posterUrl":"/library/metadata/2906/thumb/1599308966","imdbId":"","language":"en","overview":"The life story of New Zealander Burt Munro, who spent years building a 1920 Indian motorcycle—a bike which helped him set the land-speed world record at Utah's Bonneville Salt Flats in 1967.","moviesInCollection":[],"ratingKey":2906,"key":"/library/metadata/2906","collectionTitle":"","collectionId":-1,"tmdbId":9912},{"name":"We're the Millers","year":2013,"posterUrl":"/library/metadata/3119/thumb/1599309037","imdbId":"","language":"en","overview":"A veteran pot dealer creates a fake family as part of his plan to move a huge shipment of weed into the U.S. from Mexico.","moviesInCollection":[],"ratingKey":3119,"key":"/library/metadata/3119","collectionTitle":"","collectionId":-1,"tmdbId":138832},{"name":"Pleasantville","year":1998,"posterUrl":"/library/metadata/1760/thumb/1599308502","imdbId":"","language":"en","overview":"Geeky teenager David and his popular twin sister, Jennifer, get sucked into the black-and-white world of a 1950s TV sitcom called \"Pleasantville,\" and find a world where everything is peachy keen all the time. But when Jennifer's modern attitude disrupts Pleasantville's peaceful but boring routine, she literally brings color into its life.","moviesInCollection":[],"ratingKey":1760,"key":"/library/metadata/1760","collectionTitle":"","collectionId":-1,"tmdbId":2657},{"name":"Mission Impossible II","year":2000,"posterUrl":"/library/metadata/1523/thumb/1599308400","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1523,"key":"/library/metadata/1523","collectionTitle":"","collectionId":-1,"tmdbId":955},{"name":"Some Like It Hot","year":2010,"posterUrl":"/library/metadata/47482/thumb/1599309185","imdbId":"","language":"en","overview":"Two musicians witness a mob hit and struggle to find a way out of the city before they are found by the gangsters. Their only opportunity is to join an all-girl band as they leave on a tour. To make their getaway they must first disguise themselves as women, then keep their identities secret and deal with the problems this brings - such as an attractive bandmate and a very determined suitor.","moviesInCollection":[],"ratingKey":47482,"key":"/library/metadata/47482","collectionTitle":"","collectionId":-1,"tmdbId":239},{"name":"Extraction","year":2020,"posterUrl":"/library/metadata/39930/thumb/1599309100","imdbId":"","language":"en","overview":"Tyler Rake, a fearless black market mercenary, embarks on the most deadly extraction of his career when he's enlisted to rescue the kidnapped son of an imprisoned international crime lord.","moviesInCollection":[],"ratingKey":39930,"key":"/library/metadata/39930","collectionTitle":"","collectionId":-1,"tmdbId":545609},{"name":"Ana","year":2020,"posterUrl":"/library/metadata/27834/thumb/1599309072","imdbId":"","language":"en","overview":"Ana meets Rafa in a chance encounter and they embark on a road trip to try and save him from bankruptcy, or worse.","moviesInCollection":[],"ratingKey":27834,"key":"/library/metadata/27834","collectionTitle":"","collectionId":-1,"tmdbId":646453},{"name":"Silver Linings Playbook","year":2012,"posterUrl":"/library/metadata/2039/thumb/1599308622","imdbId":"","language":"en","overview":"After spending eight months in a mental institution, a former teacher moves back in with his parents and tries to reconcile with his ex-wife.","moviesInCollection":[],"ratingKey":2039,"key":"/library/metadata/2039","collectionTitle":"","collectionId":-1,"tmdbId":82693},{"name":"Volcano High","year":2001,"posterUrl":"/library/metadata/3087/thumb/1599309027","imdbId":"","language":"en","overview":"Volcano High School is marking its 108th. Every student is a martial arts expert, so it is not surprising to see tea leaves moving in the shape of dragons or hallway windows shattering into bits with no one touching them. At Volcano High, the legend of the Secret Manuscript - the one who inherits these writings will rule the world - has been continuously passed down. From the outside, Volcano High School seems peaceful. But a bitter showdown for the Secret Manuscript is at hand.","moviesInCollection":[],"ratingKey":3087,"key":"/library/metadata/3087","collectionTitle":"","collectionId":-1,"tmdbId":23834},{"name":"I, Robot","year":2004,"posterUrl":"/library/metadata/1165/thumb/1599308256","imdbId":"","language":"en","overview":"In 2035, where robots are common-place and abide by the three laws of robotics, a techno-phobic 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.","moviesInCollection":[],"ratingKey":1165,"key":"/library/metadata/1165","collectionTitle":"","collectionId":-1,"tmdbId":2048},{"name":"Rambo III","year":1988,"posterUrl":"/library/metadata/1843/thumb/1599308537","imdbId":"","language":"en","overview":"Combat has taken its toll on Rambo, but he's finally begun to find inner peace in a monastery. When Rambo's friend and mentor Col. Trautman asks for his help on a top secret mission to Afghanistan, Rambo declines but must reconsider when Trautman is captured.","moviesInCollection":[],"ratingKey":1843,"key":"/library/metadata/1843","collectionTitle":"","collectionId":-1,"tmdbId":1370},{"name":"Molly's Game","year":2017,"posterUrl":"/library/metadata/1527/thumb/1599308401","imdbId":"","language":"en","overview":"Molly Bloom, a young skier and former Olympic hopeful becomes a successful entrepreneur (and a target of an FBI investigation) when she establishes a high-stakes, international poker game.","moviesInCollection":[],"ratingKey":1527,"key":"/library/metadata/1527","collectionTitle":"","collectionId":-1,"tmdbId":396371},{"name":"The Counselor","year":2013,"posterUrl":"/library/metadata/2377/thumb/1599308751","imdbId":"","language":"en","overview":"A lawyer finds himself in far over his head when he attempts to get involved in drug trafficking.","moviesInCollection":[],"ratingKey":2377,"key":"/library/metadata/2377","collectionTitle":"","collectionId":-1,"tmdbId":109091},{"name":"Dunkirk","year":2017,"posterUrl":"/library/metadata/798/thumb/1599308116","imdbId":"","language":"en","overview":"The story of the miraculous evacuation of Allied soldiers from Belgium, Britain, Canada and France, who were cut off and surrounded by the German army from the beaches and harbour of Dunkirk between May 26th and June 4th 1940 during World War II.","moviesInCollection":[],"ratingKey":798,"key":"/library/metadata/798","collectionTitle":"","collectionId":-1,"tmdbId":374720},{"name":"Batman Unlimited Mechs vs. Mutants","year":2016,"posterUrl":"/library/metadata/47404/thumb/1599309181","imdbId":"","language":"en","overview":"Mr. Freeze turns Killer Croc and Bane into super-sized monsters, and they bash their way through downtown Gotham until the Caped Crusader and his team of heroes join the fight in their giant robot mechs.","moviesInCollection":[],"ratingKey":47404,"key":"/library/metadata/47404","collectionTitle":"","collectionId":-1,"tmdbId":411802},{"name":"Deck the Halls","year":2006,"posterUrl":"/library/metadata/681/thumb/1599308074","imdbId":"","language":"en","overview":"Determined to unseat Steve Finch's reign as the town's holiday season king, Buddy Hall plasters his house with so many decorative lights that it'll be visible from space! When their wives bond, and their kids follow suit, the two men only escalate their rivalry - and their decorating.","moviesInCollection":[],"ratingKey":681,"key":"/library/metadata/681","collectionTitle":"","collectionId":-1,"tmdbId":9969},{"name":"Brick","year":2005,"posterUrl":"/library/metadata/426/thumb/1599307982","imdbId":"","language":"en","overview":"A teenage loner pushes his way into the underworld of a high school crime ring to investigate the disappearance of his ex-girlfriend.","moviesInCollection":[],"ratingKey":426,"key":"/library/metadata/426","collectionTitle":"","collectionId":-1,"tmdbId":9270},{"name":"Spenser Confidential","year":2020,"posterUrl":"/library/metadata/2107/thumb/1599308653","imdbId":"","language":"en","overview":"Spenser, a former Boston patrolman who just got out from prison, teams up with Hawk, an aspiring fighter, to unravel the truth behind the death of two police officers.","moviesInCollection":[],"ratingKey":2107,"key":"/library/metadata/2107","collectionTitle":"","collectionId":-1,"tmdbId":581600},{"name":"Beauty and the Beast","year":2017,"posterUrl":"/library/metadata/325/thumb/1599307945","imdbId":"","language":"en","overview":"A live-action adaptation of Disney's version of the classic tale of a cursed prince and a beautiful young woman who helps him break the spell.","moviesInCollection":[],"ratingKey":325,"key":"/library/metadata/325","collectionTitle":"","collectionId":-1,"tmdbId":321612},{"name":"Dragon Ball Z Lord Slug","year":1991,"posterUrl":"/library/metadata/766/thumb/1599308105","imdbId":"","language":"en","overview":"A Super Namekian named Slug comes to invade Earth. But the Z Warriors do their best to stop Slug and his gang.","moviesInCollection":[],"ratingKey":766,"key":"/library/metadata/766","collectionTitle":"","collectionId":-1,"tmdbId":39102},{"name":"Terminator Salvation","year":2009,"posterUrl":"/library/metadata/41819/thumb/1599309130","imdbId":"","language":"en","overview":"All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.","moviesInCollection":[],"ratingKey":41819,"key":"/library/metadata/41819","collectionTitle":"","collectionId":-1,"tmdbId":534},{"name":"Glass","year":2019,"posterUrl":"/library/metadata/1003/thumb/1599308194","imdbId":"","language":"en","overview":"In a series of escalating encounters, former security guard David Dunn uses his supernatural abilities to track Kevin Wendell Crumb, a disturbed man who has twenty-four personalities. Meanwhile, the shadowy presence of Elijah Price emerges as an orchestrator who holds secrets critical to both men.","moviesInCollection":[],"ratingKey":1003,"key":"/library/metadata/1003","collectionTitle":"","collectionId":-1,"tmdbId":450465},{"name":"The Lighthouse","year":2019,"posterUrl":"/library/metadata/2637/thumb/1599308850","imdbId":"","language":"en","overview":"Two lighthouse keepers try to maintain their sanity while living on a remote and mysterious New England island in the 1890s.","moviesInCollection":[],"ratingKey":2637,"key":"/library/metadata/2637","collectionTitle":"","collectionId":-1,"tmdbId":503919},{"name":"Replicas","year":2019,"posterUrl":"/library/metadata/1878/thumb/1599308553","imdbId":"","language":"en","overview":"A scientist becomes obsessed with returning his family to normalcy after a terrible accident.","moviesInCollection":[],"ratingKey":1878,"key":"/library/metadata/1878","collectionTitle":"","collectionId":-1,"tmdbId":300681},{"name":"Grandma's Boy","year":2006,"posterUrl":"/library/metadata/1028/thumb/1599308204","imdbId":"","language":"en","overview":"Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But he gets kicked out of his apartment and is forced to move in with his grandmother.","moviesInCollection":[],"ratingKey":1028,"key":"/library/metadata/1028","collectionTitle":"","collectionId":-1,"tmdbId":9900},{"name":"Black Water","year":2007,"posterUrl":"/library/metadata/48355/thumb/1600865853","imdbId":"","language":"en","overview":"A terrifying tale of survival in the mangrove swamps of Northern Australia.","moviesInCollection":[],"ratingKey":48355,"key":"/library/metadata/48355","collectionTitle":"","collectionId":-1,"tmdbId":14138},{"name":"Beauty and the Beast","year":1991,"posterUrl":"/library/metadata/324/thumb/1599307944","imdbId":"","language":"en","overview":"Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.","moviesInCollection":[],"ratingKey":324,"key":"/library/metadata/324","collectionTitle":"","collectionId":-1,"tmdbId":10020},{"name":"U.S. Marshals","year":1998,"posterUrl":"/library/metadata/3032/thumb/1599309008","imdbId":"","language":"en","overview":"U.S. Marshal Sam Gerard is accompanying a plane load of convicts from Chicago to New York. The plane crashes spectacularly, and Mark Sheridan escapes. But when Diplomatic Security Agent John Royce is assigned to help Gerard recapture Sheridan, it becomes clear that Sheridan is more than just another murderer.","moviesInCollection":[],"ratingKey":3032,"key":"/library/metadata/3032","collectionTitle":"","collectionId":-1,"tmdbId":11808},{"name":"Aquaman","year":2019,"posterUrl":"/library/metadata/215/thumb/1599307906","imdbId":"","language":"en","overview":"Once home to the most advanced civilization on Earth, Atlantis is now an underwater kingdom ruled by the power-hungry King Orm. With a vast army at his disposal, Orm plans to conquer the remaining oceanic people and then the surface world. Standing in his way is Arthur Curry, Orm's half-human, half-Atlantean brother and true heir to the throne.","moviesInCollection":[],"ratingKey":215,"key":"/library/metadata/215","collectionTitle":"","collectionId":-1,"tmdbId":297802},{"name":"Dragon Ball Z Dead Zone","year":1989,"posterUrl":"/library/metadata/764/thumb/1599308105","imdbId":"","language":"en","overview":"Gohan has been kidnapped! To make matters worse, the evil Garlic Jr. is gathering the Dragonballs to wish for immortality. Only then will Garlic Jr. be able to take over the Earth in order to gain revenge for the death of his father. Goku rushes to save Gohan, but arrives at the fortress just as Garlic Jr. summons the Eternal Dragon! Krillin and Piccolo try to help Goku, but their combined powers.","moviesInCollection":[],"ratingKey":764,"key":"/library/metadata/764","collectionTitle":"","collectionId":-1,"tmdbId":28609},{"name":"Hellboy","year":2019,"posterUrl":"/library/metadata/1087/thumb/1599308228","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1087,"key":"/library/metadata/1087","collectionTitle":"","collectionId":-1,"tmdbId":456740},{"name":"How to Be a Latin Lover","year":2017,"posterUrl":"/library/metadata/1141/thumb/1599308247","imdbId":"","language":"en","overview":"An aging Latin lover gets dumped by his sugar mama and must fend for himself in a harsh world.","moviesInCollection":[],"ratingKey":1141,"key":"/library/metadata/1141","collectionTitle":"","collectionId":-1,"tmdbId":425134},{"name":"General's Son","year":1990,"posterUrl":"/library/metadata/972/thumb/1599308183","imdbId":"","language":"en","overview":"Kim Doo-han lost his mom at the age of eight and he survives on the streets as a singing beggar. His natural born fighting skills places him on the mean streets of Jongro with the kisaeng house Woomigwan at the center. He is soon recognized for his incredible strength and ability. He finds out through Shin Ma-jeok, the head of a student gang, that he is the son of General Kim Jwa-jin who fought against the Japanese army. Meanwhile, the Yakuzas expand their sphere of influence and try to take over the Jongro streets but Doo-han protects the Korean vendors of Jongro and wins their respect. When the head of Woomigwan, Kim Gi-hwan is arrested, Doo-han becomes the leader of the Jongro gang.","moviesInCollection":[],"ratingKey":972,"key":"/library/metadata/972","collectionTitle":"","collectionId":-1,"tmdbId":245382},{"name":"XX","year":2017,"posterUrl":"/library/metadata/3181/thumb/1599309058","imdbId":"","language":"en","overview":"This all-female horror anthology features four dark tales from four fiercely talented women.","moviesInCollection":[],"ratingKey":3181,"key":"/library/metadata/3181","collectionTitle":"","collectionId":-1,"tmdbId":297160},{"name":"The Great Outdoors","year":1988,"posterUrl":"/library/metadata/2514/thumb/1599308804","imdbId":"","language":"en","overview":"It's vacation time for outdoorsy Chicago man Chet Ripley, along with his wife, Connie, and their two kids, Buck and Ben. But a serene weekend of fishing at a Wisconsin lakeside cabin gets crashed by Connie's obnoxious brother-in-law, Roman Craig, his wife, Kate, and the couple's two daughters. As the excursion wears on, the Ripleys find themselves at odds with the stuffy Craig family.","moviesInCollection":[],"ratingKey":2514,"key":"/library/metadata/2514","collectionTitle":"","collectionId":-1,"tmdbId":2617},{"name":"Harry Potter and the Goblet of Fire","year":2005,"posterUrl":"/library/metadata/1071/thumb/1599308221","imdbId":"","language":"en","overview":"Harry starts his fourth year at Hogwarts, competes in the treacherous Triwizard Tournament and faces the evil Lord Voldemort. Ron and Hermione help Harry manage the pressure – but Voldemort lurks, awaiting his chance to destroy Harry and all that he stands for.","moviesInCollection":[],"ratingKey":1071,"key":"/library/metadata/1071","collectionTitle":"","collectionId":-1,"tmdbId":674},{"name":"Arctic","year":2019,"posterUrl":"/library/metadata/216/thumb/1599307907","imdbId":"","language":"en","overview":"A man stranded in the Arctic is finally about to receive his long awaited rescue. However, after a tragic accident, his opportunity is lost and he must then decide whether to remain in the relative safety of his camp or embark on a deadly trek through the unknown for potential salvation.","moviesInCollection":[],"ratingKey":216,"key":"/library/metadata/216","collectionTitle":"","collectionId":-1,"tmdbId":453755},{"name":"Los Bandoleros","year":2009,"posterUrl":"/library/metadata/46044/thumb/1599309154","imdbId":"","language":"en","overview":"The film tells the back story about the characters and events leading up to the explosive oil truck heist in Fast & Furious.","moviesInCollection":[],"ratingKey":46044,"key":"/library/metadata/46044","collectionTitle":"","collectionId":-1,"tmdbId":253835},{"name":"My Best Friend's Girl","year":2008,"posterUrl":"/library/metadata/1571/thumb/1599308420","imdbId":"","language":"en","overview":"When Dustin's girlfriend, Alexis, breaks up with him, he employs his best buddy, Tank, to take her out on the worst rebound date imaginable in the hopes that it will send her running back into his arms. But when Tank begins to really fall for Alexis, he finds himself in an impossible position.","moviesInCollection":[],"ratingKey":1571,"key":"/library/metadata/1571","collectionTitle":"","collectionId":-1,"tmdbId":13596},{"name":"Crawl","year":2019,"posterUrl":"/library/metadata/588/thumb/1599308043","imdbId":"","language":"en","overview":"When a huge hurricane hits her hometown in Florida, Haley ignores evacuation orders to look for her father. After finding him badly wounded, both are trapped by the flood. With virtually no time to escape the storm, they discover that rising water levels are the least of their problems.","moviesInCollection":[],"ratingKey":588,"key":"/library/metadata/588","collectionTitle":"","collectionId":-1,"tmdbId":511987},{"name":"Overlord","year":2018,"posterUrl":"/library/metadata/1682/thumb/1599308469","imdbId":"","language":"en","overview":"France, June 1944. On the eve of D-Day, some American paratroopers fall behind enemy lines after their aircraft crashes while on a mission to destroy a radio tower in a small village near the beaches of Normandy. After reaching their target, the surviving paratroopers realise that, in addition to fighting the Nazi troops that patrol the village, they also must fight against something else.","moviesInCollection":[],"ratingKey":1682,"key":"/library/metadata/1682","collectionTitle":"","collectionId":-1,"tmdbId":438799},{"name":"The Imposter","year":2012,"posterUrl":"/library/metadata/2579/thumb/1599308828","imdbId":"","language":"en","overview":"In 1994 a 13-year-old boy disappeared without a trace from his home in San Antonio, Texas. Three and a half years later he is found alive thousands of miles away in a village in southern Spain with a horrifying story of kidnap and torture. His family is overjoyed to bring him home. But all is not quite as it seems.","moviesInCollection":[],"ratingKey":2579,"key":"/library/metadata/2579","collectionTitle":"","collectionId":-1,"tmdbId":84287},{"name":"The Secret Garden","year":2020,"posterUrl":"/library/metadata/48491/thumb/1601904512","imdbId":"","language":"en","overview":"Mary Lennox is born in India to wealthy British parents who never wanted her. When her parents suddenly die, she is sent back to England to live with her uncle. She meets her sickly cousin, and the two children find a wondrous secret garden lost in the grounds of Misselthwaite Manor.","moviesInCollection":[],"ratingKey":48491,"key":"/library/metadata/48491","collectionTitle":"","collectionId":-1,"tmdbId":521034},{"name":"Zathura A Space Adventure","year":2005,"posterUrl":"/library/metadata/3198/thumb/1599309064","imdbId":"","language":"en","overview":"After their father is called into work, two young boys, Walter and Danny, are left in the care of their teenage sister, Lisa, and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut, the boys attempt to return home.","moviesInCollection":[],"ratingKey":3198,"key":"/library/metadata/3198","collectionTitle":"","collectionId":-1,"tmdbId":6795},{"name":"The Courier","year":2019,"posterUrl":"/library/metadata/2378/thumb/1599308751","imdbId":"","language":"en","overview":"This intense action-thriller unfolds in real time as two embattled souls fight for their lives. Gary Oldman stars as a vicious crime boss out to kill Nick, the lone witness set to testify against him. He hires a mysterious female motorcycle courier to unknowingly deliver a poison-gas bomb to slay Nick, but after she rescues Nick from certain death, the duo must confront an army of ruthless hired killers in order to survive the night.","moviesInCollection":[],"ratingKey":2378,"key":"/library/metadata/2378","collectionTitle":"","collectionId":-1,"tmdbId":611914},{"name":"Black Mass","year":2015,"posterUrl":"/library/metadata/365/thumb/1599307960","imdbId":"","language":"en","overview":"The true story of Whitey Bulger, the brother of a state senator and the most infamous violent criminal in the history of South Boston, who became an FBI informant to take down a Mafia family invading his turf.","moviesInCollection":[],"ratingKey":365,"key":"/library/metadata/365","collectionTitle":"","collectionId":-1,"tmdbId":261023},{"name":"X+Y","year":2015,"posterUrl":"/library/metadata/3173/thumb/1599309056","imdbId":"","language":"en","overview":"A socially awkward teenage math prodigy finds new confidence and new friendships when he lands a spot on the British squad at the International Mathematics Olympiad.","moviesInCollection":[],"ratingKey":3173,"key":"/library/metadata/3173","collectionTitle":"","collectionId":-1,"tmdbId":278236},{"name":"Sicario Day of the Soldado","year":2018,"posterUrl":"/library/metadata/2036/thumb/1599308621","imdbId":"","language":"en","overview":"Agent Matt Graver teams up with operative Alejandro Gillick to prevent Mexican drug cartels from smuggling terrorists across the United States border.","moviesInCollection":[],"ratingKey":2036,"key":"/library/metadata/2036","collectionTitle":"","collectionId":-1,"tmdbId":400535},{"name":"Addams Family Values","year":1993,"posterUrl":"/library/metadata/121/thumb/1599307870","imdbId":"","language":"en","overview":"Siblings Wednesday and Pugsley Addams will stop at nothing to get rid of Pubert, the new baby boy adored by parents Gomez and Morticia. Things go from bad to worse when the new \"black widow\" nanny, Debbie Jellinsky, launches her plan to add Fester to her collection of dead husbands.","moviesInCollection":[],"ratingKey":121,"key":"/library/metadata/121","collectionTitle":"","collectionId":-1,"tmdbId":2758},{"name":"The Karate Kid","year":2010,"posterUrl":"/library/metadata/2600/thumb/1599308836","imdbId":"","language":"en","overview":"12-year-old Dre Parker could have been the most popular kid in Detroit, but his mother's latest career move has landed him in China. Dre immediately falls for his classmate Mei Ying but the cultural differences make such a friendship impossible. Even worse, Dre's feelings make him an enemy of the class bully, Cheng. With no friends in a strange land, Dre has nowhere to turn but maintenance man Mr. Han, who is a kung fu master. As Han teaches Dre that kung fu is not about punches and parries, but maturity and calm, Dre realizes that facing down the bullies will be the fight of his life.","moviesInCollection":[],"ratingKey":2600,"key":"/library/metadata/2600","collectionTitle":"","collectionId":-1,"tmdbId":38575},{"name":"Dragon Ball Z Bardock - The Father of Goku","year":2008,"posterUrl":"/library/metadata/757/thumb/1599308103","imdbId":"","language":"en","overview":"Bardock, Son Goku's father, is a low-ranking Saiyan soldier who was given the power to see into the future by the last remaining alien on a planet he just destroyed. He witnesses the destruction of his race and must now do his best to stop Frieza's impending massacre.","moviesInCollection":[],"ratingKey":757,"key":"/library/metadata/757","collectionTitle":"","collectionId":-1,"tmdbId":39323},{"name":"Support the Girls","year":2018,"posterUrl":"/library/metadata/2219/thumb/1599308696","imdbId":"","language":"en","overview":"Lisa Conroy is general manager at a highway-side 'sports bar with curves', Double Whammies. She nurtures and protects her employees fiercely - but over the course of one trying day, her optimism is battered from every direction... Double Whammies sells a big, weird American fantasy, but what happens when reality pokes a bunch of holes in it?","moviesInCollection":[],"ratingKey":2219,"key":"/library/metadata/2219","collectionTitle":"","collectionId":-1,"tmdbId":456086},{"name":"Sweet November","year":2001,"posterUrl":"/library/metadata/2224/thumb/1599308698","imdbId":"","language":"en","overview":"Nelson is a man devoted to his advertising career in San Francisco. One day, while taking a driving test at the DMV, he meets Sara. She is very different from the other women in his life. Nelson causes her to miss out on taking the test and later that day she tracks him down. One thing leads to another and Nelson ends up living with her through a November that will change his life forever.","moviesInCollection":[],"ratingKey":2224,"key":"/library/metadata/2224","collectionTitle":"","collectionId":-1,"tmdbId":1921},{"name":"Atomic Blonde","year":2017,"posterUrl":"/library/metadata/239/thumb/1599307916","imdbId":"","language":"en","overview":"An undercover MI6 agent is sent to Berlin during the Cold War to investigate the murder of a fellow agent and recover a missing list of double agents.","moviesInCollection":[],"ratingKey":239,"key":"/library/metadata/239","collectionTitle":"","collectionId":-1,"tmdbId":341013},{"name":"Dog Soldiers","year":2002,"posterUrl":"/library/metadata/725/thumb/1599308091","imdbId":"","language":"en","overview":"A squad of British soldiers on training in the lonesome Scottish wilderness find a wounded Special Forces captain and the remains of his team. As they encounter zoologist Megan, it turns out that werewolves are active in the region. They have to prepare for some action as the there will be a full moon tonight...","moviesInCollection":[],"ratingKey":725,"key":"/library/metadata/725","collectionTitle":"","collectionId":-1,"tmdbId":11880},{"name":"Saw","year":2004,"posterUrl":"/library/metadata/41023/thumb/1599309117","imdbId":"","language":"en","overview":"Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying...","moviesInCollection":[],"ratingKey":41023,"key":"/library/metadata/41023","collectionTitle":"","collectionId":-1,"tmdbId":176},{"name":"Towelhead","year":2008,"posterUrl":"/library/metadata/2965/thumb/1599308985","imdbId":"","language":"en","overview":"A young Arab-American girl struggles with her sexual obsession, a bigoted Army reservist and her strict father during the Gulf War.","moviesInCollection":[],"ratingKey":2965,"key":"/library/metadata/2965","collectionTitle":"","collectionId":-1,"tmdbId":10190},{"name":"Robin Hood Men in Tights","year":1993,"posterUrl":"/library/metadata/1919/thumb/1599308571","imdbId":"","language":"en","overview":"Robin Hood comes home after fighting in the Crusades to learn that the noble King Richard is in exile and that the despotic King John now rules England, with the help of the Sheriff of Rottingham. Robin Hood assembles a band of fellow patriots to do battle with King John and the Sheriff.","moviesInCollection":[],"ratingKey":1919,"key":"/library/metadata/1919","collectionTitle":"","collectionId":-1,"tmdbId":8005},{"name":"Sergio","year":2020,"posterUrl":"/library/metadata/39868/thumb/1599309098","imdbId":"","language":"en","overview":"A sweeping drama set in the chaotic aftermath of the US invasion of Iraq, where the life of top UN diplomat Sergio Vieira de Mello hangs in the balance during the most treacherous mission of his career.","moviesInCollection":[],"ratingKey":39868,"key":"/library/metadata/39868","collectionTitle":"","collectionId":-1,"tmdbId":653744},{"name":"The Farewell","year":2019,"posterUrl":"/library/metadata/2453/thumb/1599308780","imdbId":"","language":"en","overview":"A headstrong Chinese-American woman returns to China when her beloved grandmother is given a terminal diagnosis. Billi struggles with her family's decision to keep grandma in the dark about her own illness as they all stage an impromptu wedding to see grandma one last time.","moviesInCollection":[],"ratingKey":2453,"key":"/library/metadata/2453","collectionTitle":"","collectionId":-1,"tmdbId":565310},{"name":"28 Days Later","year":2003,"posterUrl":"/library/metadata/27149/thumb/1599309068","imdbId":"","language":"en","overview":"Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.","moviesInCollection":[],"ratingKey":27149,"key":"/library/metadata/27149","collectionTitle":"","collectionId":-1,"tmdbId":170},{"name":"Old Dogs","year":2009,"posterUrl":"/library/metadata/1641/thumb/1599308451","imdbId":"","language":"en","overview":"Charlie and Dan have been best friends and business partners for thirty years; their Manhattan public relations firm is on the verge of a huge business deal with a Japanese company. With two weeks to sew up the contract, Dan gets a surprise: a woman he married on a drunken impulse nearly nine years before (annulled the next day) shows up to tell him he's the father of her twins, now seven, and she'll be in jail for 14 days for a political protest. Dan volunteers to keep the tykes, although he's up tight and clueless. With Charlie's help is there any way they can be dad and uncle, meet the kids' expectations, and still land the account?","moviesInCollection":[],"ratingKey":1641,"key":"/library/metadata/1641","collectionTitle":"","collectionId":-1,"tmdbId":22949},{"name":"Dragon Ball Z The Return of Cooler","year":1992,"posterUrl":"/library/metadata/768/thumb/1599308106","imdbId":"","language":"en","overview":"Cooler has resurrected himself as a robot and is enslaving the people of New Namek. Goku and the gang must help.","moviesInCollection":[],"ratingKey":768,"key":"/library/metadata/768","collectionTitle":"","collectionId":-1,"tmdbId":39103},{"name":"Only The Brave","year":2006,"posterUrl":"/library/metadata/1662/thumb/1599308461","imdbId":"","language":"en","overview":"A searing portrait of war and prejudice, 'Only the Brave' takes you on a haunting journey into the hearts and minds of the forgotten heroes of WWII - the Japanese-American 100th/442nd.","moviesInCollection":[],"ratingKey":1662,"key":"/library/metadata/1662","collectionTitle":"","collectionId":-1,"tmdbId":31101},{"name":"Blade Runner","year":1982,"posterUrl":"/library/metadata/374/thumb/1599307964","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":374,"key":"/library/metadata/374","collectionTitle":"","collectionId":-1,"tmdbId":78},{"name":"Mean Girls 2","year":2011,"posterUrl":"/library/metadata/1482/thumb/1599308380","imdbId":"","language":"en","overview":"The story revolves around a new high school student, Jo (Meaghan Martin) , who agrees to befriend an outcast, Abby (Jennifer Stone), at the urging of Abby's wealthy father in exchange for paying all of Jo's costs for the college of her dreams. Jo and Abby team up to take on the school's mean girls, the Plastics.","moviesInCollection":[],"ratingKey":1482,"key":"/library/metadata/1482","collectionTitle":"","collectionId":-1,"tmdbId":51481},{"name":"The Death of Stalin","year":2018,"posterUrl":"/library/metadata/2406/thumb/1599308761","imdbId":"","language":"en","overview":"When tyrannical dictator Josef Stalin dies in 1953, his parasitic cronies square off in a frantic power struggle to become the next Soviet leader. Among the contenders are the dweebish Georgy Malenkov, the wily Nikita Khrushchev and Lavrenti Beria, the sadistic secret police chief.","moviesInCollection":[],"ratingKey":2406,"key":"/library/metadata/2406","collectionTitle":"","collectionId":-1,"tmdbId":402897},{"name":"Maverick","year":1994,"posterUrl":"/library/metadata/1472/thumb/1599308376","imdbId":"","language":"en","overview":"Maverick is a gambler who would rather con someone than fight them, and needs an additional three thousand dollars in order to enter a winner-takes-all poker game that begins in a few days, so he joins forces with a woman gambler with a marvellous southern accent, and the two try and enter the game.","moviesInCollection":[],"ratingKey":1472,"key":"/library/metadata/1472","collectionTitle":"","collectionId":-1,"tmdbId":9359},{"name":"Munchies","year":1987,"posterUrl":"/library/metadata/1564/thumb/1599308417","imdbId":"","language":"en","overview":"Simon Watterman, a space archaeologist, discovers the \"Munchies\" in a cave in Peru. Cecil Watterman, Simon's evil twin brother and snack food entrepreneur, kidnaps the creature. What Cecil does not know is that the creature, when chopped up, regenerates into many new creatures and are they mean!","moviesInCollection":[],"ratingKey":1564,"key":"/library/metadata/1564","collectionTitle":"","collectionId":-1,"tmdbId":4365},{"name":"Air Force One","year":1997,"posterUrl":"/library/metadata/134/thumb/1599307875","imdbId":"","language":"en","overview":"Russian terrorists conspire to hijack the aircraft with the president and his family on board. The commander in chief finds himself facing an impossible predicament: give in to the terrorists and sacrifice his family, or risk everything to uphold his principles - and the integrity of the nation.","moviesInCollection":[],"ratingKey":134,"key":"/library/metadata/134","collectionTitle":"","collectionId":-1,"tmdbId":9772},{"name":"Bumblebee","year":2018,"posterUrl":"/library/metadata/443/thumb/1599307989","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":443,"key":"/library/metadata/443","collectionTitle":"","collectionId":-1,"tmdbId":424783},{"name":"The Karate Kid","year":1984,"posterUrl":"/library/metadata/2599/thumb/1599308836","imdbId":"","language":"en","overview":"Hassled by the school bullies, Daniel LaRusso has his share of adolescent woes. Luckily, his apartment building houses a resident martial arts master: Kesuke Miyagi, who agrees to train Daniel ... and ends up teaching him much more than self-defense. Armed with newfound confidence, skill and wisdom, Daniel ultimately faces off against his tormentors in this hugely popular classic underdog tale.","moviesInCollection":[],"ratingKey":2599,"key":"/library/metadata/2599","collectionTitle":"","collectionId":-1,"tmdbId":1885},{"name":"Hawk the Slayer","year":1980,"posterUrl":"/library/metadata/1077/thumb/1599308224","imdbId":"","language":"en","overview":"Hawk the Slayer, after seeing both his father and bride die at the hands of his malevolent brother, Voltan, sets out for revenge and the chance to live up to his title. Tooling himself up with the \"mind-sword\" and recruiting a motley band of warriors: a giant, a dwarf, a one-armed man with a machine-crossbow and an elf with the fastest bow in the land; Hawk leads the battle against Voltan to free the land from the forces of evil and avenge his loved ones.","moviesInCollection":[],"ratingKey":1077,"key":"/library/metadata/1077","collectionTitle":"","collectionId":-1,"tmdbId":25628},{"name":"Tommy Boy","year":1995,"posterUrl":"/library/metadata/2953/thumb/1599308981","imdbId":"","language":"en","overview":"Party animal Tommy Callahan is a few cans short of a six-pack. But when the family business starts tanking, it's up to Tommy and number-cruncher Richard Hayden to save the day.","moviesInCollection":[],"ratingKey":2953,"key":"/library/metadata/2953","collectionTitle":"","collectionId":-1,"tmdbId":11381},{"name":"Smallfoot","year":2018,"posterUrl":"/library/metadata/2066/thumb/1599308635","imdbId":"","language":"en","overview":"A bright young yeti finds something he thought didn't exist—a human. News of this “smallfoot” throws the simple yeti community into an uproar over what else might be out there in the big world beyond their snowy village.","moviesInCollection":[],"ratingKey":2066,"key":"/library/metadata/2066","collectionTitle":"","collectionId":-1,"tmdbId":446894},{"name":"Don't Knock Twice","year":2017,"posterUrl":"/library/metadata/733/thumb/1599308094","imdbId":"","language":"en","overview":"A mother desperate to reconnect with her troubled daughter becomes embroiled in the urban legend of a demonic witch.","moviesInCollection":[],"ratingKey":733,"key":"/library/metadata/733","collectionTitle":"","collectionId":-1,"tmdbId":420245},{"name":"Pokémon 3 The Movie - Spell of the Unown","year":2001,"posterUrl":"/library/metadata/1769/thumb/1599308506","imdbId":"","language":"en","overview":"When Me Snowdon's sadness of her father's disappearance get to her, she unknowingly uses the Unknown to create her own dream world along with Entei, who she believes to be her father. When Entei kidnaps Satoshi's mother, Satoshi along with Kasumi & Takeshi invade the mansion looking for his mom and trying to stop the mysteries of Me's Dream World and Entei!","moviesInCollection":[],"ratingKey":1769,"key":"/library/metadata/1769","collectionTitle":"","collectionId":-1,"tmdbId":10991},{"name":"Blood Father","year":2016,"posterUrl":"/library/metadata/41928/thumb/1599309133","imdbId":"","language":"en","overview":"An ex-con reunites with his estranged wayward 16-year old daughter to protect her from drug dealers who are trying to kill her.","moviesInCollection":[],"ratingKey":41928,"key":"/library/metadata/41928","collectionTitle":"","collectionId":-1,"tmdbId":309886},{"name":"Wing Commander","year":1999,"posterUrl":"/library/metadata/3155/thumb/1599309050","imdbId":"","language":"en","overview":"The Hollywood version of the popular video game series \"Wing Commander\". Unlike other video games to feature film transitions, series creator Chris Roberts was heavily involved in the film's creation. This is the story of Christopher Blair and Todd \"Maniac\" Marshall as they arrive at the Tiger Claw and are soon forced to stop a Kilrathi fleet heading towards Earth.","moviesInCollection":[],"ratingKey":3155,"key":"/library/metadata/3155","collectionTitle":"","collectionId":-1,"tmdbId":10350},{"name":"Operation Red Sea","year":2018,"posterUrl":"/library/metadata/1668/thumb/1599308463","imdbId":"","language":"en","overview":"A squad of the Jiaolong Commando Unit - Sea Dragon, a spec ops team of the Chinese Navy, carries out a hostage rescue operation in the nation of Yewaire, on the Arabian Peninsula, and fiercely fights against local rebel groups and Zaka, a terrorist organization.","moviesInCollection":[],"ratingKey":1668,"key":"/library/metadata/1668","collectionTitle":"","collectionId":-1,"tmdbId":460555},{"name":"Me and Earl and the Dying Girl","year":2015,"posterUrl":"/library/metadata/1480/thumb/1599308379","imdbId":"","language":"en","overview":"Greg is coasting through senior year of high school as anonymously as possible, avoiding social interactions like the plague while secretly making spirited, bizarre films with Earl, his only friend. But both his anonymity and friendship threaten to unravel when his mother forces him to befriend a classmate with leukemia.","moviesInCollection":[],"ratingKey":1480,"key":"/library/metadata/1480","collectionTitle":"","collectionId":-1,"tmdbId":308369},{"name":"Captain Phillips","year":2013,"posterUrl":"/library/metadata/469/thumb/1599308000","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":469,"key":"/library/metadata/469","collectionTitle":"","collectionId":-1,"tmdbId":109424},{"name":"The Sapphires","year":2013,"posterUrl":"/library/metadata/2797/thumb/1599308922","imdbId":"","language":"en","overview":"It's 1968, and four young, talented Australian Aboriginal girls learn about love, friendship and war when they entertain the US troops in Vietnam as singing group The Sapphires.","moviesInCollection":[],"ratingKey":2797,"key":"/library/metadata/2797","collectionTitle":"","collectionId":-1,"tmdbId":110146},{"name":"The Scorpion King 3 Battle for Redemption","year":2012,"posterUrl":"/library/metadata/2799/thumb/1599308923","imdbId":"","language":"en","overview":"Since his triumphant rise to power in the original blockbuster \"The Scorpion King\", Mathayus' kingdom has fallen and he's lost his queen to plague. Now an assassin for hire, he must defend a kingdom from an evil tyrant and his ghost warriors for the chance to regain the power and glory he once knew. Starring Ron Perlman (\"Hellboy\") and Billy Zane (\"Titanic\"), and featuring 6-time WWE champion Dave Bautista and UFC star Kimbo Slice, \"The Scorpion King 3: Battle for Redemption\" takes \"The Mummy\" phenomenon to an all-new level of epic action and non-stop adventure.","moviesInCollection":[],"ratingKey":2799,"key":"/library/metadata/2799","collectionTitle":"","collectionId":-1,"tmdbId":78049},{"name":"The Grapes of Wrath","year":1940,"posterUrl":"/library/metadata/2505/thumb/1599308801","imdbId":"","language":"en","overview":"Tom Joad returns to his home after a jail sentence to find his family kicked out of their farm due to foreclosure. He catches up with them on his Uncle’s farm, and joins them the next day as they head for California and a new life... Hopefully.","moviesInCollection":[],"ratingKey":2505,"key":"/library/metadata/2505","collectionTitle":"","collectionId":-1,"tmdbId":596},{"name":"Atlantis The Lost Empire","year":2001,"posterUrl":"/library/metadata/39649/thumb/1599309088","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":39649,"key":"/library/metadata/39649","collectionTitle":"","collectionId":-1,"tmdbId":10865},{"name":"The Girl with the Dragon Tattoo","year":2011,"posterUrl":"/library/metadata/2493/thumb/1599308796","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2493,"key":"/library/metadata/2493","collectionTitle":"","collectionId":-1,"tmdbId":65754},{"name":"Hurricane Season","year":2009,"posterUrl":"/library/metadata/1151/thumb/1599308251","imdbId":"","language":"en","overview":"Based on true events amid the wreckage and chaos dealt by Hurricane Katrina; one basketball coach in Marrero, Louisiana just will not give up. Coach Al Collins, gathers other players from hard-hit schools and builds a team actually worthy enough to go to the state playoffs.","moviesInCollection":[],"ratingKey":1151,"key":"/library/metadata/1151","collectionTitle":"","collectionId":-1,"tmdbId":32007},{"name":"Line of Duty","year":2019,"posterUrl":"/library/metadata/1395/thumb/1599308340","imdbId":"","language":"en","overview":"Frank Penny is a disgraced cop looking for a shot at redemption. When the police chief's 11-year-old daughter is abducted, Frank goes rogue to try and save her. But to find the girl, Frank will need the help of Ava Brooks, whose live-streaming news channel is broadcasting Frank's every move.","moviesInCollection":[],"ratingKey":1395,"key":"/library/metadata/1395","collectionTitle":"","collectionId":-1,"tmdbId":346709},{"name":"Planes","year":2013,"posterUrl":"/library/metadata/1751/thumb/1599308498","imdbId":"","language":"en","overview":"Dusty is a cropdusting plane who dreams of competing in a famous aerial race. The problem? He is hopelessly afraid of heights. With the support of his mentor Skipper and a host of new friends, Dusty sets off to make his dreams come true.","moviesInCollection":[],"ratingKey":1751,"key":"/library/metadata/1751","collectionTitle":"","collectionId":-1,"tmdbId":151960},{"name":"Oblivion","year":2013,"posterUrl":"/library/metadata/1629/thumb/1599308446","imdbId":"","language":"en","overview":"Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack’s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.","moviesInCollection":[],"ratingKey":1629,"key":"/library/metadata/1629","collectionTitle":"","collectionId":-1,"tmdbId":75612},{"name":"The Black Hole","year":2006,"posterUrl":"/library/metadata/2322/thumb/1599308732","imdbId":"","language":"en","overview":"It's 2 A.M. in St. Louis when a routine scientific experiment goes terribly wrong and an explosion shakes the city. A scientific team investigates, clashing with an intergalactic, voltage-devouring creature that vaporizes them.","moviesInCollection":[],"ratingKey":2322,"key":"/library/metadata/2322","collectionTitle":"","collectionId":-1,"tmdbId":19312},{"name":"American Pie Presents Band Camp","year":2005,"posterUrl":"/library/metadata/184/thumb/1599307894","imdbId":"","language":"en","overview":"Everyone has 'moved on', except for Sherman and Jim Levenstein's still understanding father. Little Matt Stiffler wants to join his older brother Steve's business and, after everything Matt has heard from Jim's band-geek wife, he plans to go back to band camp and make a video of his own.","moviesInCollection":[],"ratingKey":184,"key":"/library/metadata/184","collectionTitle":"","collectionId":-1,"tmdbId":8274},{"name":"Revenge of the Nerds II Nerds in Paradise","year":1987,"posterUrl":"/library/metadata/1897/thumb/1599308561","imdbId":"","language":"en","overview":"The members of the Lambda Lambda Lambda fraternity travel to Fort Lauderdale for a fraternity conference. They'll have to beat off the attacks of their rival frat, the Alphas, if they want to maintain their self-respect -- and, of course, if they want to get anywhere with the pretty girls!","moviesInCollection":[],"ratingKey":1897,"key":"/library/metadata/1897","collectionTitle":"","collectionId":-1,"tmdbId":16889},{"name":"The Death of Dick Long","year":2019,"posterUrl":"/library/metadata/2405/thumb/1599308761","imdbId":"","language":"en","overview":"Dick died last night, and Zeke and Earl don’t want anybody finding out how. That’s too bad though, cause news travels fast in small-town Alabama.","moviesInCollection":[],"ratingKey":2405,"key":"/library/metadata/2405","collectionTitle":"","collectionId":-1,"tmdbId":565383},{"name":"First Blood","year":1982,"posterUrl":"/library/metadata/903/thumb/1599308155","imdbId":"","language":"en","overview":"When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, the Vietnam vet snaps, runs for the hills and rat-a-tat-tats his way into the action-movie hall of fame. Hounded by a relentless sheriff, Rambo employs heavy-handed guerilla tactics to shake the cops off his tail.","moviesInCollection":[],"ratingKey":903,"key":"/library/metadata/903","collectionTitle":"","collectionId":-1,"tmdbId":1368},{"name":"Lego Batman The Movie - DC Super Heroes Unite","year":2013,"posterUrl":"/library/metadata/1355/thumb/1599308326","imdbId":"","language":"en","overview":"Joker teams up with Lex Luthor to destroy the world one brick at a time. It's up to Batman, Superman and the rest of the Justice League to stop them.","moviesInCollection":[],"ratingKey":1355,"key":"/library/metadata/1355","collectionTitle":"","collectionId":-1,"tmdbId":177271},{"name":"The Usual Suspects","year":1995,"posterUrl":"/library/metadata/2884/thumb/1599308957","imdbId":"","language":"en","overview":"Held in an L.A. interrogation room, Verbal Kint attempts to convince the feds that a mythic crime lord, Keyser Soze, not only exists, but was also responsible for drawing him and his four partners into a multi-million dollar heist that ended with an explosion in San Pedro harbor – leaving few survivors. Verbal lures his interrogators with an incredible story of the crime lord's almost supernatural prowess.","moviesInCollection":[],"ratingKey":2884,"key":"/library/metadata/2884","collectionTitle":"","collectionId":-1,"tmdbId":629},{"name":"Underworld Rise of the Lycans","year":2009,"posterUrl":"/library/metadata/3049/thumb/1599309014","imdbId":"","language":"en","overview":"A prequel to the first two Underworld films, this fantasy explains the origins of the feud between the Vampires and the Lycans. Aided by his secret love, Sonja, courageous Lucian leads the Lycans in battle against brutal Vampire king Viktor. Determined to break the king's enslavement of his people, Lucian faces off against the Death Dealer army in a bid for Lycan independence.","moviesInCollection":[],"ratingKey":3049,"key":"/library/metadata/3049","collectionTitle":"","collectionId":-1,"tmdbId":12437},{"name":"Particle Fever","year":2013,"posterUrl":"/library/metadata/1703/thumb/1599308479","imdbId":"","language":"en","overview":"As the Large Hadron Collider is about to be launched for the first time, physicists are on the cusp of the greatest scientific discovery of all time -- or perhaps their greatest failure.","moviesInCollection":[],"ratingKey":1703,"key":"/library/metadata/1703","collectionTitle":"","collectionId":-1,"tmdbId":202141},{"name":"King Arthur","year":2004,"posterUrl":"/library/metadata/1309/thumb/1599308310","imdbId":"","language":"en","overview":"The story of the Arthurian legend, based on the 'Sarmatian hypothesis' which contends that the legend has a historical nucleus in the Sarmatian heavy cavalry troops stationed in Britain, and that the Roman-British military commander, Lucius Artorius Castus is the historical person behind the legend.","moviesInCollection":[],"ratingKey":1309,"key":"/library/metadata/1309","collectionTitle":"","collectionId":-1,"tmdbId":9477},{"name":"Sniper Ghost Shooter","year":2016,"posterUrl":"/library/metadata/47269/thumb/1599309175","imdbId":"","language":"en","overview":"Elite snipers Brandon Beckett and Richard Miller are tasked with protecting a gas pipeline from terrorists looking to make a statement. When battles with the enemy lead to snipers being killed by a ghost shooter who knows their exact location, tensions boil as a security breach is suspected. Is there someone working with the enemy on the inside? Is the mission a front for other activity? Is the Colonel pulling the strings?","moviesInCollection":[],"ratingKey":47269,"key":"/library/metadata/47269","collectionTitle":"","collectionId":-1,"tmdbId":407375},{"name":"Due Date","year":2010,"posterUrl":"/library/metadata/790/thumb/1599308113","imdbId":"","language":"en","overview":"Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the 'no-fly' list. Peter embarks on a terrifying journey when he accepts a ride from an actor.","moviesInCollection":[],"ratingKey":790,"key":"/library/metadata/790","collectionTitle":"","collectionId":-1,"tmdbId":41733},{"name":"Supremacy","year":2014,"posterUrl":"/library/metadata/2220/thumb/1599308696","imdbId":"","language":"en","overview":"The story centers on paroled white supremacist who has just killed a cop, and takes a black family hostage. Within hours of being released from 14 years of solitary confinement in maximum-security Pelican Bay State Prison, Garrett Tully is on the run again. When he finds a house off a dirt road and takes a family hostage, he thinks the Aryan Brotherhood has his back–and his kidnap victims are black. The family’s patriarch, Mr. Walker, is a jaded ex-con who hates cops so much he disavowed his own son for becoming one. Seeing a familiar desperation in Tully, Walker refuses to call the authorities for help, causing familial tensions to escalate, and soon grave missteps are made.","moviesInCollection":[],"ratingKey":2220,"key":"/library/metadata/2220","collectionTitle":"","collectionId":-1,"tmdbId":277702},{"name":"The Monuments Men","year":2014,"posterUrl":"/library/metadata/2691/thumb/1599308874","imdbId":"","language":"en","overview":"Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the world’s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?","moviesInCollection":[],"ratingKey":2691,"key":"/library/metadata/2691","collectionTitle":"","collectionId":-1,"tmdbId":152760},{"name":"Portrait of a Zombie","year":2012,"posterUrl":"/library/metadata/1793/thumb/1599308515","imdbId":"","language":"en","overview":"When son, Billy, becomes a zombie the family chooses to take care of him in the home much to the chagrin of the neighbors and the local crime boss.","moviesInCollection":[],"ratingKey":1793,"key":"/library/metadata/1793","collectionTitle":"","collectionId":-1,"tmdbId":118621},{"name":"The Secret Life of Walter Mitty","year":2013,"posterUrl":"/library/metadata/2806/thumb/1599308926","imdbId":"","language":"en","overview":"A timid magazine photo manager who lives life vicariously through daydreams embarks on a true-life adventure when a negative goes missing.","moviesInCollection":[],"ratingKey":2806,"key":"/library/metadata/2806","collectionTitle":"","collectionId":-1,"tmdbId":116745},{"name":"Killer Elite","year":2011,"posterUrl":"/library/metadata/1302/thumb/1599308307","imdbId":"","language":"en","overview":"Based on a shocking true story, Killer Elite pits two of the world’s most elite operatives—Danny, an ex-special ops agent and Hunter, his longtime mentor—against the cunning leader of a secret military society. Covering the globe from Australia to Paris, London and the Middle East, Danny and Hunter are plunged into a highly dangerous game of cat and mouse—where the predators become the prey.","moviesInCollection":[],"ratingKey":1302,"key":"/library/metadata/1302","collectionTitle":"","collectionId":-1,"tmdbId":49021},{"name":"Bloodshot","year":2020,"posterUrl":"/library/metadata/39752/thumb/1599309094","imdbId":"","language":"en","overview":"After he and his wife are murdered, marine Ray Garrison is resurrected by a team of scientists. Enhanced with nanotechnology, he becomes a superhuman, biotech killing machine—'Bloodshot'. As Ray first trains with fellow super-soldiers, he cannot recall anything from his former life. But when his memories flood back and he remembers the man that killed both him and his wife, he breaks out of the facility to get revenge, only to discover that there's more to the conspiracy than he thought.","moviesInCollection":[],"ratingKey":39752,"key":"/library/metadata/39752","collectionTitle":"","collectionId":-1,"tmdbId":338762},{"name":"Wish I Was Here","year":2014,"posterUrl":"/library/metadata/3156/thumb/1599309050","imdbId":"","language":"en","overview":"Aidan Bloom, a struggling actor, father and husband, is 35 years old and still trying to find a purpose for his life. He and his wife are barely getting by financially and Aidan passes his time by fantasizing about being the great futuristic Space-Knight he'd always dreamed he'd be as a little kid. When his ailing father can no longer afford to pay for private school for his two kids and the only available public school is on its last legs, Aidan reluctantly agrees to attempt to home-school them. Through teaching them about life his way, Aidan gradually discovers some of the parts of himself he couldn't find.","moviesInCollection":[],"ratingKey":3156,"key":"/library/metadata/3156","collectionTitle":"","collectionId":-1,"tmdbId":231576},{"name":"The Florida Project","year":2017,"posterUrl":"/library/metadata/2470/thumb/1599308788","imdbId":"","language":"en","overview":"The story of a precocious six year-old and her ragtag group of friends whose summer break is filled with childhood wonder, possibility and a sense of adventure while the adults around them struggle with hard times.","moviesInCollection":[],"ratingKey":2470,"key":"/library/metadata/2470","collectionTitle":"","collectionId":-1,"tmdbId":394117},{"name":"Casino Royale","year":2006,"posterUrl":"/library/metadata/483/thumb/1599308005","imdbId":"","language":"en","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—on his maiden mission as a 00 Agent—to 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.","moviesInCollection":[],"ratingKey":483,"key":"/library/metadata/483","collectionTitle":"","collectionId":-1,"tmdbId":36557},{"name":"Pokémon The First Movie - Mewtwo Strikes Back","year":1999,"posterUrl":"/library/metadata/1772/thumb/1599308507","imdbId":"","language":"en","overview":"The adventure explodes into action with the debut of Mewtwo, a bio-engineered Pokemon created from the DNA of Mew, the rarest of all Pokemon. Determined to prove its superiority, Mewtwo lures Satoshi, Pikachu and others into a Pokemon match like none before. Mewtwo vs. Mew. Super-clones vs. Pokemon. It's the ultimate showdown ... with the very future of the world at stake!","moviesInCollection":[],"ratingKey":1772,"key":"/library/metadata/1772","collectionTitle":"","collectionId":-1,"tmdbId":10228},{"name":"Enter the Dragon","year":1973,"posterUrl":"/library/metadata/825/thumb/1599308125","imdbId":"","language":"en","overview":"A martial artist agrees to spy on a reclusive crime lord using his invitation to a tournament there as cover.","moviesInCollection":[],"ratingKey":825,"key":"/library/metadata/825","collectionTitle":"","collectionId":-1,"tmdbId":9461},{"name":"Whiteout","year":2009,"posterUrl":"/library/metadata/3140/thumb/1599309045","imdbId":"","language":"en","overview":"The only U.S. Marshal assigned to Antarctica, Carrie Stetko will soon leave the harsh environment behind for good – in three days, the sun will set and the Amundsen-Scott Research Station will shut down for the long winter. When a body is discovered out on the open ice, Carrie's investigation into the continent's first homicide plunges her deep into a mystery that may cost her her own life.","moviesInCollection":[],"ratingKey":3140,"key":"/library/metadata/3140","collectionTitle":"","collectionId":-1,"tmdbId":22787},{"name":"Inception","year":2010,"posterUrl":"/library/metadata/1181/thumb/1599308262","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1181,"key":"/library/metadata/1181","collectionTitle":"","collectionId":-1,"tmdbId":27205},{"name":"Eight Below","year":2006,"posterUrl":"/library/metadata/809/thumb/1599308120","imdbId":"","language":"en","overview":"In the Antarctic, after an expedition with Dr. Davis McClaren, the sled dog trainer Jerry Shepherd has to leave the polar base with his colleagues due to the proximity of a heavy snow storm. He ties his dogs to be rescued after, but the mission is called-off and the dogs are left alone at their own fortune. For six months, Jerry tries to find a sponsor for a rescue mission.","moviesInCollection":[],"ratingKey":809,"key":"/library/metadata/809","collectionTitle":"","collectionId":-1,"tmdbId":9036},{"name":"Three Billboards Outside Ebbing, Missouri","year":2017,"posterUrl":"/library/metadata/2931/thumb/1599308974","imdbId":"","language":"en","overview":"After seven months have passed without a culprit in her daughter's murder case, Mildred Hayes makes a bold move, painting three signs leading into her town with a controversial message directed at Bill Willoughby, the town's revered chief of police. When his second-in-command Officer Jason Dixon, an immature mother's boy with a penchant for violence, gets involved, the battle between Mildred and Ebbing's law enforcement is only exacerbated.","moviesInCollection":[],"ratingKey":2931,"key":"/library/metadata/2931","collectionTitle":"","collectionId":-1,"tmdbId":359940},{"name":"Ice Age","year":2002,"posterUrl":"/library/metadata/1168/thumb/1599308257","imdbId":"","language":"en","overview":"With the impending ice age almost upon them, a mismatched trio of prehistoric critters – Manny the woolly mammoth, Diego the saber-toothed tiger and Sid the giant sloth – find an orphaned infant and decide to return it to its human parents. Along the way, the unlikely allies become friends but, when enemies attack, their quest takes on far nobler aims.","moviesInCollection":[],"ratingKey":1168,"key":"/library/metadata/1168","collectionTitle":"","collectionId":-1,"tmdbId":425},{"name":"The World's End","year":2013,"posterUrl":"/library/metadata/39908/thumb/1599309099","imdbId":"","language":"en","overview":"Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind's only hope for survival.","moviesInCollection":[],"ratingKey":39908,"key":"/library/metadata/39908","collectionTitle":"","collectionId":-1,"tmdbId":107985},{"name":"Hellbound Hellraiser II","year":1988,"posterUrl":"/library/metadata/1086/thumb/1599308227","imdbId":"","language":"en","overview":"Doctor Channard is sent a new patient, a girl warning of the terrible creatures that have destroyed her family, Cenobites who offer the most intense sensations of pleasure and pain. But Channard has been searching for the doorway to Hell for years, and Kirsty must follow him to save her father and witness the power struggles among the newly damned.","moviesInCollection":[],"ratingKey":1086,"key":"/library/metadata/1086","collectionTitle":"","collectionId":-1,"tmdbId":9064},{"name":"Wild Hogs","year":2007,"posterUrl":"/library/metadata/3148/thumb/1599309047","imdbId":"","language":"en","overview":"Restless and ready for adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.","moviesInCollection":[],"ratingKey":3148,"key":"/library/metadata/3148","collectionTitle":"","collectionId":-1,"tmdbId":11199},{"name":"Bronson","year":2008,"posterUrl":"/library/metadata/434/thumb/1599307986","imdbId":"","language":"en","overview":"A young man who was sentenced to 7 years in prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.","moviesInCollection":[],"ratingKey":434,"key":"/library/metadata/434","collectionTitle":"","collectionId":-1,"tmdbId":18533},{"name":"Salt","year":2010,"posterUrl":"/library/metadata/1956/thumb/1599308588","imdbId":"","language":"en","overview":"As a CIA officer, Evelyn Salt swore an oath to duty, honor and country. Her loyalty will be tested when a defector accuses her of being a Russian spy. Salt goes on the run, using all her skills and years of experience as a covert operative to elude capture. Salt's efforts to prove her innocence only serve to cast doubt on her motives, as the hunt to uncover the truth behind her identity continues and the question remains: \"Who is Salt?\"","moviesInCollection":[],"ratingKey":1956,"key":"/library/metadata/1956","collectionTitle":"","collectionId":-1,"tmdbId":27576},{"name":"Black Sea","year":2015,"posterUrl":"/library/metadata/368/thumb/1599307961","imdbId":"","language":"en","overview":"A rogue submarine captain pulls together a misfit crew to go after a sunken treasure rumored to be lost in the depths of the Black Sea. As greed and desperation take control on-board their claustrophobic vessel, the increasing uncertainty of the mission causes the men to turn on each other to fight for their own survival.","moviesInCollection":[],"ratingKey":368,"key":"/library/metadata/368","collectionTitle":"","collectionId":-1,"tmdbId":246080},{"name":"The Sisters Brothers","year":2019,"posterUrl":"/library/metadata/2819/thumb/1599308933","imdbId":"","language":"en","overview":"Oregon, 1851. Hermann Kermit Warm, a chemist and aspiring gold prospector, keeps a profitable secret that the Commodore wants to know, so he sends the Sisters brothers, two notorious assassins, to capture him on his way to California.","moviesInCollection":[],"ratingKey":2819,"key":"/library/metadata/2819","collectionTitle":"","collectionId":-1,"tmdbId":440161},{"name":"Dragon Ball Z The History of Trunks","year":2000,"posterUrl":"/library/metadata/770/thumb/1599308106","imdbId":"","language":"en","overview":"It has been thirteen years since the Androids began their killing rampage and Son Gohan is the only person fighting back. He takes Bulma's son Trunks as a student and even gives his own life to save Trunks's. Now Trunks must figure out a way to change this apocalyptic future","moviesInCollection":[],"ratingKey":770,"key":"/library/metadata/770","collectionTitle":"","collectionId":-1,"tmdbId":39324},{"name":"All Good Things","year":2010,"posterUrl":"/library/metadata/159/thumb/1599307885","imdbId":"","language":"en","overview":"Newly-discovered facts, court records and speculation are used to elaborate the true love story and murder mystery of the most notorious unsolved murder case in New York history.","moviesInCollection":[],"ratingKey":159,"key":"/library/metadata/159","collectionTitle":"","collectionId":-1,"tmdbId":46503},{"name":"101 Dalmatians","year":1996,"posterUrl":"/library/metadata/5/thumb/1599307828","imdbId":"","language":"en","overview":"The Live action adaptation of a Disney Classic. When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.","moviesInCollection":[],"ratingKey":5,"key":"/library/metadata/5","collectionTitle":"","collectionId":-1,"tmdbId":11674},{"name":"The Outlaw Josey Wales","year":1976,"posterUrl":"/library/metadata/2732/thumb/1599308892","imdbId":"","language":"en","overview":"After avenging his family's brutal murder, Wales is pursued by a pack of soldiers. He prefers to travel alone, but ragtag outcasts are drawn to him - and Wales can't bring himself to leave them unprotected.","moviesInCollection":[],"ratingKey":2732,"key":"/library/metadata/2732","collectionTitle":"","collectionId":-1,"tmdbId":10747},{"name":"Casino Royale","year":1967,"posterUrl":"/library/metadata/482/thumb/1599308005","imdbId":"","language":"en","overview":"Sir James Bond is called back out of retirement to stop SMERSH. In order to trick SMERSH, James thinks up the ultimate plan - that every agent will be named 'James Bond'. One of the Bonds, whose real name is Evelyn Tremble is sent to take on Le Chiffre in a game of baccarat, but all the Bonds get more than they can handle.","moviesInCollection":[],"ratingKey":482,"key":"/library/metadata/482","collectionTitle":"","collectionId":-1,"tmdbId":12208},{"name":"The Cutter","year":2006,"posterUrl":"/library/metadata/2386/thumb/1599308754","imdbId":"","language":"en","overview":"A former cop turned Los Angeles P.I. takes on a case of a missing diamond cutter that leads him on an adventure of love and villainy spanning of mob to the present day Jewelry District.","moviesInCollection":[],"ratingKey":2386,"key":"/library/metadata/2386","collectionTitle":"","collectionId":-1,"tmdbId":20499},{"name":"Brawl in Cell Block 99","year":2017,"posterUrl":"/library/metadata/418/thumb/1599307979","imdbId":"","language":"en","overview":"After working as a drug courier and getting into a brutal shootout with police, a former boxer finds himself at the mercy of his enemies as they force him to instigate violent acts that turn the prison he resides in into a battleground.","moviesInCollection":[],"ratingKey":418,"key":"/library/metadata/418","collectionTitle":"","collectionId":-1,"tmdbId":398175},{"name":"Escape from Alcatraz","year":1979,"posterUrl":"/library/metadata/830/thumb/1599308126","imdbId":"","language":"en","overview":"Escape from Alcatraz tells the story of the only three men ever to escape from the infamous maximum security prison at Alcatraz. In 29 years, the seemingly impenetrable federal penitentiary, which housed Al Capone and \"Birdman\" Robert Stroud, was only broken once - by three men never heard of again.","moviesInCollection":[],"ratingKey":830,"key":"/library/metadata/830","collectionTitle":"","collectionId":-1,"tmdbId":10734},{"name":"Uncle Drew","year":2018,"posterUrl":"/library/metadata/3038/thumb/1599309010","imdbId":"","language":"en","overview":"Uncle Drew recruits a squad of older basketball players to return to the court to compete in a tournament.","moviesInCollection":[],"ratingKey":3038,"key":"/library/metadata/3038","collectionTitle":"","collectionId":-1,"tmdbId":474335},{"name":"Bombshell","year":2019,"posterUrl":"/library/metadata/27354/thumb/1599309069","imdbId":"","language":"en","overview":"Bombshell is a revealing look inside the most powerful and controversial media empire of all time; and the explosive story of the women who brought down the infamous man who created it.","moviesInCollection":[],"ratingKey":27354,"key":"/library/metadata/27354","collectionTitle":"","collectionId":-1,"tmdbId":525661},{"name":"Kickboxer Retaliation","year":2018,"posterUrl":"/library/metadata/1296/thumb/1599308305","imdbId":"","language":"en","overview":"One year after the events of \"Kickboxer: Vengeance\", Kurt Sloan has vowed never to return to Thailand. However, while gearing up for a MMA title shot, he finds himself sedated and forced back into Thailand, this time in prison. He is there because the ones responsible want him to face a 6'8\" 400 lbs. beast named Mongkut and in return for the fight, Kurt will get two million dollars and his freedom back. Kurt at first refuses, in which a bounty is placed on his head as a way to force him to face Mongkut. Kurt soon learns he will have no other choice and will undergo his most rigorous training yet under some unexpected mentors in order to face Mongkut in hopes to regain his freedom.","moviesInCollection":[],"ratingKey":1296,"key":"/library/metadata/1296","collectionTitle":"","collectionId":-1,"tmdbId":447665},{"name":"Dazed and Confused","year":1993,"posterUrl":"/library/metadata/651/thumb/1599308063","imdbId":"","language":"en","overview":"The adventures of a group of Texas teens on their last day of school in 1976, centering on student Randall Floyd, who moves easily among stoners, jocks and geeks. Floyd is a star athlete, but he also likes smoking weed, which presents a conundrum when his football coach demands he sign a \"no drugs\" pledge.","moviesInCollection":[],"ratingKey":651,"key":"/library/metadata/651","collectionTitle":"","collectionId":-1,"tmdbId":9571},{"name":"Joe Dirt","year":2001,"posterUrl":"/library/metadata/1245/thumb/1599308287","imdbId":"","language":"en","overview":"Joe Dirt is a janitor with a mullet hairdo, acid-washed jeans and a dream to find the parents that he lost at the Grand Canyon when he was a belligerent, trailer park-raised eight-year-old. Now, blasting Van Halen in his jacked-up economy car, the irrepressibly optimistic Joe hits the road alone in search of his folks.","moviesInCollection":[],"ratingKey":1245,"key":"/library/metadata/1245","collectionTitle":"","collectionId":-1,"tmdbId":10956},{"name":"Carjacked","year":2011,"posterUrl":"/library/metadata/472/thumb/1599308001","imdbId":"","language":"en","overview":"A single mom and her child are carjacked by a bank robber who has no intention of letting them go.","moviesInCollection":[],"ratingKey":472,"key":"/library/metadata/472","collectionTitle":"","collectionId":-1,"tmdbId":72912},{"name":"Brewster's Millions","year":1985,"posterUrl":"/library/metadata/424/thumb/1599307981","imdbId":"","language":"en","overview":"Brewster, an aging minor-league baseball player, stands to inherit 300 million dollars if he can successfully spend 30 million dollars in 30 days without anything to show for it, and without telling anyone what he's up to... A task that's a lot harder than it sounds!","moviesInCollection":[],"ratingKey":424,"key":"/library/metadata/424","collectionTitle":"","collectionId":-1,"tmdbId":11064},{"name":"Spectre","year":2015,"posterUrl":"/library/metadata/2104/thumb/1599308651","imdbId":"","language":"en","overview":"A cryptic message from Bond’s 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.","moviesInCollection":[],"ratingKey":2104,"key":"/library/metadata/2104","collectionTitle":"","collectionId":-1,"tmdbId":206647},{"name":"Cuck","year":2019,"posterUrl":"/library/metadata/614/thumb/1599308051","imdbId":"","language":"en","overview":"Ronnie is a young white male, struggling with the pressures of life. He’s unemployed, rejected from the military for being mentally unstable, and lives at home with his ailing and nagging mother. Ronnie finds an outlet for his frustration online. The alt-right community gives him a place to belong and absolves his personal responsibility.","moviesInCollection":[],"ratingKey":614,"key":"/library/metadata/614","collectionTitle":"","collectionId":-1,"tmdbId":594304},{"name":"Death Race 2050","year":2017,"posterUrl":"/library/metadata/670/thumb/1599308070","imdbId":"","language":"en","overview":"The year 2050 the planet has become overpopulated, to help control population the government develops a race. The Death Race. Annually competitors race across the country scoring points for killing people with their vehicles.","moviesInCollection":[],"ratingKey":670,"key":"/library/metadata/670","collectionTitle":"","collectionId":-1,"tmdbId":401544},{"name":"Underworld Awakening","year":2012,"posterUrl":"/library/metadata/3046/thumb/1599309013","imdbId":"","language":"en","overview":"Having escaped years of imprisonment, vampire warrioress Selene finds herself in a changed world where humans have discovered the existence of both Vampire and Lycan clans and are conducting an all-out war to eradicate both immortal species. Now Selene must battle the humans and a frightening new breed of super Lycans to ensure the death dealers' survival.","moviesInCollection":[],"ratingKey":3046,"key":"/library/metadata/3046","collectionTitle":"","collectionId":-1,"tmdbId":52520},{"name":"Machete","year":2010,"posterUrl":"/library/metadata/1429/thumb/1599308355","imdbId":"","language":"en","overview":"After being set-up and betrayed by the man who hired him to assassinate a Texas Senator, an ex-Federale launches a brutal rampage of revenge against his former boss.","moviesInCollection":[],"ratingKey":1429,"key":"/library/metadata/1429","collectionTitle":"","collectionId":-1,"tmdbId":23631},{"name":"Upgrade","year":2018,"posterUrl":"/library/metadata/3062/thumb/1599309018","imdbId":"","language":"en","overview":"A brutal mugging leaves Grey Trace paralyzed in the hospital and his beloved wife dead. A billionaire inventor soon offers Trace a cure — an artificial intelligence implant called STEM that will enhance his body. Now able to walk, Grey finds that he also has superhuman strength and agility — skills he uses to seek revenge against the thugs who destroyed his life.","moviesInCollection":[],"ratingKey":3062,"key":"/library/metadata/3062","collectionTitle":"","collectionId":-1,"tmdbId":500664},{"name":"Final Score","year":2018,"posterUrl":"/library/metadata/896/thumb/1599308152","imdbId":"","language":"en","overview":"When a stadium is seized by a group of heavily armed criminals during a major sporting event, an ex-soldier must use all his military skills to save both the daughter of a fallen comrade and the huge crowd unaware of the danger.","moviesInCollection":[],"ratingKey":896,"key":"/library/metadata/896","collectionTitle":"","collectionId":-1,"tmdbId":421658},{"name":"The Greatest Showman","year":2017,"posterUrl":"/library/metadata/2518/thumb/1599308806","imdbId":"","language":"en","overview":"The story of American showman P.T. Barnum, founder of the circus that became the famous traveling Ringling Bros. and Barnum & Bailey Circus.","moviesInCollection":[],"ratingKey":2518,"key":"/library/metadata/2518","collectionTitle":"","collectionId":-1,"tmdbId":316029},{"name":"WALL·E","year":2008,"posterUrl":"/library/metadata/3096/thumb/1599309029","imdbId":"","language":"en","overview":"WALL·E 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·E thinks he's finally found a friend and stows away on the ship when it leaves.","moviesInCollection":[],"ratingKey":3096,"key":"/library/metadata/3096","collectionTitle":"","collectionId":-1,"tmdbId":10681},{"name":"Mamma Mia!","year":2008,"posterUrl":"/library/metadata/46956/thumb/1599309172","imdbId":"","language":"en","overview":"An independent, single mother who owns a small hotel on a Greek island is about to marry off the spirited young daughter she's raised alone. But, the daughter has secretly invited three of her mother's ex-lovers in the hopes of finding her biological father.","moviesInCollection":[],"ratingKey":46956,"key":"/library/metadata/46956","collectionTitle":"","collectionId":-1,"tmdbId":11631},{"name":"The Good, the Bad and the Ugly","year":1967,"posterUrl":"/library/metadata/2501/thumb/1599308799","imdbId":"","language":"en","overview":"While the Civil War rages between the Union and the Confederacy, three men – a quiet loner, a ruthless hit man and a Mexican bandit – comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.","moviesInCollection":[],"ratingKey":2501,"key":"/library/metadata/2501","collectionTitle":"","collectionId":-1,"tmdbId":429},{"name":"American Hustle","year":2014,"posterUrl":"/library/metadata/180/thumb/1599307892","imdbId":"","language":"en","overview":"A conman and his seductive partner are forced to work for a wild FBI agent, who pushes them into a world of Jersey power-brokers and the Mafia.","moviesInCollection":[],"ratingKey":180,"key":"/library/metadata/180","collectionTitle":"","collectionId":-1,"tmdbId":168672},{"name":"One Magic Christmas","year":1985,"posterUrl":"/library/metadata/1657/thumb/1599308459","imdbId":"","language":"en","overview":"Ginny Grainger, a young mother, rediscovers the joy and beauty of Christmas, thanks to the unshakable faith of her six-year-old daughter Abbie and Gideon, Ginny's very own guardian angel.","moviesInCollection":[],"ratingKey":1657,"key":"/library/metadata/1657","collectionTitle":"","collectionId":-1,"tmdbId":13380},{"name":"The Post","year":2017,"posterUrl":"/library/metadata/2748/thumb/1599308899","imdbId":"","language":"en","overview":"A cover-up that spanned four U.S. Presidents pushed the country's first female newspaper publisher and a hard-driving editor to join an unprecedented battle between journalist and government. Inspired by true events.","moviesInCollection":[],"ratingKey":2748,"key":"/library/metadata/2748","collectionTitle":"","collectionId":-1,"tmdbId":446354},{"name":"Star Wars The Last Jedi","year":2017,"posterUrl":"/library/metadata/2150/thumb/1599308672","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2150,"key":"/library/metadata/2150","collectionTitle":"","collectionId":-1,"tmdbId":181808},{"name":"Dune","year":1984,"posterUrl":"/library/metadata/797/thumb/1599308116","imdbId":"","language":"en","overview":"In the year 10,191, the world is at war for control of the desert planet Dune—the 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.","moviesInCollection":[],"ratingKey":797,"key":"/library/metadata/797","collectionTitle":"","collectionId":-1,"tmdbId":841},{"name":"Guardians of the Galaxy Vol. 2","year":2017,"posterUrl":"/library/metadata/1038/thumb/1599308208","imdbId":"","language":"en","overview":"The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage.","moviesInCollection":[],"ratingKey":1038,"key":"/library/metadata/1038","collectionTitle":"","collectionId":-1,"tmdbId":283995},{"name":"The Wild Bunch","year":1969,"posterUrl":"/library/metadata/2897/thumb/1599308962","imdbId":"","language":"en","overview":"Aging outlaw, Pike Bishop prepares to retire after one final robbery. Joined by his gang, Dutch Engstrom and brothers Lyle and Tector Gorch, Bishop discovers the heist is a setup orchestrated in part by a former partner, Deke Thornton. As the remaining gang takes refuge in Mexican territory, Thornton trails them—resulting in fierce gunfights with plenty of casualties.","moviesInCollection":[],"ratingKey":2897,"key":"/library/metadata/2897","collectionTitle":"","collectionId":-1,"tmdbId":576},{"name":"Priest","year":2011,"posterUrl":"/library/metadata/1806/thumb/1599308521","imdbId":"","language":"en","overview":"In an alternate world, humanity and vampires have warred for centuries. After the last Vampire War, the veteran Warrior Priest lives in obscurity with other humans inside one of the Church's walled cities. When the Priest's niece is kidnapped by vampires, the Priest breaks his vows to hunt them down. He is accompanied by the niece's boyfriend, who is a wasteland sheriff, and a former Warrior Priestess.","moviesInCollection":[],"ratingKey":1806,"key":"/library/metadata/1806","collectionTitle":"","collectionId":-1,"tmdbId":38321},{"name":"Logan Lucky","year":2017,"posterUrl":"/library/metadata/1407/thumb/1599308344","imdbId":"","language":"en","overview":"Trying to reverse a family curse, brothers Jimmy and Clyde Logan set out to execute an elaborate robbery during the legendary Coca-Cola 600 race at the Charlotte Motor Speedway.","moviesInCollection":[],"ratingKey":1407,"key":"/library/metadata/1407","collectionTitle":"","collectionId":-1,"tmdbId":399170},{"name":"Cold Pursuit","year":2019,"posterUrl":"/library/metadata/542/thumb/1599308026","imdbId":"","language":"en","overview":"The quiet family life of Nels Coxman, a snowplow driver, is upended after his son's murder. Nels begins a vengeful hunt for Viking, the drug lord he holds responsible for the killing, eliminating Viking's associates one by one. As Nels draws closer to Viking, his actions bring even more unexpected and violent consequences, as he proves that revenge is all in the execution.","moviesInCollection":[],"ratingKey":542,"key":"/library/metadata/542","collectionTitle":"","collectionId":-1,"tmdbId":438650},{"name":"Moneyball","year":2011,"posterUrl":"/library/metadata/1530/thumb/1599308403","imdbId":"","language":"en","overview":"The story of Oakland Athletics general manager Billy Beane's successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.","moviesInCollection":[],"ratingKey":1530,"key":"/library/metadata/1530","collectionTitle":"","collectionId":-1,"tmdbId":60308},{"name":"The Watcher in the Woods","year":2017,"posterUrl":"/library/metadata/2890/thumb/1599308959","imdbId":"","language":"en","overview":"Mrs. Aylwood is a distraught mother since her daughter, Karen, vanished in the English countryside over 20 years ago. When the Carstairs family move into the Aylwood manor for the summer, strange occurrences begin to unnerve the family and Jan begins to suspect that they are linked to Karen's disappearance. As Jan unravels the dark past hidden by the townspeople, she delves further into the mystery and deeper into danger, but now it might be too late to escape the Watcher in the Woods.","moviesInCollection":[],"ratingKey":2890,"key":"/library/metadata/2890","collectionTitle":"","collectionId":-1,"tmdbId":479837},{"name":"Hellraiser Deader","year":2005,"posterUrl":"/library/metadata/1093/thumb/1599308230","imdbId":"","language":"en","overview":"In London, after investigating crack addicted junkies for an article in her newspaper, Amy Klein watches a bizarre videotape where an underground group of youngsters in Bucharest apparently becoming zombies. Amy finds Marla dead with a puzzle cube in her hands. She brings the object to her hotel room, and opens it, beginning her journey to hell.","moviesInCollection":[],"ratingKey":1093,"key":"/library/metadata/1093","collectionTitle":"","collectionId":-1,"tmdbId":17455},{"name":"Darkest Hour","year":2017,"posterUrl":"/library/metadata/641/thumb/1599308060","imdbId":"","language":"en","overview":"A thrilling and inspiring true story begins on the eve of World War II as, within days of becoming Prime Minister of Great Britain, Winston Churchill must face one of his most turbulent and defining trials: exploring a negotiated peace treaty with Nazi Germany, or standing firm to fight for the ideals, liberty and freedom of a nation. As the unstoppable Nazi forces roll across Western Europe and the threat of invasion is imminent, and with an unprepared public, a skeptical King, and his own party plotting against him, Churchill must withstand his darkest hour, rally a nation, and attempt to change the course of world history.","moviesInCollection":[],"ratingKey":641,"key":"/library/metadata/641","collectionTitle":"","collectionId":-1,"tmdbId":399404},{"name":"Spider-Man Far from Home","year":2019,"posterUrl":"/library/metadata/2112/thumb/1599308654","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2112,"key":"/library/metadata/2112","collectionTitle":"","collectionId":-1,"tmdbId":429617},{"name":"Hollow Man II","year":2006,"posterUrl":"/library/metadata/1117/thumb/1599308239","imdbId":"","language":"en","overview":"After the mysterious death of scientist, Dr. Devin Villiers, Det. Frank Turner and his partner are assigned to protect Villiers' colleague, who revealed that a veteran soldier was subjected to an experiment with the objective of creating the ultimate national security weapon... an undetectable soldier. The experiment failed – with disastrous side effects.","moviesInCollection":[],"ratingKey":1117,"key":"/library/metadata/1117","collectionTitle":"","collectionId":-1,"tmdbId":8997},{"name":"400 Days","year":2016,"posterUrl":"/library/metadata/37/thumb/1599307839","imdbId":"","language":"en","overview":"4 would be astronauts spend 400 days in a land locked space simulator to test the psychological effects of deep space travel but, when something goes terribly wrong and they are forced to leave the simulation, they discover that everything on earth has changed. Is this real or is the simulation on a higher level than they could have ever imagined?","moviesInCollection":[],"ratingKey":37,"key":"/library/metadata/37","collectionTitle":"","collectionId":-1,"tmdbId":332502},{"name":"The Pursuit of Happyness","year":2006,"posterUrl":"/library/metadata/2770/thumb/1599308910","imdbId":"","language":"en","overview":"A struggling salesman takes custody of his son as he's poised to begin a life-changing professional career.","moviesInCollection":[],"ratingKey":2770,"key":"/library/metadata/2770","collectionTitle":"","collectionId":-1,"tmdbId":1402},{"name":"The Wrong Missy","year":2020,"posterUrl":"/library/metadata/40809/thumb/1599309105","imdbId":"","language":"en","overview":"A guy meets the woman of his dreams and invites her to his company's corporate retreat, but realizes he sent the invite to the wrong person.","moviesInCollection":[],"ratingKey":40809,"key":"/library/metadata/40809","collectionTitle":"","collectionId":-1,"tmdbId":582596},{"name":"Big Trouble in Little China","year":1986,"posterUrl":"/library/metadata/353/thumb/1599307956","imdbId":"","language":"en","overview":"When trucker Jack Burton agreed to take his friend, Wang Chi, to pick up his fiancee at the airport, he never expected to get involved in a supernatural battle between good and evil. Wang's fiancee has emerald green eyes, which make her a perfect target for immortal sorcerer Lo Pan and his three invincible cronies. Lo Pan must marry a girl with green eyes so he can regain his physical form.","moviesInCollection":[],"ratingKey":353,"key":"/library/metadata/353","collectionTitle":"","collectionId":-1,"tmdbId":6978},{"name":"Trainspotting","year":1996,"posterUrl":"/library/metadata/2981/thumb/1599308990","imdbId":"","language":"en","overview":"Mark Renton, deeply immersed in the Edinburgh drug scene, tries to clean up and get out, despite the allure of the drugs and influence of friends.","moviesInCollection":[],"ratingKey":2981,"key":"/library/metadata/2981","collectionTitle":"","collectionId":-1,"tmdbId":627},{"name":"Blow","year":2001,"posterUrl":"/library/metadata/390/thumb/1599307969","imdbId":"","language":"en","overview":"A boy named George Jung grows up in a struggling family in the 1950's. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George's father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960's, suggests that he deal marijuana. He is a big hit in California in the 1960's, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.","moviesInCollection":[],"ratingKey":390,"key":"/library/metadata/390","collectionTitle":"","collectionId":-1,"tmdbId":4133},{"name":"The Road to El Dorado","year":2000,"posterUrl":"/library/metadata/2785/thumb/1599308917","imdbId":"","language":"en","overview":"After a failed swindle, two con-men end up with a map to El Dorado, the fabled \"city of gold,\" and an unintended trip to the New World. Much to their surprise, the map does lead the pair to the mythical city, where the startled inhabitants promptly begin to worship them as gods. The only question is, do they take the worshipful natives for all they're worth, or is there a bit more to El Dorado than riches?","moviesInCollection":[],"ratingKey":2785,"key":"/library/metadata/2785","collectionTitle":"","collectionId":-1,"tmdbId":10501},{"name":"The Accountant","year":2016,"posterUrl":"/library/metadata/2278/thumb/1599308717","imdbId":"","language":"en","overview":"As a math savant uncooks the books for a new client, the Treasury Department closes in on his activities and the body count starts to rise.","moviesInCollection":[],"ratingKey":2278,"key":"/library/metadata/2278","collectionTitle":"","collectionId":-1,"tmdbId":302946},{"name":"The Lion King II Simba's Pride","year":1998,"posterUrl":"/library/metadata/2640/thumb/1599308851","imdbId":"","language":"en","overview":"The circle of life continues for Simba, now fully grown and in his rightful place as the king of Pride Rock. Simba and Nala have given birth to a daughter, Kiara who's as rebellious as her father was. But Kiara drives her parents to distraction when she catches the eye of Kovu, the son of the evil lioness, Zira. Will Kovu steal Kiara's heart?","moviesInCollection":[],"ratingKey":2640,"key":"/library/metadata/2640","collectionTitle":"","collectionId":-1,"tmdbId":9732},{"name":"Blue Story","year":2019,"posterUrl":"/library/metadata/40727/thumb/1599309105","imdbId":"","language":"en","overview":"Blue Story is a tragic tale of a friendship between Timmy and Marco, two young boys from opposing postcodes. Timmy, a shy, smart, naive and timid young boy from Deptford, goes to school in Peckham where he strikes up a friendship with Marco, a charismatic, streetwise kid from the local area. Although from warring postcodes, the two quickly form a firm friendship until it is tested and they wind up on rival sides of a street war. Blue Story depicts elements of Rapman's own personal experiences and aspects of his childhood.","moviesInCollection":[],"ratingKey":40727,"key":"/library/metadata/40727","collectionTitle":"","collectionId":-1,"tmdbId":621191},{"name":"The Master","year":2012,"posterUrl":"/library/metadata/2675/thumb/1599308868","imdbId":"","language":"en","overview":"Freddie, a volatile, heavy-drinking veteran who suffers from post-traumatic stress disorder, finds some semblance of a family when he stumbles onto the ship of Lancaster Dodd, the charismatic leader of a new \"religion\" he forms after World War II.","moviesInCollection":[],"ratingKey":2675,"key":"/library/metadata/2675","collectionTitle":"","collectionId":-1,"tmdbId":68722},{"name":"On the Waterfront","year":1954,"posterUrl":"/library/metadata/1649/thumb/1599308455","imdbId":"","language":"en","overview":"Terry Malloy dreams about being a prize fighter, while tending his pigeons and running errands at the docks for Johnny Friendly, the corrupt boss of the dockers union. Terry witnesses a murder by two of Johnny's thugs, and later meets the dead man's sister and feels responsible for his death. She introduces him to Father Barry, who tries to force him to provide information for the courts that will smash the dock racketeers.","moviesInCollection":[],"ratingKey":1649,"key":"/library/metadata/1649","collectionTitle":"","collectionId":-1,"tmdbId":654},{"name":"Piercing","year":2018,"posterUrl":"/library/metadata/1738/thumb/1599308494","imdbId":"","language":"en","overview":"In this twisted love story, a man seeks out an unsuspecting stranger to help him purge the dark torments of his past. His plan goes awry when he encounters a woman with plans of her own.","moviesInCollection":[],"ratingKey":1738,"key":"/library/metadata/1738","collectionTitle":"","collectionId":-1,"tmdbId":440444},{"name":"The Dark Half","year":1993,"posterUrl":"/library/metadata/2389/thumb/1599308756","imdbId":"","language":"en","overview":"Thad Beaumont is the author of a highly successful series of violent pulp thrillers written under the pseudonym of ‘George Stark’, but when he decides to ‘kill-off’ his alter-ego in a mock ceremony, it precipitates a string of sadistic murders matching those in his pulp novels, which are soon discovered to be the work of Stark himself. Looking like a maniacal version of his counterpart, Stark is not so willing to quit the writing game – even if it means coming after Thad's wife and their baby.","moviesInCollection":[],"ratingKey":2389,"key":"/library/metadata/2389","collectionTitle":"","collectionId":-1,"tmdbId":10349},{"name":"The Expendables","year":2010,"posterUrl":"/library/metadata/2444/thumb/1599308777","imdbId":"","language":"en","overview":"Barney Ross leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas, a martial arts expert, heavy weapons specialist, demolitionist, and a loose-cannon sniper. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.","moviesInCollection":[],"ratingKey":2444,"key":"/library/metadata/2444","collectionTitle":"","collectionId":-1,"tmdbId":27578},{"name":"Mile 22","year":2018,"posterUrl":"/library/metadata/1506/thumb/1599308392","imdbId":"","language":"en","overview":"An elite group of American operatives, aided by a top-secret tactical command team, must transport an asset who holds life-threatening information to an extraction point 22 miles away through the hostile streets of an Asian city.","moviesInCollection":[],"ratingKey":1506,"key":"/library/metadata/1506","collectionTitle":"","collectionId":-1,"tmdbId":347375},{"name":"Elvis & Nixon","year":2016,"posterUrl":"/library/metadata/813/thumb/1599308121","imdbId":"","language":"en","overview":"In 1970, a few days before Christmas, Elvis Presley showed up on the White House lawn seeking to be deputized into the Bureau of Narcotics and Dangerous Drugs by the President himself.","moviesInCollection":[],"ratingKey":813,"key":"/library/metadata/813","collectionTitle":"","collectionId":-1,"tmdbId":301348},{"name":"Coraline","year":2009,"posterUrl":"/library/metadata/575/thumb/1599308038","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":575,"key":"/library/metadata/575","collectionTitle":"","collectionId":-1,"tmdbId":14836},{"name":"Dead Space Downfall","year":2008,"posterUrl":"/library/metadata/659/thumb/1599308066","imdbId":"","language":"en","overview":"On a deep space mining mission to a remote planet, an ancient religious relic - thought to be proof of the existence of God - is unearthed and brought aboard. When the unholy artifact unleashes a long-dormant alien race, its glimpse of Heaven transforms the ship into a living Hell. A prequel to the events of the 2008 video game Dead Space.","moviesInCollection":[],"ratingKey":659,"key":"/library/metadata/659","collectionTitle":"","collectionId":-1,"tmdbId":13190},{"name":"LEGO DC Comics Super Heroes Justice League Cosmic Clash","year":2016,"posterUrl":"/library/metadata/1356/thumb/1599308327","imdbId":"","language":"en","overview":"Earth, a shiny jewel floating in the blackness of space... and for the robot known as Brainiac, the last piece to capture for his collection of planets. Not if the Justice League has anything to say about it!","moviesInCollection":[],"ratingKey":1356,"key":"/library/metadata/1356","collectionTitle":"","collectionId":-1,"tmdbId":382512},{"name":"Predator","year":1987,"posterUrl":"/library/metadata/1798/thumb/1599308517","imdbId":"","language":"en","overview":"Dutch and his group of commandos are hired by the CIA to rescue downed airmen from guerillas in a Central American jungle. The mission goes well but as they return they find that something is hunting them. Nearly invisible, it blends in with the forest, taking trophies from the bodies of its victims as it goes along. Occasionally seeing through its eyes, the audience sees it is an intelligent alien hunter, hunting them for sport, killing them off one at a time.","moviesInCollection":[],"ratingKey":1798,"key":"/library/metadata/1798","collectionTitle":"","collectionId":-1,"tmdbId":106},{"name":"White Christmas","year":1954,"posterUrl":"/library/metadata/3136/thumb/1599309043","imdbId":"","language":"en","overview":"Two talented song-and-dance men team up after the war to become one of the hottest acts in show business. In time they befriend and become romantically involved with the beautiful Haynes sisters who comprise a sister act.","moviesInCollection":[],"ratingKey":3136,"key":"/library/metadata/3136","collectionTitle":"","collectionId":-1,"tmdbId":13368},{"name":"Bunraku","year":2010,"posterUrl":"/library/metadata/444/thumb/1599307989","imdbId":"","language":"en","overview":"In a world with no guns, a mysterious drifter, a bartender and a young samurai plot revenge against a ruthless leader and his army of thugs, headed by nine diverse and deadly assassins.","moviesInCollection":[],"ratingKey":444,"key":"/library/metadata/444","collectionTitle":"","collectionId":-1,"tmdbId":30618},{"name":"Ben Is Back","year":2018,"posterUrl":"/library/metadata/332/thumb/1599307948","imdbId":"","language":"en","overview":"19-year-old Ben Burns unexpectedly returns home to his family's suburban home on Christmas Eve morning. Ben's mother, Holly, is relieved and welcoming but wary of her son staying clean. Over a turbulent 24 hours, new truths are revealed, and a mother's undying love for her son is tested as she does everything in her power to keep him safe.","moviesInCollection":[],"ratingKey":332,"key":"/library/metadata/332","collectionTitle":"","collectionId":-1,"tmdbId":492452},{"name":"Fast & Furious","year":2009,"posterUrl":"/library/metadata/39535/thumb/1599309085","imdbId":"","language":"en","overview":"When a crime brings them back to L.A., fugitive ex-con Dom Toretto reignites his feud with agent Brian O'Conner. But as they are forced to confront a shared enemy, Dom and Brian must give in to an uncertain new trust if they hope to outmaneuver him. And the two men will find the best way to get revenge: push the limits of what's possible behind the wheel.","moviesInCollection":[],"ratingKey":39535,"key":"/library/metadata/39535","collectionTitle":"","collectionId":-1,"tmdbId":13804},{"name":"Batman The Dark Knight Returns (Deluxe Edition)","year":2013,"posterUrl":"/library/metadata/300/thumb/1599307936","imdbId":"","language":"en","overview":"Batman has not been seen for ten years. A new breed of criminal ravages Gotham City, forcing fifty-five-year-old Bruce Wayne back into the cape and cowl, but does he still have what it takes to fight crime in a new era?","moviesInCollection":[],"ratingKey":300,"key":"/library/metadata/300","collectionTitle":"","collectionId":-1,"tmdbId":472027},{"name":"300 Rise of an Empire","year":2014,"posterUrl":"/library/metadata/35/thumb/1599307839","imdbId":"","language":"en","overview":"Greek general Themistokles attempts to unite all of Greece by leading the charge that will change the course of the war. Themistokles faces the massive invading Persian forces led by mortal-turned-god, Xerxes and Artemesia, the vengeful commander of the Persian navy.","moviesInCollection":[],"ratingKey":35,"key":"/library/metadata/35","collectionTitle":"","collectionId":-1,"tmdbId":53182},{"name":"BMX Bandits","year":1984,"posterUrl":"/library/metadata/392/thumb/1599307970","imdbId":"","language":"en","overview":"Teens P.J. and Goose get their thrills on BMX bikes, performing hair-raising tricks all across Sydney, Australia. Along with their new friend Judy, they discover a box of walkie-talkies -- and find out that a gang of criminals intends to use them to monitor police signals during a bank robbery. When the young trio snatches the devices, it propels them on a hair-raising adventure in which their pedaling skills might just save their necks.","moviesInCollection":[],"ratingKey":392,"key":"/library/metadata/392","collectionTitle":"","collectionId":-1,"tmdbId":17381},{"name":"Walk the Line","year":2005,"posterUrl":"/library/metadata/3093/thumb/1599309029","imdbId":"","language":"en","overview":"A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.","moviesInCollection":[],"ratingKey":3093,"key":"/library/metadata/3093","collectionTitle":"","collectionId":-1,"tmdbId":69},{"name":"Awaken","year":2015,"posterUrl":"/library/metadata/253/thumb/1599307921","imdbId":"","language":"en","overview":"A random group of people wake up on an Island where they are being hunted down in a sinister plot to harvest their organs.","moviesInCollection":[],"ratingKey":253,"key":"/library/metadata/253","collectionTitle":"","collectionId":-1,"tmdbId":322922},{"name":"Fantastic Four Rise of the Silver Surfer","year":2007,"posterUrl":"/library/metadata/861/thumb/1599308138","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":861,"key":"/library/metadata/861","collectionTitle":"","collectionId":-1,"tmdbId":1979},{"name":"Traders","year":2016,"posterUrl":"/library/metadata/2973/thumb/1599308988","imdbId":"","language":"en","overview":"What if it made perfect sense for ordinary people to kill each other for money? Better than slow grinding financial ruin and misery, and all done according to a strict code by consenting adults. This is Trading.","moviesInCollection":[],"ratingKey":2973,"key":"/library/metadata/2973","collectionTitle":"","collectionId":-1,"tmdbId":347647},{"name":"Dragged Across Concrete","year":2019,"posterUrl":"/library/metadata/751/thumb/1599308101","imdbId":"","language":"en","overview":"Two policemen, one an old-timer, the other his volatile younger partner, find themselves suspended when a video of their strong-arm tactics becomes the media's cause du jour. Low on cash and with no other options, these two embittered soldiers descend into the criminal underworld to gain their just due, but instead find far more than they wanted awaiting them in the shadows.","moviesInCollection":[],"ratingKey":751,"key":"/library/metadata/751","collectionTitle":"","collectionId":-1,"tmdbId":438674},{"name":"Paddington","year":2015,"posterUrl":"/library/metadata/1688/thumb/1599308472","imdbId":"","language":"en","overview":"A young Peruvian bear travels to London in search of a new home. Finding himself lost and alone at Paddington Station, he meets the kindly Brown family.","moviesInCollection":[],"ratingKey":1688,"key":"/library/metadata/1688","collectionTitle":"","collectionId":-1,"tmdbId":116149},{"name":"Hollywood Cop","year":1987,"posterUrl":"/library/metadata/48733/thumb/1601904526","imdbId":"","language":"en","overview":"A detective tries to get back a child who has been kidnapped by gangsters.","moviesInCollection":[],"ratingKey":48733,"key":"/library/metadata/48733","collectionTitle":"","collectionId":-1,"tmdbId":112078},{"name":"The Exorcist III","year":1990,"posterUrl":"/library/metadata/47889/thumb/1599309190","imdbId":"","language":"en","overview":"Set fifteen years after the original film, The Exorcist III centers around the philosophical Lieutenant William F. Kinderman who is investigating a baffling series of murders around Georgetown that all contain the hallmarks of The Gemini, a deceased serial killer. It eventually leads him to a catatonic patient in a psychiatric hospital who has recently started to speak, claiming he is the The Gemini and detailing the murders, but bears a striking resemblance to Father Damien Karras.","moviesInCollection":[],"ratingKey":47889,"key":"/library/metadata/47889","collectionTitle":"","collectionId":-1,"tmdbId":11587},{"name":"The Legend of Hercules","year":2014,"posterUrl":"/library/metadata/2628/thumb/1599308846","imdbId":"","language":"en","overview":"In Ancient Greece 1200 B.C., a queen succumbs to the lust of Zeus to bear a son promised to overthrow the tyrannical rule of the king and restore peace to a land in hardship. But this prince, Hercules, knows nothing of his real identity or his destiny. He desires only one thing: the love of Hebe, Princess of Crete, who has been promised to his own brother. When Hercules learns of his greater purpose, he must choose: to flee with his true love or to fulfill his destiny and become the true hero of his time. The story behind one of the greatest myths is revealed in this action-packed epic - a tale of love, sacrifice and the strength of the human spirit.","moviesInCollection":[],"ratingKey":2628,"key":"/library/metadata/2628","collectionTitle":"","collectionId":-1,"tmdbId":188207},{"name":"The Plague Dogs","year":1983,"posterUrl":"/library/metadata/2743/thumb/1599308897","imdbId":"","language":"en","overview":"The Plague Dogs is a 1982 animated film based on the 1977 novel of the same name by Richard Adams. The story is centred on two dogs named Rowf and Snitter, who escape from a research laboratory in Great Britain. In the process of telling the story, the film highlights the cruelty of performing vivisection and animal research for its own sake.","moviesInCollection":[],"ratingKey":2743,"key":"/library/metadata/2743","collectionTitle":"","collectionId":-1,"tmdbId":30060},{"name":"The Beach Bum","year":2019,"posterUrl":"/library/metadata/2313/thumb/1599308728","imdbId":"","language":"en","overview":"An irreverent comedy about the misadventures of Moondog, a rebellious stoner and lovable rogue who lives large.","moviesInCollection":[],"ratingKey":2313,"key":"/library/metadata/2313","collectionTitle":"","collectionId":-1,"tmdbId":441384},{"name":"Cold Comes the Night","year":2013,"posterUrl":"/library/metadata/540/thumb/1599308025","imdbId":"","language":"en","overview":"A struggling motel owner and her daughter are taken hostage by a nearly blind career criminal to be his eyes as he attempts to retrieve his cash package from a crooked cop.","moviesInCollection":[],"ratingKey":540,"key":"/library/metadata/540","collectionTitle":"","collectionId":-1,"tmdbId":210047},{"name":"Centrespread","year":1990,"posterUrl":"/library/metadata/491/thumb/1599308008","imdbId":"","language":"en","overview":"The story of a photographer's struggle in the glamorous world of nude modelling.","moviesInCollection":[],"ratingKey":491,"key":"/library/metadata/491","collectionTitle":"","collectionId":-1,"tmdbId":147637},{"name":"Stranger Than Fiction","year":2006,"posterUrl":"/library/metadata/2174/thumb/1599308681","imdbId":"","language":"en","overview":"Harold Crick is a lonely IRS agent whose mundane existence is transformed when he hears a mysterious voice narrating his life.","moviesInCollection":[],"ratingKey":2174,"key":"/library/metadata/2174","collectionTitle":"","collectionId":-1,"tmdbId":1262},{"name":"Drunk Parents","year":2019,"posterUrl":"/library/metadata/787/thumb/1599308112","imdbId":"","language":"en","overview":"Two drunk parents attempt to hide their ever increasing financial difficulties from their daughter and social circle through elaborate neighborhood schemes.","moviesInCollection":[],"ratingKey":787,"key":"/library/metadata/787","collectionTitle":"","collectionId":-1,"tmdbId":369560},{"name":"Submergence","year":2018,"posterUrl":"/library/metadata/2186/thumb/1599308685","imdbId":"","language":"en","overview":"While James More is held captive by terrorists in Somalia, thousands of miles away on the Greenland Sea, his lover Danny Flinders prepares to dive herself in a submersible into the deep bottom of the ocean, tormented by the memories of their brief encounter in France and her inability to know his whereabouts.","moviesInCollection":[],"ratingKey":2186,"key":"/library/metadata/2186","collectionTitle":"","collectionId":-1,"tmdbId":375327},{"name":"Greyhound","year":2020,"posterUrl":"/library/metadata/47284/thumb/1599309178","imdbId":"","language":"en","overview":"A first-time captain leads a convoy of allied ships carrying thousands of soldiers across the treacherous waters of the “Black Pit” to the front lines of WW2. With no air cover protection for 5 days, the captain and his convoy must battle the surrounding enemy Nazi U-boats in order to give the allies a chance to win the war.","moviesInCollection":[],"ratingKey":47284,"key":"/library/metadata/47284","collectionTitle":"","collectionId":-1,"tmdbId":516486},{"name":"Night at the Museum Battle of the Smithsonian","year":2009,"posterUrl":"/library/metadata/47966/thumb/1599566867","imdbId":"","language":"en","overview":"Hapless museum night watchman Larry Daley must help his living, breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart, Abe Lincoln and Ivan the Terrible.","moviesInCollection":[],"ratingKey":47966,"key":"/library/metadata/47966","collectionTitle":"","collectionId":-1,"tmdbId":18360},{"name":"Ted","year":2012,"posterUrl":"/library/metadata/2250/thumb/1599308708","imdbId":"","language":"en","overview":"John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.","moviesInCollection":[],"ratingKey":2250,"key":"/library/metadata/2250","collectionTitle":"","collectionId":-1,"tmdbId":72105},{"name":"Halloween III Season of the Witch","year":1982,"posterUrl":"/library/metadata/1051/thumb/1599308213","imdbId":"","language":"en","overview":"Dr. Daniel Challis and Ellie Grimbridge stumble onto a gruesome murder scheme when Ellie's novelty-salesman father, Harry, is killed while in possession of a halloween mask made by the Silver Shamrock mask company. The company's owner, Conal Cochran, wants to return Halloween to its darker roots using his masks -- and his unspeakable scheme would unleash death and destruction across the country.","moviesInCollection":[],"ratingKey":1051,"key":"/library/metadata/1051","collectionTitle":"","collectionId":-1,"tmdbId":10676},{"name":"Crank High Voltage","year":2009,"posterUrl":"/library/metadata/586/thumb/1599308042","imdbId":"","language":"en","overview":"Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.","moviesInCollection":[],"ratingKey":586,"key":"/library/metadata/586","collectionTitle":"","collectionId":-1,"tmdbId":15092},{"name":"Star Trek The Motion Picture","year":1979,"posterUrl":"/library/metadata/2141/thumb/1599308668","imdbId":"","language":"en","overview":"When a destructive space entity is spotted approaching Earth, Admiral Kirk resumes command of the Starship Enterprise in order to intercept, examine, and hopefully stop it.","moviesInCollection":[],"ratingKey":2141,"key":"/library/metadata/2141","collectionTitle":"","collectionId":-1,"tmdbId":152},{"name":"Serenity","year":2005,"posterUrl":"/library/metadata/2000/thumb/1599308604","imdbId":"","language":"en","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 – 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.","moviesInCollection":[],"ratingKey":2000,"key":"/library/metadata/2000","collectionTitle":"","collectionId":-1,"tmdbId":16320},{"name":"Need for Speed","year":2014,"posterUrl":"/library/metadata/1597/thumb/1599308431","imdbId":"","language":"en","overview":"The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racer's head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.","moviesInCollection":[],"ratingKey":1597,"key":"/library/metadata/1597","collectionTitle":"","collectionId":-1,"tmdbId":136797},{"name":"Serenity","year":2019,"posterUrl":"/library/metadata/2001/thumb/1599308605","imdbId":"","language":"en","overview":"The quiet life of Baker Dill, a fishing boat captain who lives on the isolated Plymouth Island, where he spends his days obsessed with capturing an elusive tuna while fighting his personal demons, is interrupted when someone from his past comes to him searching for help.","moviesInCollection":[],"ratingKey":2001,"key":"/library/metadata/2001","collectionTitle":"","collectionId":-1,"tmdbId":452832},{"name":"Star Wars","year":1977,"posterUrl":"/library/metadata/42267/thumb/1599309140","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":42267,"key":"/library/metadata/42267","collectionTitle":"","collectionId":-1,"tmdbId":11},{"name":"They Call Me Trinity","year":1971,"posterUrl":"/library/metadata/2918/thumb/1599308969","imdbId":"","language":"en","overview":"The simple story has the pair coming to the rescue of peace-loving Mormons when land-hungry Major Harriman sends his bullies to harass them into giving up their fertile valley. Trinity and Bambino manage to save the Mormons and send the bad guys packing with slapstick humor instead of excessive violence, saving the day.","moviesInCollection":[],"ratingKey":2918,"key":"/library/metadata/2918","collectionTitle":"","collectionId":-1,"tmdbId":9394},{"name":"A Man Alone","year":1955,"posterUrl":"/library/metadata/72/thumb/1599307851","imdbId":"","language":"en","overview":"A gunfighter, stranded in the desert, comes across the aftermath of a stage robbery, in which all the passengers were killed. He takes one of the horses to ride to town to report the massacre, but finds himself accused of it. He also finds himself accused of the murder of the local banker, and winds up hiding in the basement of a house where the local sheriff, who is very sick, lives with his daughter.","moviesInCollection":[],"ratingKey":72,"key":"/library/metadata/72","collectionTitle":"","collectionId":-1,"tmdbId":43315},{"name":"Danger Close","year":2019,"posterUrl":"/library/metadata/630/thumb/1599308056","imdbId":"","language":"en","overview":"Vietnam War, 1966. Australia and New Zealand send troops to support the United States and South Vietnamese in their fight against the communist North. Soldiers are very young men, recruits and volunteers who have never been involved in a combat. On August 18th, members of Delta Company will face the true horror of a ruthless battle among the trees of a rubber plantation called Long Tân. They are barely a hundred. The enemy is a human wave ready to destroy them.","moviesInCollection":[],"ratingKey":630,"key":"/library/metadata/630","collectionTitle":"","collectionId":-1,"tmdbId":508664},{"name":"The Mist","year":2007,"posterUrl":"/library/metadata/2686/thumb/1599308872","imdbId":"","language":"en","overview":"After a violent storm, a dense cloud of mist envelops a small Maine town, trapping artist David Drayton and his five-year-old son in a local grocery store with other people. They soon discover that the mist conceals deadly horrors that threaten their lives, and worse, their sanity.","moviesInCollection":[],"ratingKey":2686,"key":"/library/metadata/2686","collectionTitle":"","collectionId":-1,"tmdbId":5876},{"name":"The Brain That Wouldn't Die","year":1962,"posterUrl":"/library/metadata/2338/thumb/1599308737","imdbId":"","language":"en","overview":"Dr. Bill Cortner and his fiancée, Jan Compton, are driving to his lab when they get into a horrible car accident. Compton is decapitated. But Cortner is not fazed by this seemingly insurmountable hurdle. His expertise is in transplants, and he is excited to perform the first head transplant. Keeping Compton's head alive in his lab, Cortner plans the groundbreaking yet unorthodox surgery. First, however, he needs a body.","moviesInCollection":[],"ratingKey":2338,"key":"/library/metadata/2338","collectionTitle":"","collectionId":-1,"tmdbId":33468},{"name":"Seven Samurai","year":1956,"posterUrl":"/library/metadata/2003/thumb/1599308606","imdbId":"","language":"en","overview":"A samurai answers a village's request for protection after he falls on hard times. The town needs protection from bandits, so the samurai gathers six others to help him teach the people how to defend themselves, and the villagers provide the soldiers with food. A giant battle occurs when 40 bandits attack the village.","moviesInCollection":[],"ratingKey":2003,"key":"/library/metadata/2003","collectionTitle":"","collectionId":-1,"tmdbId":346},{"name":"Tangled","year":2010,"posterUrl":"/library/metadata/2242/thumb/1599308704","imdbId":"","language":"en","overview":"When the kingdom's most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower, he's taken hostage by Rapunzel, a beautiful and feisty tower-bound teen with 70 feet of magical, golden hair. Flynn's curious captor, who's looking for her ticket out of the tower where she's been locked away for years, strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade, complete with a super-cop horse, an over-protective chameleon and a gruff gang of pub thugs.","moviesInCollection":[],"ratingKey":2242,"key":"/library/metadata/2242","collectionTitle":"","collectionId":-1,"tmdbId":38757},{"name":"Tower Heist","year":2011,"posterUrl":"/library/metadata/2966/thumb/1599308985","imdbId":"","language":"en","overview":"A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million they’re sure is hidden in the penthouse.","moviesInCollection":[],"ratingKey":2966,"key":"/library/metadata/2966","collectionTitle":"","collectionId":-1,"tmdbId":59108},{"name":"Judge Dredd","year":1995,"posterUrl":"/library/metadata/1263/thumb/1599308294","imdbId":"","language":"en","overview":"In a dystopian future, Dredd, the most famous judge (a cop with instant field judiciary powers) is convicted for a crime he did not commit while his murderous counterpart escapes.","moviesInCollection":[],"ratingKey":1263,"key":"/library/metadata/1263","collectionTitle":"","collectionId":-1,"tmdbId":9482},{"name":"Mortal Engines","year":2019,"posterUrl":"/library/metadata/1546/thumb/1599308410","imdbId":"","language":"en","overview":"Many thousands of years in the future, Earth’s 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.","moviesInCollection":[],"ratingKey":1546,"key":"/library/metadata/1546","collectionTitle":"","collectionId":-1,"tmdbId":428078},{"name":"Aladdin","year":1992,"posterUrl":"/library/metadata/137/thumb/1599307876","imdbId":"","language":"en","overview":"Princess Jasmine grows tired of being forced to remain in the palace, so she sneaks out into the marketplace, in disguise, where she meets street-urchin Aladdin. The couple falls in love, although Jasmine may only marry a prince. After being thrown in jail, Aladdin becomes embroiled in a plot to find a mysterious lamp, with which the evil Jafar hopes to rule the land.","moviesInCollection":[],"ratingKey":137,"key":"/library/metadata/137","collectionTitle":"","collectionId":-1,"tmdbId":812},{"name":"The Emperor's New Groove","year":2000,"posterUrl":"/library/metadata/2433/thumb/1599308772","imdbId":"","language":"en","overview":"Kuzco is a self-centered emperor who summons Pacha from a village and to tell him that his home will be destroyed to make room for Kuzco's new summer home. Kuzco's advisor, Yzma, tries to poison Kuzco and accidentally turns him into a llama, who accidentally ends up in Pacha's village. Pacha offers to help Kuzco if he doesn't destroy his house, and so they form an unlikely partnership.","moviesInCollection":[],"ratingKey":2433,"key":"/library/metadata/2433","collectionTitle":"","collectionId":-1,"tmdbId":11688},{"name":"Mortal Kombat Legends Scorpion’s Revenge","year":2020,"posterUrl":"/library/metadata/39732/thumb/1599309093","imdbId":"","language":"en","overview":"After the vicious slaughter of his family by stone-cold mercenary Sub-Zero, Hanzo Hasashi is exiled to the torturous Netherrealm. There, in exchange for his servitude to the sinister Quan Chi, he’s given a chance to avenge his family – and is resurrected as Scorpion, a lost soul bent on revenge. Back on Earthrealm, Lord Raiden gathers a team of elite warriors – Shaolin monk Liu Kang, Special Forces officer Sonya Blade and action star Johnny Cage – an unlikely band of heroes with one chance to save humanity. To do this, they must defeat Shang Tsung’s horde of Outworld gladiators and reign over the Mortal Kombat tournament.","moviesInCollection":[],"ratingKey":39732,"key":"/library/metadata/39732","collectionTitle":"","collectionId":-1,"tmdbId":664767},{"name":"The Spy Who Dumped Me","year":2018,"posterUrl":"/library/metadata/2833/thumb/1599308939","imdbId":"","language":"en","overview":"Audrey and Morgan, two thirty-year-old best friends in Los Angeles, are thrust unexpectedly into an international conspiracy when Audrey’s ex-boyfriend shows up at their apartment with a team of deadly assassins on his trail.","moviesInCollection":[],"ratingKey":2833,"key":"/library/metadata/2833","collectionTitle":"","collectionId":-1,"tmdbId":454992},{"name":"Easy Rider","year":1969,"posterUrl":"/library/metadata/804/thumb/1599308118","imdbId":"","language":"en","overview":"A cross-country trip to sell drugs puts two hippie bikers on a collision course with small-town prejudices.","moviesInCollection":[],"ratingKey":804,"key":"/library/metadata/804","collectionTitle":"","collectionId":-1,"tmdbId":624},{"name":"Pay It Forward","year":2000,"posterUrl":"/library/metadata/1716/thumb/1599308484","imdbId":"","language":"en","overview":"Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.","moviesInCollection":[],"ratingKey":1716,"key":"/library/metadata/1716","collectionTitle":"","collectionId":-1,"tmdbId":10647},{"name":"Heavy Traffic","year":1973,"posterUrl":"/library/metadata/1081/thumb/1599308225","imdbId":"","language":"en","overview":"An \"underground\" cartoonist contends with life in the inner city, where various unsavory characters serve as inspiration for his artwork.","moviesInCollection":[],"ratingKey":1081,"key":"/library/metadata/1081","collectionTitle":"","collectionId":-1,"tmdbId":30593},{"name":"Psycho III","year":1986,"posterUrl":"/library/metadata/1818/thumb/1599308526","imdbId":"","language":"en","overview":"Norman Bates is still running his little motel, and he has kept the dressed skeleton he calls 'mother'. One day a nosey journalist comes to see him to ask questions about his past.","moviesInCollection":[],"ratingKey":1818,"key":"/library/metadata/1818","collectionTitle":"","collectionId":-1,"tmdbId":12662},{"name":"Assault on a Queen","year":1966,"posterUrl":"/library/metadata/232/thumb/1599307912","imdbId":"","language":"en","overview":"A group of adventurers refloat a WWII German submarine and prepare to use it to pull a very large heist; The Queen Mary which they plan to rob on the high seas.","moviesInCollection":[],"ratingKey":232,"key":"/library/metadata/232","collectionTitle":"","collectionId":-1,"tmdbId":42716},{"name":"The Greatest Game Ever Played","year":2005,"posterUrl":"/library/metadata/2517/thumb/1599308805","imdbId":"","language":"en","overview":"A biopic of 20-year-old Francis Ouimet who defeated his golfing idol and 1900 US Open Champion, Harry Vardon.","moviesInCollection":[],"ratingKey":2517,"key":"/library/metadata/2517","collectionTitle":"","collectionId":-1,"tmdbId":15487},{"name":"Aladdin","year":2019,"posterUrl":"/library/metadata/138/thumb/1599307877","imdbId":"","language":"en","overview":"A kindhearted street urchin named Aladdin embarks on a magical adventure after finding a lamp that releases a wisecracking genie while a power-hungry Grand Vizier vies for the same lamp that has the power to make their deepest wishes come true.","moviesInCollection":[],"ratingKey":138,"key":"/library/metadata/138","collectionTitle":"","collectionId":-1,"tmdbId":420817},{"name":"Pink Floyd The Endless River","year":2014,"posterUrl":"/library/metadata/1740/thumb/1599308495","imdbId":"","language":"en","overview":"The Endless River is the fifteenth studio album by British progressive rock band Pink Floyd. The Endless River has as its starting point the music that came from the 1993 Division Bell sessions, when David Gilmour, Rick Wright and Nick Mason played freely together at Britannia Row and Astoria studios. This was the first time they had done so since the ‘Wish You Were Here’ sessions in the seventies. Those sessions resulted in The Division Bell, the band’s last studio album.","moviesInCollection":[],"ratingKey":1740,"key":"/library/metadata/1740","collectionTitle":"","collectionId":-1,"tmdbId":301799},{"name":"The Best Man","year":1999,"posterUrl":"/library/metadata/2315/thumb/1599308729","imdbId":"","language":"en","overview":"Harper, a writer who's about to explode into the mainstream leaves behind his girlfriend Robin and heads to New York City to serve as best man for his friend Lance's wedding. Once there, he reunites with the rest of his college circle.","moviesInCollection":[],"ratingKey":2315,"key":"/library/metadata/2315","collectionTitle":"","collectionId":-1,"tmdbId":16162},{"name":"The Iron Lady","year":2011,"posterUrl":"/library/metadata/2591/thumb/1599308833","imdbId":"","language":"en","overview":"A look at the life of Margaret Thatcher, the former Prime Minister of the United Kingdom, with a focus on the price she paid for power.","moviesInCollection":[],"ratingKey":2591,"key":"/library/metadata/2591","collectionTitle":"","collectionId":-1,"tmdbId":71688},{"name":"The Lego Movie","year":2014,"posterUrl":"/library/metadata/2631/thumb/1599308847","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2631,"key":"/library/metadata/2631","collectionTitle":"","collectionId":-1,"tmdbId":137106},{"name":"The Theory of Everything","year":2014,"posterUrl":"/library/metadata/2855/thumb/1599308947","imdbId":"","language":"en","overview":"The Theory of Everything is the extraordinary story of one of the world’s greatest living minds, the renowned astrophysicist Stephen Hawking, who falls deeply in love with fellow Cambridge student Jane Wilde.","moviesInCollection":[],"ratingKey":2855,"key":"/library/metadata/2855","collectionTitle":"","collectionId":-1,"tmdbId":266856},{"name":"Catch-22","year":1970,"posterUrl":"/library/metadata/487/thumb/1599308006","imdbId":"","language":"en","overview":"A bombardier in World War II tries desperately to escape the insanity of the war. However, sometimes insanity is the only sane way to cope with a crazy situation.","moviesInCollection":[],"ratingKey":487,"key":"/library/metadata/487","collectionTitle":"","collectionId":-1,"tmdbId":10364},{"name":"Zero Dark Thirty","year":2012,"posterUrl":"/library/metadata/3199/thumb/1599309064","imdbId":"","language":"en","overview":"A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.","moviesInCollection":[],"ratingKey":3199,"key":"/library/metadata/3199","collectionTitle":"","collectionId":-1,"tmdbId":97630},{"name":"Minions","year":2015,"posterUrl":"/library/metadata/1511/thumb/1599308394","imdbId":"","language":"en","overview":"Minions Stuart, Kevin and Bob are recruited by Scarlet Overkill, a super-villain who, alongside her inventor husband Herb, hatches a plot to take over the world.","moviesInCollection":[],"ratingKey":1511,"key":"/library/metadata/1511","collectionTitle":"","collectionId":-1,"tmdbId":211672},{"name":"Mission Impossible - Rogue Nation","year":2015,"posterUrl":"/library/metadata/1522/thumb/1599308399","imdbId":"","language":"en","overview":"Ethan and team take on their most impossible mission yet—eradicating 'The Syndicate', an International and highly-skilled rogue organisation committed to destroying the IMF.","moviesInCollection":[],"ratingKey":1522,"key":"/library/metadata/1522","collectionTitle":"","collectionId":-1,"tmdbId":177677},{"name":"Sharknado","year":2013,"posterUrl":"/library/metadata/2011/thumb/1599308609","imdbId":"","language":"en","overview":"A freak hurricane hits Los Angeles, causing man-eating sharks to be scooped up in tornadoes and flooding the city with shark-infested seawater. Surfer and bar-owner Fin sets out with his friends Baz and Nova to rescue his estranged wife April and teenage daughter Claudia.","moviesInCollection":[],"ratingKey":2011,"key":"/library/metadata/2011","collectionTitle":"","collectionId":-1,"tmdbId":205321},{"name":"25th Hour","year":2002,"posterUrl":"/library/metadata/26/thumb/1599307836","imdbId":"","language":"en","overview":"In New York City in the days following the events of 9/11, Monty Brogan is a convicted drug dealer about to start a seven-year prison sentence, and his final hours of freedom are devoted to hanging out with his closest buddies and trying to prepare his girlfriend for his extended absence.","moviesInCollection":[],"ratingKey":26,"key":"/library/metadata/26","collectionTitle":"","collectionId":-1,"tmdbId":1429},{"name":"Sinbad Legend of the Seven Seas","year":2003,"posterUrl":"/library/metadata/2042/thumb/1599308624","imdbId":"","language":"en","overview":"The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.","moviesInCollection":[],"ratingKey":2042,"key":"/library/metadata/2042","collectionTitle":"","collectionId":-1,"tmdbId":14411},{"name":"Batman Bad Blood","year":2016,"posterUrl":"/library/metadata/288/thumb/1599307933","imdbId":"","language":"en","overview":"Bruce Wayne is missing. Alfred covers for him while Nightwing and Robin patrol Gotham City in his stead. And a new player, Batwoman, investigates Batman's disappearance.","moviesInCollection":[],"ratingKey":288,"key":"/library/metadata/288","collectionTitle":"","collectionId":-1,"tmdbId":366924},{"name":"Quantum of Solace","year":2008,"posterUrl":"/library/metadata/41084/thumb/1599309124","imdbId":"","language":"en","overview":"Quantum of Solace continues the adventures of James Bond after Casino Royale. Betrayed by Vesper, the woman he loved, 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth, Bond and M interrogate Mr. White, who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.","moviesInCollection":[],"ratingKey":41084,"key":"/library/metadata/41084","collectionTitle":"","collectionId":-1,"tmdbId":10764},{"name":"Star Wars Despecialized Edition 4k77","year":2020,"posterUrl":"/library/metadata/39469/thumb/1599309084","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":39469,"key":"/library/metadata/39469","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Last Christmas","year":2020,"posterUrl":"/library/metadata/1342/thumb/1599308322","imdbId":"","language":"en","overview":"Kate is a young woman who has a habit of making bad decisions, and her last date with disaster occurs after she accepts work as Santa's elf for a department store. However, after she meets Tom there, her life takes a new turn.","moviesInCollection":[],"ratingKey":1342,"key":"/library/metadata/1342","collectionTitle":"","collectionId":-1,"tmdbId":549053},{"name":"Muppets Most Wanted","year":2014,"posterUrl":"/library/metadata/1569/thumb/1599308419","imdbId":"","language":"en","overview":"While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.","moviesInCollection":[],"ratingKey":1569,"key":"/library/metadata/1569","collectionTitle":"","collectionId":-1,"tmdbId":145220},{"name":"Graduation","year":2016,"posterUrl":"/library/metadata/1024/thumb/1599308202","imdbId":"","language":"en","overview":"Romeo Aldea, a physician living in a small mountain town in Transylvania, has raised his daughter Eliza with the idea that once she turns 18, she will leave to study and live abroad. His plan is close to succeeding. Eliza has won a scholarship to study psychology in the UK. She just has to pass her final exams – a formality for such a good student. On the day before her first written exam, Eliza is assaulted in an attack that could jeopardize her entire future. Now Romeo has to make a decision. There are ways of solving the situation, but none of them using the principles he, as a father, has taught his daughter.","moviesInCollection":[],"ratingKey":1024,"key":"/library/metadata/1024","collectionTitle":"","collectionId":-1,"tmdbId":374458},{"name":"The Ghost Army","year":2013,"posterUrl":"/library/metadata/2487/thumb/1599308794","imdbId":"","language":"en","overview":"During World War II, a hand-picked group of American GI's undertook a bizarre mission: create a traveling road show of deception on the battlefields of Europe, with the German Army as their audience. The 23rd Headquarters Special Troops used inflatable rubber tanks, sound trucks, and dazzling performance art to bluff the enemy again and again, often right along the front lines. Many of the men picked to carry out these dangerous deception missions were artists. Some went on to become famous, including fashion designer Bill Blass. In their spare time, they painted and sketched their way across Europe, creating a unique and moving visual record of their war. Their secret mission was kept hushed up for nearly 50 years after the war's end.","moviesInCollection":[],"ratingKey":2487,"key":"/library/metadata/2487","collectionTitle":"","collectionId":-1,"tmdbId":197276},{"name":"Philadelphia","year":1993,"posterUrl":"/library/metadata/1736/thumb/1599308493","imdbId":"","language":"en","overview":"Two competing lawyers join forces to sue a prestigious law firm for AIDS discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.","moviesInCollection":[],"ratingKey":1736,"key":"/library/metadata/1736","collectionTitle":"","collectionId":-1,"tmdbId":9800},{"name":"Feel the Beat","year":2020,"posterUrl":"/library/metadata/45740/thumb/1599309148","imdbId":"","language":"en","overview":"After failing to make it on Broadway, April returns to her hometown and reluctantly begins training a misfit group of young dancers for a competition.","moviesInCollection":[],"ratingKey":45740,"key":"/library/metadata/45740","collectionTitle":"","collectionId":-1,"tmdbId":707886},{"name":"The Hunger Games","year":2012,"posterUrl":"/library/metadata/2563/thumb/1599308822","imdbId":"","language":"en","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 “Tributes” 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’s 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.","moviesInCollection":[],"ratingKey":2563,"key":"/library/metadata/2563","collectionTitle":"","collectionId":-1,"tmdbId":70160},{"name":"The Silence of the Lambs","year":1991,"posterUrl":"/library/metadata/2817/thumb/1599308931","imdbId":"","language":"en","overview":"Clarice Starling is a top student at the FBI's training academy. Jack Crawford wants Clarice to interview Dr. Hannibal Lecter, a brilliant psychiatrist who is also a violent psychopath, serving life behind bars for various acts of murder and cannibalism. Crawford believes that Lecter may have insight into a case and that Starling, as an attractive young woman, may be just the bait to draw him out.","moviesInCollection":[],"ratingKey":2817,"key":"/library/metadata/2817","collectionTitle":"","collectionId":-1,"tmdbId":274},{"name":"Survive the Night","year":2020,"posterUrl":"/library/metadata/46536/thumb/1599309164","imdbId":"","language":"en","overview":"A disgraced doctor and his family are held hostage at their home by criminals on the run, when a robbery-gone-awry requires them to seek immediate medical attention.","moviesInCollection":[],"ratingKey":46536,"key":"/library/metadata/46536","collectionTitle":"","collectionId":-1,"tmdbId":686245},{"name":"Men in Black 3","year":2012,"posterUrl":"/library/metadata/1496/thumb/1599308387","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1496,"key":"/library/metadata/1496","collectionTitle":"","collectionId":-1,"tmdbId":41154},{"name":"Kill Switch","year":2017,"posterUrl":"/library/metadata/1301/thumb/1599308307","imdbId":"","language":"en","overview":"A pilot battles to save his family and the planet after an experiment for unlimited energy goes wrong.","moviesInCollection":[],"ratingKey":1301,"key":"/library/metadata/1301","collectionTitle":"","collectionId":-1,"tmdbId":423988},{"name":"Rush Hour","year":1998,"posterUrl":"/library/metadata/1946/thumb/1599308583","imdbId":"","language":"en","overview":"When Hong Kong Inspector Lee is summoned to Los Angeles to investigate a kidnapping, the FBI doesn't want any outside help and assigns cocky LAPD Detective James Carter to distract Lee from the case. Not content to watch the action from the sidelines, Lee and Carter form an unlikely partnership and investigate the case themselves.","moviesInCollection":[],"ratingKey":1946,"key":"/library/metadata/1946","collectionTitle":"","collectionId":-1,"tmdbId":2109},{"name":"Take Shelter","year":2011,"posterUrl":"/library/metadata/2234/thumb/1599308701","imdbId":"","language":"en","overview":"Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.","moviesInCollection":[],"ratingKey":2234,"key":"/library/metadata/2234","collectionTitle":"","collectionId":-1,"tmdbId":64720},{"name":"Duel","year":1971,"posterUrl":"/library/metadata/791/thumb/1599308114","imdbId":"","language":"en","overview":"Traveling businessman David Mann angers the driver of a rusty tanker while crossing the Californian desert. A simple trip turns deadly, as Mann struggles to stay on the road while the tanker plays cat and mouse with his life.","moviesInCollection":[],"ratingKey":791,"key":"/library/metadata/791","collectionTitle":"","collectionId":-1,"tmdbId":839},{"name":"The House on Sorority Row","year":1983,"posterUrl":"/library/metadata/2553/thumb/1599308818","imdbId":"","language":"en","overview":"After a seemingly innocent prank goes horribly wrong, a group of sorority sisters are stalked and murdered one by one in their sorority house while throwing a party to celebrate their graduation.","moviesInCollection":[],"ratingKey":2553,"key":"/library/metadata/2553","collectionTitle":"","collectionId":-1,"tmdbId":40229},{"name":"The Well Digger's Daughter","year":2011,"posterUrl":"/library/metadata/2896/thumb/1599308961","imdbId":"","language":"en","overview":"It's the beginning of the WWII. South of France. Patricia, 18, is the oldest daughter of a well-digger, Pascal, who considers her a princess because of her moral qualities. She's kind, devoted. One day, she briefly meets a young man, Jacques, the son of Mazel, owner of the shop where her father buy his material. He's handsome and teasing. Her father's friend, Felipe, would love to marry her, and he invites her to an aviation show. She accepts his invitation only because she knows Jacques is a pilot and will be there. Soon, she'll carry his child, and he'll be gone, and the family will have to deal with this out-of-wedlock pregnancy...","moviesInCollection":[],"ratingKey":2896,"key":"/library/metadata/2896","collectionTitle":"","collectionId":-1,"tmdbId":62580},{"name":"The Night Before","year":2015,"posterUrl":"/library/metadata/2717/thumb/1599308886","imdbId":"","language":"en","overview":"In New York City for their annual tradition of Christmas Eve debauchery, three lifelong best friends set out to find the Holy Grail of Christmas parties since their yearly reunion might be coming to an end.","moviesInCollection":[],"ratingKey":2717,"key":"/library/metadata/2717","collectionTitle":"","collectionId":-1,"tmdbId":296100},{"name":"Unforgiven","year":1992,"posterUrl":"/library/metadata/41082/thumb/1599309123","imdbId":"","language":"en","overview":"William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.","moviesInCollection":[],"ratingKey":41082,"key":"/library/metadata/41082","collectionTitle":"","collectionId":-1,"tmdbId":33},{"name":"The Art of Racing in the Rain","year":2019,"posterUrl":"/library/metadata/2299/thumb/1599308724","imdbId":"","language":"en","overview":"A family dog—with a near-human soul and a philosopher's mind—evaluates his life through the lessons learned by his human owner, a race-car driver.","moviesInCollection":[],"ratingKey":2299,"key":"/library/metadata/2299","collectionTitle":"","collectionId":-1,"tmdbId":522924},{"name":"Ass Backwards","year":2013,"posterUrl":"/library/metadata/228/thumb/1599307911","imdbId":"","language":"en","overview":"Two best friends (Kate and Chloe) embark on a cross country trip back to their hometown to attempt to win a pageant that eluded them as children.","moviesInCollection":[],"ratingKey":228,"key":"/library/metadata/228","collectionTitle":"","collectionId":-1,"tmdbId":159024},{"name":"Justice League The Flashpoint Paradox","year":2013,"posterUrl":"/library/metadata/1284/thumb/1599308301","imdbId":"","language":"en","overview":"When time travel allows a past wrong to be righted for The Flash and his family, the ripples of the event prove disastrous as a fractured, alternate reality now exists where a Justice League never formed, and even Superman is nowhere to be found. Teaming with a grittier, more violent Dark Knight and Cyborg, Flash races to restore the continuity of his original timeline while this new world is ravaged by a fierce war between Wonder Woman's Amazons and Aquaman’s Atlanteans.","moviesInCollection":[],"ratingKey":1284,"key":"/library/metadata/1284","collectionTitle":"","collectionId":-1,"tmdbId":183011},{"name":"The One and Only Ivan","year":2020,"posterUrl":"/library/metadata/47466/thumb/1599309183","imdbId":"","language":"en","overview":"Ivan is a 400-pound silverback gorilla who shares a communal habitat in a suburban shopping mall with Stella the elephant, Bob the dog, and various other animals. He has few memories of the jungle where he was captured, but when a baby elephant named Ruby arrives, it touches something deep within him. Ruby is recently separated from her family in the wild, which causes him to question his life, where he comes from and where he ultimately wants to be.","moviesInCollection":[],"ratingKey":47466,"key":"/library/metadata/47466","collectionTitle":"","collectionId":-1,"tmdbId":508570},{"name":"My Girl","year":1991,"posterUrl":"/library/metadata/1576/thumb/1599308422","imdbId":"","language":"en","overview":"Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is \"allergic to everything\", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse...","moviesInCollection":[],"ratingKey":1576,"key":"/library/metadata/1576","collectionTitle":"","collectionId":-1,"tmdbId":4032},{"name":"Big","year":1988,"posterUrl":"/library/metadata/346/thumb/1599307953","imdbId":"","language":"en","overview":"When a young boy makes a wish at a carnival machine to be big—he wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman.","moviesInCollection":[],"ratingKey":346,"key":"/library/metadata/346","collectionTitle":"","collectionId":-1,"tmdbId":2280},{"name":"Do the Right Thing","year":1989,"posterUrl":"/library/metadata/719/thumb/1599308089","imdbId":"","language":"en","overview":"Salvatore \"Sal\" Fragione is the Italian owner of a pizzeria in Brooklyn. A neighborhood local, Buggin' Out, becomes upset when he sees that the pizzeria's Wall of Fame exhibits only Italian actors. Buggin' Out believes a pizzeria in a black neighborhood should showcase black actors, but Sal disagrees. The wall becomes a symbol of racism and hate to Buggin' Out and to other people in the neighborhood, and tensions rise.","moviesInCollection":[],"ratingKey":719,"key":"/library/metadata/719","collectionTitle":"","collectionId":-1,"tmdbId":925},{"name":"Marjorie Prime","year":2017,"posterUrl":"/library/metadata/1457/thumb/1599308369","imdbId":"","language":"en","overview":"A service which creates holographic projections of late family members allows an elderly woman to spend time with a younger version of her deceased husband.","moviesInCollection":[],"ratingKey":1457,"key":"/library/metadata/1457","collectionTitle":"","collectionId":-1,"tmdbId":426254},{"name":"A Vigilante","year":2018,"posterUrl":"/library/metadata/98/thumb/1599307862","imdbId":"","language":"en","overview":"A once-abused woman devotes herself to ridding victims of their domestic abusers while hunting down the one she must kill to be truly free.","moviesInCollection":[],"ratingKey":98,"key":"/library/metadata/98","collectionTitle":"","collectionId":-1,"tmdbId":500904},{"name":"Paterno","year":2018,"posterUrl":"/library/metadata/1707/thumb/1599308480","imdbId":"","language":"en","overview":"After becoming the winningest coach in college football history, Joe Paterno is embroiled in Penn State's Jerry Sandusky sexual abuse scandal, challenging his legacy and forcing him to face questions of institutional failure regarding the victims.","moviesInCollection":[],"ratingKey":1707,"key":"/library/metadata/1707","collectionTitle":"","collectionId":-1,"tmdbId":467867},{"name":"The Secret of My Success","year":1987,"posterUrl":"/library/metadata/2807/thumb/1599308927","imdbId":"","language":"en","overview":"Brantley Foster, a well-educated kid from Kansas, has always dreamed of making it big in New York, but once in New York, he learns that jobs - and girls - are hard to get. When Brantley visits his uncle, Howard Prescott, who runs a multi-million-dollar company, he is given a job in the company's mail room.","moviesInCollection":[],"ratingKey":2807,"key":"/library/metadata/2807","collectionTitle":"","collectionId":-1,"tmdbId":10021},{"name":"Zoolander","year":2001,"posterUrl":"/library/metadata/3205/thumb/1599309066","imdbId":"","language":"en","overview":"Clear the runway for Derek Zoolander, VH1's three-time male model of the year. His face falls when hippie-chic \"he's so hot right now\" Hansel scooters in to steal this year's award. The evil fashion guru Mugatu seizes the opportunity to turn Derek into a killing machine. Its a well-designed conspiracy and only with the help of Hansel and a few well-chosen accessories can Derek make the world safe.","moviesInCollection":[],"ratingKey":3205,"key":"/library/metadata/3205","collectionTitle":"","collectionId":-1,"tmdbId":9398},{"name":"The Night Clerk","year":2020,"posterUrl":"/library/metadata/41153/thumb/1599309129","imdbId":"","language":"en","overview":"Hotel night clerk Bart Bromley is a highly intelligent young man on the Autism spectrum. When a woman is murdered during his shift, Bart becomes the prime suspect. As the police investigation closes in, Bart makes a personal connection with a beautiful guest named Andrea, but soon realises he must stop the real murderer before she becomes the next victim.","moviesInCollection":[],"ratingKey":41153,"key":"/library/metadata/41153","collectionTitle":"","collectionId":-1,"tmdbId":526007},{"name":"Django Unchained","year":2012,"posterUrl":"/library/metadata/718/thumb/1599308088","imdbId":"","language":"en","overview":"With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.","moviesInCollection":[],"ratingKey":718,"key":"/library/metadata/718","collectionTitle":"","collectionId":-1,"tmdbId":68718},{"name":"Airplane!","year":1980,"posterUrl":"/library/metadata/136/thumb/1599307876","imdbId":"","language":"en","overview":"Alcoholic pilot, Ted Striker has developed a fear of flying due to wartime trauma, but nevertheless boards a passenger jet in an attempt to woo back his stewardess girlfriend. Food poisoning decimates the passengers and crew, leaving it up to Striker to land the plane with the help of a glue-sniffing air traffic controller and Striker's vengeful former Air Force captain, who must both talk him down.","moviesInCollection":[],"ratingKey":136,"key":"/library/metadata/136","collectionTitle":"","collectionId":-1,"tmdbId":813},{"name":"The Royal Tenenbaums","year":2001,"posterUrl":"/library/metadata/2790/thumb/1599308919","imdbId":"","language":"en","overview":"Royal Tenenbaum and his wife Etheline had three children and then they separated. All three children are extraordinary --- all geniuses. Virtually all memory of the brilliance of the young Tenenbaums was subsequently erased by two decades of betrayal, failure, and disaster. Most of this was generally considered to be their father's fault. \"The Royal Tenenbaums\" is the story of the family's sudden, unexpected reunion one recent winter.","moviesInCollection":[],"ratingKey":2790,"key":"/library/metadata/2790","collectionTitle":"","collectionId":-1,"tmdbId":9428},{"name":"The Hitman's Bodyguard","year":2017,"posterUrl":"/library/metadata/2541/thumb/1599308814","imdbId":"","language":"en","overview":"The world top bodyguard gets a new client, a hit man who must testify at the International Court of Justice. They must put their differences aside and work together to make it to the trial on time.","moviesInCollection":[],"ratingKey":2541,"key":"/library/metadata/2541","collectionTitle":"","collectionId":-1,"tmdbId":390043},{"name":"DOA Dead or Alive","year":2006,"posterUrl":"/library/metadata/720/thumb/1599308089","imdbId":"","language":"en","overview":"Four beautiful rivals at an invitation-only martial-arts tournament join forces against a sinister threat. Princess Kasumi is an aristocratic warrior trained by martial-arts masters. Tina Armstrong is a wrestling superstar. Helena Douglas is an athlete with a tragic past. Christie Allen earns her keep as a thief and an assassin-for-hire.","moviesInCollection":[],"ratingKey":720,"key":"/library/metadata/720","collectionTitle":"","collectionId":-1,"tmdbId":9053},{"name":"Very Ordinary Couple","year":2013,"posterUrl":"/library/metadata/3080/thumb/1599309025","imdbId":"","language":"en","overview":"The probability of a couple that had broken up getting back together and having a successful relationship is just 3%. Dong-hee and Young, who had broken up over a minor tiff, later realize their love for each other and end up getting back together. But will they be able to fit into the 3% bracket?","moviesInCollection":[],"ratingKey":3080,"key":"/library/metadata/3080","collectionTitle":"","collectionId":-1,"tmdbId":180252},{"name":"A.I. Artificial Intelligence","year":2001,"posterUrl":"/library/metadata/105/thumb/1599307864","imdbId":"","language":"en","overview":"David, a robotic boy—the first of his kind programmed to love—is adopted as a test case by a Cybertronics employee and his wife. Though he gradually becomes their child, a series of unexpected circumstances make this life impossible for David. Without final acceptance by humans or machines, David embarks on a journey to discover where he truly belongs, uncovering a world in which the line between robot and machine is both vast and profoundly thin.","moviesInCollection":[],"ratingKey":105,"key":"/library/metadata/105","collectionTitle":"","collectionId":-1,"tmdbId":644},{"name":"Reign of the Supermen","year":2019,"posterUrl":"/library/metadata/1872/thumb/1599308550","imdbId":"","language":"en","overview":"In the wake of The Death of Superman, the world is still mourning the loss of the Man of Steel following his fatal battle with the monster Doomsday. However, no sooner as his body been laid to rest than do four new bearers of the Superman shield come forward to take on the mantle. The Last Son of Krypton, Superboy, Steel, and the Cyborg Superman all attempt to fill the vacuum left by the world's greatest champion. Meanwhile, Superman's death has also signaled to the universe that Earth is vulnerable. Can these new Supermen and the rest of the heroes prove them wrong?","moviesInCollection":[],"ratingKey":1872,"key":"/library/metadata/1872","collectionTitle":"","collectionId":-1,"tmdbId":487672},{"name":"Almost an Angel","year":1990,"posterUrl":"/library/metadata/166/thumb/1599307887","imdbId":"","language":"en","overview":"Terry Dean is an electronics wizard and thief. After he is released from jail, he is hit by a car while saving a little girl's life. While in the hospital, he dreams that God visits him and tells him he's an Angel, and must start doing good things to make up for his past life. Not believing it at first, he soon becomes convinced he must be an Angel. Not having any Angel powers yet, he must use his own experiences and talents to make good things happen.","moviesInCollection":[],"ratingKey":166,"key":"/library/metadata/166","collectionTitle":"","collectionId":-1,"tmdbId":25943},{"name":"Æon Flux","year":2005,"posterUrl":"/library/metadata/2/thumb/1599307740","imdbId":"","language":"en","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 Æon 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.","moviesInCollection":[],"ratingKey":2,"key":"/library/metadata/2","collectionTitle":"","collectionId":-1,"tmdbId":8202},{"name":"The Incredible Hulk","year":2008,"posterUrl":"/library/metadata/2581/thumb/1599308829","imdbId":"","language":"en","overview":"Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.","moviesInCollection":[],"ratingKey":2581,"key":"/library/metadata/2581","collectionTitle":"","collectionId":-1,"tmdbId":1724},{"name":"Man on a Ledge","year":2012,"posterUrl":"/library/metadata/1452/thumb/1599308366","imdbId":"","language":"en","overview":"An ex-cop turned con threatens to jump to his death from a Manhattan hotel rooftop. The NYPD dispatch a female police psychologist to talk him down. However, unbeknownst to the police on the scene, the suicide attempt is a cover for the biggest diamond heist ever pulled.","moviesInCollection":[],"ratingKey":1452,"key":"/library/metadata/1452","collectionTitle":"","collectionId":-1,"tmdbId":49527},{"name":"Jupiter Ascending","year":2015,"posterUrl":"/library/metadata/1272/thumb/1599308298","imdbId":"","language":"en","overview":"In a universe where human genetic material is the most precious commodity, an impoverished young Earth woman becomes the key to strategic maneuvers and internal strife within a powerful dynasty…","moviesInCollection":[],"ratingKey":1272,"key":"/library/metadata/1272","collectionTitle":"","collectionId":-1,"tmdbId":76757},{"name":"Crystal Fairy & the Magical Cactus","year":2013,"posterUrl":"/library/metadata/611/thumb/1599308050","imdbId":"","language":"en","overview":"Jamie is a boorish, insensitive American twentysomething traveling in Chile, who somehow manages to create chaos at every turn. He and his friends are planning on taking a road trip north to experience a legendary shamanistic hallucinogen called the San Pedro cactus. In a fit of drunkenness at a wild party, Jamie invites an eccentric woman—a radical spirit named Crystal Fairy—to come along.","moviesInCollection":[],"ratingKey":611,"key":"/library/metadata/611","collectionTitle":"","collectionId":-1,"tmdbId":157409},{"name":"Traffic","year":2000,"posterUrl":"/library/metadata/2976/thumb/1599308989","imdbId":"","language":"en","overview":"An exploration of the United States of America's war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin's sheltered trophy wife must learn her husband's ruthless business after he is arrested, endangering her luxurious lifestyle.","moviesInCollection":[],"ratingKey":2976,"key":"/library/metadata/2976","collectionTitle":"","collectionId":-1,"tmdbId":1900},{"name":"The Gatekeepers","year":2013,"posterUrl":"/library/metadata/2485/thumb/1599308793","imdbId":"","language":"en","overview":"In an unprecedented and candid series of interviews, six former heads of the Shin Bet — Israel's intelligence and security agency — speak about their role in Israel's decades-long counterterrorism campaign, discussing their controversial methods and whether the ends ultimately justify the means. (TIFF)","moviesInCollection":[],"ratingKey":2485,"key":"/library/metadata/2485","collectionTitle":"","collectionId":-1,"tmdbId":127918},{"name":"Insurgent","year":2015,"posterUrl":"/library/metadata/1200/thumb/1599308269","imdbId":"","language":"en","overview":"Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.","moviesInCollection":[],"ratingKey":1200,"key":"/library/metadata/1200","collectionTitle":"","collectionId":-1,"tmdbId":262500},{"name":"Justice League Gods and Monsters","year":2015,"posterUrl":"/library/metadata/1283/thumb/1599308300","imdbId":"","language":"en","overview":"In an alternate universe, very different versions of DC's Trinity fight against the government after they are framed for an embassy bombing.","moviesInCollection":[],"ratingKey":1283,"key":"/library/metadata/1283","collectionTitle":"","collectionId":-1,"tmdbId":323027},{"name":"The Little Mermaid II Return to the Sea","year":2000,"posterUrl":"/library/metadata/2642/thumb/1599308852","imdbId":"","language":"en","overview":"Set several years after the first film, Ariel and Prince Eric are happily married with a daughter, Melody. In order to protect Melody from the Sea Witch, Morgana, they have not told her about her mermaid heritage. Melody is curious and ventures into the sea, where she meets new friends. But will she become a pawn in Morgana's quest to take control of the ocean from King Triton?","moviesInCollection":[],"ratingKey":2642,"key":"/library/metadata/2642","collectionTitle":"","collectionId":-1,"tmdbId":10898},{"name":"The Simpsons Movie","year":2007,"posterUrl":"/library/metadata/2818/thumb/1599308932","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2818,"key":"/library/metadata/2818","collectionTitle":"","collectionId":-1,"tmdbId":35},{"name":"A Shaun the Sheep Movie Farmageddon","year":2020,"posterUrl":"/library/metadata/92/thumb/1599307859","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":92,"key":"/library/metadata/92","collectionTitle":"","collectionId":-1,"tmdbId":422803},{"name":"Thirteen Days","year":2000,"posterUrl":"/library/metadata/2922/thumb/1599308970","imdbId":"","language":"en","overview":"The story of the Cuban Missile Crisis in 1962—the nuclear standoff with the USSR sparked by the discovery by the Americans of missile bases established on the Soviet-allied island of Cuba.","moviesInCollection":[],"ratingKey":2922,"key":"/library/metadata/2922","collectionTitle":"","collectionId":-1,"tmdbId":11973},{"name":"The Lake House","year":2006,"posterUrl":"/library/metadata/2612/thumb/1599308841","imdbId":"","language":"en","overview":"A lonely doctor who once occupied an unusual lakeside home begins exchanging love letters with its former resident, a frustrated architect. They must try to unravel the mystery behind their extraordinary romance before it's too late.","moviesInCollection":[],"ratingKey":2612,"key":"/library/metadata/2612","collectionTitle":"","collectionId":-1,"tmdbId":2044},{"name":"The Monkey King 3","year":2018,"posterUrl":"/library/metadata/2689/thumb/1599308873","imdbId":"","language":"en","overview":"The third installment of the blockbuster fantasy series sees the return of the Monkey King (Aaron Kwok) in his most action-packed adventure yet! While continuing their epic journey to the West, the Monkey King and his companions are taken captive by the Queen of an all-female land, who believes them to be part of an ancient prophecy heralding the fall of her kingdom. With a lot of sorcery and a little bit of charm, the travelers devise a plan to escape. But when their trickery angers the mighty River God, they realize they might just bring about the foretold destruction - unless they can find a way to quell her wrath.","moviesInCollection":[],"ratingKey":2689,"key":"/library/metadata/2689","collectionTitle":"","collectionId":-1,"tmdbId":437543},{"name":"Moonrise Kingdom","year":2012,"posterUrl":"/library/metadata/1544/thumb/1599308409","imdbId":"","language":"en","overview":"Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore – and the peaceful island community is turned upside down in more ways than anyone can handle.","moviesInCollection":[],"ratingKey":1544,"key":"/library/metadata/1544","collectionTitle":"","collectionId":-1,"tmdbId":83666},{"name":"The SpongeBob Movie Sponge Out of Water","year":2015,"posterUrl":"/library/metadata/2831/thumb/1599308938","imdbId":"","language":"en","overview":"Burger Beard is a pirate who is in search of the final page of a magical book that makes any evil plan he writes in it come true, which happens to be the Krabby Patty secret formula. When the entire city of Bikini Bottom is put in danger, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton need to go on a quest that takes them to the surface. In order to get back the recipe and save their city, the gang must retrieve the book and transform themselves into superheroes.","moviesInCollection":[],"ratingKey":2831,"key":"/library/metadata/2831","collectionTitle":"","collectionId":-1,"tmdbId":228165},{"name":"Instant Family","year":2019,"posterUrl":"/library/metadata/1199/thumb/1599308269","imdbId":"","language":"en","overview":"When Pete and Ellie decide to start a family, they stumble into the world of foster care adoption. They hope to take in one small child but when they meet three siblings, including a rebellious 15 year old girl, they find themselves speeding from zero to three kids overnight.","moviesInCollection":[],"ratingKey":1199,"key":"/library/metadata/1199","collectionTitle":"","collectionId":-1,"tmdbId":491418},{"name":"Red Cliff Part II","year":2009,"posterUrl":"/library/metadata/1864/thumb/1599308547","imdbId":"","language":"en","overview":"The battle of Red Cliff continues and the alliance between Xu and East Wu is fracturing. With Cao Cao's massive forces on their doorstep, will the kingdoms of Xu and East Wu survive?","moviesInCollection":[],"ratingKey":1864,"key":"/library/metadata/1864","collectionTitle":"","collectionId":-1,"tmdbId":15384},{"name":"Mother Krampus","year":2017,"posterUrl":"/library/metadata/1338/thumb/1599308321","imdbId":"","language":"en","overview":"Based on the myth of Frau Perchta, a witch that comes on the 12 days of Christmas taking children each night.","moviesInCollection":[],"ratingKey":1338,"key":"/library/metadata/1338","collectionTitle":"","collectionId":-1,"tmdbId":477623},{"name":"Punisher War Zone","year":2008,"posterUrl":"/library/metadata/1823/thumb/1599308528","imdbId":"","language":"en","overview":"Waging his one-man war on the world of organized crime, ruthless vigilante-hero Frank Castle sets his sights on overeager mob boss Billy Russoti. After Russoti is left horribly disfigured by Castle, he sets out for vengeance under his new alias: Jigsaw. With the \"Punisher Task Force\" hot on his trail and the FBI unable to take Jigsaw in, Frank must stand up to the formidable army that Jigsaw has recruited before more of his evil deeds go unpunished.","moviesInCollection":[],"ratingKey":1823,"key":"/library/metadata/1823","collectionTitle":"","collectionId":-1,"tmdbId":13056},{"name":"The Kindergarten Teacher","year":2018,"posterUrl":"/library/metadata/2609/thumb/1599308839","imdbId":"","language":"en","overview":"Lisa Spinelli is a Staten Island teacher who is unusually devoted to her students. When she discovers one of her five-year-olds is a prodigy, she becomes fascinated with the boy, ultimately risking her family and freedom to nurture his talent.","moviesInCollection":[],"ratingKey":2609,"key":"/library/metadata/2609","collectionTitle":"","collectionId":-1,"tmdbId":489927},{"name":"Centurion","year":2010,"posterUrl":"/library/metadata/492/thumb/1599308008","imdbId":"","language":"en","overview":"Britain, A.D. 117. Quintus Dias, the sole survivor of a Pictish raid on a Roman frontier fort, marches north with General Virilus' legendary Ninth Legion, under orders to wipe the Picts from the face of the Earth and destroy their leader, Gorlacon.","moviesInCollection":[],"ratingKey":492,"key":"/library/metadata/492","collectionTitle":"","collectionId":-1,"tmdbId":23759},{"name":"Eastern Promises","year":2007,"posterUrl":"/library/metadata/802/thumb/1599308117","imdbId":"","language":"en","overview":"A Russian teenager, living in London, dies during childbirth but leaves clues to a midwife in her journal, that could tie her child to a rape involving a violent Russian mob family.","moviesInCollection":[],"ratingKey":802,"key":"/library/metadata/802","collectionTitle":"","collectionId":-1,"tmdbId":2252},{"name":"Morgan","year":2016,"posterUrl":"/library/metadata/1545/thumb/1599308409","imdbId":"","language":"en","overview":"A corporate risk-management consultant must determine whether or not to terminate an artificial being's life that was made in a laboratory environment.","moviesInCollection":[],"ratingKey":1545,"key":"/library/metadata/1545","collectionTitle":"","collectionId":-1,"tmdbId":377264},{"name":"Opera","year":1991,"posterUrl":"/library/metadata/1665/thumb/1599308462","imdbId":"","language":"en","overview":"A young opperata is stalked by a deranged fan bent on killing the people associated with her to claim her for himself.","moviesInCollection":[],"ratingKey":1665,"key":"/library/metadata/1665","collectionTitle":"","collectionId":-1,"tmdbId":20115},{"name":"The Captive","year":2014,"posterUrl":"/library/metadata/2352/thumb/1599308742","imdbId":"","language":"en","overview":"Eight years after the disappearance of Cassandra, some disturbing incidents seem to indicate that she's still alive. Police, parents and Cassandra herself, will try to unravel the mystery of her disappearance.","moviesInCollection":[],"ratingKey":2352,"key":"/library/metadata/2352","collectionTitle":"","collectionId":-1,"tmdbId":244761},{"name":"Sex Drive","year":2008,"posterUrl":"/library/metadata/2007/thumb/1599308607","imdbId":"","language":"en","overview":"A high school senior drives cross-country with his best friends to hook up with a babe he met online.","moviesInCollection":[],"ratingKey":2007,"key":"/library/metadata/2007","collectionTitle":"","collectionId":-1,"tmdbId":13523},{"name":"Jay and Silent Bob Strike Back","year":2001,"posterUrl":"/library/metadata/1231/thumb/1599308282","imdbId":"","language":"en","overview":"When Jay and Silent Bob learn that their comic-book alter egos, Bluntman and Chronic, have been sold to Hollywood as part of a big-screen movie that leaves them out of any royalties, the pair travels to Tinseltown to sabotage the production.","moviesInCollection":[],"ratingKey":1231,"key":"/library/metadata/1231","collectionTitle":"","collectionId":-1,"tmdbId":2294},{"name":"Into the Ashes","year":2019,"posterUrl":"/library/metadata/1204/thumb/1599308271","imdbId":"","language":"en","overview":"With an honest job and a loving wife, Nick Brenner believed he had safely escaped his violent, criminal history. But his old crew hasn't forgotten about him or the money he stole, and when they take what Nick now values the most - his wife - he has nothing left to lose. Confronted by the town sheriff, who is also his father-in-law, Nick must decide if he will stay on his new path or indulge in his need for revenge and force his enemies to pay for what they have done.","moviesInCollection":[],"ratingKey":1204,"key":"/library/metadata/1204","collectionTitle":"","collectionId":-1,"tmdbId":609189},{"name":"Being John Malkovich","year":1999,"posterUrl":"/library/metadata/330/thumb/1599307947","imdbId":"","language":"en","overview":"One day at work, unsuccessful puppeteer Craig finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters its mad and controlling world of overtaking another human body.","moviesInCollection":[],"ratingKey":330,"key":"/library/metadata/330","collectionTitle":"","collectionId":-1,"tmdbId":492},{"name":"The Conductor","year":2018,"posterUrl":"/library/metadata/2369/thumb/1599308748","imdbId":"","language":"en","overview":"United States, 1926: Dutch 24-year-old Willy Wolters has immigrated to the American continent with her parents as a child. She dreams of becoming a conductor, but this is an ambition that no one takes seriously. Unbeknownst to her, she'll also become Antonia Brico.","moviesInCollection":[],"ratingKey":2369,"key":"/library/metadata/2369","collectionTitle":"","collectionId":-1,"tmdbId":541611},{"name":"The Grandmaster","year":2013,"posterUrl":"/library/metadata/2504/thumb/1599308801","imdbId":"","language":"en","overview":"Ip Man's peaceful life in Foshan changes after Gong Yutian seeks an heir for his family in Southern China. Ip Man then meets Gong Er who challenges him for the sake of regaining her family's honor. After the Second Sino-Japanese War, Ip Man moves to Hong Kong and struggles to provide for his family. In the mean time, Gong Er chooses the path of vengeance after her father was killed by Ma San.","moviesInCollection":[],"ratingKey":2504,"key":"/library/metadata/2504","collectionTitle":"","collectionId":-1,"tmdbId":44865},{"name":"Stargate","year":1994,"posterUrl":"/library/metadata/2153/thumb/1599308673","imdbId":"","language":"en","overview":"An interstellar teleportation device, found in Egypt, leads to a planet with humans resembling ancient Egyptians who worship the god Ra.","moviesInCollection":[],"ratingKey":2153,"key":"/library/metadata/2153","collectionTitle":"","collectionId":-1,"tmdbId":2164},{"name":"Acts of Violence","year":2018,"posterUrl":"/library/metadata/118/thumb/1599307869","imdbId":"","language":"en","overview":"When his fiancee is kidnapped by human traffickers, Roman and his ex-military brothers set out to track her down and save her before it is too late. Along the way, Roman teams up with Avery, a cop investigating human trafficking and fighting the corrupt bureaucracy that has harmful intentions.","moviesInCollection":[],"ratingKey":118,"key":"/library/metadata/118","collectionTitle":"","collectionId":-1,"tmdbId":479040},{"name":"Percy Jackson Sea of Monsters","year":2013,"posterUrl":"/library/metadata/1722/thumb/1599308487","imdbId":"","language":"en","overview":"In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.","moviesInCollection":[],"ratingKey":1722,"key":"/library/metadata/1722","collectionTitle":"","collectionId":-1,"tmdbId":76285},{"name":"mother!","year":2017,"posterUrl":"/library/metadata/27852/thumb/1599309079","imdbId":"","language":"en","overview":"A couple's relationship is tested when uninvited guests arrive at their home, disrupting their tranquil existence.","moviesInCollection":[],"ratingKey":27852,"key":"/library/metadata/27852","collectionTitle":"","collectionId":-1,"tmdbId":381283},{"name":"Show Dogs","year":2018,"posterUrl":"/library/metadata/2026/thumb/1599308616","imdbId":"","language":"en","overview":"Max, a macho, solitary Rottweiler police dog is ordered to go undercover as a primped show dog in a prestigious Dog Show, along with his human partner, to avert a disaster from happening.","moviesInCollection":[],"ratingKey":2026,"key":"/library/metadata/2026","collectionTitle":"","collectionId":-1,"tmdbId":425148},{"name":"War for the Planet of the Apes","year":2017,"posterUrl":"/library/metadata/3104/thumb/1599309032","imdbId":"","language":"en","overview":"Caesar and his apes are forced into a deadly conflict with an army of humans led by a ruthless Colonel. After the apes suffer unimaginable losses, Caesar wrestles with his darker instincts and begins his own mythic quest to avenge his kind. As the journey finally brings them face to face, Caesar and the Colonel are pitted against each other in an epic battle that will determine the fate of both their species and the future of the planet.","moviesInCollection":[],"ratingKey":3104,"key":"/library/metadata/3104","collectionTitle":"","collectionId":-1,"tmdbId":281338},{"name":"Deadpool","year":2016,"posterUrl":"/library/metadata/663/thumb/1599308067","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":663,"key":"/library/metadata/663","collectionTitle":"","collectionId":-1,"tmdbId":293660},{"name":"Halloween II","year":2009,"posterUrl":"/library/metadata/1050/thumb/1599308213","imdbId":"","language":"en","overview":"Laurie Strode struggles to come to terms with her brother Michael's deadly return to Haddonfield, Illinois. Meanwhile, Michael prepares for another reunion with his sister.","moviesInCollection":[],"ratingKey":1050,"key":"/library/metadata/1050","collectionTitle":"","collectionId":-1,"tmdbId":24150},{"name":"Rudolph's Shiny New Year","year":1976,"posterUrl":"/library/metadata/1939/thumb/1599308580","imdbId":"","language":"en","overview":"Rudolph must find Happy, the baby new year, before the midnight of New Year's Eve.","moviesInCollection":[],"ratingKey":1939,"key":"/library/metadata/1939","collectionTitle":"","collectionId":-1,"tmdbId":30059},{"name":"Mr. & Mrs. Smith","year":2005,"posterUrl":"/library/metadata/1552/thumb/1599308412","imdbId":"","language":"en","overview":"After five (or six) years of vanilla-wedded bliss, ordinary suburbanites John and Jane Smith are stuck in a huge rut. Unbeknownst to each other, they are both coolly lethal, highly-paid assassins working for rival organisations. When they discover they're each other's next target, their secret lives collide in a spicy, explosive mix of wicked comedy, pent-up passion, nonstop action and high-tech weaponry.","moviesInCollection":[],"ratingKey":1552,"key":"/library/metadata/1552","collectionTitle":"","collectionId":-1,"tmdbId":787},{"name":"xXx Return of Xander Cage","year":2017,"posterUrl":"/library/metadata/3183/thumb/1599309059","imdbId":"","language":"en","overview":"Extreme athlete turned government operative Xander Cage comes out of self-imposed exile, thought to be long dead, and is set on a collision course with deadly alpha warrior Xiang and his team in a race to recover a sinister and seemingly unstoppable weapon known as Pandora's Box. Recruiting an all-new group of thrill-seeking cohorts, Xander finds himself enmeshed in a deadly conspiracy that points to collusion at the highest levels of world governments.","moviesInCollection":[],"ratingKey":3183,"key":"/library/metadata/3183","collectionTitle":"","collectionId":-1,"tmdbId":47971},{"name":"Copperhead","year":2013,"posterUrl":"/library/metadata/574/thumb/1599308037","imdbId":"","language":"en","overview":"A family is torn apart during the American Civil War.","moviesInCollection":[],"ratingKey":574,"key":"/library/metadata/574","collectionTitle":"","collectionId":-1,"tmdbId":188826},{"name":"National Lampoon's Christmas Vacation","year":1989,"posterUrl":"/library/metadata/1589/thumb/1599308427","imdbId":"","language":"en","overview":"It's Christmas time and the Griswolds are preparing for a family seasonal celebration, but things never run smoothly for Clark, his wife Ellen and their two kids. Clark's continual bad luck is worsened by his obnoxious family guests, but he manages to keep going knowing that his Christmas bonus is due soon.","moviesInCollection":[],"ratingKey":1589,"key":"/library/metadata/1589","collectionTitle":"","collectionId":-1,"tmdbId":5825},{"name":"Hellboy Animated Sword of Storms","year":2006,"posterUrl":"/library/metadata/1089/thumb/1599308228","imdbId":"","language":"en","overview":"A folklore professor becomes unwittingly possessed by the ancient Japanese demons of Thunder and Lightning. But when The Bureau of Paranormal Research & Defense dispatches a team of agents to investigate, a cursed samurai sword sends Hellboy to a supernatural dimension of ghosts, monsters, and feudal mayhem. Now while pyrokinetic Liz Sherman and fishboy Abe Sapien battle one very pissed-off dragon, a lost and cranky Hellboy must find his way home.","moviesInCollection":[],"ratingKey":1089,"key":"/library/metadata/1089","collectionTitle":"","collectionId":-1,"tmdbId":16774},{"name":"Lords of Chaos","year":2018,"posterUrl":"/library/metadata/1415/thumb/1599308348","imdbId":"","language":"en","overview":"A teenager's quest to launch Norwegian Black Metal in Oslo in the 1990s results in a very violent outcome.","moviesInCollection":[],"ratingKey":1415,"key":"/library/metadata/1415","collectionTitle":"","collectionId":-1,"tmdbId":426249},{"name":"The Hurricane","year":1999,"posterUrl":"/library/metadata/2570/thumb/1599308824","imdbId":"","language":"en","overview":"The story of Rubin \"Hurricane\" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.","moviesInCollection":[],"ratingKey":2570,"key":"/library/metadata/2570","collectionTitle":"","collectionId":-1,"tmdbId":10400},{"name":"Rememory","year":2017,"posterUrl":"/library/metadata/1875/thumb/1599308551","imdbId":"","language":"en","overview":"The widow of a wise professor stumbles upon one of his inventions that's able to record and play a person's memory.","moviesInCollection":[],"ratingKey":1875,"key":"/library/metadata/1875","collectionTitle":"","collectionId":-1,"tmdbId":395814},{"name":"Pawn","year":2013,"posterUrl":"/library/metadata/1714/thumb/1599308483","imdbId":"","language":"en","overview":"A petty robbery spirals into a tense hostage situation after three gunmen hold up a diner that's a front for the mob.","moviesInCollection":[],"ratingKey":1714,"key":"/library/metadata/1714","collectionTitle":"","collectionId":-1,"tmdbId":165739},{"name":"Star Wars II Attack of the Phantom","year":2002,"posterUrl":"/library/metadata/46471/thumb/1599309159","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":46471,"key":"/library/metadata/46471","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Shooter","year":2007,"posterUrl":"/library/metadata/2022/thumb/1599308614","imdbId":"","language":"en","overview":"A marksman living in exile is coaxed back into action after learning of a plot to kill the president. Ultimately double-crossed and framed for the attempt, he goes on the run to track the real killer and find out who exactly set him up, and why??","moviesInCollection":[],"ratingKey":2022,"key":"/library/metadata/2022","collectionTitle":"","collectionId":-1,"tmdbId":7485},{"name":"Bambi","year":1942,"posterUrl":"/library/metadata/275/thumb/1599307928","imdbId":"","language":"en","overview":"Bambi's tale unfolds from season to season as the young prince of the forest learns about life, love, and friends.","moviesInCollection":[],"ratingKey":275,"key":"/library/metadata/275","collectionTitle":"","collectionId":-1,"tmdbId":3170},{"name":"Godzilla King of the Monsters","year":2019,"posterUrl":"/library/metadata/1008/thumb/1599308196","imdbId":"","language":"en","overview":"Follows the heroic efforts of the crypto-zoological agency Monarch as its members face off against a battery of god-sized monsters, including the mighty Godzilla, who collides with Mothra, Rodan, and his ultimate nemesis, the three-headed King Ghidorah. When these ancient super-species - thought to be mere myths - rise again, they all vie for supremacy, leaving humanity's very existence hanging in the balance.","moviesInCollection":[],"ratingKey":1008,"key":"/library/metadata/1008","collectionTitle":"","collectionId":-1,"tmdbId":373571},{"name":"The Great Wall","year":2017,"posterUrl":"/library/metadata/2516/thumb/1599308805","imdbId":"","language":"en","overview":"European mercenaries searching for black powder become embroiled in the defense of the Great Wall of China against a horde of monstrous creatures.","moviesInCollection":[],"ratingKey":2516,"key":"/library/metadata/2516","collectionTitle":"","collectionId":-1,"tmdbId":311324},{"name":"The Giant Mechanical Man","year":2012,"posterUrl":"/library/metadata/2488/thumb/1599308794","imdbId":"","language":"en","overview":"An offbeat romantic comedy about a silver-painted street performer and the soft spoken zoo worker who falls for him.","moviesInCollection":[],"ratingKey":2488,"key":"/library/metadata/2488","collectionTitle":"","collectionId":-1,"tmdbId":100046},{"name":"Watchmen","year":2009,"posterUrl":"/library/metadata/3112/thumb/1599309035","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3112,"key":"/library/metadata/3112","collectionTitle":"","collectionId":-1,"tmdbId":13183},{"name":"Oscar","year":1967,"posterUrl":"/library/metadata/1670/thumb/1599308464","imdbId":"","language":"en","overview":"This film originated as a play in Paris. The story focuses on the one-day adventures of Bertrand Barnier played with a genius of French cinema, Louis de Funes. In the same morning he learns that his daughter is pregnant, an employee stole a large amount of money from his company, his maid is about to resign in order to marry a wealthy neighbor and his body builder is interested in marrying his daughter. The seemingly complicated story-line is full of comedy or errors and some of the most hilarious mime scenes of the French cinema.","moviesInCollection":[],"ratingKey":1670,"key":"/library/metadata/1670","collectionTitle":"","collectionId":-1,"tmdbId":2798},{"name":"American Fable","year":2016,"posterUrl":"/library/metadata/177/thumb/1599307891","imdbId":"","language":"en","overview":"When 11-year-old Gitty discovers that her father, Abe, a good and beloved farmer, is holding a wealthy man hostage in their abandoned silo in order to save their suffering farm, she befriends the captive in secret. As the truth unfolds about who he is and what will happen if he escapes, Gitty chooses to confront the thin line between reality and fiction.","moviesInCollection":[],"ratingKey":177,"key":"/library/metadata/177","collectionTitle":"","collectionId":-1,"tmdbId":381064},{"name":"The 9th Life of Louis Drax","year":2016,"posterUrl":"/library/metadata/2275/thumb/1599308716","imdbId":"","language":"en","overview":"A psychologist who begins working with a young boy who has suffered a near-fatal fall finds himself drawn into a mystery that tests the boundaries of fantasy and reality.","moviesInCollection":[],"ratingKey":2275,"key":"/library/metadata/2275","collectionTitle":"","collectionId":-1,"tmdbId":294795},{"name":"Downhill","year":2020,"posterUrl":"/library/metadata/40949/thumb/1599309111","imdbId":"","language":"en","overview":"Barely escaping an avalanche during a family ski vacation in the Alps, a married couple is thrown into disarray as they are forced to reevaluate their lives and how they feel about each other.","moviesInCollection":[],"ratingKey":40949,"key":"/library/metadata/40949","collectionTitle":"","collectionId":-1,"tmdbId":560391},{"name":"Hummingbird","year":2013,"posterUrl":"/library/metadata/1149/thumb/1599308250","imdbId":"","language":"en","overview":"Homeless and on the run from a military court martial, a damaged ex-special forces soldier navigating London's criminal underworld seizes an opportunity to assume another man's identity, transforming into an avenging angel in the process.","moviesInCollection":[],"ratingKey":1149,"key":"/library/metadata/1149","collectionTitle":"","collectionId":-1,"tmdbId":136418},{"name":"Porky's","year":1981,"posterUrl":"/library/metadata/1791/thumb/1599308514","imdbId":"","language":"en","overview":"Set in 1954, a group of Florida high schoolers seek out to lose their virginity which leads them to seek revenge on a sleazy nightclub owner and his redneck sheriff brother for harassing them.","moviesInCollection":[],"ratingKey":1791,"key":"/library/metadata/1791","collectionTitle":"","collectionId":-1,"tmdbId":10246},{"name":"A Christmas Story 2","year":2012,"posterUrl":"/library/metadata/53/thumb/1599307845","imdbId":"","language":"en","overview":"The original traditional one-hundred-percent red-blooded two-fisted all-american christmas continues five years later with Ralphie, Randy mom and the old man. This time Ralphie has his eyes fixed on a car. But trouble is sure to follow.","moviesInCollection":[],"ratingKey":53,"key":"/library/metadata/53","collectionTitle":"","collectionId":-1,"tmdbId":125504},{"name":"Blade of the Immortal","year":2017,"posterUrl":"/library/metadata/373/thumb/1599307963","imdbId":"","language":"en","overview":"Manji, a highly skilled samurai, becomes cursed with immortality after a legendary battle. Haunted by the brutal murder of his sister, Manji knows that only fighting evil will regain his soul. He promises to help a young girl named Rin avenge her parents, who were killed by a group of master swordsmen led by ruthless warrior Anotsu. The mission will change Manji in ways he could never imagine.","moviesInCollection":[],"ratingKey":373,"key":"/library/metadata/373","collectionTitle":"","collectionId":-1,"tmdbId":426284},{"name":"Slumdog Millionaire","year":2008,"posterUrl":"/library/metadata/2064/thumb/1599308634","imdbId":"","language":"en","overview":"Jamal Malik is an impoverished Indian teen who becomes a contestant on the Hindi version of ‘Who Wants to Be a Millionaire?’ but, after he wins, he is suspected of cheating.","moviesInCollection":[],"ratingKey":2064,"key":"/library/metadata/2064","collectionTitle":"","collectionId":-1,"tmdbId":12405},{"name":"V/H/S","year":2012,"posterUrl":"/library/metadata/3067/thumb/1599309020","imdbId":"","language":"en","overview":"When a group of misfits is hired by an unknown third party to burglarize a desolate house and acquire a rare VHS tape, they discover more found footage than they bargained for.","moviesInCollection":[],"ratingKey":3067,"key":"/library/metadata/3067","collectionTitle":"","collectionId":-1,"tmdbId":84348},{"name":"The Birth of a Nation","year":2016,"posterUrl":"/library/metadata/2321/thumb/1599308731","imdbId":"","language":"en","overview":"Nat Turner, a former slave in America, leads a liberation movement in 1831 to free African-Americans in Virginia that results in a violent retaliation from whites.","moviesInCollection":[],"ratingKey":2321,"key":"/library/metadata/2321","collectionTitle":"","collectionId":-1,"tmdbId":339408},{"name":"Christopher Robin","year":2018,"posterUrl":"/library/metadata/511/thumb/1599308015","imdbId":"","language":"en","overview":"Christopher Robin, the boy who had countless adventures in the Hundred Acre Wood, has grown up and lost his way. Now it’s up to his spirited and loveable stuffed animals, Winnie The Pooh, Tigger, Piglet, and the rest of the gang, to rekindle their friendship and remind him of endless days of childlike wonder and make-believe, when doing nothing was the very best something.","moviesInCollection":[],"ratingKey":511,"key":"/library/metadata/511","collectionTitle":"","collectionId":-1,"tmdbId":420814},{"name":"The Little Mermaid","year":1989,"posterUrl":"/library/metadata/2641/thumb/1599308851","imdbId":"","language":"en","overview":"This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula.","moviesInCollection":[],"ratingKey":2641,"key":"/library/metadata/2641","collectionTitle":"","collectionId":-1,"tmdbId":10144},{"name":"The Mole People","year":1956,"posterUrl":"/library/metadata/2687/thumb/1599308872","imdbId":"","language":"en","overview":"A party of archaeologists discovers the remnants of a mutant five millennia-old Sumerian civilization living beneath a glacier atop a mountain in Mesopatamia.","moviesInCollection":[],"ratingKey":2687,"key":"/library/metadata/2687","collectionTitle":"","collectionId":-1,"tmdbId":41516},{"name":"Undercover Brother","year":2002,"posterUrl":"/library/metadata/3043/thumb/1599309012","imdbId":"","language":"en","overview":"An Afro-American organization, the B.R.O.T.H.E.R.H.O.O.D., is in permanent fight against a white organization \"The Man\" defending the values of the black people in North America. When the Afro-American candidate Gen. Warren Boutwell behaves strangely in his presidential campaign, Undercover Brother is hired to work undercover for \"The Man\" and find what happened with the potential candidate.","moviesInCollection":[],"ratingKey":3043,"key":"/library/metadata/3043","collectionTitle":"","collectionId":-1,"tmdbId":12277},{"name":"The Amazing Spider-Man","year":2012,"posterUrl":"/library/metadata/2287/thumb/1599308720","imdbId":"","language":"en","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 – 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.","moviesInCollection":[],"ratingKey":2287,"key":"/library/metadata/2287","collectionTitle":"","collectionId":-1,"tmdbId":1930},{"name":"Delirium","year":2018,"posterUrl":"/library/metadata/684/thumb/1599308075","imdbId":"","language":"en","overview":"A man recently released from a mental institute inherits a mansion after his parents die. After a series of disturbing events, he comes to believe it is haunted.","moviesInCollection":[],"ratingKey":684,"key":"/library/metadata/684","collectionTitle":"","collectionId":-1,"tmdbId":340601},{"name":"Hobo with a Shotgun","year":2011,"posterUrl":"/library/metadata/1113/thumb/1599308237","imdbId":"","language":"en","overview":"A vigilante homeless man pulls into a new city and finds himself trapped in urban chaos, a city where crime rules and where the city's crime boss reigns. Seeing an urban landscape filled with armed robbers, corrupt cops, abused prostitutes and even a pedophile Santa, the Hobo goes about bringing justice to the city the best way he knows how - with a 20-gauge shotgun. Mayhem ensues when he tries to make things better for the future generation. Street justice will indeed prevail.","moviesInCollection":[],"ratingKey":1113,"key":"/library/metadata/1113","collectionTitle":"","collectionId":-1,"tmdbId":49010},{"name":"Sword of Vengeance","year":2014,"posterUrl":"/library/metadata/2226/thumb/1599308698","imdbId":"","language":"en","overview":"Returning to his homeland after years of slavery, a Norman prince seeks revenge on his father's murderer – his ruthless uncle, Earl Durant. Gaining the trust of a band of exiled farmers, he leads them into battle against Durant, exploiting them in his inexorable quest for vengeance. As one by one they are slaughtered in the brutal battle, will the prince sacrifice everything an everyone to fulfil his quest for blood?","moviesInCollection":[],"ratingKey":2226,"key":"/library/metadata/2226","collectionTitle":"","collectionId":-1,"tmdbId":313074},{"name":"Witching & Bitching","year":2013,"posterUrl":"/library/metadata/3157/thumb/1599309051","imdbId":"","language":"en","overview":"In this heist film turned horror fest, director Álex de la Iglesia's love of mayhem is on full display as a gang of gold thieves lands in a coven of witches who are preparing for an ancient ritual -- and in need of a sacrifice.","moviesInCollection":[],"ratingKey":3157,"key":"/library/metadata/3157","collectionTitle":"","collectionId":-1,"tmdbId":179538},{"name":"Blues Brothers 2000","year":1998,"posterUrl":"/library/metadata/391/thumb/1599307969","imdbId":"","language":"en","overview":"Elwood, the now lone \"Blues Brother\" finally released from prison, is once again enlisted by Sister Mary Stigmata in her latest crusade to raise funds for a children's hospital. Once again hitting the road to re-unite the band and win the big prize at the New Orleans Battle of the Bands, Elwood is pursued cross-country by the cops, led by Cabel the Curtis' son","moviesInCollection":[],"ratingKey":391,"key":"/library/metadata/391","collectionTitle":"","collectionId":-1,"tmdbId":11568},{"name":"Joker","year":2019,"posterUrl":"/library/metadata/1258/thumb/1599308292","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1258,"key":"/library/metadata/1258","collectionTitle":"","collectionId":-1,"tmdbId":475557},{"name":"A Bronx Tale","year":1993,"posterUrl":"/library/metadata/49/thumb/1599307843","imdbId":"","language":"en","overview":"Set in the Bronx during the tumultuous 1960s, an adolescent boy is torn between his honest, working-class father and a violent yet charismatic crime boss. Complicating matters is the youngster's growing attraction - forbidden in his neighborhood - for a beautiful black girl.","moviesInCollection":[],"ratingKey":49,"key":"/library/metadata/49","collectionTitle":"","collectionId":-1,"tmdbId":1607},{"name":"The Big Short","year":2015,"posterUrl":"/library/metadata/2319/thumb/1599308730","imdbId":"","language":"en","overview":"The men who made millions from a global economic meltdown.","moviesInCollection":[],"ratingKey":2319,"key":"/library/metadata/2319","collectionTitle":"","collectionId":-1,"tmdbId":318846},{"name":"Syriana","year":2005,"posterUrl":"/library/metadata/2228/thumb/1599308699","imdbId":"","language":"en","overview":"The Middle Eastern oil industry is the backdrop of this tense drama, which weaves together numerous story lines. Bennett Holiday is an American lawyer in charge of facilitating a dubious merger of oil companies, while Bryan Woodman, a Switzerland-based energy analyst, experiences both personal tragedy and opportunity during a visit with Arabian royalty. Meanwhile, veteran CIA agent Bob Barnes uncovers an assassination plot with unsettling origins.","moviesInCollection":[],"ratingKey":2228,"key":"/library/metadata/2228","collectionTitle":"","collectionId":-1,"tmdbId":231},{"name":"The Cold Light of Day","year":2012,"posterUrl":"/library/metadata/2365/thumb/1599308746","imdbId":"","language":"en","overview":"After his family is kidnapped during their sailing trip in Spain, a young Wall Street trader is confronted by the people responsible: intelligence agents looking to recover a mysterious briefcase.","moviesInCollection":[],"ratingKey":2365,"key":"/library/metadata/2365","collectionTitle":"","collectionId":-1,"tmdbId":77948},{"name":"Ford v Ferrari","year":2020,"posterUrl":"/library/metadata/929/thumb/1599308164","imdbId":"","language":"en","overview":"American car designer Carroll Shelby and the British-born driver Ken Miles work together to battle corporate interference, the laws of physics, and their own personal demons to build a revolutionary race car for Ford Motor Company and take on the dominating race cars of Enzo Ferrari at the 24 Hours of Le Mans in France in 1966.","moviesInCollection":[],"ratingKey":929,"key":"/library/metadata/929","collectionTitle":"","collectionId":-1,"tmdbId":359724},{"name":"Universal Soldier","year":1992,"posterUrl":"/library/metadata/3054/thumb/1599309015","imdbId":"","language":"en","overview":"An American soldier who had been killed during the Vietnam War is revived 25 years later by the military as a semi-android, UniSols, a high-tech soldier of the future. After the failure of the initiative to erase all the soldier's memories, he begins to experience flashbacks that are forcing him to recall his past.","moviesInCollection":[],"ratingKey":3054,"key":"/library/metadata/3054","collectionTitle":"","collectionId":-1,"tmdbId":9349},{"name":"House of 1000 Corpses","year":2003,"posterUrl":"/library/metadata/1135/thumb/1599308245","imdbId":"","language":"en","overview":"Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.","moviesInCollection":[],"ratingKey":1135,"key":"/library/metadata/1135","collectionTitle":"","collectionId":-1,"tmdbId":2662},{"name":"The Other Boleyn Girl","year":2008,"posterUrl":"/library/metadata/2730/thumb/1599308891","imdbId":"","language":"en","overview":"A sumptuous and sensual tale of intrigue, romance and betrayal set against the backdrop of a defining moment in European history: two beautiful sisters, Anne and Mary Boleyn, driven by their family's blind ambition, compete for the love of the handsome and passionate King Henry VIII.","moviesInCollection":[],"ratingKey":2730,"key":"/library/metadata/2730","collectionTitle":"","collectionId":-1,"tmdbId":12184},{"name":"Batman Forever","year":1995,"posterUrl":"/library/metadata/291/thumb/1599307933","imdbId":"","language":"en","overview":"The Dark Knight of Gotham City confronts a dastardly duo: Two-Face and the Riddler. Formerly District Attorney Harvey Dent, Two-Face believes Batman caused the courtroom accident which left him disfigured on one side. And Edward Nygma, computer-genius and former employee of millionaire Bruce Wayne, is out to get the philanthropist; as The Riddler. Former circus acrobat Dick Grayson, his family killed by Two-Face, becomes Wayne's ward and Batman's new partner Robin.","moviesInCollection":[],"ratingKey":291,"key":"/library/metadata/291","collectionTitle":"","collectionId":-1,"tmdbId":414},{"name":"Jurassic World Fallen Kingdom","year":2018,"posterUrl":"/library/metadata/40899/thumb/1599309110","imdbId":"","language":"en","overview":"Three years after the demise of Jurassic World, a volcanic eruption threatens the remaining dinosaurs on the isla Nublar, so Claire Dearing, the former park manager, recruits Owen Grady to help prevent the extinction of the dinosaurs once again.","moviesInCollection":[],"ratingKey":40899,"key":"/library/metadata/40899","collectionTitle":"","collectionId":-1,"tmdbId":351286},{"name":"John Dies at the End","year":2012,"posterUrl":"/library/metadata/1249/thumb/1599308288","imdbId":"","language":"en","overview":"A new drug promises out-of-body experiences, but users are coming back changed forever, and an otherworldly invasion of Earth is underway.","moviesInCollection":[],"ratingKey":1249,"key":"/library/metadata/1249","collectionTitle":"","collectionId":-1,"tmdbId":75761},{"name":"Dragon Ball Z Wrath of the Dragon","year":1995,"posterUrl":"/library/metadata/773/thumb/1599308107","imdbId":"","language":"en","overview":"The Z Warriors discover an unopenable music box and are told to open it with the Dragon Balls. The contents turn out to be a warrior named Tapion who had sealed himself inside along with a monster called Hildegarn. Goku must now perfect a new technique to defeat the evil monster.","moviesInCollection":[],"ratingKey":773,"key":"/library/metadata/773","collectionTitle":"","collectionId":-1,"tmdbId":39108},{"name":"Beowulf","year":2007,"posterUrl":"/library/metadata/335/thumb/1599307949","imdbId":"","language":"en","overview":"6th-century Scandinavian warrior, Beowulf embarks on a mission to slay the a man-like ogre, Grendel.","moviesInCollection":[],"ratingKey":335,"key":"/library/metadata/335","collectionTitle":"","collectionId":-1,"tmdbId":2310},{"name":"Oceans Our Blue Planet","year":2018,"posterUrl":"/library/metadata/1635/thumb/1599308449","imdbId":"","language":"en","overview":"Embark on a global odyssey to discover the largest and least explored habitat on earth. New ocean science and technology has allowed us to go further into the unknown than we ever thought possible.","moviesInCollection":[],"ratingKey":1635,"key":"/library/metadata/1635","collectionTitle":"","collectionId":-1,"tmdbId":533962},{"name":"Fantastic Beasts The Crimes of Grindelwald","year":2018,"posterUrl":"/library/metadata/863/thumb/1599308139","imdbId":"","language":"en","overview":"Gellert Grindelwald has escaped imprisonment and has begun gathering followers to his cause—elevating 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.","moviesInCollection":[],"ratingKey":863,"key":"/library/metadata/863","collectionTitle":"","collectionId":-1,"tmdbId":338952},{"name":"Mass Effect Paragon Lost","year":2012,"posterUrl":"/library/metadata/1465/thumb/1599308373","imdbId":"","language":"en","overview":"An untold chapter in the Mass Effect saga, following the early career of Alliance Marine, James Vega, as he leads a squad of elite special forces into battle against a mysterious alien threat known as The Collectors. Stationed at a colony in a remote star system, Vega and his troops must protect the inhabitants from an invasion of the deadly insectoid warriors determined to collect the population for unknown purposes. Soon after the attack, Vega's commanding officer falls in battle, forcing the young officer to embrace the responsibility of leadership for the colony's survival. Having idolized Earth's greatest hero and warrior, Commander Shepard (the central character in the Mass Effect video games), the young and idealistic Vega must now make life and the death decisions that will effect not only the lives of his squad, but the lives of every person in the colony - all of whom he has sworn to protect...","moviesInCollection":[],"ratingKey":1465,"key":"/library/metadata/1465","collectionTitle":"","collectionId":-1,"tmdbId":119685},{"name":"Father Figures","year":2017,"posterUrl":"/library/metadata/876/thumb/1599308144","imdbId":"","language":"en","overview":"Upon learning that their mother has been lying to them for years about their allegedly deceased father, two fraternal twin brothers hit the road in order to find him.","moviesInCollection":[],"ratingKey":876,"key":"/library/metadata/876","collectionTitle":"","collectionId":-1,"tmdbId":354861},{"name":"Real Steel","year":2011,"posterUrl":"/library/metadata/1857/thumb/1599308544","imdbId":"","language":"en","overview":"Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After his robot is trashed, he reluctantly teams up with his estranged son to rebuild and train an unlikely contender.","moviesInCollection":[],"ratingKey":1857,"key":"/library/metadata/1857","collectionTitle":"","collectionId":-1,"tmdbId":39254},{"name":"Jem and the Holograms","year":2015,"posterUrl":"/library/metadata/1235/thumb/1599308284","imdbId":"","language":"en","overview":"As a small-town girl catapults from underground video sensation to global superstar, she and her three sisters begin a one-in-a-million journey of discovering that some talents are too special to keep hidden. Four aspiring musicians will take the world by storm when they see that the key to creating your own destiny lies in finding your own voice.","moviesInCollection":[],"ratingKey":1235,"key":"/library/metadata/1235","collectionTitle":"","collectionId":-1,"tmdbId":266639},{"name":"Red Cliff","year":2009,"posterUrl":"/library/metadata/1863/thumb/1599308546","imdbId":"","language":"en","overview":"In 208 A.D., in the final days of the Han Dynasty, shrewd Prime Minster Cao convinced the fickle Emperor Han the only way to unite all of China was to declare war on the kingdoms of Xu in the west and East Wu in the south. Thus began a military campaign of unprecedented scale. Left with no other hope for survival, the kingdoms of Xu and East Wu formed an unlikely alliance.","moviesInCollection":[],"ratingKey":1863,"key":"/library/metadata/1863","collectionTitle":"","collectionId":-1,"tmdbId":12289},{"name":"Dragon Ball Z Bojack Unbound","year":1993,"posterUrl":"/library/metadata/760/thumb/1599308104","imdbId":"","language":"en","overview":"Mr. Money is holding another World Martial Arts Tournament and Mr. Satan invites everyone in the world to join in. Little does he know that Bojack, an ancient villain who has escaped his prison, is competing. Since Goku is currently dead, it is up to Gohan, Vegeta, and Trunks to defeat Bojack and his henchman.","moviesInCollection":[],"ratingKey":760,"key":"/library/metadata/760","collectionTitle":"","collectionId":-1,"tmdbId":39105},{"name":"Friday the 13th Part VI Jason Lives","year":1986,"posterUrl":"/library/metadata/950/thumb/1599308174","imdbId":"","language":"en","overview":"Determined to finish off the infamous killer Jason Voorhees once and for all, Tommy Jarvis and a friend exhume Jason’s corpse in order to cremate him. Things go awry when Jason is instead resurrected, sparking a new chain of ruthlessly brutal murders. Now it’s up to Tommy to stop the dark, devious and demented deaths that he unwittingly brought about.","moviesInCollection":[],"ratingKey":950,"key":"/library/metadata/950","collectionTitle":"","collectionId":-1,"tmdbId":10225},{"name":"Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn)","year":2020,"posterUrl":"/library/metadata/40813/thumb/1599309106","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":40813,"key":"/library/metadata/40813","collectionTitle":"","collectionId":-1,"tmdbId":495764},{"name":"Clockstoppers","year":2002,"posterUrl":"/library/metadata/47613/thumb/1599309187","imdbId":"","language":"en","overview":"Until now, Zak Gibbs' greatest challenge has been to find a way to buy a car. But when he discovers an odd wristwatch amidst his father's various inventions and slips it on -- something very strange happens. The world around him seems to come to a stop, everything and everybody frozen in time. Zak quickly learns how to manipulate the device and he and his quick-witted and beautiful new friend, Francesca, start to have some real fun.","moviesInCollection":[],"ratingKey":47613,"key":"/library/metadata/47613","collectionTitle":"","collectionId":-1,"tmdbId":15028},{"name":"Stalag 17","year":1953,"posterUrl":"/library/metadata/2124/thumb/1599308660","imdbId":"","language":"en","overview":"It's a dreary Christmas 1944 for the American POWs in Stalag 17 and the men in Barracks 4, all sergeants, have to deal with a grave problem—there seems to be a security leak.","moviesInCollection":[],"ratingKey":2124,"key":"/library/metadata/2124","collectionTitle":"","collectionId":-1,"tmdbId":632},{"name":"Hitman Agent 47","year":2015,"posterUrl":"/library/metadata/1112/thumb/1599308237","imdbId":"","language":"en","overview":"An assassin teams up with a woman to help her find her father and uncover the mysteries of her ancestry.","moviesInCollection":[],"ratingKey":1112,"key":"/library/metadata/1112","collectionTitle":"","collectionId":-1,"tmdbId":249070},{"name":"Sinners and Saints","year":2010,"posterUrl":"/library/metadata/2046/thumb/1599308626","imdbId":"","language":"en","overview":"In lawless storm ravaged New Orleans, eleaguered Detective Sean Riley is trying to cope with the death of his young son and the abandonment of his wife. Facing a probable suspension from the department, Riley is teamed with a young homicide Detective, Will Ganz, to help solve a series of brutal murders that have plunged the city into a major gang war. The two quickly realize there is something far more sinister going on than either could have ever imagined.","moviesInCollection":[],"ratingKey":2046,"key":"/library/metadata/2046","collectionTitle":"","collectionId":-1,"tmdbId":66193},{"name":"The Avengers","year":2012,"posterUrl":"/library/metadata/2307/thumb/1599308727","imdbId":"","language":"en","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!","moviesInCollection":[],"ratingKey":2307,"key":"/library/metadata/2307","collectionTitle":"","collectionId":-1,"tmdbId":24428},{"name":"Tora! Tora! Tora!","year":1970,"posterUrl":"/library/metadata/2959/thumb/1599308983","imdbId":"","language":"en","overview":"In the summer of 1941, the United States and Japan seem on the brink of war after constant embargos and failed diplomacy come to no end. \"Tora! Tora! Tora!\", named after the code words use by the lead Japanese pilot to indicate they had surprised the Americans, covers the days leading up to the attack on Pearl Harbor, which plunged America into the Second World War.","moviesInCollection":[],"ratingKey":2959,"key":"/library/metadata/2959","collectionTitle":"","collectionId":-1,"tmdbId":11165},{"name":"Batman Unlimited Monster Mayhem","year":2015,"posterUrl":"/library/metadata/47403/thumb/1599309181","imdbId":"","language":"en","overview":"The Joker is aided in his Halloween quest to render modern technology useless and take over Gotham City by Solomon Grundy, Silver Banshee, Clayface and Scarecrow.","moviesInCollection":[],"ratingKey":47403,"key":"/library/metadata/47403","collectionTitle":"","collectionId":-1,"tmdbId":342917},{"name":"Money Talks","year":1997,"posterUrl":"/library/metadata/1529/thumb/1599308402","imdbId":"","language":"en","overview":"Sought by police and criminals, a small-time huckster makes a deal with a TV newsman for protection.","moviesInCollection":[],"ratingKey":1529,"key":"/library/metadata/1529","collectionTitle":"","collectionId":-1,"tmdbId":9416},{"name":"The Untouchables","year":1987,"posterUrl":"/library/metadata/2882/thumb/1599308956","imdbId":"","language":"en","overview":"Young Treasury Agent Elliot Ness arrives in Chicago and is determined to take down Al Capone, but it's not going to be easy because Capone has the police in his pocket. Ness meets Jimmy Malone, a veteran patrolman and probably the most honorable one on the force. He asks Malone to help him get Capone, but Malone warns him that if he goes after Capone, he is going to war.","moviesInCollection":[],"ratingKey":2882,"key":"/library/metadata/2882","collectionTitle":"","collectionId":-1,"tmdbId":117},{"name":"Beyond Skyline","year":2017,"posterUrl":"/library/metadata/344/thumb/1599307952","imdbId":"","language":"en","overview":"Detective Mark Corley storms his way onto an alien spaceship to rescue his estranged son. When the ship crashes in Southeast Asia, he forges an alliance with a band of survivors to take back the planet once and for all.","moviesInCollection":[],"ratingKey":344,"key":"/library/metadata/344","collectionTitle":"","collectionId":-1,"tmdbId":271404},{"name":"RoboCop 3","year":1993,"posterUrl":"/library/metadata/1924/thumb/1599308574","imdbId":"","language":"en","overview":"The mega corporation Omni Consumer Products is still bent on creating their pet project, Delta City, to replace the rotting city of Detroit. Unfortunately, the inhabitants of the area have no intention of abandoning their homes simply for desires of the company. To this end, OCP have decided to force them to leave by employing a ruthless mercenary army to attack and harass them. An underground resistance begins and in this fight, Robocop must decide where his loyalties lie.","moviesInCollection":[],"ratingKey":1924,"key":"/library/metadata/1924","collectionTitle":"","collectionId":-1,"tmdbId":5550},{"name":"Reservoir Dogs","year":1992,"posterUrl":"/library/metadata/1883/thumb/1599308555","imdbId":"","language":"en","overview":"A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.","moviesInCollection":[],"ratingKey":1883,"key":"/library/metadata/1883","collectionTitle":"","collectionId":-1,"tmdbId":500},{"name":"How to Talk to Girls at Parties","year":2018,"posterUrl":"/library/metadata/1142/thumb/1599308248","imdbId":"","language":"en","overview":"Croydon, 1977. A trio of punk teenagers goes to a party to meet girls, but they find that girls there are very different from what they expected.","moviesInCollection":[],"ratingKey":1142,"key":"/library/metadata/1142","collectionTitle":"","collectionId":-1,"tmdbId":341689},{"name":"Extremely Loud & Incredibly Close","year":2011,"posterUrl":"/library/metadata/850/thumb/1599308134","imdbId":"","language":"en","overview":"A year after his father's death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.","moviesInCollection":[],"ratingKey":850,"key":"/library/metadata/850","collectionTitle":"","collectionId":-1,"tmdbId":64685},{"name":"Assassination Classroom The Movie 365 Days","year":2016,"posterUrl":"/library/metadata/230/thumb/1599307912","imdbId":"","language":"en","overview":"A compilation film of the Ansatsu Kyoushitsu TV series, featuring anime-only epilogue scenes not originally in the manga.","moviesInCollection":[],"ratingKey":230,"key":"/library/metadata/230","collectionTitle":"","collectionId":-1,"tmdbId":431808},{"name":"Sex Pot","year":2009,"posterUrl":"/library/metadata/2008/thumb/1599308607","imdbId":"","language":"en","overview":"“Half Baked” meets “Superbad” in this hilarious comedy following two young losers whose lives are unexpectedly turned upside down when they find some marijuana that has aphrodisiacal side effects. After deciding to use the wacky weed to their advantage, the guys meet an array of pot-loving beauties.","moviesInCollection":[],"ratingKey":2008,"key":"/library/metadata/2008","collectionTitle":"","collectionId":-1,"tmdbId":21954},{"name":"The Brass Teapot","year":2013,"posterUrl":"/library/metadata/2339/thumb/1599308737","imdbId":"","language":"en","overview":"When a couple discovers that a brass teapot makes them money whenever they hurt themselves, they must come to terms with how far they are willing to go.","moviesInCollection":[],"ratingKey":2339,"key":"/library/metadata/2339","collectionTitle":"","collectionId":-1,"tmdbId":127867},{"name":"Fist of Fury","year":1972,"posterUrl":"/library/metadata/910/thumb/1599308157","imdbId":"","language":"en","overview":"Chen Zhen returns to the international compound of China only to learn of his beloved teacher's death. This is compounded by the continual racist harassment by the Japanese population in the area. Unlike his friends, he confronts it head on with his mastery of martial arts while investigating his teacher's murder.","moviesInCollection":[],"ratingKey":910,"key":"/library/metadata/910","collectionTitle":"","collectionId":-1,"tmdbId":11713},{"name":"2 Fast 2 Furious","year":2003,"posterUrl":"/library/metadata/19/thumb/1599307833","imdbId":"","language":"en","overview":"It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of \"dirty\" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Fuentes to bring Verone down.","moviesInCollection":[],"ratingKey":19,"key":"/library/metadata/19","collectionTitle":"","collectionId":-1,"tmdbId":584},{"name":"Sweet Home Alabama","year":2002,"posterUrl":"/library/metadata/2223/thumb/1599308697","imdbId":"","language":"en","overview":"New York fashion designer, Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But her past holds many secrets—including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.","moviesInCollection":[],"ratingKey":2223,"key":"/library/metadata/2223","collectionTitle":"","collectionId":-1,"tmdbId":11529},{"name":"Big Kill","year":2018,"posterUrl":"/library/metadata/351/thumb/1599307955","imdbId":"","language":"en","overview":"A tenderfoot from Philadelphia, two misfit gamblers on the run, and a deadly preacher have a date with destiny in a boom town gone bust called Big Kill.","moviesInCollection":[],"ratingKey":351,"key":"/library/metadata/351","collectionTitle":"","collectionId":-1,"tmdbId":524124},{"name":"Leprechaun Returns","year":2018,"posterUrl":"/library/metadata/1369/thumb/1599308330","imdbId":"","language":"en","overview":"A group of unwitting sorority sisters accidentally awaken the serial-killing Leprechaun after they build a sorority house on his hunting grounds.","moviesInCollection":[],"ratingKey":1369,"key":"/library/metadata/1369","collectionTitle":"","collectionId":-1,"tmdbId":518158},{"name":"The Longest Day","year":1962,"posterUrl":"/library/metadata/2650/thumb/1599308856","imdbId":"","language":"en","overview":"The retelling of June 6, 1944, from the perspectives of the Germans, US, British, Canadians, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. \"For the Allies as well as the Germans, it will be the longest day\"","moviesInCollection":[],"ratingKey":2650,"key":"/library/metadata/2650","collectionTitle":"","collectionId":-1,"tmdbId":9289},{"name":"It Chapter Two","year":2019,"posterUrl":"/library/metadata/1215/thumb/1599308275","imdbId":"","language":"en","overview":"27 years after overcoming the malevolent supernatural entity Pennywise, the former members of the Losers' Club, who have grown up and moved away from Derry, are brought back together by a devastating phone call.","moviesInCollection":[],"ratingKey":1215,"key":"/library/metadata/1215","collectionTitle":"","collectionId":-1,"tmdbId":474350},{"name":"Star Trek","year":2009,"posterUrl":"/library/metadata/2131/thumb/1599308663","imdbId":"","language":"en","overview":"The fate of the galaxy rests in the hands of bitter rivals. One, James Kirk, is a delinquent, thrill-seeking Iowa farm boy. The other, Spock, a Vulcan, was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason, their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger, boldly going where no one has gone before. The human adventure has begun again.","moviesInCollection":[],"ratingKey":2131,"key":"/library/metadata/2131","collectionTitle":"","collectionId":-1,"tmdbId":13475},{"name":"Finding Steve McQueen","year":2019,"posterUrl":"/library/metadata/900/thumb/1599308154","imdbId":"","language":"en","overview":"In 1972, a gang of close-knit thieves from Youngstown, Ohio attempt to steal $30 million in illegal contributions. Based on the true story of the biggest bank heist in US history.","moviesInCollection":[],"ratingKey":900,"key":"/library/metadata/900","collectionTitle":"","collectionId":-1,"tmdbId":433499},{"name":"Hellraiser III Hell on Earth","year":1992,"posterUrl":"/library/metadata/1096/thumb/1599308231","imdbId":"","language":"en","overview":"Pinhead is trapped in a sculpture and fortunately for him the sculpture is bought by a young playboy who owns his own night club. Pinhead busies himself escaping by getting the playboy to lure victims to his presence so he can use their blood. Once free, he seeks to destroy the puzzle cube so he need never return to Hell, but a female reporter is investigating the grisly murders and stands in his way.","moviesInCollection":[],"ratingKey":1096,"key":"/library/metadata/1096","collectionTitle":"","collectionId":-1,"tmdbId":11569},{"name":"A Good Day to Die Hard","year":2013,"posterUrl":"/library/metadata/64/thumb/1599307848","imdbId":"","language":"en","overview":"Iconoclastic, take-no-prisoners cop John McClane, finds himself for the first time on foreign soil after traveling to Moscow to help his wayward son Jack - unaware that Jack is really a highly-trained CIA operative out to stop a nuclear weapons heist. With the Russian underworld in pursuit, and battling a countdown to war, the two McClanes discover that their opposing methods make them unstoppable heroes.","moviesInCollection":[],"ratingKey":64,"key":"/library/metadata/64","collectionTitle":"","collectionId":-1,"tmdbId":47964},{"name":"Lincoln","year":2012,"posterUrl":"/library/metadata/1394/thumb/1599308340","imdbId":"","language":"en","overview":"The revealing story of the 16th US President's tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.","moviesInCollection":[],"ratingKey":1394,"key":"/library/metadata/1394","collectionTitle":"","collectionId":-1,"tmdbId":72976},{"name":"Source Code","year":2011,"posterUrl":"/library/metadata/2093/thumb/1599308646","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2093,"key":"/library/metadata/2093","collectionTitle":"","collectionId":-1,"tmdbId":45612},{"name":"Submission","year":2019,"posterUrl":"/library/metadata/2187/thumb/1599308686","imdbId":"","language":"en","overview":"After two marines make it home following an ISIS interrogation, one struggles to survive while the other fights his way back into the mixed martial arts world that he left behind years ago.","moviesInCollection":[],"ratingKey":2187,"key":"/library/metadata/2187","collectionTitle":"","collectionId":-1,"tmdbId":506403},{"name":"Dragon Ball Z Bio-Broly","year":1994,"posterUrl":"/library/metadata/759/thumb/1599308103","imdbId":"","language":"en","overview":"Jaga Bada, Mr. Satan's old sparring partner, has invited Satan to his personal island to hold a grudge match. Trunks and Goten decide to come for the adventure and Android #18 is following Satan for the money he owes her. Little do they know that Jaga Bada's scientist have found a way to resurrect Broly, the legendary Super Saiyan.","moviesInCollection":[],"ratingKey":759,"key":"/library/metadata/759","collectionTitle":"","collectionId":-1,"tmdbId":39106},{"name":"Munich","year":2006,"posterUrl":"/library/metadata/1565/thumb/1599308418","imdbId":"","language":"en","overview":"During the 1972 Olympic Games in Munich, eleven Israeli athletes are taken hostage and murdered by a Palestinian terrorist group known as Black September. In retaliation, the Israeli government recruits a group of Mossad agents to track down and execute those responsible for the attack.","moviesInCollection":[],"ratingKey":1565,"key":"/library/metadata/1565","collectionTitle":"","collectionId":-1,"tmdbId":612},{"name":"Penguins of Madagascar","year":2014,"posterUrl":"/library/metadata/1719/thumb/1599308486","imdbId":"","language":"en","overview":"Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.","moviesInCollection":[],"ratingKey":1719,"key":"/library/metadata/1719","collectionTitle":"","collectionId":-1,"tmdbId":270946},{"name":"Thank You for Smoking","year":2005,"posterUrl":"/library/metadata/2268/thumb/1599308713","imdbId":"","language":"en","overview":"Nick Naylor is a charismatic spin-doctor for Big Tobacco who'll fight to protect America's right to smoke -- even if it kills him -- while still remaining a role model for his 12-year old son. When he incurs the wrath of a senator bent on snuffing out cigarettes, Nick's powers of \"filtering the truth\" will be put to the test.","moviesInCollection":[],"ratingKey":2268,"key":"/library/metadata/2268","collectionTitle":"","collectionId":-1,"tmdbId":9388},{"name":"Barely Lethal","year":2015,"posterUrl":"/library/metadata/279/thumb/1599307930","imdbId":"","language":"en","overview":"A 16-year-old international assassin yearning for a \"normal\" adolescence fakes her own death and enrolls as a senior in a suburban high school. She quickly learns that being popular can be more painful than getting water-boarded.","moviesInCollection":[],"ratingKey":279,"key":"/library/metadata/279","collectionTitle":"","collectionId":-1,"tmdbId":248574},{"name":"Frailty","year":2002,"posterUrl":"/library/metadata/936/thumb/1599308169","imdbId":"","language":"en","overview":"A man confesses to an FBI agent his family's story of how his religious fanatic father's visions lead to a series of murders to destroy supposed 'demons'.","moviesInCollection":[],"ratingKey":936,"key":"/library/metadata/936","collectionTitle":"","collectionId":-1,"tmdbId":12149},{"name":"The Forgotten","year":2004,"posterUrl":"/library/metadata/2476/thumb/1599308790","imdbId":"","language":"en","overview":"Telly Paretta is a grieving mother struggling to cope with the loss of her 8-year-old son. She is stunned when her psychiatrist reveals that she has created eight years of memories about a son she never had. But when she meets a man who has had a similar experience, Telly embarks on a search to prove her son's existence, and her sanity.","moviesInCollection":[],"ratingKey":2476,"key":"/library/metadata/2476","collectionTitle":"","collectionId":-1,"tmdbId":10145},{"name":"Jay and Silent Bob Reboot","year":2019,"posterUrl":"/library/metadata/1230/thumb/1599308281","imdbId":"","language":"en","overview":"Jay and Silent Bob embark on a cross-country mission to stop Hollywood from rebooting the film based on their comic book counterparts Bluntman and Chronic.","moviesInCollection":[],"ratingKey":1230,"key":"/library/metadata/1230","collectionTitle":"","collectionId":-1,"tmdbId":440762},{"name":"Dave Made a Maze","year":2017,"posterUrl":"/library/metadata/643/thumb/1599308060","imdbId":"","language":"en","overview":"A frustrated artist gets lost inside the cardboard fort he builds in his living room.","moviesInCollection":[],"ratingKey":643,"key":"/library/metadata/643","collectionTitle":"","collectionId":-1,"tmdbId":433941},{"name":"Bad Boys for Life","year":2020,"posterUrl":"/library/metadata/42251/thumb/1599309137","imdbId":"","language":"en","overview":"Marcus and Mike are forced to confront new threats, career changes, and midlife crises as they join the newly created elite team AMMO of the Miami police department to take down the ruthless Armando Armas, the vicious leader of a Miami drug cartel.","moviesInCollection":[],"ratingKey":42251,"key":"/library/metadata/42251","collectionTitle":"","collectionId":-1,"tmdbId":38700},{"name":"A Million Ways to Die in the West","year":2014,"posterUrl":"/library/metadata/77/thumb/1599307852","imdbId":"","language":"en","overview":"As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.","moviesInCollection":[],"ratingKey":77,"key":"/library/metadata/77","collectionTitle":"","collectionId":-1,"tmdbId":188161},{"name":"RED 2","year":2013,"posterUrl":"/library/metadata/1860/thumb/1599308545","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1860,"key":"/library/metadata/1860","collectionTitle":"","collectionId":-1,"tmdbId":146216},{"name":"Jumanji","year":1995,"posterUrl":"/library/metadata/1267/thumb/1599308296","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1267,"key":"/library/metadata/1267","collectionTitle":"","collectionId":-1,"tmdbId":8844},{"name":"RoboCop 2","year":1990,"posterUrl":"/library/metadata/1923/thumb/1599308573","imdbId":"","language":"en","overview":"After a successful deployment of the Robocop Law Enforcement unit, OCP sees its goal of urban pacification come closer and closer, but as this develops, a new narcotic known as \"Nuke\" invades the streets led by God-delirious leader Cane. As this menace grows, it may prove to be too much for Murphy to handle. OCP tries to replicate the success of the first unit, but ends up with failed prototypes with suicidal issues... until Dr. Faxx, a scientist straying away from OCP's path, uses Cane as the new subject for the Robocop 2 project, a living God.","moviesInCollection":[],"ratingKey":1923,"key":"/library/metadata/1923","collectionTitle":"","collectionId":-1,"tmdbId":5549},{"name":"The Act of Killing","year":2012,"posterUrl":"/library/metadata/2279/thumb/1599308717","imdbId":"","language":"en","overview":"In a place where killers are celebrated as heroes, these filmmakers challenge unrepentant death-squad leaders to dramatize their role in genocide. The result is a surreal, cinematic journey, not only into the memories and imaginations of mass murderers, but also into a frighteningly banal regime of corruption and impunity.","moviesInCollection":[],"ratingKey":2279,"key":"/library/metadata/2279","collectionTitle":"","collectionId":-1,"tmdbId":123678},{"name":"Flags of Our Fathers","year":2006,"posterUrl":"/library/metadata/914/thumb/1599308159","imdbId":"","language":"en","overview":"There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. This is the story of three of the six surviving servicemen - John 'Doc' Bradley, Pvt. Rene Gagnon and Pvt. Ira Hayes - who fought in the battle to take Iwo Jima from the Japanese.","moviesInCollection":[],"ratingKey":914,"key":"/library/metadata/914","collectionTitle":"","collectionId":-1,"tmdbId":3683},{"name":"Twins","year":1988,"posterUrl":"/library/metadata/3026/thumb/1599309006","imdbId":"","language":"en","overview":"Julius and Vincent Benedict are the results of an experiment that would allow for the perfect child. Julius was planned and grows to athletic proportions. Vincent is an accident and is somewhat smaller in stature. Vincent is placed in an orphanage while Julius is taken to a south seas island and raised by philosophers. Vincent becomes the ultimate low life and is about to be killed by loan sharks.","moviesInCollection":[],"ratingKey":3026,"key":"/library/metadata/3026","collectionTitle":"","collectionId":-1,"tmdbId":9493},{"name":"Cold in July","year":2014,"posterUrl":"/library/metadata/541/thumb/1599308025","imdbId":"","language":"en","overview":"While investigating noises in his house one balmy Texas night in 1989, Richard Dane puts a bullet in the brain of a low-life burglar. Although he’s hailed as a small-town hero, Dane soon finds himself fearing for his family’s safety when Freddy’s ex-con father rolls into town, hell-bent on revenge.","moviesInCollection":[],"ratingKey":541,"key":"/library/metadata/541","collectionTitle":"","collectionId":-1,"tmdbId":244509},{"name":"Winchester","year":2018,"posterUrl":"/library/metadata/3152/thumb/1599309049","imdbId":"","language":"en","overview":"San Jose, California, 1906. Isolated in her labyrinthine mansion, eccentric firearm heiress Sarah Winchester believes that she is being haunted by the souls of those killed by the guns manufactured by her company.","moviesInCollection":[],"ratingKey":3152,"key":"/library/metadata/3152","collectionTitle":"","collectionId":-1,"tmdbId":416234},{"name":"Jumanji Welcome to the Jungle","year":2017,"posterUrl":"/library/metadata/1269/thumb/1599308297","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1269,"key":"/library/metadata/1269","collectionTitle":"","collectionId":-1,"tmdbId":353486},{"name":"Target","year":1985,"posterUrl":"/library/metadata/2244/thumb/1599308704","imdbId":"","language":"en","overview":"A Texan with a secret past searches Europe with his son after the KGB kidnaps his wife.","moviesInCollection":[],"ratingKey":2244,"key":"/library/metadata/2244","collectionTitle":"","collectionId":-1,"tmdbId":31600},{"name":"About Last Night","year":2014,"posterUrl":"/library/metadata/108/thumb/1599307866","imdbId":"","language":"en","overview":"A modern reimagining of the classic romantic comedy, this contemporary version closely follows new love for two couples as they journey from the bar to the bedroom and are eventually put to the test in the real world.","moviesInCollection":[],"ratingKey":108,"key":"/library/metadata/108","collectionTitle":"","collectionId":-1,"tmdbId":222899},{"name":"Trolls","year":2016,"posterUrl":"/library/metadata/3003/thumb/1599308998","imdbId":"","language":"en","overview":"Lovable and friendly, the trolls love to play around. But one day, a mysterious giant shows up to end the party. Poppy, the optimistic leader of the Trolls, and her polar opposite, Branch, must embark on an adventure that takes them far beyond the only world they’ve ever known.","moviesInCollection":[],"ratingKey":3003,"key":"/library/metadata/3003","collectionTitle":"","collectionId":-1,"tmdbId":136799},{"name":"Super Troopers 2","year":2018,"posterUrl":"/library/metadata/2202/thumb/1599308690","imdbId":"","language":"en","overview":"When an international border dispute arises between the U.S. and Canada, the Super Troopers- Mac, Thorny, Foster, Rabbit and Farva, are called in to set up a new Highway Patrol station in the disputed area.","moviesInCollection":[],"ratingKey":2202,"key":"/library/metadata/2202","collectionTitle":"","collectionId":-1,"tmdbId":50022},{"name":"The Pale Door","year":2020,"posterUrl":"/library/metadata/48806/thumb/1601966705","imdbId":"","language":"en","overview":"The Dalton gang escape to a nearby town after a train robbery goes south, but they are met by a coven of witches with sinister plans for the unsuspecting outlaws.","moviesInCollection":[],"ratingKey":48806,"key":"/library/metadata/48806","collectionTitle":"","collectionId":-1,"tmdbId":610201},{"name":"Jaws 2","year":1978,"posterUrl":"/library/metadata/1227/thumb/1599308280","imdbId":"","language":"en","overview":"Police chief Brody must protect the citizens of Amity after a second monstrous shark begins terrorizing the waters.","moviesInCollection":[],"ratingKey":1227,"key":"/library/metadata/1227","collectionTitle":"","collectionId":-1,"tmdbId":579},{"name":"Lock, Stock and Two Smoking Barrels","year":1999,"posterUrl":"/library/metadata/1404/thumb/1599308343","imdbId":"","language":"en","overview":"A card shark and his unwillingly-enlisted friends need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door.","moviesInCollection":[],"ratingKey":1404,"key":"/library/metadata/1404","collectionTitle":"","collectionId":-1,"tmdbId":100},{"name":"Coyote Ugly","year":2000,"posterUrl":"/library/metadata/584/thumb/1599308041","imdbId":"","language":"en","overview":"Graced with a velvet voice, 21-year-old Violet Sanford heads to New York to pursue her dream of becoming a songwriter only to find her aspirations sidelined by the accolades and notoriety she receives at her \"day\" job as a barmaid at Coyote Ugly. The \"Coyotes\" as they are affectionately called tantalize customers and the media alike with their outrageous antics, making Coyote Ugly the watering hole for guys on the prowl.","moviesInCollection":[],"ratingKey":584,"key":"/library/metadata/584","collectionTitle":"","collectionId":-1,"tmdbId":6282},{"name":"Brigsby Bear","year":2017,"posterUrl":"/library/metadata/431/thumb/1599307984","imdbId":"","language":"en","overview":"Brigsby Bear Adventures is a children's TV show produced for an audience of one: James. When the show abruptly ends, James's life changes forever, and he sets out to finish the story himself.","moviesInCollection":[],"ratingKey":431,"key":"/library/metadata/431","collectionTitle":"","collectionId":-1,"tmdbId":403431},{"name":"Santa Claus Is Comin' to Town","year":1970,"posterUrl":"/library/metadata/1958/thumb/1599308589","imdbId":"","language":"en","overview":"A postman, S.D. Kluger, decides to answer some of the most common questions about Santa Claus, and tells us about a small baby named Kris who is raised by a family of elf toymakers named Kringle. When Kris grew up, he wanted to deliver toys to the children of Sombertown. But its Mayor is too mean to let that happen. And to make things worse, the Winter Warlock who lives between the Kringles and Sombertown, but Kris manages to melt the Warlock's heart and deliver his toys.","moviesInCollection":[],"ratingKey":1958,"key":"/library/metadata/1958","collectionTitle":"","collectionId":-1,"tmdbId":13400},{"name":"The Trip to Spain","year":2017,"posterUrl":"/library/metadata/2873/thumb/1599308953","imdbId":"","language":"en","overview":"Steve Coogan and Rob Brydon embark on a road trip along the coast of Spain.","moviesInCollection":[],"ratingKey":2873,"key":"/library/metadata/2873","collectionTitle":"","collectionId":-1,"tmdbId":426264},{"name":"Vamp U","year":2013,"posterUrl":"/library/metadata/3072/thumb/1599309022","imdbId":"","language":"en","overview":"Wayne Gretzky (no relation) is a vampire who can't grow his teeth. His impotence began when he inadvertently killed Mary Lipinsky, the love of his life, 300 years ago. To take his mind off the pain, he teaches college history - who better? Attempting to regain his full power, he enlists help from his friend and colleague, Dr. Levine (Gary Cole). Nothing works until a new semester brings freshman Chris Keller. She's a dead ringer for Mary and they have a lurid affair, while rumors fly around the campus. But it all sours when he turns Chris into a vampire and her newfound bloodlust spins out of control in a bloody rampage, making the rumors a little too real. Written by Anonymous","moviesInCollection":[],"ratingKey":3072,"key":"/library/metadata/3072","collectionTitle":"","collectionId":-1,"tmdbId":167733},{"name":"First Man","year":2018,"posterUrl":"/library/metadata/905/thumb/1599308155","imdbId":"","language":"en","overview":"A look at the life of the astronaut, Neil Armstrong, and the legendary space mission that led him to become the first man to walk on the Moon on July 20, 1969.","moviesInCollection":[],"ratingKey":905,"key":"/library/metadata/905","collectionTitle":"","collectionId":-1,"tmdbId":369972},{"name":"Whisper of the Heart","year":1995,"posterUrl":"/library/metadata/46117/thumb/1599309155","imdbId":"","language":"en","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'. Curious as to who he is, Shizuku meets a boy her age whom she finds infuriating, but discovers to her shock that he is her 'Prince of Books'. As she grows closer to him, she realises that he merely read all those books to bring himself closer to her. The boy Seiji aspires to be a violin maker in Italy, and it is his dreams that make Shizuku realise that she has no clear path for her life. Knowing that her strength lies in writing, she tests her talents by writing a story about Baron, a cat statuette belonging to Seiji's grandfather","moviesInCollection":[],"ratingKey":46117,"key":"/library/metadata/46117","collectionTitle":"","collectionId":-1,"tmdbId":37797},{"name":"Boogeyman 3","year":2008,"posterUrl":"/library/metadata/27836/thumb/1599309073","imdbId":"","language":"en","overview":"When a college student witnesses the alleged suicide of her roommate, it sets into motion a series of horrific events that cause her to fear the supernatural entity. As she tries to convince the rest of her dorm that the Boogeyman does exist, the evil force grows stronger and her friends begin to pay the price. Now she must stop this ultimate evil before the entire campus falls prey.","moviesInCollection":[],"ratingKey":27836,"key":"/library/metadata/27836","collectionTitle":"","collectionId":-1,"tmdbId":15262},{"name":"The Purge","year":2013,"posterUrl":"/library/metadata/2767/thumb/1599308909","imdbId":"","language":"en","overview":"Given the country's overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.","moviesInCollection":[],"ratingKey":2767,"key":"/library/metadata/2767","collectionTitle":"","collectionId":-1,"tmdbId":158015},{"name":"Shin Godzilla","year":2016,"posterUrl":"/library/metadata/2020/thumb/1599308613","imdbId":"","language":"en","overview":"When a massive, gilled monster emerges from the deep and tears through the city, the government scrambles to save its citizens. A rag-tag team of volunteers cuts through a web of red tape to uncover the monster's weakness and its mysterious ties to a foreign superpower. But time is not on their side - the greatest catastrophe to ever befall the world is about to evolve right before their very eyes.","moviesInCollection":[],"ratingKey":2020,"key":"/library/metadata/2020","collectionTitle":"","collectionId":-1,"tmdbId":315011},{"name":"Justice League vs. the Fatal Five","year":2019,"posterUrl":"/library/metadata/1288/thumb/1599308302","imdbId":"","language":"en","overview":"The Justice League faces a powerful new threat — the Fatal Five! Superman, Batman and Wonder Woman seek answers as the time-traveling trio of Mano, Persuader and Tharok terrorize Metropolis in search of budding Green Lantern, Jessica Cruz. With her unwilling help, they aim to free remaining Fatal Five members Emerald Empress and Validus to carry out their sinister plan. But the Justice League has also discovered an ally from another time in the peculiar Star Boy — brimming with volatile power, could he be the key to thwarting the Fatal Five? An epic battle against ultimate evil awaits!","moviesInCollection":[],"ratingKey":1288,"key":"/library/metadata/1288","collectionTitle":"","collectionId":-1,"tmdbId":537059},{"name":"Pi","year":1998,"posterUrl":"/library/metadata/1737/thumb/1599308494","imdbId":"","language":"en","overview":"The debut film from Darren Aronofsky in which a mathematical genius Maximilian Cohen discovers a link in the connection between numbers and reality and thus believes he can predict the future.","moviesInCollection":[],"ratingKey":1737,"key":"/library/metadata/1737","collectionTitle":"","collectionId":-1,"tmdbId":473},{"name":"Heartbreak Ridge","year":1986,"posterUrl":"/library/metadata/1079/thumb/1599308225","imdbId":"","language":"en","overview":"A hard-nosed, hard-living Marine gunnery sergeant clashes with his superiors and his ex-wife as he takes command of a spoiled recon platoon with a bad attitude.","moviesInCollection":[],"ratingKey":1079,"key":"/library/metadata/1079","collectionTitle":"","collectionId":-1,"tmdbId":10015},{"name":"The Upside","year":2019,"posterUrl":"/library/metadata/2883/thumb/1599308957","imdbId":"","language":"en","overview":"Phillip is a wealthy quadriplegic who needs a caretaker to help him with his day-to-day routine in his New York penthouse. He decides to hire Dell, a struggling parolee who's trying to reconnect with his ex and his young son. Despite coming from two different worlds, an unlikely friendship starts to blossom.","moviesInCollection":[],"ratingKey":2883,"key":"/library/metadata/2883","collectionTitle":"","collectionId":-1,"tmdbId":440472},{"name":"Poms","year":2019,"posterUrl":"/library/metadata/27838/thumb/1599309074","imdbId":"","language":"en","overview":"A woman moves into a retirement community and starts a cheerleading squad with her fellow residents.","moviesInCollection":[],"ratingKey":27838,"key":"/library/metadata/27838","collectionTitle":"","collectionId":-1,"tmdbId":574241},{"name":"Inside Out","year":2015,"posterUrl":"/library/metadata/1197/thumb/1599308268","imdbId":"","language":"en","overview":"Growing up can be a bumpy road, and it's no exception for Riley, who is uprooted from her Midwest life when her father starts a new job in San Francisco. Riley's guiding emotions— Joy, Fear, Anger, Disgust and Sadness—live in Headquarters, the control centre inside Riley's mind, where they help advise her through everyday life and tries to keep things positive, but the emotions conflict on how best to navigate a new city, house and school.","moviesInCollection":[],"ratingKey":1197,"key":"/library/metadata/1197","collectionTitle":"","collectionId":-1,"tmdbId":150540},{"name":"The Nest","year":1988,"posterUrl":"/library/metadata/2709/thumb/1599308883","imdbId":"","language":"en","overview":"Horrifying shocker as a biological experiment goes haywire when meat-eating mutant roaches invade an island community, terrorizing a peaceful New England fishing village and hideously butchering its citizens.","moviesInCollection":[],"ratingKey":2709,"key":"/library/metadata/2709","collectionTitle":"","collectionId":-1,"tmdbId":87710},{"name":"The Killing of a Sacred Deer","year":2017,"posterUrl":"/library/metadata/2608/thumb/1599308839","imdbId":"","language":"en","overview":"Dr. Steven Murphy is a renowned cardiovascular surgeon who presides over a spotless household with his wife and two children. Lurking at the margins of his idyllic suburban existence is Martin, a fatherless teen who insinuates himself into the doctor's life in gradually unsettling ways.","moviesInCollection":[],"ratingKey":2608,"key":"/library/metadata/2608","collectionTitle":"","collectionId":-1,"tmdbId":399057},{"name":"Kingsman The Golden Circle","year":2017,"posterUrl":"/library/metadata/1313/thumb/1599308311","imdbId":"","language":"en","overview":"When an attack on the Kingsman headquarters takes place and a new villain rises, Eggsy and Merlin are forced to work together with the American agency known as the Statesman to save the world.","moviesInCollection":[],"ratingKey":1313,"key":"/library/metadata/1313","collectionTitle":"","collectionId":-1,"tmdbId":343668},{"name":"The Oblong Box","year":1969,"posterUrl":"/library/metadata/2725/thumb/1599308889","imdbId":"","language":"en","overview":"Aristocrat Julian Markham keeps his disfigured brother, Sir Edward, locked in a tower of his house. Occasionaly Sir Edward escapes and causes havoc around the town.","moviesInCollection":[],"ratingKey":2725,"key":"/library/metadata/2725","collectionTitle":"","collectionId":-1,"tmdbId":55152},{"name":"Dead Body","year":2017,"posterUrl":"/library/metadata/652/thumb/1599308064","imdbId":"","language":"en","overview":"Nine high school kids celebrate graduation at a secluded home in the wilderness. They fight, philander, and feel nostalgic as they embark on a life away from home, in college. Once the party dies down they play a game: Dead Body. But when one party-goer takes the game too far, actually murdering the other guests one by one, it's up to the group to set aside their tensions, and ferret out the murderer before it's too late.","moviesInCollection":[],"ratingKey":652,"key":"/library/metadata/652","collectionTitle":"","collectionId":-1,"tmdbId":375580},{"name":"Monsters vs Aliens","year":2009,"posterUrl":"/library/metadata/40975/thumb/1599309114","imdbId":"","language":"en","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...","moviesInCollection":[],"ratingKey":40975,"key":"/library/metadata/40975","collectionTitle":"","collectionId":-1,"tmdbId":15512},{"name":"Finding Nemo","year":2003,"posterUrl":"/library/metadata/899/thumb/1599308153","imdbId":"","language":"en","overview":"Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.","moviesInCollection":[],"ratingKey":899,"key":"/library/metadata/899","collectionTitle":"","collectionId":-1,"tmdbId":12},{"name":"The Hustler","year":1961,"posterUrl":"/library/metadata/2574/thumb/1599308826","imdbId":"","language":"en","overview":"Fast Eddie Felson is a small-time pool hustler with a lot of talent but a self-destructive attitude. His bravado causes him to challenge the legendary Minnesota Fats to a high-stakes match.","moviesInCollection":[],"ratingKey":2574,"key":"/library/metadata/2574","collectionTitle":"","collectionId":-1,"tmdbId":990},{"name":"Saw 3D","year":2010,"posterUrl":"/library/metadata/1969/thumb/1599308592","imdbId":"","language":"en","overview":"As a deadly battle rages over Jigsaw's brutal legacy, a group of Jigsaw survivors gathers to seek the support of self-help guru and fellow survivor Bobby Dagen, a man whose own dark secrets unleash a new wave of terror.","moviesInCollection":[],"ratingKey":1969,"key":"/library/metadata/1969","collectionTitle":"","collectionId":-1,"tmdbId":41439},{"name":"Brüno","year":2009,"posterUrl":"/library/metadata/412/thumb/1599307977","imdbId":"","language":"en","overview":"Flamboyantly gay Austrian television reporter Bruno stirs up trouble with unsuspecting guests and large crowds through brutally frank interviews and painfully hilarious public displays of homosexuality.","moviesInCollection":[],"ratingKey":412,"key":"/library/metadata/412","collectionTitle":"","collectionId":-1,"tmdbId":18480},{"name":"Sneakers","year":1992,"posterUrl":"/library/metadata/2074/thumb/1599308638","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2074,"key":"/library/metadata/2074","collectionTitle":"","collectionId":-1,"tmdbId":2322},{"name":"Blood and Money","year":2020,"posterUrl":"/library/metadata/46036/thumb/1599309153","imdbId":"","language":"en","overview":"A retired veteran hunting in the Allagash backcountry of Maine discovers a dead woman with a duffle bag full of money. He soon finds himself in a web of deceit and murder.","moviesInCollection":[],"ratingKey":46036,"key":"/library/metadata/46036","collectionTitle":"","collectionId":-1,"tmdbId":691812},{"name":"The Cannonball Run","year":1981,"posterUrl":"/library/metadata/2350/thumb/1599308741","imdbId":"","language":"en","overview":"A cross-country road race is based on an actual event, the Cannonball Baker Sea to Shining Sea Memorial Trophy Dash, organized by Brock Yates to protest the 55 mph speed limit then in effect in the U.S. The Cannonball was named for Erwin G. \"Cannonball\" Baker, who in the roaring 20's rode his motorcycle across the country. Many of the characters are based on ruses developed by real Cannonball racers over the several years that the event was run.","moviesInCollection":[],"ratingKey":2350,"key":"/library/metadata/2350","collectionTitle":"","collectionId":-1,"tmdbId":11286},{"name":"Terminus","year":2016,"posterUrl":"/library/metadata/2265/thumb/1599308713","imdbId":"","language":"en","overview":"Following a near-fatal accident, David Chamberlain makes an unprecedented discovery that will not only determine the fate of his family, but of mankind.","moviesInCollection":[],"ratingKey":2265,"key":"/library/metadata/2265","collectionTitle":"","collectionId":-1,"tmdbId":301729},{"name":"Remember","year":2016,"posterUrl":"/library/metadata/1873/thumb/1599308551","imdbId":"","language":"en","overview":"With the aid of a fellow Auschwitz survivor and a hand-written letter, an elderly man with dementia goes in search of the person responsible for the death of his family.","moviesInCollection":[],"ratingKey":1873,"key":"/library/metadata/1873","collectionTitle":"","collectionId":-1,"tmdbId":302528},{"name":"The International","year":2009,"posterUrl":"/library/metadata/2586/thumb/1599308830","imdbId":"","language":"en","overview":"An interpol agent and an attorney are determined to bring one of the world's most powerful banks to justice. Uncovering money laundering, arms trading, and conspiracy to destabilize world governments, their investigation takes them from Berlin, Milan, New York and Istanbul. Finding themselves in a chase across the globe, their relentless tenacity puts their own lives at risk.","moviesInCollection":[],"ratingKey":2586,"key":"/library/metadata/2586","collectionTitle":"","collectionId":-1,"tmdbId":4959},{"name":"Mrs. Doubtfire","year":1993,"posterUrl":"/library/metadata/1557/thumb/1599308415","imdbId":"","language":"en","overview":"Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as an English nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.","moviesInCollection":[],"ratingKey":1557,"key":"/library/metadata/1557","collectionTitle":"","collectionId":-1,"tmdbId":788},{"name":"Deadwood The Movie","year":2019,"posterUrl":"/library/metadata/665/thumb/1599308068","imdbId":"","language":"en","overview":"Follow the 10-year reunion of the Deadwood camp to celebrate South Dakota's statehood. Former rivalries are reignited, alliances are tested and old wounds are reopened, as all are left to navigate the inevitable changes that modernity and time have wrought.","moviesInCollection":[],"ratingKey":665,"key":"/library/metadata/665","collectionTitle":"","collectionId":-1,"tmdbId":538225},{"name":"The Great Muppet Caper","year":1981,"posterUrl":"/library/metadata/2513/thumb/1599308804","imdbId":"","language":"en","overview":"Kermit and Fozzie are newspaper reporters sent to London to interview Lady Holiday, a wealthy fashion designer whose priceless diamond necklace is stolen. Kermit meets and falls in love with her secretary, Miss Piggy. The jewel thieves strike again, and this time frame Miss Piggy. It's up to Kermit and Muppets to bring the real culprits to justice.","moviesInCollection":[],"ratingKey":2513,"key":"/library/metadata/2513","collectionTitle":"","collectionId":-1,"tmdbId":14900},{"name":"The Chase","year":1966,"posterUrl":"/library/metadata/2356/thumb/1599308743","imdbId":"","language":"en","overview":"The escape of Bubber Reeves from prison affects the inhabitants of a small Southern town.","moviesInCollection":[],"ratingKey":2356,"key":"/library/metadata/2356","collectionTitle":"","collectionId":-1,"tmdbId":31602},{"name":"Sniper Ultimate Kill","year":2017,"posterUrl":"/library/metadata/47347/thumb/1599309179","imdbId":"","language":"en","overview":"Colombian drug kingpin Jesús Morales secretly pays for the services of a sniper nicknamed \"The Devil,\" capable of killing one-by-one the enemies of anyone who hires him. With no adversaries left alive, Morales grows stronger and gains control of more smuggling routes into the United States. The DEA, alarmed by this threat to the country, sends agent Kate Estrada, who has been following Morales for years, and Marine sniper Brandon Beckett to Colombia. Their mission: Kill \"The Devil\" and bring Morales back to the US to be tried for his crimes. The agents think they have everything under control, but Morales and \"The Devil\" have prepared plenty of surprises to keep the mission from succeeding.","moviesInCollection":[],"ratingKey":47347,"key":"/library/metadata/47347","collectionTitle":"","collectionId":-1,"tmdbId":464889},{"name":"Contagion","year":2011,"posterUrl":"/library/metadata/569/thumb/1599308036","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":569,"key":"/library/metadata/569","collectionTitle":"","collectionId":-1,"tmdbId":39538},{"name":"Windtalkers","year":2002,"posterUrl":"/library/metadata/3154/thumb/1599309050","imdbId":"","language":"en","overview":"Joe Enders is a gung-ho Marine assigned to protect a \"windtalker\" - one of several Navajo Indians who were used to relay messages during World War II because their spoken language was indecipherable to Japanese code breakers.","moviesInCollection":[],"ratingKey":3154,"key":"/library/metadata/3154","collectionTitle":"","collectionId":-1,"tmdbId":12100},{"name":"Broken City","year":2013,"posterUrl":"/library/metadata/433/thumb/1599307985","imdbId":"","language":"en","overview":"In a broken city rife with injustice, ex-cop Billy Taggart seeks redemption and revenge after being double-crossed and then framed by its most powerful figure, the mayor. Billy's relentless pursuit of justice, matched only by his streetwise toughness, makes him an unstoppable force - and the mayor's worst nightmare.","moviesInCollection":[],"ratingKey":433,"key":"/library/metadata/433","collectionTitle":"","collectionId":-1,"tmdbId":98357},{"name":"Die Another Day","year":2002,"posterUrl":"/library/metadata/706/thumb/1599308083","imdbId":"","language":"en","overview":"Bond takes on a North Korean leader who undergoes DNA replacement procedures that allow him to assume different identities. American agent, Jinx Johnson assists Bond in his attempt to thwart the villain's plans to exploit a satellite that is powered by solar energy.","moviesInCollection":[],"ratingKey":706,"key":"/library/metadata/706","collectionTitle":"","collectionId":-1,"tmdbId":36669},{"name":"Tremors 2 Aftershocks","year":1996,"posterUrl":"/library/metadata/2994/thumb/1599308995","imdbId":"","language":"en","overview":"Those supersucking desert creatures are back --- and this time they're south of the border. As the creatures worm their way through the oil fields of Mexico, the only people who can wrangle them are veteran Earl Bassett and survivalist Burt Gummer. Add to that team a young punk out for cash and a fearless scientist, and the critters don't stand a chance.","moviesInCollection":[],"ratingKey":2994,"key":"/library/metadata/2994","collectionTitle":"","collectionId":-1,"tmdbId":11069},{"name":"The Bad Batch","year":2016,"posterUrl":"/library/metadata/2308/thumb/1599308727","imdbId":"","language":"en","overview":"In a desert wasteland in Texas, a muscled cannibal breaks one important rule: don’t play with your food.","moviesInCollection":[],"ratingKey":2308,"key":"/library/metadata/2308","collectionTitle":"","collectionId":-1,"tmdbId":316154},{"name":"Against All Odds","year":1984,"posterUrl":"/library/metadata/132/thumb/1599307874","imdbId":"","language":"en","overview":"She was a beautiful fugitive. Fleeing from corruption. From power. He was a professional athlete past his prime. Hired to find her, he grew to love her. Love turned to obsession. Obsession turned to murder. And now the price of freedom might be nothing less than their lives.","moviesInCollection":[],"ratingKey":132,"key":"/library/metadata/132","collectionTitle":"","collectionId":-1,"tmdbId":22160},{"name":"Moon","year":2009,"posterUrl":"/library/metadata/1541/thumb/1599308407","imdbId":"","language":"en","overview":"With only three weeks left in his three year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. When he has an accident however, he wakens to find that he is not alone.","moviesInCollection":[],"ratingKey":1541,"key":"/library/metadata/1541","collectionTitle":"","collectionId":-1,"tmdbId":17431},{"name":"Torture Chamber","year":2013,"posterUrl":"/library/metadata/2961/thumb/1599308983","imdbId":"","language":"en","overview":"13-year-old Jimmy Morgan is possessed by an evil too powerful to be exorcised by any religion. After escaping from a mental institution, Jimmy is back with a vengeance - and an army of children who follow his every murderous desire.","moviesInCollection":[],"ratingKey":2961,"key":"/library/metadata/2961","collectionTitle":"","collectionId":-1,"tmdbId":253477},{"name":"Raising Arizona","year":1987,"posterUrl":"/library/metadata/1839/thumb/1599308535","imdbId":"","language":"en","overview":"The Coen Brothers tell the story of an absurd yet likable family with an unproductive couple as the focal point. The couple has gotten themselves into some trouble while kidnapping a baby and give Hollywood one of the most memorable chase scenes to date.","moviesInCollection":[],"ratingKey":1839,"key":"/library/metadata/1839","collectionTitle":"","collectionId":-1,"tmdbId":378},{"name":"Con Man","year":2018,"posterUrl":"/library/metadata/560/thumb/1599308032","imdbId":"","language":"en","overview":"The story of Barry Minkow, a young and charismatic figure in business who reaches CEO status by lying and scheming his way to the top.","moviesInCollection":[],"ratingKey":560,"key":"/library/metadata/560","collectionTitle":"","collectionId":-1,"tmdbId":454648},{"name":"The Texas Chainsaw Massacre 2","year":1986,"posterUrl":"/library/metadata/2853/thumb/1599308946","imdbId":"","language":"en","overview":"Chainsaw-wielding maniac Leatherface is up to his cannibalistic ways once again, along with the rest of his twisted clan, including the equally disturbed Chop-Top. This time, the masked killer has set his sights on pretty disc jockey Vanita \"Stretch\" Brock, who teams up with Texas lawman Lefty Enright to battle the psychopath and his family deep within their lair, a macabre abandoned amusement park.","moviesInCollection":[],"ratingKey":2853,"key":"/library/metadata/2853","collectionTitle":"","collectionId":-1,"tmdbId":16337},{"name":"Wicked City","year":1987,"posterUrl":"/library/metadata/3145/thumb/1599309046","imdbId":"","language":"en","overview":"A peace treaty between the Earth and the Black World, a parallel universe of demons, is coming to an end. Two cops, Taki, a human male, and Maki, a female demon, are assigned to protect a diplomat who will help secure another treaty. A radical group of demons from the Black World are out to assassinate the diplomat and prevent the treaty; only the bond that forms between the two cops can save the Earth from destruction.","moviesInCollection":[],"ratingKey":3145,"key":"/library/metadata/3145","collectionTitle":"","collectionId":-1,"tmdbId":21453},{"name":"The Muppets","year":2011,"posterUrl":"/library/metadata/2701/thumb/1599308879","imdbId":"","language":"en","overview":"When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet roommate, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.","moviesInCollection":[],"ratingKey":2701,"key":"/library/metadata/2701","collectionTitle":"","collectionId":-1,"tmdbId":64328},{"name":"Pink Floyd The Story of Wish You Were Here","year":2012,"posterUrl":"/library/metadata/1742/thumb/1599308495","imdbId":"","language":"en","overview":"Wish You Were Here, released in September 1975, was the follow up album to the globally successful The Dark Side Of The Moon and is cited by many fans, as well as band members Richard Wright and David Gilmour, as their favorite Pink Floyd album. On release it went straight to Number One in both the UK and the US and topped the charts in many other countries around the world. This program tells the story of the making of this landmark release through new interviews with Roger Waters, David Gilmour and Nick Mason and archive interviews with the late Richard Wright. Also featured are sleeve designer Storm Thorgerson, guest vocalist Roy Harper, front cover burning man Ronnie Rondell and others involved in the creation of the album. In addition, original recording engineer Brian Humphries revisits the master tapes at Abbey Road Studios to illustrate aspects of the songs construction.","moviesInCollection":[],"ratingKey":1742,"key":"/library/metadata/1742","collectionTitle":"","collectionId":-1,"tmdbId":116835},{"name":"D.O.A.","year":1988,"posterUrl":"/library/metadata/621/thumb/1599308053","imdbId":"","language":"en","overview":"Dexter Cornell, an English Professor becomes embroiled in a series of murders involving people around him. Dexter has good reason to want to find the murderer but hasn't much time. He finds help and comfort from one of his student, Sydney Fuller.","moviesInCollection":[],"ratingKey":621,"key":"/library/metadata/621","collectionTitle":"","collectionId":-1,"tmdbId":9748},{"name":"The Last Black Man in San Francisco","year":2019,"posterUrl":"/library/metadata/2613/thumb/1599308841","imdbId":"","language":"en","overview":"Jimmie Fails dreams of reclaiming the Victorian home his grandfather built in the heart of San Francisco. Joined on his quest by his best friend Mont, Jimmie searches for belonging in a rapidly changing city that seems to have left them behind.","moviesInCollection":[],"ratingKey":2613,"key":"/library/metadata/2613","collectionTitle":"","collectionId":-1,"tmdbId":522039},{"name":"Fisherman’s Friends","year":2019,"posterUrl":"/library/metadata/908/thumb/1599308157","imdbId":"","language":"en","overview":"Ten fisherman from Cornwall are signed by Universal Records and achieve a top ten hit with their debut album of Sea Shanties. Based on the true-life story of Cornish folk band, Fisherman's Friends.","moviesInCollection":[],"ratingKey":908,"key":"/library/metadata/908","collectionTitle":"","collectionId":-1,"tmdbId":559713},{"name":"Lawrence of Arabia","year":1962,"posterUrl":"/library/metadata/1345/thumb/1599308323","imdbId":"","language":"en","overview":"The story of British officer T.E. Lawrence's mission to aid the Arab tribes in their revolt against the Ottoman Empire during the First World War. Lawrence becomes a flamboyant, messianic figure in the cause of Arab unity but his psychological instability threatens to undermine his achievements.","moviesInCollection":[],"ratingKey":1345,"key":"/library/metadata/1345","collectionTitle":"","collectionId":-1,"tmdbId":947},{"name":"National Treasure","year":2004,"posterUrl":"/library/metadata/1593/thumb/1599308429","imdbId":"","language":"en","overview":"Modern treasure hunters, led by archaeologist Ben Gates, search for a chest of riches rumored to have been stashed away by George Washington, Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence, and Gates is in a race to find the gold before his enemies do.","moviesInCollection":[],"ratingKey":1593,"key":"/library/metadata/1593","collectionTitle":"","collectionId":-1,"tmdbId":2059},{"name":"The Darkness","year":2016,"posterUrl":"/library/metadata/2394/thumb/1599308757","imdbId":"","language":"en","overview":"A family returns from a Grand Canyon vacation with a supernatural presence in tow.","moviesInCollection":[],"ratingKey":2394,"key":"/library/metadata/2394","collectionTitle":"","collectionId":-1,"tmdbId":257345},{"name":"Limitless","year":2011,"posterUrl":"/library/metadata/1393/thumb/1599308339","imdbId":"","language":"en","overview":"A paranoia-fueled action thriller about an unsuccessful writer whose life is transformed by a top-secret \"smart drug\" that allows him to use 100% of his brain and become a perfect version of himself. His enhanced abilities soon attract shadowy forces that threaten his new life in this darkly comic and provocative film.","moviesInCollection":[],"ratingKey":1393,"key":"/library/metadata/1393","collectionTitle":"","collectionId":-1,"tmdbId":51876},{"name":"Abigail","year":2019,"posterUrl":"/library/metadata/106/thumb/1599307865","imdbId":"","language":"en","overview":"A young girl Abigail lives in a city whose borders were closed many years ago because of an epidemic of a mysterious disease. Abby's father was one of the sick - and he was taken when she was six years old. Going against the authorities to find his father, Abby learns that her city is actually full of magic. And she discovers in herself extraordinary magical abilities.","moviesInCollection":[],"ratingKey":106,"key":"/library/metadata/106","collectionTitle":"","collectionId":-1,"tmdbId":575094},{"name":"Dragon Ball Mystical Adventure","year":1988,"posterUrl":"/library/metadata/753/thumb/1599308101","imdbId":"","language":"en","overview":"Master Roshi has succeeded at the one mission he valued most: to train Goku and Krillin to become ultimate fighters. So, he arranges for them to test their mettle at a competition hosted by Emperor Chiaotzu. Not everyone's playing by the rules, however, as a member of the ruler's household schemes to use the Dragonballs to extort money and power from the royal.","moviesInCollection":[],"ratingKey":753,"key":"/library/metadata/753","collectionTitle":"","collectionId":-1,"tmdbId":116776},{"name":"Leprechaun Back 2 tha Hood","year":2003,"posterUrl":"/library/metadata/1366/thumb/1599308329","imdbId":"","language":"en","overview":"When Emily Woodrow and her friends happen on a treasure chest full of gold coins, they fail to to heed the warnings of a wise old psychic who had foretold that they would encounter trouble with a very nasty and protective Leprechaun.","moviesInCollection":[],"ratingKey":1366,"key":"/library/metadata/1366","collectionTitle":"","collectionId":-1,"tmdbId":19288},{"name":"Official Secrets","year":2019,"posterUrl":"/library/metadata/1639/thumb/1599308450","imdbId":"","language":"en","overview":"The true story of British intelligence whistleblower Katharine Gun who—prior to the 2003 Iraq invasion—leaked a top-secret NSA memo exposing a joint US-UK illegal spying operation against members of the UN Security Council. The memo proposed blackmailing member states into voting for war.","moviesInCollection":[],"ratingKey":1639,"key":"/library/metadata/1639","collectionTitle":"","collectionId":-1,"tmdbId":393624},{"name":"Freddy's Dead The Final Nightmare","year":1991,"posterUrl":"/library/metadata/941/thumb/1599308171","imdbId":"","language":"en","overview":"Just when you thought it was safe to sleep, Freddy Krueger returns in this sixth installment of the Nightmare on Elm Street films, as psychologist Maggie Burroughs, tormented by recurring nightmares, meets a patient with the same horrific dreams. Their quest for answers leads to a certain house on Elm Street -- where the nightmares become reality.","moviesInCollection":[],"ratingKey":941,"key":"/library/metadata/941","collectionTitle":"","collectionId":-1,"tmdbId":11284},{"name":"Ferris Bueller's Day Off","year":1986,"posterUrl":"/library/metadata/882/thumb/1599308147","imdbId":"","language":"en","overview":"A high school slacker pretends to be sick to skip school and have an exciting day off alongside his girlfriend and his best buddy through Chicago, while trying to outwit his obsessive school principal and his unconformited sister along the way.","moviesInCollection":[],"ratingKey":882,"key":"/library/metadata/882","collectionTitle":"","collectionId":-1,"tmdbId":9377},{"name":"The Dark Knight","year":2008,"posterUrl":"/library/metadata/40957/thumb/1599309112","imdbId":"","language":"en","overview":"Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.","moviesInCollection":[],"ratingKey":40957,"key":"/library/metadata/40957","collectionTitle":"","collectionId":-1,"tmdbId":155},{"name":"GoodFellas","year":1990,"posterUrl":"/library/metadata/41874/thumb/1599309131","imdbId":"","language":"en","overview":"The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.","moviesInCollection":[],"ratingKey":41874,"key":"/library/metadata/41874","collectionTitle":"","collectionId":-1,"tmdbId":769},{"name":"Hellboy II The Golden Army","year":2018,"posterUrl":"/library/metadata/1090/thumb/1599308229","imdbId":"","language":"en","overview":"An evil elf breaks an ancient pact between humans and creatures, and is on a mission to release 'The Golden Army', a deadly group of fighting machines that can destroy the human race. As Hell on Earth is ready to erupt, Hellboy and his crew set out to defeat prince and his army.","moviesInCollection":[],"ratingKey":1090,"key":"/library/metadata/1090","collectionTitle":"","collectionId":-1,"tmdbId":11253},{"name":"The Dictator","year":2012,"posterUrl":"/library/metadata/2421/thumb/1599308767","imdbId":"","language":"en","overview":"The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.","moviesInCollection":[],"ratingKey":2421,"key":"/library/metadata/2421","collectionTitle":"","collectionId":-1,"tmdbId":76493},{"name":"Wrong","year":2013,"posterUrl":"/library/metadata/3171/thumb/1599309056","imdbId":"","language":"en","overview":"Dolph Springer wakes up one morning to realize he has lost the love of his life, his dog, Paul. During his quest to get Paul (and his life) back, Dolph radically changes the lives of others -- risking his sanity all the while.","moviesInCollection":[],"ratingKey":3171,"key":"/library/metadata/3171","collectionTitle":"","collectionId":-1,"tmdbId":83186},{"name":"Phantom Lady","year":1944,"posterUrl":"/library/metadata/1733/thumb/1599308492","imdbId":"","language":"en","overview":"A mystery woman is a murder suspect's only alibi for the night of his wife's death.","moviesInCollection":[],"ratingKey":1733,"key":"/library/metadata/1733","collectionTitle":"","collectionId":-1,"tmdbId":37992},{"name":"Ratchet & Clank","year":2016,"posterUrl":"/library/metadata/1851/thumb/1599308540","imdbId":"","language":"en","overview":"Ratchet and Clank tells the story of two unlikely heroes as they struggle to stop a vile alien named Chairman Drek from destroying every planet in the Solana Galaxy. When the two stumble upon a dangerous weapon capable of destroying entire planets, they must join forces with a team of colorful heroes called The Galactic Rangers in order to save the galaxy. Along the way they'll learn about heroism, friendship, and the importance of discovering one's own identity.","moviesInCollection":[],"ratingKey":1851,"key":"/library/metadata/1851","collectionTitle":"","collectionId":-1,"tmdbId":234004},{"name":"Wolf Warrior 2","year":2017,"posterUrl":"/library/metadata/3160/thumb/1599309051","imdbId":"","language":"en","overview":"China's deadliest special forces operative settles into a quiet life on the sea. When sadistic mercenaries begin targeting nearby civilians, he must leave his newfound peace behind and return to his duties as a soldier and protector.","moviesInCollection":[],"ratingKey":3160,"key":"/library/metadata/3160","collectionTitle":"","collectionId":-1,"tmdbId":452557},{"name":"F/X2","year":1991,"posterUrl":"/library/metadata/854/thumb/1599308136","imdbId":"","language":"en","overview":"F/X man Rollie Tyler is now a toymaker. Mike, the ex-husband of his girlfriend Kim, is a cop. He asks Rollie to help catch a killer. The operation goes well until some unknown man kills both the killer and Mike. Mike's boss, Silak says it was the killer who killed Mike but Rollie knows it wasn't. Obviously, Silak is involved with Mike's death, so he calls on Leo McCarthy, the cop from the last movie, who is now a P.I., for help and they discover it's not just Silak they have to worry about.","moviesInCollection":[],"ratingKey":854,"key":"/library/metadata/854","collectionTitle":"","collectionId":-1,"tmdbId":16820},{"name":"The Mummy Tomb of the Dragon Emperor","year":2008,"posterUrl":"/library/metadata/2698/thumb/1599308878","imdbId":"","language":"en","overview":"Archaeologist Rick O'Connell travels to China, pitting him against an emperor from the 2,000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time, O'Connell enlists the help of his wife and son to quash the so-called 'Dragon Emperor' and his abuse of supernatural power.","moviesInCollection":[],"ratingKey":2698,"key":"/library/metadata/2698","collectionTitle":"","collectionId":-1,"tmdbId":1735},{"name":"Demolition Man","year":1993,"posterUrl":"/library/metadata/688/thumb/1599308077","imdbId":"","language":"en","overview":"Simon Phoenix, a violent criminal cryogenically frozen in 1996, escapes during a parole hearing in 2032 in the utopia of San Angeles. Police are incapable of dealing with his violent ways and turn to his captor, who had also been cryogenically frozen after being wrongfully accused of killing 30 innocent people while apprehending Phoenix.","moviesInCollection":[],"ratingKey":688,"key":"/library/metadata/688","collectionTitle":"","collectionId":-1,"tmdbId":9739},{"name":"State of Play","year":2009,"posterUrl":"/library/metadata/2163/thumb/1599308676","imdbId":"","language":"en","overview":"Handsome, unflappable U.S. Congressman Stephen Collins is the future of his political party: an honorable appointee who serves as the chairman of a committee overseeing defense spending. All eyes are upon the rising star to be his party's contender for the upcoming presidential race. Until his research assistant/mistress is brutally murdered and buried secrets come tumbling out.","moviesInCollection":[],"ratingKey":2163,"key":"/library/metadata/2163","collectionTitle":"","collectionId":-1,"tmdbId":16995},{"name":"Ratatouille","year":2007,"posterUrl":"/library/metadata/1850/thumb/1599308540","imdbId":"","language":"en","overview":"A rat named Remy dreams of becoming a great French chef despite his family's wishes and the obvious problem of being a rat in a decidedly rodent-phobic profession. When fate places Remy in the sewers of Paris, he finds himself ideally situated beneath a restaurant made famous by his culinary hero, Auguste Gusteau. Despite the apparent dangers of being an unlikely - and certainly unwanted - visitor in the kitchen of a fine French restaurant, Remy's passion for cooking soon sets into motion a hilarious and exciting rat race that turns the culinary world of Paris upside down.","moviesInCollection":[],"ratingKey":1850,"key":"/library/metadata/1850","collectionTitle":"","collectionId":-1,"tmdbId":2062},{"name":"Colossal","year":2016,"posterUrl":"/library/metadata/551/thumb/1599308029","imdbId":"","language":"en","overview":"A woman discovers that severe catastrophic events are somehow connected to the mental breakdown from which she's suffering.","moviesInCollection":[],"ratingKey":551,"key":"/library/metadata/551","collectionTitle":"","collectionId":-1,"tmdbId":339967},{"name":"Shazam!","year":2019,"posterUrl":"/library/metadata/2016/thumb/1599308611","imdbId":"","language":"en","overview":"A boy is given the ability to become an adult superhero in times of need with a single magic word.","moviesInCollection":[],"ratingKey":2016,"key":"/library/metadata/2016","collectionTitle":"","collectionId":-1,"tmdbId":287947},{"name":"The Dark Knight Rises","year":2012,"posterUrl":"/library/metadata/41064/thumb/1599309120","imdbId":"","language":"en","overview":"Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.","moviesInCollection":[],"ratingKey":41064,"key":"/library/metadata/41064","collectionTitle":"","collectionId":-1,"tmdbId":49026},{"name":"Monsters, Inc.","year":2001,"posterUrl":"/library/metadata/1539/thumb/1599308407","imdbId":"","language":"en","overview":"James Sullivan and Mike Wazowski are monsters, they earn their living scaring children and are the best in the business... even though they're more afraid of the children than they are of them. When a child accidentally enters their world, James and Mike suddenly find that kids are not to be afraid of and they uncover a conspiracy that could threaten all children across the world.","moviesInCollection":[],"ratingKey":1539,"key":"/library/metadata/1539","collectionTitle":"","collectionId":-1,"tmdbId":585},{"name":"The Happening","year":2008,"posterUrl":"/library/metadata/2530/thumb/1599308810","imdbId":"","language":"en","overview":"When a deadly airborne virus threatens to wipe out the northeastern United States, teacher Elliott Moore (Mark Wahlberg) and his wife (Zooey Deschanel) flee from contaminated cities into the countryside in a fight to discover the truth. Is it terrorism, the accidental release of some toxic military bio weapon -- or something even more sinister? John Leguizamo and Betty Buckley co-star in this thriller from writer-director M. Night Shyamalan.","moviesInCollection":[],"ratingKey":2530,"key":"/library/metadata/2530","collectionTitle":"","collectionId":-1,"tmdbId":8645},{"name":"The Dark","year":2018,"posterUrl":"/library/metadata/27842/thumb/1599309075","imdbId":"","language":"en","overview":"A murderous, flesh-eating undead young girl haunting the remote stretch of woods where she was murdered decades earlier, discovers a kidnapped and abused boy hiding in the trunk of one of her victim’s cars. Her decision to let the boy live throws her aggressively solitary existence into upheaval, and ultimately forces her to re-examine just how much of her humanity her murderer was able to destroy.","moviesInCollection":[],"ratingKey":27842,"key":"/library/metadata/27842","collectionTitle":"","collectionId":-1,"tmdbId":463322},{"name":"Hustlers","year":2019,"posterUrl":"/library/metadata/2573/thumb/1599308825","imdbId":"","language":"en","overview":"A crew of savvy former strip club employees band together to turn the tables on their Wall Street clients.","moviesInCollection":[],"ratingKey":2573,"key":"/library/metadata/2573","collectionTitle":"","collectionId":-1,"tmdbId":540901},{"name":"Batman Under the Red Hood","year":2010,"posterUrl":"/library/metadata/304/thumb/1599307938","imdbId":"","language":"en","overview":"Batman faces his ultimate challenge as the mysterious Red Hood takes Gotham City by firestorm. One part vigilante, one part criminal kingpin, Red Hood begins cleaning up Gotham with the efficiency of Batman, but without following the same ethical code.","moviesInCollection":[],"ratingKey":304,"key":"/library/metadata/304","collectionTitle":"","collectionId":-1,"tmdbId":40662},{"name":"Bridesmaids","year":2011,"posterUrl":"/library/metadata/428/thumb/1599307983","imdbId":"","language":"en","overview":"Annie's life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillian's maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, she’ll show Lillian and her bridesmaids just how far you’ll go for someone you love.","moviesInCollection":[],"ratingKey":428,"key":"/library/metadata/428","collectionTitle":"","collectionId":-1,"tmdbId":55721},{"name":"Pandorum","year":2009,"posterUrl":"/library/metadata/1695/thumb/1599308475","imdbId":"","language":"en","overview":"Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone – and the reality of their situation is more horrifying than they could have imagined.","moviesInCollection":[],"ratingKey":1695,"key":"/library/metadata/1695","collectionTitle":"","collectionId":-1,"tmdbId":19898},{"name":"Ronin","year":1998,"posterUrl":"/library/metadata/1933/thumb/1599308578","imdbId":"","language":"en","overview":"A briefcase with undisclosed contents – sought by Irish terrorists and the Russian mob – makes its way into criminals' hands. An Irish liaison assembles a squad of mercenaries, or 'ronin', and gives them the thorny task of recovering the case.","moviesInCollection":[],"ratingKey":1933,"key":"/library/metadata/1933","collectionTitle":"","collectionId":-1,"tmdbId":8195},{"name":"The Love Guru","year":2008,"posterUrl":"/library/metadata/2658/thumb/1599308860","imdbId":"","language":"en","overview":"Born in America and raised in an Indian ashram, Pitka returns to his native land to seek his fortune as a spiritualist and self-help expert. His skills are put to the test when he must get a brokenhearted hockey player's marriage back on track in time for the man to help his team win the Stanley Cup.","moviesInCollection":[],"ratingKey":2658,"key":"/library/metadata/2658","collectionTitle":"","collectionId":-1,"tmdbId":12177},{"name":"Million Dollar Baby","year":2004,"posterUrl":"/library/metadata/1509/thumb/1599308393","imdbId":"","language":"en","overview":"Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.","moviesInCollection":[],"ratingKey":1509,"key":"/library/metadata/1509","collectionTitle":"","collectionId":-1,"tmdbId":70},{"name":"What Keeps You Alive","year":2018,"posterUrl":"/library/metadata/3128/thumb/1599309040","imdbId":"","language":"en","overview":"Majestic mountains, a still lake and venomous betrayals engulf a female married couple attempting to celebrate their one-year anniversary.","moviesInCollection":[],"ratingKey":3128,"key":"/library/metadata/3128","collectionTitle":"","collectionId":-1,"tmdbId":503752},{"name":"Aliens vs Predator Requiem","year":2007,"posterUrl":"/library/metadata/156/thumb/1599307883","imdbId":"","language":"en","overview":"The iconic creatures from two of the scariest film franchises in movie history wage their most brutal battle ever—in our own backyard. The small town of Gunnison, Colorado becomes a war zone between two of the deadliest extra-terrestrial life forms—the Alien and the Predator. When a Predator scout ship crash-lands in the hills outside the town, Alien Facehuggers and a hybrid Alien/Predator are released and begin to terrorize the town.","moviesInCollection":[],"ratingKey":156,"key":"/library/metadata/156","collectionTitle":"","collectionId":-1,"tmdbId":440},{"name":"Brother Bear 2","year":2006,"posterUrl":"/library/metadata/39771/thumb/1599309094","imdbId":"","language":"en","overview":"Kenai finds his childhood human friend Nita and the two embark on a journey to burn the amulet he gave to her before he was a bear, much to Koda's dismay.","moviesInCollection":[],"ratingKey":39771,"key":"/library/metadata/39771","collectionTitle":"","collectionId":-1,"tmdbId":10010},{"name":"John Q","year":2002,"posterUrl":"/library/metadata/1250/thumb/1599308289","imdbId":"","language":"en","overview":"John Quincy Archibald is a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.","moviesInCollection":[],"ratingKey":1250,"key":"/library/metadata/1250","collectionTitle":"","collectionId":-1,"tmdbId":8470},{"name":"Faster","year":2010,"posterUrl":"/library/metadata/874/thumb/1599308144","imdbId":"","language":"en","overview":"After 10 years in prison, Driver is now a free man with a single focus - hunting down the people responsible for brutally murdering his brother.","moviesInCollection":[],"ratingKey":874,"key":"/library/metadata/874","collectionTitle":"","collectionId":-1,"tmdbId":41283},{"name":"Let Us Prey","year":2015,"posterUrl":"/library/metadata/1372/thumb/1599308331","imdbId":"","language":"en","overview":"Rachel, a rookie cop, is about to begin her first night shift in a neglected police station in a Scottish, backwater town. The kind of place where the tide has gone out and stranded a motley bunch of the aimless, the forgotten, the bitter-and-twisted who all think that, really, they deserve to be somewhere else. They all think they're there by accident and that, with a little luck, life is going to get better. Wrong, on both counts. Six is about to arrive - and All Hell Will Break Loose!","moviesInCollection":[],"ratingKey":1372,"key":"/library/metadata/1372","collectionTitle":"","collectionId":-1,"tmdbId":276488},{"name":"Wayne's World","year":1992,"posterUrl":"/library/metadata/3114/thumb/1599309036","imdbId":"","language":"en","overview":"When a sleazy TV exec offers Wayne and Garth a fat contract to tape their late-night public access show at his network, they can't believe their good fortune. But they soon discover the road from basement to big-time is a gnarly one, fraught with danger, temptation and ragin' party opportunities.","moviesInCollection":[],"ratingKey":3114,"key":"/library/metadata/3114","collectionTitle":"","collectionId":-1,"tmdbId":8872},{"name":"Carrie","year":1976,"posterUrl":"/library/metadata/473/thumb/1599308001","imdbId":"","language":"en","overview":"Carrie White, a shy and troubled teenage girl who is tormented by her high school peers and her fanatically religious mother, begins to use her powers of telekinesis to exact revenge upon them.","moviesInCollection":[],"ratingKey":473,"key":"/library/metadata/473","collectionTitle":"","collectionId":-1,"tmdbId":7340},{"name":"Moon 44","year":1990,"posterUrl":"/library/metadata/1542/thumb/1599308408","imdbId":"","language":"en","overview":"Year 2038: The mineral resources of the earth are drained, in space there are fights for the last deposits on other planets and satellites. This is the situation when one of the bigger mining corporations has lost all but one mineral moons and many of their fully automatic mining robots are disappearing on their flight home. Since nobody else wants the job, they send prisoners to defend the mining station. Among them undercover agent Stone, who shall clear the whereabouts of the expensive robots. In an atmosphere of corruption, fear and hatred he gets between the fronts of rivaling groups.","moviesInCollection":[],"ratingKey":1542,"key":"/library/metadata/1542","collectionTitle":"","collectionId":-1,"tmdbId":2927},{"name":"Game of Death","year":1979,"posterUrl":"/library/metadata/967/thumb/1599308181","imdbId":"","language":"en","overview":"A martial arts movie star must fake his death to find the people who are trying to kill him.","moviesInCollection":[],"ratingKey":967,"key":"/library/metadata/967","collectionTitle":"","collectionId":-1,"tmdbId":13333},{"name":"Cloud Atlas","year":2012,"posterUrl":"/library/metadata/528/thumb/1599308021","imdbId":"","language":"en","overview":"A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.","moviesInCollection":[],"ratingKey":528,"key":"/library/metadata/528","collectionTitle":"","collectionId":-1,"tmdbId":83542},{"name":"The Leisure Seeker","year":2017,"posterUrl":"/library/metadata/2634/thumb/1599308849","imdbId":"","language":"en","overview":"A runaway couple go on an unforgettable journey from Boston to Key West, recapturing their passion for life and their love for each other on a road trip that provides revelation and surprise right up to the very end.","moviesInCollection":[],"ratingKey":2634,"key":"/library/metadata/2634","collectionTitle":"","collectionId":-1,"tmdbId":449749},{"name":"Downton Abbey","year":2019,"posterUrl":"/library/metadata/745/thumb/1599308098","imdbId":"","language":"en","overview":"The beloved Crawleys and their intrepid staff prepare for the most important moment of their lives. A royal visit from the King and Queen of England will unleash scandal, romance and intrigue that will leave the future of Downton hanging in the balance.","moviesInCollection":[],"ratingKey":745,"key":"/library/metadata/745","collectionTitle":"","collectionId":-1,"tmdbId":535544},{"name":"Smiley","year":2012,"posterUrl":"/library/metadata/2067/thumb/1599308635","imdbId":"","language":"en","overview":"After learning of an urban legend in which a demented serial killer named SMILEY can be summoned through the Internet, mentally fragile Ashley must decide whether she is losing her mind or becoming Smiley's next victim.","moviesInCollection":[],"ratingKey":2067,"key":"/library/metadata/2067","collectionTitle":"","collectionId":-1,"tmdbId":119278},{"name":"The Fifth Estate","year":2013,"posterUrl":"/library/metadata/2462/thumb/1599308784","imdbId":"","language":"en","overview":"A look at the relationship between WikiLeaks founder Julian Assange and his early supporter and eventual colleague Daniel Domscheit-Berg, and how the website's growth and influence led to an irreparable rift between the two friends.","moviesInCollection":[],"ratingKey":2462,"key":"/library/metadata/2462","collectionTitle":"","collectionId":-1,"tmdbId":162903},{"name":"Never Look Away","year":2018,"posterUrl":"/library/metadata/1602/thumb/1599308433","imdbId":"","language":"en","overview":"Inspired by real events and spanning three eras of German history, film tells the story of Kurt, a young art student who falls in love with fellow student, Ellie. Ellie’s father, Professor Seeband, a famous doctor, is dismayed at his daughter’s choice of boyfriend, and vows to destroy the relationship. What neither of them knows is that their lives are already connected through a terrible crime Seeband committed decades ago.","moviesInCollection":[],"ratingKey":1602,"key":"/library/metadata/1602","collectionTitle":"","collectionId":-1,"tmdbId":423612},{"name":"Pain & Gain","year":2013,"posterUrl":"/library/metadata/1690/thumb/1599308473","imdbId":"","language":"en","overview":"Daniel Lugo, manager of the Sun Gym in 1990s Miami, decides that there is only one way to achieve his version of the American dream: extortion. To achieve his goal, he recruits musclemen Paul and Adrian as accomplices. After several failed attempts, they abduct rich businessman Victor Kershaw and convince him to sign over all his assets to them. But when Kershaw makes it out alive, authorities are reluctant to believe his story.","moviesInCollection":[],"ratingKey":1690,"key":"/library/metadata/1690","collectionTitle":"","collectionId":-1,"tmdbId":134374},{"name":"Underworld Evolution","year":2006,"posterUrl":"/library/metadata/3048/thumb/1599309014","imdbId":"","language":"en","overview":"As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.","moviesInCollection":[],"ratingKey":3048,"key":"/library/metadata/3048","collectionTitle":"","collectionId":-1,"tmdbId":834},{"name":"Once Upon a Time in America","year":1984,"posterUrl":"/library/metadata/1651/thumb/1599308456","imdbId":"","language":"en","overview":"A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.","moviesInCollection":[],"ratingKey":1651,"key":"/library/metadata/1651","collectionTitle":"","collectionId":-1,"tmdbId":311},{"name":"Solaris","year":2002,"posterUrl":"/library/metadata/2084/thumb/1599308642","imdbId":"","language":"en","overview":"A troubled psychologist is sent to investigate the crew of an isolated research station orbiting a bizarre planet.","moviesInCollection":[],"ratingKey":2084,"key":"/library/metadata/2084","collectionTitle":"","collectionId":-1,"tmdbId":2103},{"name":"Zombieland Double Tap","year":2019,"posterUrl":"/library/metadata/3203/thumb/1599309065","imdbId":"","language":"en","overview":"Columbus, Tallahassee, Wichita, and Little Rock move to the American heartland as they face off against evolved zombies, fellow survivors, and the growing pains of the snarky makeshift family.","moviesInCollection":[],"ratingKey":3203,"key":"/library/metadata/3203","collectionTitle":"","collectionId":-1,"tmdbId":338967},{"name":"Wind River","year":2017,"posterUrl":"/library/metadata/3153/thumb/1599309049","imdbId":"","language":"en","overview":"An FBI agent teams with the town's veteran game tracker to investigate a murder that occurred on a Native American reservation.","moviesInCollection":[],"ratingKey":3153,"key":"/library/metadata/3153","collectionTitle":"","collectionId":-1,"tmdbId":395834},{"name":"The Host","year":2007,"posterUrl":"/library/metadata/2549/thumb/1599308817","imdbId":"","language":"en","overview":"Gang-du is a dim-witted man working at his father's tiny snack bar near the Han River. Following the dumping of gallons of toxic waste in the river, a giant mutated squid-like appears and begins attacking the populace. Gang-du's daughter Hyun-seo is snatched up by the creature and he and his family are taken into custody by the military, who fear a virus spread by the creature. In detention, Gang-du receives a phone call from Hyun-seo, who is not dead, merely trapped in a sewer. With his family to assist him, he sets off to find Hyun-seo.","moviesInCollection":[],"ratingKey":2549,"key":"/library/metadata/2549","collectionTitle":"","collectionId":-1,"tmdbId":1255},{"name":"Transsiberian","year":2008,"posterUrl":"/library/metadata/2991/thumb/1599308994","imdbId":"","language":"en","overview":"A Trans-Siberian train journey from China to Moscow becomes a thrilling chase of deception and murder when an American couple encounters a mysterious pair of fellow travelers.","moviesInCollection":[],"ratingKey":2991,"key":"/library/metadata/2991","collectionTitle":"","collectionId":-1,"tmdbId":6687},{"name":"Man on Fire","year":2004,"posterUrl":"/library/metadata/1453/thumb/1599308367","imdbId":"","language":"en","overview":"Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.","moviesInCollection":[],"ratingKey":1453,"key":"/library/metadata/1453","collectionTitle":"","collectionId":-1,"tmdbId":9509},{"name":"The Host","year":2013,"posterUrl":"/library/metadata/2550/thumb/1599308817","imdbId":"","language":"en","overview":"A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race's mission of taking over the Earth, \"Wanda\" (as she comes to be called) forms a bond with her host and sets out to aid other free humans.","moviesInCollection":[],"ratingKey":2550,"key":"/library/metadata/2550","collectionTitle":"","collectionId":-1,"tmdbId":72710},{"name":"The Journey of Natty Gann","year":1985,"posterUrl":"/library/metadata/2596/thumb/1599308834","imdbId":"","language":"en","overview":"America is in the depths of the Great Depression. Families drift apart when faraway jobs beckon. In this masterful, atmospheric adventure, a courageous young girl (Meredith Salenger) confronts overwhelming odds when she embarks on a cross-country search for her father. During her extraordinary odyssey, she forms a close bond with two diverse traveling companions: a magnificent, protective wolf, and a hardened drifter (John Cusack). A brilliant, moving tapestry, woven of courage and perseverance.","moviesInCollection":[],"ratingKey":2596,"key":"/library/metadata/2596","collectionTitle":"","collectionId":-1,"tmdbId":35144},{"name":"Hard Target 2","year":2016,"posterUrl":"/library/metadata/1064/thumb/1599308218","imdbId":"","language":"en","overview":"Forced into a deadly cat-and-mouse game, a disgraced mixed martial arts fighter is hunted through the jungles of Southeast Asia.","moviesInCollection":[],"ratingKey":1064,"key":"/library/metadata/1064","collectionTitle":"","collectionId":-1,"tmdbId":402331},{"name":"Trailer Park Boys The Movie","year":2008,"posterUrl":"/library/metadata/2979/thumb/1599308990","imdbId":"","language":"en","overview":"Set in a separate storyline not related to the \"Trailer Park Boys\" Television show, but with the same lovable characters. The boys get arrested for robbing an ATM machine and spend 18 months in jail. When the get out, they decide to pull off \"The Big Dirty\" which is to steal a large amount of coins because they are untraceable and quit their life of crime forever","moviesInCollection":[],"ratingKey":2979,"key":"/library/metadata/2979","collectionTitle":"","collectionId":-1,"tmdbId":9958},{"name":"The Devil's Double","year":2011,"posterUrl":"/library/metadata/2419/thumb/1599308767","imdbId":"","language":"en","overview":"A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein's sadistic son.","moviesInCollection":[],"ratingKey":2419,"key":"/library/metadata/2419","collectionTitle":"","collectionId":-1,"tmdbId":62630},{"name":"The Equalizer 2","year":2018,"posterUrl":"/library/metadata/2439/thumb/1599308775","imdbId":"","language":"en","overview":"Robert McCall, who serves an unflinching justice for the exploited and oppressed, embarks on a relentless, globe-trotting quest for vengeance when a long-time girl friend is murdered.","moviesInCollection":[],"ratingKey":2439,"key":"/library/metadata/2439","collectionTitle":"","collectionId":-1,"tmdbId":345887},{"name":"The Legend of Drunken Master","year":1994,"posterUrl":"/library/metadata/2627/thumb/1599308846","imdbId":"","language":"en","overview":"Returning home with his father after a shopping expedition, Wong Fei-Hong is unwittingly caught up in the battle between foreigners who wish to export ancient Chinese artifacts and loyalists who don't want the pieces to leave the country. Fei-Hong must fight against the foreigners using his Drunken Boxing style, and overcome his father's antagonism as well.","moviesInCollection":[],"ratingKey":2627,"key":"/library/metadata/2627","collectionTitle":"","collectionId":-1,"tmdbId":12207},{"name":"40 Days and 40 Nights","year":2002,"posterUrl":"/library/metadata/46539/thumb/1599309164","imdbId":"","language":"en","overview":"Matt Sullivan's last big relationship ended in disaster and ever since his heart's been aching and his commitment's been lacking. Then came Lent, that time of year when everybody gives something up. That's when Matt decides to go where no man's gone before and make a vow: No sex. Whatsoever. For 40 straight days. At first he has everything under control. That is until the woman of his dreams, Erica, walks into his life.","moviesInCollection":[],"ratingKey":46539,"key":"/library/metadata/46539","collectionTitle":"","collectionId":-1,"tmdbId":2752},{"name":"Requiem for a Dream","year":2000,"posterUrl":"/library/metadata/1881/thumb/1599308554","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1881,"key":"/library/metadata/1881","collectionTitle":"","collectionId":-1,"tmdbId":641},{"name":"The Fighter","year":2010,"posterUrl":"/library/metadata/2463/thumb/1599308784","imdbId":"","language":"en","overview":"The Fighter, is a drama about boxer \"Irish\" Micky Ward's unlikely road to the world light welterweight title. His Rocky-like rise was shepherded by half-brother Dicky, a boxer-turned-trainer who rebounded in life after nearly being KO'd by drugs and crime.","moviesInCollection":[],"ratingKey":2463,"key":"/library/metadata/2463","collectionTitle":"","collectionId":-1,"tmdbId":45317},{"name":"Hack-O-Lantern","year":2015,"posterUrl":"/library/metadata/48813/thumb/1601966754","imdbId":"","language":"en","overview":"A young boy named Tommy sees his father murdered by his grandfather in a brutal satanic ritual on Halloween night. Years later, as Tommy's grandfather attempts to initiate him into the cult, a mysterious killer begins preying on the people closest to Tommy.","moviesInCollection":[],"ratingKey":48813,"key":"/library/metadata/48813","collectionTitle":"","collectionId":-1,"tmdbId":95114},{"name":"Phantom","year":2013,"posterUrl":"/library/metadata/1732/thumb/1599308491","imdbId":"","language":"en","overview":"The haunted Captain of a Soviet submarine holds the fate of the world in his hands. Forced to leave his family behind, he is charged with leading a covert mission cloaked in mystery.","moviesInCollection":[],"ratingKey":1732,"key":"/library/metadata/1732","collectionTitle":"","collectionId":-1,"tmdbId":152259},{"name":"Project Gutenberg","year":2018,"posterUrl":"/library/metadata/1811/thumb/1599308523","imdbId":"","language":"en","overview":"The Hong Kong police is hunting a counterfeiting gang led by a mastermind code-named \"Painter\" . The gang possesses exceptional counterfeiting skills which makes it difficult to distinguish the authenticity of its counterfeit currency. The scope of their criminal activities extends globally and greatly attracts the attention of the police. In order to crack the true identity of \"Painter\", the police recruits a painter named Lee Man to assist in solving the case.","moviesInCollection":[],"ratingKey":1811,"key":"/library/metadata/1811","collectionTitle":"","collectionId":-1,"tmdbId":531384},{"name":"Creepshow","year":1982,"posterUrl":"/library/metadata/595/thumb/1599308046","imdbId":"","language":"en","overview":"Inspired by the E.C. comics of the 1950s, George A. Romero and Stephen King bring five tales of terror to the screen.","moviesInCollection":[],"ratingKey":595,"key":"/library/metadata/595","collectionTitle":"","collectionId":-1,"tmdbId":16281},{"name":"Galaxy Quest","year":1999,"posterUrl":"/library/metadata/965/thumb/1599308180","imdbId":"","language":"en","overview":"The stars of a 1980s sci-fi show—now eking out a living through re-runs and sci-fi conventions—are beamed aboard an alien spacecraft. Believing the cast's heroic on-screen dramas are historical documents of real-life adventures, the band of aliens turn to the cast members for help in their quest to overcome the oppressive regime in their solar system.","moviesInCollection":[],"ratingKey":965,"key":"/library/metadata/965","collectionTitle":"","collectionId":-1,"tmdbId":926},{"name":"Crimson Tide","year":1995,"posterUrl":"/library/metadata/597/thumb/1599308046","imdbId":"","language":"en","overview":"On a US nuclear missile sub, a young first officer stages a mutiny to prevent his trigger happy captain from launching his missiles before confirming his orders to do so.","moviesInCollection":[],"ratingKey":597,"key":"/library/metadata/597","collectionTitle":"","collectionId":-1,"tmdbId":8963},{"name":"Senna","year":2011,"posterUrl":"/library/metadata/1998/thumb/1599308603","imdbId":"","language":"en","overview":"Senna's remarkable story, charting his physical and spiritual achievments on the track and off, his quest for perfection, and the mythical status he has since attained, is the subject of Senna, a documentary feature that spans the racing legend's years as an F1 driver, from his opening season in 1984 to his untimely death a decade later.","moviesInCollection":[],"ratingKey":1998,"key":"/library/metadata/1998","collectionTitle":"","collectionId":-1,"tmdbId":58496},{"name":"Coneheads","year":1993,"posterUrl":"/library/metadata/564/thumb/1599308034","imdbId":"","language":"en","overview":"With enormous cone-shaped heads, robotlike walks and an appetite for toilet paper, aliens Beldar and Prymatt don't exactly blend in with the population of Paramus, N.J. But for some reason, everyone believes them when they say they're from France.","moviesInCollection":[],"ratingKey":564,"key":"/library/metadata/564","collectionTitle":"","collectionId":-1,"tmdbId":9612},{"name":"The Battleship Island","year":2018,"posterUrl":"/library/metadata/2312/thumb/1599308728","imdbId":"","language":"en","overview":"During the Japanese colonial era, roughly 400 Korean people, who were forced onto Battleship Island (‘Hashima Island’) to mine for coal, attempt to escape.","moviesInCollection":[],"ratingKey":2312,"key":"/library/metadata/2312","collectionTitle":"","collectionId":-1,"tmdbId":436391},{"name":"Just Mercy","year":2019,"posterUrl":"/library/metadata/27784/thumb/1599309071","imdbId":"","language":"en","overview":"The powerful true story of Harvard-educated lawyer Bryan Stevenson, who goes to Alabama to defend the disenfranchised and wrongly condemned — including Walter McMillian, a man sentenced to death despite evidence proving his innocence. Bryan fights tirelessly for Walter with the system stacked against them.","moviesInCollection":[],"ratingKey":27784,"key":"/library/metadata/27784","collectionTitle":"","collectionId":-1,"tmdbId":522212},{"name":"Texas Chainsaw Massacre The Next Generation","year":1994,"posterUrl":"/library/metadata/2266/thumb/1599308713","imdbId":"","language":"en","overview":"Everyone's favorite chainsaw-wielding psychopath, Leatherface, is back for more prom-night gore, and this time he's joined by his bloodthirsty family. Four stranded yet carefree teens are taken in by a backwoods family, clueless of their host family's grisly habits. The terrified youths, including sweet Jenny, try to escape from Leatherface and his crazed clan, including the bionic Vilmer.","moviesInCollection":[],"ratingKey":2266,"key":"/library/metadata/2266","collectionTitle":"","collectionId":-1,"tmdbId":16780},{"name":"Kung Fu Monster","year":2018,"posterUrl":"/library/metadata/1326/thumb/1599308316","imdbId":"","language":"en","overview":"In the waning years of the Ming Dynasty, the Bruneian Empire offers a rare creature to the nation as a gift. Ocean, a member of the Imperial Secret Police, has been tasked to tame the beast. Though the furry beast appears ferocious on the outside, Ocean discovers that it is kind by nature. Not wanting to turn the beast into a killing machine on the battlefield, Ocean secretly releases the beast into the wild and elopes with Frigid, the daughter of a man executed on false charges.","moviesInCollection":[],"ratingKey":1326,"key":"/library/metadata/1326","collectionTitle":"","collectionId":-1,"tmdbId":569947},{"name":"Evil Dead II","year":1987,"posterUrl":"/library/metadata/39945/thumb/1599309100","imdbId":"","language":"en","overview":"Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from \"The Book of the Dead.\" As they play the recording an evil power is unleashed taking over Linda's body.","moviesInCollection":[],"ratingKey":39945,"key":"/library/metadata/39945","collectionTitle":"","collectionId":-1,"tmdbId":765},{"name":"Our Kind of Traitor","year":2016,"posterUrl":"/library/metadata/1673/thumb/1599308465","imdbId":"","language":"en","overview":"A young Oxford academic and his attorney girlfriend holiday on Antigua. They bump into a Russian millionaire who owns a peninsula and a diamond watch. He wants a game of tennis. What else he wants propels the lovers on a tortuous journey to the City of London and its unholy alliance with Britain's intelligence establishment, to Paris and the Alps.","moviesInCollection":[],"ratingKey":1673,"key":"/library/metadata/1673","collectionTitle":"","collectionId":-1,"tmdbId":205588},{"name":"Jurassic City","year":2015,"posterUrl":"/library/metadata/1273/thumb/1599308299","imdbId":"","language":"en","overview":"When a top-secret laboratory is unexpectedly breached, thousands of rampaging raptors are unleashed on Los Angeles! A black-ops unit is mobilized to contain the creatures before they cause city-wide chaos. Simultaneously, a truckload of raptors is rerouted to a nearby prison. Upon their escape, these ferocious flesh-eaters are beyond containment. This is Jurassic judgment night for smoking hot sorority girls, sinister scientists, muscle-bound military and doomed death-row inmates! It's about to get bloody in Jurassic City!","moviesInCollection":[],"ratingKey":1273,"key":"/library/metadata/1273","collectionTitle":"","collectionId":-1,"tmdbId":315024},{"name":"Space Warriors","year":2013,"posterUrl":"/library/metadata/2099/thumb/1599308649","imdbId":"","language":"en","overview":"The son of a retired astronaut competes to win a seat on the next space shuttle.","moviesInCollection":[],"ratingKey":2099,"key":"/library/metadata/2099","collectionTitle":"","collectionId":-1,"tmdbId":188507},{"name":"Toy Story of Terror!","year":2013,"posterUrl":"/library/metadata/47409/thumb/1599309182","imdbId":"","language":"en","overview":"What starts out as a fun road trip for the Toy Story gang takes an unexpected turn for the worse when the trip detours to a roadside motel. After one of the toys goes missing, the others find themselves caught up in a mysterious sequence of events that must be solved before they all suffer the same fate in this Toy Story of Terror.","moviesInCollection":[],"ratingKey":47409,"key":"/library/metadata/47409","collectionTitle":"","collectionId":-1,"tmdbId":213121},{"name":"Kingsman The Secret Service","year":2014,"posterUrl":"/library/metadata/1314/thumb/1599308312","imdbId":"","language":"en","overview":"The story of a super-secret spy organization that recruits an unrefined but promising street kid into the agency's ultra-competitive training program just as a global threat emerges from a twisted tech genius.","moviesInCollection":[],"ratingKey":1314,"key":"/library/metadata/1314","collectionTitle":"","collectionId":-1,"tmdbId":207703},{"name":"Fantasia","year":1941,"posterUrl":"/library/metadata/859/thumb/1599308138","imdbId":"","language":"en","overview":"Walt Disney's timeless masterpiece is an extravaganza of sight and sound! See the music come to life, hear the pictures burst into song and experience the excitement that is Fantasia over and over again.","moviesInCollection":[],"ratingKey":859,"key":"/library/metadata/859","collectionTitle":"","collectionId":-1,"tmdbId":756},{"name":"Greetings","year":1968,"posterUrl":"/library/metadata/1034/thumb/1599308206","imdbId":"","language":"en","overview":"An offbeat, episodic film about three friends, Paul, a shy love-seeker, Lloyd, a vibrant conspiracy nut, and Jon, an aspiring filmmaker and peeping tom. The film satirizes free-love, the Kennedy assassination, Vietnam, and amateur film-making.","moviesInCollection":[],"ratingKey":1034,"key":"/library/metadata/1034","collectionTitle":"","collectionId":-1,"tmdbId":73604},{"name":"Adventureland","year":2009,"posterUrl":"/library/metadata/124/thumb/1599307872","imdbId":"","language":"en","overview":"In the summer of 1987, a college graduate takes a 'nowhere' job at his local amusement park, only to find it's the perfect course to get him prepared for the real world.","moviesInCollection":[],"ratingKey":124,"key":"/library/metadata/124","collectionTitle":"","collectionId":-1,"tmdbId":16614},{"name":"The Lodge","year":2019,"posterUrl":"/library/metadata/40175/thumb/1599309104","imdbId":"","language":"en","overview":"A soon-to-be stepmom is snowed in with her fiancé's two children at a remote holiday village. Just as relations begin to thaw between the trio, some strange and frightening events take place.","moviesInCollection":[],"ratingKey":40175,"key":"/library/metadata/40175","collectionTitle":"","collectionId":-1,"tmdbId":474764},{"name":"Space Jam","year":1996,"posterUrl":"/library/metadata/2096/thumb/1599308648","imdbId":"","language":"en","overview":"Swackhammer, an evil alien theme park owner, needs a new attraction at Moron Mountain. When his gang, the Nerdlucks, heads to Earth to kidnap Bugs Bunny and the Looney Tunes, Bugs challenges them to a basketball game to determine their fate. The aliens agree, but they steal the powers of NBA basketball players, including Larry Bird and Charles Barkley -- so Bugs gets some help from superstar Michael Jordan.","moviesInCollection":[],"ratingKey":2096,"key":"/library/metadata/2096","collectionTitle":"","collectionId":-1,"tmdbId":2300},{"name":"Argo","year":2012,"posterUrl":"/library/metadata/217/thumb/1599307907","imdbId":"","language":"en","overview":"As the Iranian revolution reaches a boiling point, a CIA 'exfiltration' specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.","moviesInCollection":[],"ratingKey":217,"key":"/library/metadata/217","collectionTitle":"","collectionId":-1,"tmdbId":68734},{"name":"Corporate Animals","year":2019,"posterUrl":"/library/metadata/577/thumb/1599308039","imdbId":"","language":"en","overview":"Disaster strikes when the egotistical CEO of an edible cutlery company leads her long-suffering staff on a corporate team-building trip in New Mexico. Trapped underground, this mismatched and disgruntled group must pull together to survive.","moviesInCollection":[],"ratingKey":577,"key":"/library/metadata/577","collectionTitle":"","collectionId":-1,"tmdbId":530076},{"name":"Extinction","year":2018,"posterUrl":"/library/metadata/849/thumb/1599308134","imdbId":"","language":"en","overview":"A chief mechanic at a factory, haunted by apocalyptic nightmares, becomes a hero when Earth is invaded by a mysterious army bent on destruction.","moviesInCollection":[],"ratingKey":849,"key":"/library/metadata/849","collectionTitle":"","collectionId":-1,"tmdbId":429415},{"name":"Easy A","year":2010,"posterUrl":"/library/metadata/803/thumb/1599308118","imdbId":"","language":"en","overview":"Olive, an average high school student, sees her below-the-radar existence turn around overnight once she decides to use the school's gossip grapevine to advance her social standing. Now her classmates are turning against her and the school board is becoming concerned, including her favorite teacher and the distracted guidance counselor. With the support of her hilariously idiosyncratic parents and a little help from a long-time crush, Olive attempts to take on her notorious new identity and crush the rumor mill once and for all.","moviesInCollection":[],"ratingKey":803,"key":"/library/metadata/803","collectionTitle":"","collectionId":-1,"tmdbId":37735},{"name":"Bloodsport","year":1988,"posterUrl":"/library/metadata/39729/thumb/1599309093","imdbId":"","language":"en","overview":"U.S. soldier Frank Dux has come to Hong Kong to be accepted into the Kumite, a highly secret and extremely violent martial arts competition. While trying to gain access into the underground world of clandestine fighters, he also has to avoid military officers who consider him to be AWOL. After enduring a difficult training and beginning a romance with journalist Janice Kent, Frank is given the opportunity to fight. But can he survive?","moviesInCollection":[],"ratingKey":39729,"key":"/library/metadata/39729","collectionTitle":"","collectionId":-1,"tmdbId":11690},{"name":"Hardbodies 2","year":1986,"posterUrl":"/library/metadata/1066/thumb/1599308219","imdbId":"","language":"en","overview":"A film crew is travelling from America to Greece to produce a movie. Before their work is done they will have to face many unusual situations, along with numerous opportunities for the actresses to take their clothes off.","moviesInCollection":[],"ratingKey":1066,"key":"/library/metadata/1066","collectionTitle":"","collectionId":-1,"tmdbId":61117},{"name":"The Protector","year":2005,"posterUrl":"/library/metadata/2763/thumb/1599308907","imdbId":"","language":"en","overview":"In Bangkok, the young Kham was raised by his father in the jungle with elephants as members of their family. When his old elephant and the baby Kern are stolen by criminals, Kham finds that the animals were sent to Sidney. He travels to Australia, where he locates the baby elephant in a restaurant owned by the evil Madame Rose, the leader of an international Thai mafia. With the support of the efficient Thai sergeant Mark, who was involved in a conspiracy, Kham fights to rescue the animal from the mobsters.","moviesInCollection":[],"ratingKey":2763,"key":"/library/metadata/2763","collectionTitle":"","collectionId":-1,"tmdbId":8982},{"name":"Hold the Dark","year":2018,"posterUrl":"/library/metadata/1115/thumb/1599308238","imdbId":"","language":"en","overview":"In the grim Alaskan winter, a naturalist hunts for wolves blamed for killing a local boy, but he soon finds himself swept into a chilling mystery.","moviesInCollection":[],"ratingKey":1115,"key":"/library/metadata/1115","collectionTitle":"","collectionId":-1,"tmdbId":395841},{"name":"Party Bus To Hell","year":2018,"posterUrl":"/library/metadata/1704/thumb/1599308479","imdbId":"","language":"en","overview":"When a party bus on its way to Burning Man filled with a bunch of sexy young adults breaks down in the desert and in the middle of a group of Satanic worshippers, all hell literally breaks loose. A massacre leaves seven survivors trapped on the bus, fighting for their lives while wondering if someone or someones are not what they seem.","moviesInCollection":[],"ratingKey":1704,"key":"/library/metadata/1704","collectionTitle":"","collectionId":-1,"tmdbId":508404},{"name":"Treasure Planet","year":2002,"posterUrl":"/library/metadata/2992/thumb/1599308995","imdbId":"","language":"en","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!","moviesInCollection":[],"ratingKey":2992,"key":"/library/metadata/2992","collectionTitle":"","collectionId":-1,"tmdbId":9016},{"name":"Puss in Boots","year":2011,"posterUrl":"/library/metadata/1826/thumb/1599308529","imdbId":"","language":"en","overview":"Long before he even met Shrek, the notorious fighter, lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat, The Myth, The Legend... The Boots.","moviesInCollection":[],"ratingKey":1826,"key":"/library/metadata/1826","collectionTitle":"","collectionId":-1,"tmdbId":417859},{"name":"The Star Wars Holiday Special","year":1978,"posterUrl":"/library/metadata/39639/thumb/1599309088","imdbId":"","language":"en","overview":"Luke Skywalker and Han Solo battle evil Imperial forces to help Chewbacca reach his imperiled family on the Wookiee planet - in time for Life Day, their most important day of the year!","moviesInCollection":[],"ratingKey":39639,"key":"/library/metadata/39639","collectionTitle":"","collectionId":-1,"tmdbId":74849},{"name":"Smokey and the Bandit","year":1977,"posterUrl":"/library/metadata/2068/thumb/1599308635","imdbId":"","language":"en","overview":"A race car driver tries to transport an illegal beer shipment from Texas to Atlanta in under 28 hours, picking up a reluctant bride-to-be on the way.","moviesInCollection":[],"ratingKey":2068,"key":"/library/metadata/2068","collectionTitle":"","collectionId":-1,"tmdbId":11006},{"name":"Step Up 2 The Streets","year":2008,"posterUrl":"/library/metadata/47278/thumb/1599309177","imdbId":"","language":"en","overview":"When rebellious street dancer Andie lands at the elite Maryland School of the Arts, she finds herself fighting to fit in while also trying to hold onto her old life. When she joins forces with the schools hottest dancer, Chase, to form a crew of classmate outcasts to compete in Baltimore s underground dance battle The Streets.","moviesInCollection":[],"ratingKey":47278,"key":"/library/metadata/47278","collectionTitle":"","collectionId":-1,"tmdbId":8328},{"name":"The Croods","year":2013,"posterUrl":"/library/metadata/2380/thumb/1599308752","imdbId":"","language":"en","overview":"The Croods is a prehistoric comedy adventure that follows the world's first family as they embark on a journey of a lifetime when the cave that has always shielded them from danger is destroyed. Traveling across a spectacular landscape, the Croods discover an incredible new world filled with fantastic creatures -- and their outlook is changed forever.","moviesInCollection":[],"ratingKey":2380,"key":"/library/metadata/2380","collectionTitle":"","collectionId":-1,"tmdbId":49519},{"name":"The Life Aquatic with Steve Zissou","year":2004,"posterUrl":"/library/metadata/2636/thumb/1599308849","imdbId":"","language":"en","overview":"Renowned oceanographer Steve Zissou has sworn vengeance upon the rare shark that devoured a member of his crew. In addition to his regular team, he is joined on his boat by Ned, a man who believes Zissou to be his father, and Jane, a journalist pregnant by a married man. They travel the sea, all too often running into pirates and, perhaps more traumatically, various figures from Zissou's past, including his estranged wife, Eleanor.","moviesInCollection":[],"ratingKey":2636,"key":"/library/metadata/2636","collectionTitle":"","collectionId":-1,"tmdbId":421},{"name":"Little Fockers","year":2010,"posterUrl":"/library/metadata/1398/thumb/1599308341","imdbId":"","language":"en","overview":"It has taken 10 years, two little Fockers with wife Pam and countless hurdles for Greg to finally get in with his tightly wound father-in-law, Jack. After the cash-strapped dad takes a job moonlighting for a drug company, Jack's suspicions about his favorite male nurse come roaring back. When Greg and Pam's entire clan descends for the twins' birthday party, Greg must prove to the skeptical Jack that he's fully capable as the man of the house.","moviesInCollection":[],"ratingKey":1398,"key":"/library/metadata/1398","collectionTitle":"","collectionId":-1,"tmdbId":39451},{"name":"The Midnight Man","year":2018,"posterUrl":"/library/metadata/2684/thumb/1599308871","imdbId":"","language":"en","overview":"A girl and her friends find a game in the attic that summons a creature known as The Midnight Man, who uses their worst fears against them.","moviesInCollection":[],"ratingKey":2684,"key":"/library/metadata/2684","collectionTitle":"","collectionId":-1,"tmdbId":492621},{"name":"San Andreas","year":2015,"posterUrl":"/library/metadata/1957/thumb/1599308588","imdbId":"","language":"en","overview":"In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.","moviesInCollection":[],"ratingKey":1957,"key":"/library/metadata/1957","collectionTitle":"","collectionId":-1,"tmdbId":254128},{"name":"13 Going on 30","year":2004,"posterUrl":"/library/metadata/13/thumb/1599307831","imdbId":"","language":"en","overview":"After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. With a little magic, her wish is granted, but it turns out that being thirty isn't as always as awesome as she thought it would be!","moviesInCollection":[],"ratingKey":13,"key":"/library/metadata/13","collectionTitle":"","collectionId":-1,"tmdbId":10096},{"name":"Lazer Team 2","year":2017,"posterUrl":"/library/metadata/27849/thumb/1599309078","imdbId":"","language":"en","overview":"After Woody goes missing while working on secret alien research, scientist Maggie Wittington must recruit the former members of Lazer Team to join her in rescuing their lost friend.","moviesInCollection":[],"ratingKey":27849,"key":"/library/metadata/27849","collectionTitle":"","collectionId":-1,"tmdbId":472054},{"name":"The Hurricane Heist","year":2018,"posterUrl":"/library/metadata/2571/thumb/1599308825","imdbId":"","language":"en","overview":"Thieves attempt a massive heist against the U.S. Treasury as a Category 5 hurricane approaches one of its Mint facilities.","moviesInCollection":[],"ratingKey":2571,"key":"/library/metadata/2571","collectionTitle":"","collectionId":-1,"tmdbId":430040},{"name":"Vanishing Point","year":1971,"posterUrl":"/library/metadata/3075/thumb/1599309023","imdbId":"","language":"en","overview":"Kowalski works for a car delivery service, and takes delivery of a 1970 Dodge Challenger to drive from Colorado to San Francisco. Shortly after pickup, he takes a bet to get the car there in less than 15 hours.","moviesInCollection":[],"ratingKey":3075,"key":"/library/metadata/3075","collectionTitle":"","collectionId":-1,"tmdbId":11951},{"name":"The Thin Red Line","year":1998,"posterUrl":"/library/metadata/2856/thumb/1599308947","imdbId":"","language":"en","overview":"Based on the graphic novel by James Jones, The Thin Red Line tells the story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived. A powerful frontline cast - including Sean Penn, Nick Nolte, Woody Harrelson and George Clooney - explodes into action in this hauntingly realistic view of military and moral chaos in the Pacific during World War II.","moviesInCollection":[],"ratingKey":2856,"key":"/library/metadata/2856","collectionTitle":"","collectionId":-1,"tmdbId":8741},{"name":"Carrie","year":2013,"posterUrl":"/library/metadata/474/thumb/1599308002","imdbId":"","language":"en","overview":"A reimagining of the classic horror tale about Carrie White, a shy girl outcast by her peers and sheltered by her deeply religious mother, who unleashes telekinetic terror on her small town after being pushed too far at her senior prom.","moviesInCollection":[],"ratingKey":474,"key":"/library/metadata/474","collectionTitle":"","collectionId":-1,"tmdbId":133805},{"name":"Toy Story","year":1995,"posterUrl":"/library/metadata/2967/thumb/1599308986","imdbId":"","language":"en","overview":"Led by Woody, Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart, Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner, the duo eventually learns to put aside their differences.","moviesInCollection":[],"ratingKey":2967,"key":"/library/metadata/2967","collectionTitle":"","collectionId":-1,"tmdbId":862},{"name":"Baywatch","year":2017,"posterUrl":"/library/metadata/321/thumb/1599307943","imdbId":"","language":"en","overview":"Devoted lifeguard Mitch Buchannon butts heads with a brash new recruit. Together, they uncover a local criminal plot that threatens the future of the Bay.","moviesInCollection":[],"ratingKey":321,"key":"/library/metadata/321","collectionTitle":"","collectionId":-1,"tmdbId":339846},{"name":"Ready Player One","year":2018,"posterUrl":"/library/metadata/1856/thumb/1599308543","imdbId":"","language":"en","overview":"When the creator of a popular video game system dies, a virtual contest is created to compete for his fortune.","moviesInCollection":[],"ratingKey":1856,"key":"/library/metadata/1856","collectionTitle":"","collectionId":-1,"tmdbId":333339},{"name":"Magnolia","year":1999,"posterUrl":"/library/metadata/1442/thumb/1599308361","imdbId":"","language":"en","overview":"An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.","moviesInCollection":[],"ratingKey":1442,"key":"/library/metadata/1442","collectionTitle":"","collectionId":-1,"tmdbId":334},{"name":"Leviathan","year":1989,"posterUrl":"/library/metadata/1380/thumb/1599308334","imdbId":"","language":"en","overview":"Underwater deep-sea miners encounter a Soviet wreck and bring back a dangerous cargo to their base on the ocean floor with horrifying results. The crew of the mining base must fight to survive against a genetic mutation that hunts them down one by one.","moviesInCollection":[],"ratingKey":1380,"key":"/library/metadata/1380","collectionTitle":"","collectionId":-1,"tmdbId":14372},{"name":"Ocean's Eleven","year":2001,"posterUrl":"/library/metadata/1632/thumb/1599308447","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1632,"key":"/library/metadata/1632","collectionTitle":"","collectionId":-1,"tmdbId":161},{"name":"The Disaster Artist","year":2017,"posterUrl":"/library/metadata/2427/thumb/1599308770","imdbId":"","language":"en","overview":"An aspiring actor in Hollywood meets an enigmatic stranger by the name of Tommy Wiseau, the meeting leads the actor down a path nobody could have predicted; creating the worst movie ever made.","moviesInCollection":[],"ratingKey":2427,"key":"/library/metadata/2427","collectionTitle":"","collectionId":-1,"tmdbId":371638},{"name":"Holmes & Watson","year":2018,"posterUrl":"/library/metadata/1118/thumb/1599308239","imdbId":"","language":"en","overview":"Detective Sherlock Holmes and Dr. John Watson join forces to investigate a murder at Buckingham Palace. They soon learn that they have only four days to solve the case, or the queen will become the next victim.","moviesInCollection":[],"ratingKey":1118,"key":"/library/metadata/1118","collectionTitle":"","collectionId":-1,"tmdbId":426563},{"name":"The Killing of a Chinese Bookie","year":1978,"posterUrl":"/library/metadata/2607/thumb/1599308838","imdbId":"","language":"en","overview":"Cosmo Vittelli, the proprietor of a sleazy, low-rent Hollywood cabaret, has a real affection for the women who strip in his peepshows and the staff who keep up his dingy establishment. He also has a major gambling problem that has gotten him in trouble before. When Cosmo loses big-time at an underground casino run by mobster Mort, he isn't able to pay up. Mort then offers Cosmo the chance to pay back his debt by knocking off a pesky, Mafia-protected bookie.","moviesInCollection":[],"ratingKey":2607,"key":"/library/metadata/2607","collectionTitle":"","collectionId":-1,"tmdbId":32040},{"name":"Predestination","year":2015,"posterUrl":"/library/metadata/1801/thumb/1599308519","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1801,"key":"/library/metadata/1801","collectionTitle":"","collectionId":-1,"tmdbId":206487},{"name":"Deliver Us from Evil","year":2014,"posterUrl":"/library/metadata/685/thumb/1599308076","imdbId":"","language":"en","overview":"When a frightening wave of violence sweeps through New York City, troubled cop Sarchie fails to find a rational explanation for the bizarre crimes. However, his eyes are opened to a frightening alternate reality when renegade Jesuit priest Mendoza convinces him that demonic possession may be to blame for the gruesome murders. Together, they wage a valiant supernatural struggle to rid the city of an otherworldly evil.","moviesInCollection":[],"ratingKey":685,"key":"/library/metadata/685","collectionTitle":"","collectionId":-1,"tmdbId":184346},{"name":"Mulholland Drive","year":2001,"posterUrl":"/library/metadata/1562/thumb/1599308417","imdbId":"","language":"en","overview":"Blonde Betty Elms has only just arrived in Hollywood to become a movie star when she meets an enigmatic brunette with amnesia. Meanwhile, as the two set off to solve the second woman's identity, filmmaker Adam Kesher runs into ominous trouble while casting his latest project.","moviesInCollection":[],"ratingKey":1562,"key":"/library/metadata/1562","collectionTitle":"","collectionId":-1,"tmdbId":1018},{"name":"Universal Soldier Day of Reckoning","year":2012,"posterUrl":"/library/metadata/3055/thumb/1599309016","imdbId":"","language":"en","overview":"In a world without government, the surviving Unisols maintain order and choose the strongest of their ranks to rule, testing them in life-or-death combat.","moviesInCollection":[],"ratingKey":3055,"key":"/library/metadata/3055","collectionTitle":"","collectionId":-1,"tmdbId":122857},{"name":"Mallrats","year":1995,"posterUrl":"/library/metadata/1450/thumb/1599308365","imdbId":"","language":"en","overview":"Both dumped by their girlfriends, two best friends seek refuge in the local mall.","moviesInCollection":[],"ratingKey":1450,"key":"/library/metadata/1450","collectionTitle":"","collectionId":-1,"tmdbId":2293},{"name":"Dumb and Dumber To","year":2014,"posterUrl":"/library/metadata/793/thumb/1599308114","imdbId":"","language":"en","overview":"20 years after the dimwits set out on their first adventure, they head out in search of one of their long lost children in the hope of gaining a new kidney.","moviesInCollection":[],"ratingKey":793,"key":"/library/metadata/793","collectionTitle":"","collectionId":-1,"tmdbId":100042},{"name":"Sherlock Holmes","year":2009,"posterUrl":"/library/metadata/2018/thumb/1599308612","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2018,"key":"/library/metadata/2018","collectionTitle":"","collectionId":-1,"tmdbId":10528},{"name":"Superman/Batman Public Enemies","year":2009,"posterUrl":"/library/metadata/2208/thumb/1599308692","imdbId":"","language":"en","overview":"United States President Lex Luthor uses the oncoming trajectory of a Kryptonite meteor to frame Superman and declare a $1 billion bounty on the heads of the Man of Steel and his ‘partner in crime’, Batman. Heroes and villains alike launch a relentless pursuit of Superman and Batman, who must unite—and recruit help—to try and stave off the action-packed onslaught, stop the meteor Luthors plot.","moviesInCollection":[],"ratingKey":2208,"key":"/library/metadata/2208","collectionTitle":"","collectionId":-1,"tmdbId":22855},{"name":"Home Alone 2 Lost in New York","year":1992,"posterUrl":"/library/metadata/1120/thumb/1599308240","imdbId":"","language":"en","overview":"Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card—despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas eve.","moviesInCollection":[],"ratingKey":1120,"key":"/library/metadata/1120","collectionTitle":"","collectionId":-1,"tmdbId":772},{"name":"Game Night","year":2018,"posterUrl":"/library/metadata/966/thumb/1599308181","imdbId":"","language":"en","overview":"Max and Annie's weekly game night gets kicked up a notch when Max's brother Brooks arranges a murder mystery party -- complete with fake thugs and federal agents. So when Brooks gets kidnapped, it's all supposed to be part of the game. As the competitors set out to solve the case, they start to learn that neither the game nor Brooks are what they seem to be. The friends soon find themselves in over their heads as each twist leads to another unexpected turn over the course of one chaotic night.","moviesInCollection":[],"ratingKey":966,"key":"/library/metadata/966","collectionTitle":"","collectionId":-1,"tmdbId":445571},{"name":"The Final Destination","year":2009,"posterUrl":"/library/metadata/2464/thumb/1599308785","imdbId":"","language":"en","overview":"After a young man's premonition of a deadly race-car crash helps saves the lives of his peers, Death sets out to collect those who evaded their end.","moviesInCollection":[],"ratingKey":2464,"key":"/library/metadata/2464","collectionTitle":"","collectionId":-1,"tmdbId":19912},{"name":"Schindler's List","year":2018,"posterUrl":"/library/metadata/1979/thumb/1599308595","imdbId":"","language":"en","overview":"The true story of how businessman Oskar Schindler saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory during World War II.","moviesInCollection":[],"ratingKey":1979,"key":"/library/metadata/1979","collectionTitle":"","collectionId":-1,"tmdbId":424},{"name":"Men in Black International","year":2019,"posterUrl":"/library/metadata/1498/thumb/1599308388","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1498,"key":"/library/metadata/1498","collectionTitle":"","collectionId":-1,"tmdbId":479455},{"name":"Isn't It Romantic","year":2019,"posterUrl":"/library/metadata/1213/thumb/1599308275","imdbId":"","language":"en","overview":"For a long time, Natalie, an Australian architect living in New York City, had always believed that what she had seen in rom-coms is all fantasy. But after thwarting a mugger at a subway station only to be knocked out while fleeing, Natalie wakes up and discovers that her life has suddenly become her worst nightmare—a romantic comedy—and she is the leading lady.","moviesInCollection":[],"ratingKey":1213,"key":"/library/metadata/1213","collectionTitle":"","collectionId":-1,"tmdbId":449563},{"name":"The Old Man & the Gun","year":2018,"posterUrl":"/library/metadata/2727/thumb/1599308890","imdbId":"","language":"en","overview":"The true story of Forrest Tucker, from his audacious escape from San Quentin at the age of 70 to an unprecedented string of heists that confounded authorities and enchanted the public. Wrapped up in the pursuit are a detective, who becomes captivated with Forrest’s commitment to his craft, and a woman, who loves him in spite of his chosen profession.","moviesInCollection":[],"ratingKey":2727,"key":"/library/metadata/2727","collectionTitle":"","collectionId":-1,"tmdbId":429203},{"name":"Nightmare Cinema","year":2019,"posterUrl":"/library/metadata/1612/thumb/1599308438","imdbId":"","language":"en","overview":"A series of down-on-their-luck individuals enter the decrepit and spine-chilling Rialto theater, only to have their deepest and darkest fears brought to life on the silver screen by The Projectionist – a mysterious, ghostly figure who holds the nightmarish futures of all who attend his screenings.","moviesInCollection":[],"ratingKey":1612,"key":"/library/metadata/1612","collectionTitle":"","collectionId":-1,"tmdbId":480100},{"name":"Leviathan","year":2013,"posterUrl":"/library/metadata/1381/thumb/1599308334","imdbId":"","language":"en","overview":"Set aboard a hulking fishing vessel as it navigates the treacherous waves off the New England coast. The very waters that once inspired Moby Dick, the film captures the harsh, unforgiving world of the fishermen in starkly haunting, yet beautiful detail.","moviesInCollection":[],"ratingKey":1381,"key":"/library/metadata/1381","collectionTitle":"","collectionId":-1,"tmdbId":127962},{"name":"Bad Boys","year":1995,"posterUrl":"/library/metadata/265/thumb/1599307924","imdbId":"","language":"en","overview":"Marcus Burnett is a hen-pecked family man. Mike Lowry is a foot-loose and fancy free ladies' man. Both are Miami policemen, and both have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.","moviesInCollection":[],"ratingKey":265,"key":"/library/metadata/265","collectionTitle":"","collectionId":-1,"tmdbId":9737},{"name":"The Recall","year":2017,"posterUrl":"/library/metadata/2775/thumb/1599308912","imdbId":"","language":"en","overview":"When five friends vacation at a remote lake house, they expect nothing less then a good time, unaware that Earth is under attack by an alien invasion and mass-abductions.","moviesInCollection":[],"ratingKey":2775,"key":"/library/metadata/2775","collectionTitle":"","collectionId":-1,"tmdbId":455551},{"name":"101 Dalmatians II Patch's London Adventure","year":2003,"posterUrl":"/library/metadata/6/thumb/1599307828","imdbId":"","language":"en","overview":"Being one of 101 takes its toll on Patch, who doesn't feel unique. When he's accidentally left behind on moving day, he meets his idol, Thunderbolt, who enlists him on a publicity campaign.","moviesInCollection":[],"ratingKey":6,"key":"/library/metadata/6","collectionTitle":"","collectionId":-1,"tmdbId":13654},{"name":"I'll Be Seeing You","year":1944,"posterUrl":"/library/metadata/1164/thumb/1599308255","imdbId":"","language":"en","overview":"Mary Marshall, serving a six year term for accidental manslaughter, is given a Christmas furlough from prison to visit her closest relatives, her uncle and his family in a small Midwestern town. On the train she meets Zach Morgan, a troubled army sergeant on leave for the holidays from a military hospital. Although his physical wounds have healed, he is suffering from post-traumatic stress disorder and is subject to panic attacks. The pair are attracted to one another and in the warm atmosphere of the Christmas season friendship blossoms into romance, but Mary is reluctant to tell him of her past and that she must shortly return to prison to serve the remainder of her sentence.","moviesInCollection":[],"ratingKey":1164,"key":"/library/metadata/1164","collectionTitle":"","collectionId":-1,"tmdbId":30719},{"name":"X-Men Origins Wolverine","year":2009,"posterUrl":"/library/metadata/3178/thumb/1599309058","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3178,"key":"/library/metadata/3178","collectionTitle":"","collectionId":-1,"tmdbId":2080},{"name":"Se7en","year":1995,"posterUrl":"/library/metadata/1992/thumb/1599308600","imdbId":"","language":"en","overview":"Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"seven deadly sins\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.","moviesInCollection":[],"ratingKey":1992,"key":"/library/metadata/1992","collectionTitle":"","collectionId":-1,"tmdbId":807},{"name":"Harry Potter and the Order of the Phoenix","year":2007,"posterUrl":"/library/metadata/1073/thumb/1599308222","imdbId":"","language":"en","overview":"Returning for his fifth year of study at Hogwarts, Harry is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of students – dubbed 'Dumbledore's Army' – to defend themselves against the dark arts.","moviesInCollection":[],"ratingKey":1073,"key":"/library/metadata/1073","collectionTitle":"","collectionId":-1,"tmdbId":675},{"name":"I, Tonya","year":2017,"posterUrl":"/library/metadata/1166/thumb/1599308256","imdbId":"","language":"en","overview":"Competitive ice skater Tonya Harding rises amongst the ranks at the U. S. Figure Skating Championships, but her future in the sport is thrown into doubt when her ex-husband intervenes.","moviesInCollection":[],"ratingKey":1166,"key":"/library/metadata/1166","collectionTitle":"","collectionId":-1,"tmdbId":389015},{"name":"The Ring","year":2002,"posterUrl":"/library/metadata/2781/thumb/1599308915","imdbId":"","language":"en","overview":"It sounded like just another urban legend: A videotape filled with nightmarish images, leading to a phone call foretelling the viewer's death in exactly seven days. As a newspaper reporter, Rachel Keller was naturally skeptical of the story, until four teenagers all met with mysterious deaths exactly one week after watching just such a tape. Allowing her investigative curiosity to get the better of her, Rachel tracks down the video... and watches it. Now she has just seven days to unravel the mystery of the Ring.","moviesInCollection":[],"ratingKey":2781,"key":"/library/metadata/2781","collectionTitle":"","collectionId":-1,"tmdbId":565},{"name":"Juice","year":1992,"posterUrl":"/library/metadata/43669/thumb/1599309145","imdbId":"","language":"en","overview":"Four Harlem friends -- Bishop, Q, Steel and Raheem -- dabble in petty crime, but they decide to go big by knocking off a convenience store. Bishop, the magnetic leader of the group, has the gun. But Q has different aspirations. He wants to be a DJ and happens to have a gig the night of the robbery. Unfortunately for him, Bishop isn't willing to take no for answer in a game where everything's for keeps.","moviesInCollection":[],"ratingKey":43669,"key":"/library/metadata/43669","collectionTitle":"","collectionId":-1,"tmdbId":16136},{"name":"Keeping Up with the Joneses","year":2016,"posterUrl":"/library/metadata/1291/thumb/1599308303","imdbId":"","language":"en","overview":"An ordinary suburban couple finds it’s not easy keeping up with the Joneses – their impossibly gorgeous and ultra-sophisticated new neighbors – especially when they discover that Mr. and Mrs. “Jones” are covert operatives.","moviesInCollection":[],"ratingKey":1291,"key":"/library/metadata/1291","collectionTitle":"","collectionId":-1,"tmdbId":331313},{"name":"Birds of Passage","year":2019,"posterUrl":"/library/metadata/360/thumb/1599307958","imdbId":"","language":"en","overview":"During the marijuana bonanza, a violent decade that saw the origins of drug trafficking in Colombia, Rapayet and his indigenous family get involved in a war to control the business that ends up destroying their lives and their culture.","moviesInCollection":[],"ratingKey":360,"key":"/library/metadata/360","collectionTitle":"","collectionId":-1,"tmdbId":438146},{"name":"The Texas Chain Saw Massacre","year":1974,"posterUrl":"/library/metadata/2851/thumb/1599308946","imdbId":"","language":"en","overview":"When Sally hears that her grandfather's grave may have been vandalized, she and her paraplegic brother, Franklin, set out with their friends to investigate. After a detour to their family's old farmhouse, they discover a group of crazed, murderous outcasts living next door. As the group is attacked one by one by the chainsaw-wielding Leatherface, who wears a mask of human skin, the survivors must do everything they can to escape.","moviesInCollection":[],"ratingKey":2851,"key":"/library/metadata/2851","collectionTitle":"","collectionId":-1,"tmdbId":30497},{"name":"Booksmart","year":2019,"posterUrl":"/library/metadata/404/thumb/1599307974","imdbId":"","language":"en","overview":"Two academic teenage superstars realize, on the eve of their high school graduation, that they should have worked less and played more. Determined to never fall short of their peers, the girls set out on a mission to cram four years of fun into one night.","moviesInCollection":[],"ratingKey":404,"key":"/library/metadata/404","collectionTitle":"","collectionId":-1,"tmdbId":505600},{"name":"Fairy in a Cage","year":1977,"posterUrl":"/library/metadata/858/thumb/1599308137","imdbId":"","language":"en","overview":"During the latter part of World War II, Judge Murayama, head of the Japanese military police, uses his position to falsely accuse, capture, imprison and torture women in whom he is interested. Namiji Kikushima, a high-class business woman, is one such lady.","moviesInCollection":[],"ratingKey":858,"key":"/library/metadata/858","collectionTitle":"","collectionId":-1,"tmdbId":140785},{"name":"The Continent","year":2014,"posterUrl":"/library/metadata/2373/thumb/1599308749","imdbId":"","language":"en","overview":"A road movie that follows three young men yearning after their ideals.","moviesInCollection":[],"ratingKey":2373,"key":"/library/metadata/2373","collectionTitle":"","collectionId":-1,"tmdbId":272875},{"name":"Justice League","year":2017,"posterUrl":"/library/metadata/1279/thumb/1599308299","imdbId":"","language":"en","overview":"Fuelled by his restored faith in humanity and inspired by Superman's selfless act, Bruce Wayne and Diana Prince assemble a team of metahumans consisting of Barry Allen, Arthur Curry and Victor Stone to face the catastrophic threat of Steppenwolf and the Parademons who are on the hunt for three Mother Boxes on Earth.","moviesInCollection":[],"ratingKey":1279,"key":"/library/metadata/1279","collectionTitle":"","collectionId":-1,"tmdbId":141052},{"name":"Office Space","year":1999,"posterUrl":"/library/metadata/1638/thumb/1599308450","imdbId":"","language":"en","overview":"Three office workers strike back at their evil employers by hatching a hapless attempt to embezzle money.","moviesInCollection":[],"ratingKey":1638,"key":"/library/metadata/1638","collectionTitle":"","collectionId":-1,"tmdbId":1542},{"name":"Police Academy Mission to Moscow","year":1994,"posterUrl":"/library/metadata/1784/thumb/1599308512","imdbId":"","language":"en","overview":"The Russians need help in dealing with the Mafia and so they seek help with the veterans of the Police Academy. They head off to Moscow, in order to find evidence against Konstantin Konali, who marketed a computer game that everyone in the world is playing.","moviesInCollection":[],"ratingKey":1784,"key":"/library/metadata/1784","collectionTitle":"","collectionId":-1,"tmdbId":11546},{"name":"Tenacious D in The Pick of Destiny","year":2006,"posterUrl":"/library/metadata/2258/thumb/1599308711","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2258,"key":"/library/metadata/2258","collectionTitle":"","collectionId":-1,"tmdbId":2179},{"name":"Annihilation","year":2018,"posterUrl":"/library/metadata/207/thumb/1599307903","imdbId":"","language":"en","overview":"A biologist signs up for a dangerous, secret expedition into a mysterious zone where the laws of nature don't apply.","moviesInCollection":[],"ratingKey":207,"key":"/library/metadata/207","collectionTitle":"","collectionId":-1,"tmdbId":300668},{"name":"Poker Night","year":2014,"posterUrl":"/library/metadata/1776/thumb/1599308508","imdbId":"","language":"en","overview":"When you become a detective in Warsaw Indiana - you go to Poker Night, where you play against some of the best cops in the business. They tell you stories about their time on the job - their successes and failures. When new Detective Stan Jeter leaves the game, he is caught by a vicious psychopath and locked in a basement. Using the stories he heard at Poker Night, he must match wits against his captor - and save not only himself, but the young girl trapped in the basement with him. Like Seven and Usual Suspect, Poker Night combines thrills and twists and turns that will leave you guessing till the very end.","moviesInCollection":[],"ratingKey":1776,"key":"/library/metadata/1776","collectionTitle":"","collectionId":-1,"tmdbId":298093},{"name":"American Pie Presents Beta House","year":2007,"posterUrl":"/library/metadata/185/thumb/1599307895","imdbId":"","language":"en","overview":"Erik, Ryan, and Cooze start college and pledge the Beta House fraternity, presided over by none other than legendary Dwight Stifler. But chaos ensues when a fraternity of geeks threatens to stop the debauchery and the Betas have to make a stand for their right to party.","moviesInCollection":[],"ratingKey":185,"key":"/library/metadata/185","collectionTitle":"","collectionId":-1,"tmdbId":8277},{"name":"The Client","year":1994,"posterUrl":"/library/metadata/2363/thumb/1599308746","imdbId":"","language":"en","overview":"A street-wise kid, Mark Sway, sees the suicide of Jerome Clifford, a prominent Louisiana lawyer, whose current client is Barry 'The Blade' Muldano, a Mafia hit-man. Before Jerome shoots himself, he tells Mark where the body of a Senator is buried. Clifford shoots himself and Mark is found at the scene, and both the FBI and the Mafia quickly realize that Mark probably knows more than he says.","moviesInCollection":[],"ratingKey":2363,"key":"/library/metadata/2363","collectionTitle":"","collectionId":-1,"tmdbId":10731},{"name":"Mr. Baseball","year":1992,"posterUrl":"/library/metadata/47497/thumb/1599309186","imdbId":"","language":"en","overview":"Jack Elliot, a one-time MVP for the New York Yankees is now on the down side of his baseball career. With a falling batting average, does he have one good year left and can the manager of the Chunichi Dragons, a Japanese Central baseball league find it in him?","moviesInCollection":[],"ratingKey":47497,"key":"/library/metadata/47497","collectionTitle":"","collectionId":-1,"tmdbId":18722},{"name":"Once Upon a Time in Mexico","year":2003,"posterUrl":"/library/metadata/1652/thumb/1599308457","imdbId":"","language":"en","overview":"Hitman \"El Mariachi\" becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.","moviesInCollection":[],"ratingKey":1652,"key":"/library/metadata/1652","collectionTitle":"","collectionId":-1,"tmdbId":1428},{"name":"Battle Royale","year":2000,"posterUrl":"/library/metadata/311/thumb/1599307940","imdbId":"","language":"en","overview":"In the future, the Japanese government captures a class of ninth-grade students and forces them to kill each other under the revolutionary \"Battle Royale\" act.","moviesInCollection":[],"ratingKey":311,"key":"/library/metadata/311","collectionTitle":"","collectionId":-1,"tmdbId":3176},{"name":"Saving Private Ryan","year":1998,"posterUrl":"/library/metadata/1964/thumb/1599308591","imdbId":"","language":"en","overview":"As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.","moviesInCollection":[],"ratingKey":1964,"key":"/library/metadata/1964","collectionTitle":"","collectionId":-1,"tmdbId":857},{"name":"Love Actually","year":2003,"posterUrl":"/library/metadata/1421/thumb/1599308351","imdbId":"","language":"en","overview":"Follows seemingly unrelated people as their lives begin to intertwine while they fall in – and out – of love. Affections languish and develop as Christmas draws near.","moviesInCollection":[],"ratingKey":1421,"key":"/library/metadata/1421","collectionTitle":"","collectionId":-1,"tmdbId":508},{"name":"Star Trek IV The Voyage Home","year":1986,"posterUrl":"/library/metadata/2139/thumb/1599308667","imdbId":"","language":"en","overview":"Fugitives of the Federation for their daring rescue of Spock from the doomed Genesis Planet, Admiral Kirk (William Shatner) and his crew begin their journey home to face justice for their actions. But as they near Earth, they find it at the mercy of a mysterious alien presence whose signals are slowly destroying the planet. In a desperate attempt to answer the call of the probe, Kirk and his crew race back to the late twentieth century. However they soon find the world they once knew to be more alien than anything they've encountered in the far reaches of the galaxy!","moviesInCollection":[],"ratingKey":2139,"key":"/library/metadata/2139","collectionTitle":"","collectionId":-1,"tmdbId":168},{"name":"Street Fighter Assassin's Fist","year":2014,"posterUrl":"/library/metadata/2177/thumb/1599308682","imdbId":"","language":"en","overview":"A multi-layered series that looks back to the formative years of Ryu and Ken as they live a traditional warrior's life in secluded Japan. The boys are, unknowingly, the last practitioners of the ancient fighting style known as \"Ansatsuken\" (Assassin's Fist). The series follows them as they learn about the mysterious past of their master, Goken, and the tragic, dark legacy of the Ansatsuken style. Can their destiny be changed, or will history repeat itself?","moviesInCollection":[],"ratingKey":2177,"key":"/library/metadata/2177","collectionTitle":"","collectionId":-1,"tmdbId":687354},{"name":"Battlestar Galactica The Plan","year":2009,"posterUrl":"/library/metadata/318/thumb/1599307942","imdbId":"","language":"en","overview":"When the initial Cylon attack against the Twelve Colonies fails to achieve complete extermination of human life as planned, twin Number Ones (Cavils) embedded on Galactica and Caprica must improvise to destroy the human survivors.","moviesInCollection":[],"ratingKey":318,"key":"/library/metadata/318","collectionTitle":"","collectionId":-1,"tmdbId":105077},{"name":"Kung Fu Panda 3","year":2016,"posterUrl":"/library/metadata/1329/thumb/1599308317","imdbId":"","language":"en","overview":"Continuing his \"legendary adventures of awesomeness\", Po must face two hugely epic, but different threats: one supernatural and the other a little closer to his home.","moviesInCollection":[],"ratingKey":1329,"key":"/library/metadata/1329","collectionTitle":"","collectionId":-1,"tmdbId":140300},{"name":"Shoplifters","year":2018,"posterUrl":"/library/metadata/2023/thumb/1599308614","imdbId":"","language":"en","overview":"After one of their shoplifting sessions, Osamu and his son come across a little girl in the freezing cold. At first reluctant to shelter the girl, Osamu’s wife agrees to take care of her after learning of the hardships she faces. Although the family is poor, barely making enough money to survive through petty crime, they seem to live happily together until an unforeseen incident reveals hidden secrets, testing the bonds that unite them.","moviesInCollection":[],"ratingKey":2023,"key":"/library/metadata/2023","collectionTitle":"","collectionId":-1,"tmdbId":505192},{"name":"May","year":2002,"posterUrl":"/library/metadata/48797/thumb/1601966832","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":48797,"key":"/library/metadata/48797","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"The Lone Ranger","year":2013,"posterUrl":"/library/metadata/2646/thumb/1599308854","imdbId":"","language":"en","overview":"The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.","moviesInCollection":[],"ratingKey":2646,"key":"/library/metadata/2646","collectionTitle":"","collectionId":-1,"tmdbId":57201},{"name":"Jeepers Creepers 3","year":2017,"posterUrl":"/library/metadata/1234/thumb/1599308283","imdbId":"","language":"en","overview":"Taking place on the last day of the Creeper’s twenty-three-day feeding frenzy, as the skeptical Sergeant Tubbs teams up with a task force hellbent on destroying the Creeper for good. The Creeper fights back in gory glory as its enemies grow closer than ever before to learning the secret of its dark origins.","moviesInCollection":[],"ratingKey":1234,"key":"/library/metadata/1234","collectionTitle":"","collectionId":-1,"tmdbId":55341},{"name":"The Party","year":2018,"posterUrl":"/library/metadata/2734/thumb/1599308893","imdbId":"","language":"en","overview":"Various individuals think they’re coming together for a party in a private home, but a series of revelations results in a huge crisis that throws their belief systems – and their values – into total disarray.","moviesInCollection":[],"ratingKey":2734,"key":"/library/metadata/2734","collectionTitle":"","collectionId":-1,"tmdbId":415401},{"name":"Hollow Man","year":2000,"posterUrl":"/library/metadata/1116/thumb/1599308238","imdbId":"","language":"en","overview":"Cocky researcher, Sebastian Caine is working on a project to make living creatures invisible and he's so confident he's found the right formula that he tests it on himself and soon begins to vanish. The only problem is – no-one can determine how to make him visible again. Caine's predicament eventually drives him mad, with terrifying results.","moviesInCollection":[],"ratingKey":1116,"key":"/library/metadata/1116","collectionTitle":"","collectionId":-1,"tmdbId":9383},{"name":"Come and Find Me","year":2016,"posterUrl":"/library/metadata/553/thumb/1599308030","imdbId":"","language":"en","overview":"When his girlfriend goes missing, David must track down her whereabouts after he realizes she's not who she was pretending to be.","moviesInCollection":[],"ratingKey":553,"key":"/library/metadata/553","collectionTitle":"","collectionId":-1,"tmdbId":345918},{"name":"Their Finest","year":2017,"posterUrl":"/library/metadata/2912/thumb/1599308968","imdbId":"","language":"en","overview":"During the Blitz of World War II, a female screenwriter (Gemma Arterton) works on a film celebrating England's resilience as a way to buoy a weary populace's spirits. Her efforts to dramatise the true story of two sisters (Lily Knight and Francesca Knight) who undertook their own maritime mission to rescue wounded soldiers are met with mixed feelings by a dismissive all-male staff.","moviesInCollection":[],"ratingKey":2912,"key":"/library/metadata/2912","collectionTitle":"","collectionId":-1,"tmdbId":340101},{"name":"Kung Fu Panda 2","year":2011,"posterUrl":"/library/metadata/1328/thumb/1599308317","imdbId":"","language":"en","overview":"Po is now living his dream as The Dragon Warrior, protecting the Valley of Peace alongside his friends and fellow kung fu masters, The Furious Five - Tigress, Crane, Mantis, Viper and Monkey. But Po’s new life of awesomeness is threatened by the emergence of a formidable villain, who plans to use a secret, unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.","moviesInCollection":[],"ratingKey":1328,"key":"/library/metadata/1328","collectionTitle":"","collectionId":-1,"tmdbId":49444},{"name":"Missing in Action 2 The Beginning","year":1985,"posterUrl":"/library/metadata/1518/thumb/1599308397","imdbId":"","language":"en","overview":"Prequel to the first Missing In Action, set in the early 1980s it shows the capture of Colonel Braddock during the Vietnam war in the 1970s, and his captivity with other American POWs in a brutal prison camp, and his plans to escape.","moviesInCollection":[],"ratingKey":1518,"key":"/library/metadata/1518","collectionTitle":"","collectionId":-1,"tmdbId":12764},{"name":"Going in Style","year":2017,"posterUrl":"/library/metadata/1009/thumb/1599308196","imdbId":"","language":"en","overview":"Desperate to pay the bills and come through for their loved ones, three lifelong pals risk it all by embarking on a daring bid to knock off the very bank that absconded with their money.","moviesInCollection":[],"ratingKey":1009,"key":"/library/metadata/1009","collectionTitle":"","collectionId":-1,"tmdbId":353070},{"name":"The 'Burbs","year":1989,"posterUrl":"/library/metadata/2270/thumb/1599308714","imdbId":"","language":"en","overview":"When secretive new neighbors move in next door, suburbanite Ray Peterson and his friends let their paranoia get the best of them as they start to suspect the newcomers of evildoings and commence an investigation. But it's hardly how Ray, who much prefers drinking beer, reading his newspaper and watching a ball game on the tube expected to spend his vacation.","moviesInCollection":[],"ratingKey":2270,"key":"/library/metadata/2270","collectionTitle":"","collectionId":-1,"tmdbId":11974},{"name":"Atlas Shrugged Part II","year":2012,"posterUrl":"/library/metadata/236/thumb/1599307914","imdbId":"","language":"en","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’s 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?","moviesInCollection":[],"ratingKey":236,"key":"/library/metadata/236","collectionTitle":"","collectionId":-1,"tmdbId":134371},{"name":"Halloween 5 The Revenge of Michael Myers","year":1989,"posterUrl":"/library/metadata/1047/thumb/1599308211","imdbId":"","language":"en","overview":"Presumed dead after a shoot-out with the Haddonfield police, Michael Myers is secretly nursed back to health -- and returns a year later to kill again and once more targets his young niece, Jamie. Jamie is now recovering in the local children's hospital after attacking her stepmother and losing her voice. Her mental link with her evil uncle may be the key to uprooting her family tree.","moviesInCollection":[],"ratingKey":1047,"key":"/library/metadata/1047","collectionTitle":"","collectionId":-1,"tmdbId":11361},{"name":"The Prison","year":2017,"posterUrl":"/library/metadata/2757/thumb/1599308904","imdbId":"","language":"en","overview":"An imprisoned ex-police inspector discovers that the entire penitentiary is controlled by an inmate running a crime syndicate and becomes part of the crime empire.","moviesInCollection":[],"ratingKey":2757,"key":"/library/metadata/2757","collectionTitle":"","collectionId":-1,"tmdbId":438798},{"name":"The Spiral Staircase","year":1946,"posterUrl":"/library/metadata/2829/thumb/1599308937","imdbId":"","language":"en","overview":"In 1916, beautiful young mute Helen is a domestic worker for elderly, ailing Mrs. Warren. Mrs. Warren's two adult sons, Albert (a professor) and womanizing impudent Steven, also live in the Warren mansion. Mrs. Warren becomes concerned for Helen's safety when a rash of murders involving 'women with afflictions' hits the neighborhood. She implores her physician, Dr. Parry, to take Helen away for her own safety. When another murder occurs inside the Warren mansion, it becomes obvious that Helen is in danger.","moviesInCollection":[],"ratingKey":2829,"key":"/library/metadata/2829","collectionTitle":"","collectionId":-1,"tmdbId":27452},{"name":"Tron","year":1982,"posterUrl":"/library/metadata/3005/thumb/1599308998","imdbId":"","language":"en","overview":"As Kevin Flynn searches for proof that he invented a hit video game, he is 'digitalized' 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.","moviesInCollection":[],"ratingKey":3005,"key":"/library/metadata/3005","collectionTitle":"","collectionId":-1,"tmdbId":97},{"name":"Fury","year":2014,"posterUrl":"/library/metadata/961/thumb/1599308178","imdbId":"","language":"en","overview":"In the last months of World War II, as the Allies make their final push in the European theatre, a battle-hardened U.S. Army sergeant named 'Wardaddy' commands a Sherman tank called 'Fury' and its five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.","moviesInCollection":[],"ratingKey":961,"key":"/library/metadata/961","collectionTitle":"","collectionId":-1,"tmdbId":228150},{"name":"My Spy","year":2020,"posterUrl":"/library/metadata/48360/thumb/1601122195","imdbId":"","language":"en","overview":"A hardened CIA operative finds himself at the mercy of a precocious 9-year-old girl, having been sent undercover to surveil her family.","moviesInCollection":[],"ratingKey":48360,"key":"/library/metadata/48360","collectionTitle":"","collectionId":-1,"tmdbId":592834},{"name":"Back to the Future","year":1985,"posterUrl":"/library/metadata/41924/thumb/1599309132","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41924,"key":"/library/metadata/41924","collectionTitle":"","collectionId":-1,"tmdbId":105},{"name":"Fantastic Mr. Fox","year":2009,"posterUrl":"/library/metadata/866/thumb/1599308141","imdbId":"","language":"en","overview":"The Fantastic Mr. Fox bored with his current life, plans a heist against the three local farmers. The farmers, tired of sharing their chickens with the sly fox, seek revenge against him and his family.","moviesInCollection":[],"ratingKey":866,"key":"/library/metadata/866","collectionTitle":"","collectionId":-1,"tmdbId":10315},{"name":"Desperado","year":1995,"posterUrl":"/library/metadata/697/thumb/1599308080","imdbId":"","language":"en","overview":"El Mariachi, a musician, arrives in a Mexican town and is mistaken as a hit-man. He runs into trouble with a local drug lord and seeks to avenge the death of his lover.","moviesInCollection":[],"ratingKey":697,"key":"/library/metadata/697","collectionTitle":"","collectionId":-1,"tmdbId":8068},{"name":"Fifty Shades Darker","year":2017,"posterUrl":"/library/metadata/884/thumb/1599308147","imdbId":"","language":"en","overview":"When a wounded Christian Grey tries to entice a cautious Ana Steele back into his life, she demands a new arrangement before she will give him another chance. As the two begin to build trust and find stability, shadowy figures from Christian’s past start to circle the couple, determined to destroy their hopes for a future together.","moviesInCollection":[],"ratingKey":884,"key":"/library/metadata/884","collectionTitle":"","collectionId":-1,"tmdbId":341174},{"name":"Furious 7","year":2015,"posterUrl":"/library/metadata/960/thumb/1599308178","imdbId":"","language":"en","overview":"Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.","moviesInCollection":[],"ratingKey":960,"key":"/library/metadata/960","collectionTitle":"","collectionId":-1,"tmdbId":168259},{"name":"The Happy Prince","year":2018,"posterUrl":"/library/metadata/2531/thumb/1599308810","imdbId":"","language":"en","overview":"In 1895, Oscar Wilde (1854-1900) was the most famous writer in London, and Bosie Douglas, son of the notorious Marquess of Queensberry, was his lover. Accused and convicted of gross indecency, he was imprisoned for two years and subjected to hard labor. Once free, he abandons England to live in France, where he will spend his last years, haunted by memories of the past, poverty and immense sadness.","moviesInCollection":[],"ratingKey":2531,"key":"/library/metadata/2531","collectionTitle":"","collectionId":-1,"tmdbId":427214},{"name":"Jeepers Creepers 2","year":2003,"posterUrl":"/library/metadata/1233/thumb/1599308283","imdbId":"","language":"en","overview":"After 23 horrifying days of gorging on human flesh, an ancient creature known as the Creeper embarks on a final voracious feeding frenzy, terrorizing a group of varsity basketball players, cheerleaders and coaches stranded on a remote highway when their bus breaks down. The terrified group is forced to come together and do battle against the winged creature hell-bent on completing its grizzly ritual.","moviesInCollection":[],"ratingKey":1233,"key":"/library/metadata/1233","collectionTitle":"","collectionId":-1,"tmdbId":11351},{"name":"Red Army","year":2015,"posterUrl":"/library/metadata/1861/thumb/1599308545","imdbId":"","language":"en","overview":"A documentary highlighting the Soviet Union's legendary and enigmatic hockey training culture and world-dominating team through the eyes of the team's Captain Slava Fetisov, following his shift from hockey star and celebrated national hero to political enemy.","moviesInCollection":[],"ratingKey":1861,"key":"/library/metadata/1861","collectionTitle":"","collectionId":-1,"tmdbId":256876},{"name":"Underworld","year":2003,"posterUrl":"/library/metadata/3045/thumb/1599309012","imdbId":"","language":"en","overview":"Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.","moviesInCollection":[],"ratingKey":3045,"key":"/library/metadata/3045","collectionTitle":"","collectionId":-1,"tmdbId":277},{"name":"Charlie's Angels","year":2019,"posterUrl":"/library/metadata/496/thumb/1599308010","imdbId":"","language":"en","overview":"When a systems engineer blows the whistle on a dangerous technology, Charlie's Angels from across the globe are called into action, putting their lives on the line to protect society.","moviesInCollection":[],"ratingKey":496,"key":"/library/metadata/496","collectionTitle":"","collectionId":-1,"tmdbId":458897},{"name":"Die Hard","year":1988,"posterUrl":"/library/metadata/707/thumb/1599308084","imdbId":"","language":"en","overview":"NYPD cop John McClane's plan to reconcile with his estranged wife is thrown for a serious loop when, minutes after he arrives at her office, the entire building is overtaken by a group of terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.","moviesInCollection":[],"ratingKey":707,"key":"/library/metadata/707","collectionTitle":"","collectionId":-1,"tmdbId":562},{"name":"Pirates of the Caribbean On Stranger Tides","year":2011,"posterUrl":"/library/metadata/1748/thumb/1599308497","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1748,"key":"/library/metadata/1748","collectionTitle":"","collectionId":-1,"tmdbId":1865},{"name":"First Reformed","year":2018,"posterUrl":"/library/metadata/907/thumb/1599308156","imdbId":"","language":"en","overview":"A pastor of a small church in upstate New York starts to spiral out of control after a soul-shaking encounter with an unstable environmental activist and his pregnant wife.","moviesInCollection":[],"ratingKey":907,"key":"/library/metadata/907","collectionTitle":"","collectionId":-1,"tmdbId":458737},{"name":"The Twilight Saga New Moon","year":2009,"posterUrl":"/library/metadata/2878/thumb/1599308955","imdbId":"","language":"en","overview":"Forks, Washington resident Bella Swan is reeling from the departure of her vampire love, Edward Cullen, and finds comfort in her friendship with Jacob Black, a werewolf. But before she knows it, she's thrust into a centuries-old conflict, and her desire to be with Edward at any cost leads her to take greater and greater risks.","moviesInCollection":[],"ratingKey":2878,"key":"/library/metadata/2878","collectionTitle":"","collectionId":-1,"tmdbId":18239},{"name":"Rogue","year":2020,"posterUrl":"/library/metadata/47470/thumb/1599309184","imdbId":"","language":"en","overview":"Battle-hardened O’Hara leads a lively mercenary team of soldiers on a daring mission: rescue hostages from their captors in remote Africa. But as the mission goes awry and the team is stranded, O’Hara’s squad must face a bloody, brutal encounter with a gang of rebels.","moviesInCollection":[],"ratingKey":47470,"key":"/library/metadata/47470","collectionTitle":"","collectionId":-1,"tmdbId":718444},{"name":"Playmobil The Movie","year":2019,"posterUrl":"/library/metadata/1759/thumb/1599308501","imdbId":"","language":"en","overview":"Marla is forced to abandon her carefully structured life to embark on an epic journey to find her younger brother Charlie who has disappeared into the vast and wondrous animated world of Playmobil toys.","moviesInCollection":[],"ratingKey":1759,"key":"/library/metadata/1759","collectionTitle":"","collectionId":-1,"tmdbId":366668},{"name":"Pacific Rim","year":2013,"posterUrl":"/library/metadata/1686/thumb/1599308471","imdbId":"","language":"en","overview":"When legions of monstrous creatures, known as Kaiju, started rising from the sea, a war began that would take millions of lives and consume humanity's resources for years on end. To combat the giant Kaiju, a special type of weapon was devised: massive robots, called Jaegers, which are controlled simultaneously by two pilots whose minds are locked in a neural bridge. But even the Jaegers are proving nearly defenseless in the face of the relentless Kaiju. On the verge of defeat, the forces defending mankind have no choice but to turn to two unlikely heroes—a washed-up former pilot (Charlie Hunnam) and an untested trainee (Rinko Kikuchi)—who are teamed to drive a legendary but seemingly obsolete Jaeger from the past. Together, they stand as mankind's last hope against the mounting apocalypse.","moviesInCollection":[],"ratingKey":1686,"key":"/library/metadata/1686","collectionTitle":"","collectionId":-1,"tmdbId":68726},{"name":"Strangerland","year":2015,"posterUrl":"/library/metadata/2175/thumb/1599308681","imdbId":"","language":"en","overview":"Newly arrived to a remote desert town, Catherine and Matthew are tormented by a suspicion when their two teenage children mysteriously vanish.","moviesInCollection":[],"ratingKey":2175,"key":"/library/metadata/2175","collectionTitle":"","collectionId":-1,"tmdbId":245846},{"name":"Braindead","year":1993,"posterUrl":"/library/metadata/414/thumb/1599307977","imdbId":"","language":"en","overview":"When a Sumatran rat-monkey bites Lionel Cosgrove's mother, she's transformed into a zombie and begins killing (and transforming) the entire town while Lionel races to keep things under control.","moviesInCollection":[],"ratingKey":414,"key":"/library/metadata/414","collectionTitle":"","collectionId":-1,"tmdbId":763},{"name":"The Spirit","year":2008,"posterUrl":"/library/metadata/2830/thumb/1599308937","imdbId":"","language":"en","overview":"Down these mean streets a man must come. A hero born, murdered, and born again. A Rookie cop named Denny Colt returns from the beyond as The Spirit, a hero whose mission is to fight against the bad forces from the shadows of Central City. The Octopus, who kills anyone unfortunate enough to see his face, has other plans; he is going to wipe out the entire city.","moviesInCollection":[],"ratingKey":2830,"key":"/library/metadata/2830","collectionTitle":"","collectionId":-1,"tmdbId":8285},{"name":"Knives Out","year":2020,"posterUrl":"/library/metadata/1318/thumb/1599308313","imdbId":"","language":"en","overview":"When renowned crime novelist Harlan Thrombey is found dead at his estate just after his 85th birthday, the inquisitive and debonair Detective Benoit Blanc is mysteriously enlisted to investigate. From Harlan's dysfunctional family to his devoted staff, Blanc sifts through a web of red herrings and self-serving lies to uncover the truth behind Harlan's untimely death.","moviesInCollection":[],"ratingKey":1318,"key":"/library/metadata/1318","collectionTitle":"","collectionId":-1,"tmdbId":546554},{"name":"Project Power","year":2020,"posterUrl":"/library/metadata/47245/thumb/1599309173","imdbId":"","language":"en","overview":"An ex-soldier, a teen and a cop collide in New Orleans as they hunt for the source behind a dangerous new pill that grants users temporary superpowers.","moviesInCollection":[],"ratingKey":47245,"key":"/library/metadata/47245","collectionTitle":"","collectionId":-1,"tmdbId":605116},{"name":"Little Thirteen","year":2012,"posterUrl":"/library/metadata/1401/thumb/1599308342","imdbId":"","language":"en","overview":"The everyday lives of teenagers, coming from various social backgrounds. For them, sexuality has become a substitute for love, resulting from emotional neglect.","moviesInCollection":[],"ratingKey":1401,"key":"/library/metadata/1401","collectionTitle":"","collectionId":-1,"tmdbId":138735},{"name":"Point Break","year":1991,"posterUrl":"/library/metadata/1766/thumb/1599308504","imdbId":"","language":"en","overview":"In Los Angeles, a gang of bank robbers call themselves The Ex-Presidents commit their crimes while wearing masks of Reagan, Carter, Nixon and Johnson. The F.B.I. believes that the members of the gang could be surfers and send young agent Johnny Utah undercover at the beach to mix with the surfers and gather information.","moviesInCollection":[],"ratingKey":1766,"key":"/library/metadata/1766","collectionTitle":"","collectionId":-1,"tmdbId":1089},{"name":"Starship Troopers 3 Marauder","year":2008,"posterUrl":"/library/metadata/2160/thumb/1599308675","imdbId":"","language":"en","overview":"The war against the Bugs continues! A Federation Starship crash-lands on the distant Alien planet OM-1, stranding beloved leader Sky Marshal Anoke and several others, including comely but tough pilot Lola Beck. It's up to Colonel/General Johnny Rico, reluctant hero of the original Bug Invasion on Planet P, to lead a team of Troopers on a daring rescue mission.","moviesInCollection":[],"ratingKey":2160,"key":"/library/metadata/2160","collectionTitle":"","collectionId":-1,"tmdbId":11127},{"name":"xXx State of the Union","year":2005,"posterUrl":"/library/metadata/3184/thumb/1599309059","imdbId":"","language":"en","overview":"Ice Cube stars as Darius Stone, a thrill-seeking troublemaker whose criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert (played by Willem Dafoe).","moviesInCollection":[],"ratingKey":3184,"key":"/library/metadata/3184","collectionTitle":"","collectionId":-1,"tmdbId":11679},{"name":"The Colony","year":2013,"posterUrl":"/library/metadata/2366/thumb/1599308747","imdbId":"","language":"en","overview":"Forced underground by the next ice age, a struggling outpost of survivors must fight to preserve humanity against a threat even more savage than nature.","moviesInCollection":[],"ratingKey":2366,"key":"/library/metadata/2366","collectionTitle":"","collectionId":-1,"tmdbId":178809},{"name":"Billionaire Boys Club","year":2018,"posterUrl":"/library/metadata/357/thumb/1599307957","imdbId":"","language":"en","overview":"A group of wealthy boys in Los Angeles during the early 1980s establishes a get rich quick scam that turns deadly.","moviesInCollection":[],"ratingKey":357,"key":"/library/metadata/357","collectionTitle":"","collectionId":-1,"tmdbId":385360},{"name":"Smokin' Aces","year":2007,"posterUrl":"/library/metadata/2071/thumb/1599308636","imdbId":"","language":"en","overview":"When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.","moviesInCollection":[],"ratingKey":2071,"key":"/library/metadata/2071","collectionTitle":"","collectionId":-1,"tmdbId":7516},{"name":"The Chronicles of Narnia Prince Caspian","year":2008,"posterUrl":"/library/metadata/2359/thumb/1599308744","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2359,"key":"/library/metadata/2359","collectionTitle":"","collectionId":-1,"tmdbId":2454},{"name":"Superman IV The Quest for Peace","year":1987,"posterUrl":"/library/metadata/2213/thumb/1599308694","imdbId":"","language":"en","overview":"With global superpowers engaged in an increasingly hostile arms race, Superman leads a crusade to rid the world of nuclear weapons. But Lex Luthor, recently sprung from jail, is declaring war on the Man of Steel and his quest to save the planet. Using a strand of Superman's hair, Luthor synthesizes a powerful ally known as Nuclear Man and ignites an epic battle spanning Earth and space.","moviesInCollection":[],"ratingKey":2213,"key":"/library/metadata/2213","collectionTitle":"","collectionId":-1,"tmdbId":11411},{"name":"The Hills Have Eyes 2","year":2007,"posterUrl":"/library/metadata/2538/thumb/1599308813","imdbId":"","language":"en","overview":"A group of National Guard trainees find themselves battling against a vicious group of mutants on their last day of training in the desert.","moviesInCollection":[],"ratingKey":2538,"key":"/library/metadata/2538","collectionTitle":"","collectionId":-1,"tmdbId":9793},{"name":"Tulip Fever","year":2017,"posterUrl":"/library/metadata/3016/thumb/1599309002","imdbId":"","language":"en","overview":"An artist falls for a married young woman while he's commissioned to paint her portrait. The two invest in the risky tulip market in hopes to build a future together.","moviesInCollection":[],"ratingKey":3016,"key":"/library/metadata/3016","collectionTitle":"","collectionId":-1,"tmdbId":257785},{"name":"Friday the 13th Part III","year":1982,"posterUrl":"/library/metadata/949/thumb/1599308174","imdbId":"","language":"en","overview":"An idyllic summer turns into a nightmare of unspeakable terror for yet another group of naive counselors. Ignoring Camp Crystal Lake's bloody legacy, one by one they fall victim to the maniacal Jason who stalks them at every turn.","moviesInCollection":[],"ratingKey":949,"key":"/library/metadata/949","collectionTitle":"","collectionId":-1,"tmdbId":9728},{"name":"Edge of Tomorrow","year":2014,"posterUrl":"/library/metadata/805/thumb/1599308118","imdbId":"","language":"en","overview":"Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.","moviesInCollection":[],"ratingKey":805,"key":"/library/metadata/805","collectionTitle":"","collectionId":-1,"tmdbId":137113},{"name":"Fighting with My Family","year":2019,"posterUrl":"/library/metadata/888/thumb/1599308149","imdbId":"","language":"en","overview":"Born into a tight-knit wrestling family, Paige and her brother Zak are ecstatic when they get the once-in-a-lifetime opportunity to try out for the WWE. But when only Paige earns a spot in the competitive training program, she must leave her loved ones behind and face this new cutthroat world alone. Paige's journey pushes her to dig deep and ultimately prove to the world that what makes her different is the very thing that can make her a star.","moviesInCollection":[],"ratingKey":888,"key":"/library/metadata/888","collectionTitle":"","collectionId":-1,"tmdbId":445629},{"name":"Taken","year":2009,"posterUrl":"/library/metadata/27841/thumb/1599309075","imdbId":"","language":"en","overview":"While vacationing with a friend in Paris, an American girl is kidnapped by a gang of human traffickers intent on selling her into forced prostitution. Working against the clock, her ex-spy father must pull out all the stops to save her. But with his best years possibly behind him, the job may be more than he can handle.","moviesInCollection":[],"ratingKey":27841,"key":"/library/metadata/27841","collectionTitle":"","collectionId":-1,"tmdbId":8681},{"name":"Alpha","year":2018,"posterUrl":"/library/metadata/172/thumb/1599307889","imdbId":"","language":"en","overview":"In the prehistoric past, Keda, a young and inexperienced hunter, struggles to return home after being separated from his tribe when bison hunting goes awry. On his way back he will find an unexpected ally.","moviesInCollection":[],"ratingKey":172,"key":"/library/metadata/172","collectionTitle":"","collectionId":-1,"tmdbId":399360},{"name":"13 Assassins","year":2011,"posterUrl":"/library/metadata/12/thumb/1599307831","imdbId":"","language":"en","overview":"A bravado period action film set at the end of Japan's feudal era in which a group of unemployed samurai are enlisted to bring down a sadistic lord and prevent him from ascending to the throne and plunging the country into a war-torn future.","moviesInCollection":[],"ratingKey":12,"key":"/library/metadata/12","collectionTitle":"","collectionId":-1,"tmdbId":58857},{"name":"Blades of Glory","year":2007,"posterUrl":"/library/metadata/377/thumb/1599307965","imdbId":"","language":"en","overview":"When a much-publicized ice-skating scandal strips them of their gold medals, two world-class athletes skirt their way back onto the ice via a loophole that allows them to compete together as a pairs team.","moviesInCollection":[],"ratingKey":377,"key":"/library/metadata/377","collectionTitle":"","collectionId":-1,"tmdbId":9955},{"name":"Terminator 2 Judgment Day","year":1991,"posterUrl":"/library/metadata/2260/thumb/1599308711","imdbId":"","language":"en","overview":"Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son, John, the future leader of the resistance, is the target for a newer, more deadly terminator. Once again, the resistance has managed to send a protector back to attempt to save John and his mother Sarah.","moviesInCollection":[],"ratingKey":2260,"key":"/library/metadata/2260","collectionTitle":"","collectionId":-1,"tmdbId":280},{"name":"Dumbo","year":2019,"posterUrl":"/library/metadata/796/thumb/1599308115","imdbId":"","language":"en","overview":"A young elephant, whose oversized ears enable him to fly, helps save a struggling circus, but when the circus plans a new venture, Dumbo and his friends discover dark secrets beneath its shiny veneer.","moviesInCollection":[],"ratingKey":796,"key":"/library/metadata/796","collectionTitle":"","collectionId":-1,"tmdbId":329996},{"name":"Pokémon Detective Pikachu","year":2019,"posterUrl":"/library/metadata/1770/thumb/1599308506","imdbId":"","language":"en","overview":"In a world where people collect pocket-size monsters (Pokémon) to do battle, a boy comes across an intelligent monster who seeks to be a detective.","moviesInCollection":[],"ratingKey":1770,"key":"/library/metadata/1770","collectionTitle":"","collectionId":-1,"tmdbId":447404},{"name":"The Jerk","year":1979,"posterUrl":"/library/metadata/2594/thumb/1599308834","imdbId":"","language":"en","overview":"After discovering he's not really black like the rest of his family, likable dimwit Navin Johnson runs off on a hilarious misadventure in this comedy classic that takes him from rags to riches and back to rags again. The slaphappy jerk strikes it rich, but life in the fast lane isn't all it's cracked up to be and, in the end, all that really matters to Johnson is his true love.","moviesInCollection":[],"ratingKey":2594,"key":"/library/metadata/2594","collectionTitle":"","collectionId":-1,"tmdbId":6471},{"name":"Alien Outpost","year":2015,"posterUrl":"/library/metadata/152/thumb/1599307882","imdbId":"","language":"en","overview":"A documentary crew follows an elite unit of soldiers in the wake of an alien invasion.","moviesInCollection":[],"ratingKey":152,"key":"/library/metadata/152","collectionTitle":"","collectionId":-1,"tmdbId":312526},{"name":"O Turno Da Noite","year":2017,"posterUrl":"/library/metadata/1628/thumb/1599308445","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":1628,"key":"/library/metadata/1628","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Tokyo Godfathers","year":2004,"posterUrl":"/library/metadata/2948/thumb/1599308979","imdbId":"","language":"en","overview":"During a Christmas Eve in Tokyo, three homeless people, middle-aged alcoholic Gin, former drag queen Hana, and dependent runaway girl Miyuki, discover an abandoned newborn while looking through the garbage. With only a handful of clues to the baby's identity, the three misfits search the city to find its parents.","moviesInCollection":[],"ratingKey":2948,"key":"/library/metadata/2948","collectionTitle":"","collectionId":-1,"tmdbId":13398},{"name":"The Butterfly Effect 3 Revelations","year":2009,"posterUrl":"/library/metadata/2346/thumb/1599308740","imdbId":"","language":"en","overview":"The story revolves around a man trying to uncover the mysterious death of his girlfriend and save an innocent man from the death chamber in the process, by using his unique power to time travel. However in attempting to do this, he also frees a spiteful serial-killer.","moviesInCollection":[],"ratingKey":2346,"key":"/library/metadata/2346","collectionTitle":"","collectionId":-1,"tmdbId":16258},{"name":"Deadpool 2","year":2018,"posterUrl":"/library/metadata/664/thumb/1599308068","imdbId":"","language":"en","overview":"Wisecracking mercenary Deadpool battles the evil and powerful Cable and other bad guys to save a boy's life.","moviesInCollection":[],"ratingKey":664,"key":"/library/metadata/664","collectionTitle":"","collectionId":-1,"tmdbId":383498},{"name":"Downsizing","year":2017,"posterUrl":"/library/metadata/744/thumb/1599308098","imdbId":"","language":"en","overview":"A kindly occupational therapist undergoes a new procedure to be shrunken to four inches tall so that he and his wife can help save the planet and afford a nice lifestyle at the same time.","moviesInCollection":[],"ratingKey":744,"key":"/library/metadata/744","collectionTitle":"","collectionId":-1,"tmdbId":301337},{"name":"Point Break","year":2015,"posterUrl":"/library/metadata/1767/thumb/1599308505","imdbId":"","language":"en","overview":"A young undercover FBI agent infiltrates a gang of thieves who share a common interest in extreme sports. A remake of the 1991 film, \"Point Break\".","moviesInCollection":[],"ratingKey":1767,"key":"/library/metadata/1767","collectionTitle":"","collectionId":-1,"tmdbId":257088},{"name":"There Will Be Blood","year":2007,"posterUrl":"/library/metadata/2915/thumb/1599308969","imdbId":"","language":"en","overview":"Ruthless silver miner, turned oil prospector, Daniel Plainview moves to oil-rich California. Using his adopted son to project a trustworthy, family-man image, Plainview cons local landowners into selling him their valuable properties for a pittance. However, local preacher Eli Sunday suspects Plainviews motives and intentions, starting a slow-burning feud that threatens both their lives.","moviesInCollection":[],"ratingKey":2915,"key":"/library/metadata/2915","collectionTitle":"","collectionId":-1,"tmdbId":7345},{"name":"Backtrace","year":2018,"posterUrl":"/library/metadata/262/thumb/1599307923","imdbId":"","language":"en","overview":"The lone surviving thief of a violent armored car robbery is sprung from a high security facility and administered an experimental drug.","moviesInCollection":[],"ratingKey":262,"key":"/library/metadata/262","collectionTitle":"","collectionId":-1,"tmdbId":512412},{"name":"Face/Off","year":1997,"posterUrl":"/library/metadata/855/thumb/1599308136","imdbId":"","language":"en","overview":"An antiterrorism agent goes under the knife to acquire the likeness of a terrorist and gather details about a bombing plot. When the terrorist escapes custody, he undergoes surgery to look like the agent so he can get close to the agent's family.","moviesInCollection":[],"ratingKey":855,"key":"/library/metadata/855","collectionTitle":"","collectionId":-1,"tmdbId":754},{"name":"Avengers Grimm","year":2015,"posterUrl":"/library/metadata/248/thumb/1599307919","imdbId":"","language":"en","overview":"When Rumpelstiltskin destroys the Magic Mirror and escapes to the modern world, the four princesses of \"Once Upon a Time\"-Cinderella, Sleeping Beauty, Snow White, and Rapunzel-are sucked through the portal too. Well-trained and endowed with magical powers, the four women must fight Rumpelstiltskin and his army of thralls before he enslaves everyone on Earth.","moviesInCollection":[],"ratingKey":248,"key":"/library/metadata/248","collectionTitle":"","collectionId":-1,"tmdbId":323660},{"name":"Troy","year":2004,"posterUrl":"/library/metadata/40987/thumb/1599309115","imdbId":"","language":"en","overview":"In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnom to help him get her back. Agamemnon sees this as an opportunity for power. So they set off with 1,000 ships holding 50,000 Greeks to Troy. With the help of Achilles, the Greeks are able to fight the never before defeated Trojans.","moviesInCollection":[],"ratingKey":40987,"key":"/library/metadata/40987","collectionTitle":"","collectionId":-1,"tmdbId":652},{"name":"A Quiet Place","year":2018,"posterUrl":"/library/metadata/89/thumb/1599307857","imdbId":"","language":"en","overview":"A family is forced to live in silence while hiding from creatures that hunt by sound.","moviesInCollection":[],"ratingKey":89,"key":"/library/metadata/89","collectionTitle":"","collectionId":-1,"tmdbId":447332},{"name":"Jurassic World","year":2015,"posterUrl":"/library/metadata/40929/thumb/1599309111","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":40929,"key":"/library/metadata/40929","collectionTitle":"","collectionId":-1,"tmdbId":135397},{"name":"Naked Gun 33⅓ The Final Insult","year":1994,"posterUrl":"/library/metadata/2705/thumb/1599308881","imdbId":"","language":"en","overview":"Frank Drebin is persuaded out of retirement to go undercover in a state prison. There he is to find out what top terrorist, Rocco, has planned for when he escapes. Frank's wife, Jane, is desperate for a baby.. this adds to Frank's problems. A host of celebrities at the Academy awards ceremony are humiliated by Frank as he blunders his way trying to foil Rocco.","moviesInCollection":[],"ratingKey":2705,"key":"/library/metadata/2705","collectionTitle":"","collectionId":-1,"tmdbId":36593},{"name":"Dragon Ball Z Fusion Reborn","year":1995,"posterUrl":"/library/metadata/765/thumb/1599308105","imdbId":"","language":"en","overview":"Not paying attention to his job, a young demon allows the evil cleansing machine to overflow and explode, turning the young demon into the infamous monster Janemba. Goku and Vegeta make solo attempts to defeat the monster, but realize their only option is fusion.","moviesInCollection":[],"ratingKey":765,"key":"/library/metadata/765","collectionTitle":"","collectionId":-1,"tmdbId":39107},{"name":"Mr. Smith Goes to Washington","year":1939,"posterUrl":"/library/metadata/1555/thumb/1599308414","imdbId":"","language":"en","overview":"Naive and idealistic Jefferson Smith, leader of the Boy Rangers, is appointed to the United States Senate by the puppet governor of his state. He soon discovers, upon going to Washington, many shortcomings of the political process as his earnest goal of a national boys' camp leads to a conflict with the state political boss.","moviesInCollection":[],"ratingKey":1555,"key":"/library/metadata/1555","collectionTitle":"","collectionId":-1,"tmdbId":3083},{"name":"Eurovision Song Contest The Story of Fire Saga","year":2020,"posterUrl":"/library/metadata/45881/thumb/1599309150","imdbId":"","language":"en","overview":"When aspiring musicians Lars and Sigrit are given the opportunity of a lifetime to represent their country at the world's biggest song competition, they finally have a chance to prove that any dream is a dream worth fighting for.","moviesInCollection":[],"ratingKey":45881,"key":"/library/metadata/45881","collectionTitle":"","collectionId":-1,"tmdbId":531454},{"name":"Small Fry","year":2011,"posterUrl":"/library/metadata/47407/thumb/1599309181","imdbId":"","language":"en","overview":"A fast food restaurant mini variant of Buzz forcibly switches places with the real Buzz and his friends have to deal with the obnoxious impostor.","moviesInCollection":[],"ratingKey":47407,"key":"/library/metadata/47407","collectionTitle":"","collectionId":-1,"tmdbId":82424},{"name":"The Heroes of Telemark","year":1966,"posterUrl":"/library/metadata/2536/thumb/1599308812","imdbId":"","language":"en","overview":"Set in German-occupied Norway, resistance fighter Knut Straud enlists the reluctant physicist Rolf Pedersen in an effort to destroy the German heavy water production plant in rural Telemark.","moviesInCollection":[],"ratingKey":2536,"key":"/library/metadata/2536","collectionTitle":"","collectionId":-1,"tmdbId":16850},{"name":"Madeline's Madeline","year":2018,"posterUrl":"/library/metadata/1441/thumb/1599308361","imdbId":"","language":"en","overview":"Madeline has become an integral part of a prestigious physical theater troupe. When the workshop's ambitious director pushes the teenager to weave her rich interior world and troubled history with her mother into their collective art, the lines between performance and reality begin to blur. The resulting battle between imagination and appropriation rips out of the rehearsal space and through all three women's lives.","moviesInCollection":[],"ratingKey":1441,"key":"/library/metadata/1441","collectionTitle":"","collectionId":-1,"tmdbId":468735},{"name":"Hotel Artemis","year":2018,"posterUrl":"/library/metadata/1130/thumb/1599308243","imdbId":"","language":"en","overview":"Los Angeles, June 21st, 2028. While the streets are being torn apart by riots, the Nurse, who runs a clandestine hospital for criminals in the penthouse of the Artemis, a closed old hotel, has a rough night dealing with troublemaker clients: thieves, assassins, someone from the past and the one who owns the place and the whole city.","moviesInCollection":[],"ratingKey":1130,"key":"/library/metadata/1130","collectionTitle":"","collectionId":-1,"tmdbId":406761},{"name":"Mighty Morphin Power Rangers The Movie","year":1995,"posterUrl":"/library/metadata/45858/thumb/1599309149","imdbId":"","language":"en","overview":"Power up with six incredible teens who out-maneuver and defeat evil everywhere as the Mighty Morphin Power Ranger, But this time the Power Rangers may have met their match, when they face off with the most sinister monster the galaxy has ever seen.","moviesInCollection":[],"ratingKey":45858,"key":"/library/metadata/45858","collectionTitle":"","collectionId":-1,"tmdbId":9070},{"name":"Mary Queen of Scots","year":2018,"posterUrl":"/library/metadata/1463/thumb/1599308372","imdbId":"","language":"en","overview":"In 1561, Mary Stuart, widow of the King of France, returns to Scotland, reclaims her rightful throne and menaces the future of Queen Elizabeth I as ruler of England, because she has a legitimate claim to the English throne. Betrayals, rebellions, conspiracies and their own life choices imperil both Queens. They experience the bitter cost of power, until their tragic fate is finally fulfilled.","moviesInCollection":[],"ratingKey":1463,"key":"/library/metadata/1463","collectionTitle":"","collectionId":-1,"tmdbId":457136},{"name":"When Harry Met Sally...","year":1989,"posterUrl":"/library/metadata/3131/thumb/1599309041","imdbId":"","language":"en","overview":"During their travel from Chicago to New York, Harry and Sally debate whether or not sex ruins a friendship between a man and a woman. Eleven years later, and they're still no closer to finding the answer.","moviesInCollection":[],"ratingKey":3131,"key":"/library/metadata/3131","collectionTitle":"","collectionId":-1,"tmdbId":639},{"name":"John Wick Chapter 2","year":2017,"posterUrl":"/library/metadata/1252/thumb/1599308289","imdbId":"","language":"en","overview":"John Wick is forced out of retirement by a former associate looking to seize control of a shadowy international assassins’ guild. Bound by a blood oath to aid him, Wick travels to Rome and does battle against some of the world’s most dangerous killers.","moviesInCollection":[],"ratingKey":1252,"key":"/library/metadata/1252","collectionTitle":"","collectionId":-1,"tmdbId":324552},{"name":"Shutter Island","year":2010,"posterUrl":"/library/metadata/2033/thumb/1599308619","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2033,"key":"/library/metadata/2033","collectionTitle":"","collectionId":-1,"tmdbId":11324},{"name":"Above the Shadows","year":2019,"posterUrl":"/library/metadata/109/thumb/1599307866","imdbId":"","language":"en","overview":"A young woman who has faded to the point of becoming invisible must find her way back with the help of the one man who can see her.","moviesInCollection":[],"ratingKey":109,"key":"/library/metadata/109","collectionTitle":"","collectionId":-1,"tmdbId":609734},{"name":"The Holiday","year":2006,"posterUrl":"/library/metadata/2545/thumb/1599308816","imdbId":"","language":"en","overview":"Two women, one from the United States and one from the United Kingdom, swap homes at Christmastime after bad breakups with their boyfriends. Each woman finds romance with a local man but realizes that the imminent return home may end the relationship.","moviesInCollection":[],"ratingKey":2545,"key":"/library/metadata/2545","collectionTitle":"","collectionId":-1,"tmdbId":1581},{"name":"Boogeyman 2","year":2007,"posterUrl":"/library/metadata/401/thumb/1599307973","imdbId":"","language":"en","overview":"A young woman attempts to cure her phobia of the boogeyman by checking herself into a mental health facility, only to realize too little too late that she is now helplessly trapped with her own greatest fear.","moviesInCollection":[],"ratingKey":401,"key":"/library/metadata/401","collectionTitle":"","collectionId":-1,"tmdbId":14913},{"name":"Bruce Almighty","year":2003,"posterUrl":"/library/metadata/436/thumb/1599307987","imdbId":"","language":"en","overview":"Bruce Nolan toils as a 'human interest' television reporter in Buffalo, N.Y., but despite his high ratings and the love of his beautiful girlfriend, Bruce remains unfulfilled. At the end of the worst day in his life, he angrily ridicules God—and the Almighty responds, endowing Bruce with all of His divine powers.","moviesInCollection":[],"ratingKey":436,"key":"/library/metadata/436","collectionTitle":"","collectionId":-1,"tmdbId":310},{"name":"Deadly Virtues Love. Honour. Obey.","year":2015,"posterUrl":"/library/metadata/662/thumb/1599308067","imdbId":"","language":"en","overview":"A home invasion irrevocably changes the lives of all involved in ways neither victims nor perpetrator could have imagined","moviesInCollection":[],"ratingKey":662,"key":"/library/metadata/662","collectionTitle":"","collectionId":-1,"tmdbId":258947},{"name":"Arkansas","year":2020,"posterUrl":"/library/metadata/40041/thumb/1599309103","imdbId":"","language":"en","overview":"Kyle and Swin live by the orders of an Arkansas-based drug kingpin named Frog, whom they've never met. But when a deal goes horribly wrong, the consequences are deadly.","moviesInCollection":[],"ratingKey":40041,"key":"/library/metadata/40041","collectionTitle":"","collectionId":-1,"tmdbId":560204},{"name":"Detroit","year":2017,"posterUrl":"/library/metadata/703/thumb/1599308082","imdbId":"","language":"en","overview":"A police raid in Detroit in 1967 results in one of the largest citizens' uprisings in the history of the United States.","moviesInCollection":[],"ratingKey":703,"key":"/library/metadata/703","collectionTitle":"","collectionId":-1,"tmdbId":407448},{"name":"Matchstick Men","year":2003,"posterUrl":"/library/metadata/1469/thumb/1599308375","imdbId":"","language":"en","overview":"A phobic con artist and his protege are on the verge of pulling off a lucrative swindle when the con artist's teenage daughter arrives unexpectedly.","moviesInCollection":[],"ratingKey":1469,"key":"/library/metadata/1469","collectionTitle":"","collectionId":-1,"tmdbId":7270},{"name":"The Bouncer","year":2018,"posterUrl":"/library/metadata/2328/thumb/1599308734","imdbId":"","language":"en","overview":"A tough nightclub bouncer struggling to raise his 8-year-old daughter is forced to go undercover after an unfortunate event.","moviesInCollection":[],"ratingKey":2328,"key":"/library/metadata/2328","collectionTitle":"","collectionId":-1,"tmdbId":525554},{"name":"Survival of the Dead","year":2010,"posterUrl":"/library/metadata/39997/thumb/1599309102","imdbId":"","language":"en","overview":"On an island off the coast of North America, local residents simultaneously fight a zombie epidemic while hoping for a cure to return their un-dead relatives back to their human state.","moviesInCollection":[],"ratingKey":39997,"key":"/library/metadata/39997","collectionTitle":"","collectionId":-1,"tmdbId":29426},{"name":"Automata","year":2014,"posterUrl":"/library/metadata/243/thumb/1599307917","imdbId":"","language":"en","overview":"Jacq Vaucan, an insurance agent of ROC robotics corporation, routinely investigates the case of manipulating a robot. What he discovers will have profound consequences for the future of humanity.","moviesInCollection":[],"ratingKey":243,"key":"/library/metadata/243","collectionTitle":"","collectionId":-1,"tmdbId":262543},{"name":"Grand Canyon Adventure River at Risk","year":2008,"posterUrl":"/library/metadata/1027/thumb/1599308204","imdbId":"","language":"en","overview":"A documentary about a 15-day river-rafting trip on the Colorado River aimed at highlighting water conservation issues.","moviesInCollection":[],"ratingKey":1027,"key":"/library/metadata/1027","collectionTitle":"","collectionId":-1,"tmdbId":15557},{"name":"Jason X","year":2002,"posterUrl":"/library/metadata/1225/thumb/1599308279","imdbId":"","language":"en","overview":"In the year 2455, Old Earth is now a contaminated planet abandoned for centuries -- a brown world of violent storms, toxic landmasses and poisonous seas. Yet humans have returned to the deadly place that they once fled, not to live, but to research the ancient, rusting artifacts of the long-gone civilizations. But it's not the harmful environment that could prove fatal to the intrepid, young explorers who have just landed on Old Earth. For them, it's Friday the 13th, and Jason lives!","moviesInCollection":[],"ratingKey":1225,"key":"/library/metadata/1225","collectionTitle":"","collectionId":-1,"tmdbId":11470},{"name":"Fast Times at Ridgemont High","year":1982,"posterUrl":"/library/metadata/873/thumb/1599308143","imdbId":"","language":"en","overview":"Follows a group of high school students growing up in southern California, based on the real-life adventures chronicled by Cameron Crowe. Stacy Hamilton and Mark Ratner are looking for a love interest, and are helped along by their older classmates, Linda Barrett and Mike Damone, respectively. The center of the film is held by Jeff Spicoli, a perpetually stoned surfer dude who faces off with the resolute Mr. Hand, who is convinced that everyone is on dope.","moviesInCollection":[],"ratingKey":873,"key":"/library/metadata/873","collectionTitle":"","collectionId":-1,"tmdbId":13342},{"name":"La La Land","year":2016,"posterUrl":"/library/metadata/1331/thumb/1599308318","imdbId":"","language":"en","overview":"Mia, an aspiring actress, serves lattes to movie stars in between auditions and Sebastian, a jazz musician, scrapes by playing cocktail party gigs in dingy bars, but as success mounts they are faced with decisions that begin to fray the fragile fabric of their love affair, and the dreams they worked so hard to maintain in each other threaten to rip them apart.","moviesInCollection":[],"ratingKey":1331,"key":"/library/metadata/1331","collectionTitle":"","collectionId":-1,"tmdbId":313369},{"name":"Bulletproof","year":1996,"posterUrl":"/library/metadata/439/thumb/1599307988","imdbId":"","language":"en","overview":"An undercover police officer named Rock Keats befriends a drug dealer and car thief named Archie Moses in a bid to catch the villainous drug lord Frank Coltan. But the only problem is that Keats is a cop, his real name is Jack Carter, and he is working undercover with the LAPD to bust Moses and Colton at a sting operation the LAPD has set up.","moviesInCollection":[],"ratingKey":439,"key":"/library/metadata/439","collectionTitle":"","collectionId":-1,"tmdbId":10723},{"name":"A Nightmare on Elm Street The Dream Child","year":1989,"posterUrl":"/library/metadata/84/thumb/1599307855","imdbId":"","language":"en","overview":"Alice, having survived the previous installment of the Nightmare series, finds the deadly dreams of Freddy Krueger starting once again. This time, the taunting murderer is striking through the sleeping mind of Alice's unborn child. His intention is to be \"born again\" into the real world. The only one who can stop Freddy is his dead mother, but can Alice free her spirit in time to save her own son?","moviesInCollection":[],"ratingKey":84,"key":"/library/metadata/84","collectionTitle":"","collectionId":-1,"tmdbId":10160},{"name":"Black Butterfly","year":2017,"posterUrl":"/library/metadata/363/thumb/1599307959","imdbId":"","language":"en","overview":"Paul is a down-on-his-luck screenwriter who picks up a drifter and offers him a place to stay. However, when the deranged stranger takes Paul hostage and forces him to write, their unhinged relationship brings buried secrets to light.","moviesInCollection":[],"ratingKey":363,"key":"/library/metadata/363","collectionTitle":"","collectionId":-1,"tmdbId":76812},{"name":"Nick and Norah's Infinite Playlist","year":2008,"posterUrl":"/library/metadata/1607/thumb/1599308435","imdbId":"","language":"en","overview":"Nick cannot stop obsessing over his ex-girlfriend, Tris, until Tris' friend Norah suddenly shows interest in him at a club. Thus beings an odd night filled with ups and downs as the two keep running into Tris and her new boyfriend while searching for Norah's drunken friend, Caroline, with help from Nick's band mates. As the night winds down, the two have to figure out what they want from each other.","moviesInCollection":[],"ratingKey":1607,"key":"/library/metadata/1607","collectionTitle":"","collectionId":-1,"tmdbId":12182},{"name":"30 Days of Night","year":2007,"posterUrl":"/library/metadata/31/thumb/1599307837","imdbId":"","language":"en","overview":"This is the story of an isolated Alaskan town that is plunged into darkness for a month each year when the sun sinks below the horizon. As the last rays of light fade, the town is attacked by a bloodthirsty gang of vampires bent on an uninterrupted orgy of destruction. Only the small town's husband-and-wife Sheriff team stand between the survivors and certain destruction.","moviesInCollection":[],"ratingKey":31,"key":"/library/metadata/31","collectionTitle":"","collectionId":-1,"tmdbId":4513},{"name":"Captain America The Winter Soldier","year":2014,"posterUrl":"/library/metadata/467/thumb/1599307999","imdbId":"","language":"en","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—the Winter Soldier.","moviesInCollection":[],"ratingKey":467,"key":"/library/metadata/467","collectionTitle":"","collectionId":-1,"tmdbId":100402},{"name":"Chasing Amy","year":1997,"posterUrl":"/library/metadata/497/thumb/1599308010","imdbId":"","language":"en","overview":"Holden and Banky are comic book artists. Everything is going good for them until they meet Alyssa, also a comic book artist. Holden falls for her, but his hopes are crushed when he finds out she's a lesbian.","moviesInCollection":[],"ratingKey":497,"key":"/library/metadata/497","collectionTitle":"","collectionId":-1,"tmdbId":2255},{"name":"The Last Full Measure","year":2019,"posterUrl":"/library/metadata/2618/thumb/1599308843","imdbId":"","language":"en","overview":"The incredible true story of Vietnam War hero William H. Pitsenbarger, a U.S. Air Force Pararescuemen medic who personally saved over sixty men. Thirty-two years later, Pentagon staffer Scott Huffman investigates a Congressional Medal of Honor request for Pitsenbarger and uncovers a high-level conspiracy behind the decades-long denial of the medal, prompting Huffman to put his own career on the line to seek justice for the fallen airman.","moviesInCollection":[],"ratingKey":2618,"key":"/library/metadata/2618","collectionTitle":"","collectionId":-1,"tmdbId":442065},{"name":"Jane Got a Gun","year":2016,"posterUrl":"/library/metadata/1222/thumb/1599308278","imdbId":"","language":"en","overview":"After her outlaw husband returns home shot with eight bullets and barely alive, Jane reluctantly reaches out to an ex-lover who she hasn't seen in over ten years to help her defend her farm when the time comes that her husband's gang eventually tracks him down to finish the job.","moviesInCollection":[],"ratingKey":1222,"key":"/library/metadata/1222","collectionTitle":"","collectionId":-1,"tmdbId":174751},{"name":"Patton","year":1970,"posterUrl":"/library/metadata/1712/thumb/1599308483","imdbId":"","language":"en","overview":"\"Patton\" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.","moviesInCollection":[],"ratingKey":1712,"key":"/library/metadata/1712","collectionTitle":"","collectionId":-1,"tmdbId":11202},{"name":"Gone Girl","year":2014,"posterUrl":"/library/metadata/1011/thumb/1599308197","imdbId":"","language":"en","overview":"With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.","moviesInCollection":[],"ratingKey":1011,"key":"/library/metadata/1011","collectionTitle":"","collectionId":-1,"tmdbId":210577},{"name":"The Hustle","year":2019,"posterUrl":"/library/metadata/27846/thumb/1599309077","imdbId":"","language":"en","overview":"Two female scam artists, one low rent and the other high class, compete to swindle a naïve tech prodigy out of his fortune. A remake of the 1988 comedy \"Dirty Rotten Scoundrels.\"","moviesInCollection":[],"ratingKey":27846,"key":"/library/metadata/27846","collectionTitle":"","collectionId":-1,"tmdbId":449562},{"name":"House of Strangers","year":1949,"posterUrl":"/library/metadata/1138/thumb/1599308246","imdbId":"","language":"en","overview":"Gino Monetti is a ruthless Italian-American banker who engaged in a number of criminal activities. Three of his four grown sons, refuse to help their father stay out of prison after he's arrested for his questionable business practices. Three of the sons take over the business but kick their father out. Max, a lawyer, is the only son that stays loyal to his father.","moviesInCollection":[],"ratingKey":1138,"key":"/library/metadata/1138","collectionTitle":"","collectionId":-1,"tmdbId":20003},{"name":"Splice","year":2009,"posterUrl":"/library/metadata/2119/thumb/1599308657","imdbId":"","language":"en","overview":"Elsa and Clive, two young rebellious scientists, defy legal and ethical boundaries and forge ahead with a dangerous experiment: splicing together human and animal DNA to create a new organism. Named \"Dren\", the creature rapidly develops from a deformed female infant into a beautiful but dangerous winged human-chimera, who forges a bond with both of her creators - only to have that bond turn deadly.","moviesInCollection":[],"ratingKey":2119,"key":"/library/metadata/2119","collectionTitle":"","collectionId":-1,"tmdbId":37707},{"name":"A Muppet Family Christmas","year":1987,"posterUrl":"/library/metadata/79/thumb/1599307853","imdbId":"","language":"en","overview":"In this one-hour Christmas special, Fozzie Bear surprises his mother Emily on Christmas Eve by bringing the entire Muppet gang to her farm to celebrate the holidays. Doc and his dog Sprocket, who had planned a quiet Christmas, end up joining the Muppets in their holiday activities and preparations.The Sesame Street regulars, including Big Bird, Bert, Ernie and others, join the festivities, but to Kermit's dismay, the only one missing is Miss Piggy, who has been caught in a snowstorm.","moviesInCollection":[],"ratingKey":79,"key":"/library/metadata/79","collectionTitle":"","collectionId":-1,"tmdbId":13247},{"name":"A Knight's Tale","year":2001,"posterUrl":"/library/metadata/69/thumb/1599307850","imdbId":"","language":"en","overview":"William Thatcher, a peasant, is sent to apprentice with a Knight named Hector as a young boy. Urged by his father to \"change his Stars\", he assumes Sir Hector's place in a tournament when Hector dies in the middle of it. He wins. With the other apprentices, he trains and assumes the title of Sir Ulrich von Lichtenstein.","moviesInCollection":[],"ratingKey":69,"key":"/library/metadata/69","collectionTitle":"","collectionId":-1,"tmdbId":9476},{"name":"Mythica A Quest for Heroes","year":2014,"posterUrl":"/library/metadata/1582/thumb/1599308424","imdbId":"","language":"en","overview":"Stuck in a life of indentured servitude, Marek dreams of becoming a wizard. When she meets a beautiful priestess, Teela, in need of help, Marek escapes her master and puts together a team of adventurers - including Thane the warrior and Dagen the half-elf thief – and embarks on an epic quest to free Teela’s sister from orcs and ogres. After raiding the orc camp, the group learns that Teela’s sister has been taken into the mountains by a giant ogre. Escaping hellhounds and dragons on their dangerous journey, the team find themselves hopelessly outmatched by the man-eating ogre, and must unite all their talents to free the prisoners and escape with their own lives.","moviesInCollection":[],"ratingKey":1582,"key":"/library/metadata/1582","collectionTitle":"","collectionId":-1,"tmdbId":321068},{"name":"Trading Paint","year":2019,"posterUrl":"/library/metadata/2974/thumb/1599308988","imdbId":"","language":"en","overview":"A stock car racing legend is drawn back to the dirt track when his son, an aspiring driver, joins a rival racing team.","moviesInCollection":[],"ratingKey":2974,"key":"/library/metadata/2974","collectionTitle":"","collectionId":-1,"tmdbId":474214},{"name":"Return of the Jedi Despecialized Edition Remastered V2 7","year":1983,"posterUrl":"/library/metadata/39577/thumb/1599309086","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":39577,"key":"/library/metadata/39577","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Ad Astra","year":2019,"posterUrl":"/library/metadata/119/thumb/1599307869","imdbId":"","language":"en","overview":"The near future, a time when both hope and hardships drive humanity to look to the stars and beyond. While a mysterious phenomenon menaces to destroy life on planet Earth, astronaut Roy McBride undertakes a mission across the immensity of space and its many perils to uncover the truth about a lost expedition that decades before boldly faced emptiness and silence in search of the unknown.","moviesInCollection":[],"ratingKey":119,"key":"/library/metadata/119","collectionTitle":"","collectionId":-1,"tmdbId":419704},{"name":"Congo","year":1995,"posterUrl":"/library/metadata/565/thumb/1599308034","imdbId":"","language":"en","overview":"Eight people embark on an expedition into the Congo, a mysterious expanse of unexplored Africa where human greed and the laws of nature have gone berserk. When the thrill-seekers -- some with ulterior motives -- stumble across a race of killer apes.","moviesInCollection":[],"ratingKey":565,"key":"/library/metadata/565","collectionTitle":"","collectionId":-1,"tmdbId":10329},{"name":"Child of God","year":2014,"posterUrl":"/library/metadata/500/thumb/1599308011","imdbId":"","language":"en","overview":"A dispossessed, violent man's life is a disastrous attempt to exist outside the social order. Successively deprived of parents and homes and with few other ties, he descends to the level of a cave dweller and falls deeper into crime and degradation.","moviesInCollection":[],"ratingKey":500,"key":"/library/metadata/500","collectionTitle":"","collectionId":-1,"tmdbId":152736},{"name":"The Andromeda Strain","year":1971,"posterUrl":"/library/metadata/2290/thumb/1599308721","imdbId":"","language":"en","overview":"When virtually all of the residents of Piedmont, New Mexico, are found dead after the return to Earth of a space satellite, the head of the US Air Force's Project Scoop declares an emergency. A group of eminent scientists led by Dr. Jeremy Stone scramble to a secure laboratory and try to first isolate the life form while determining why two people from Piedmont - an old alcoholic and a six-month-old baby - survived. The scientists methodically study the alien life form unaware that it has already mutated and presents a far greater danger in the lab, which is equipped with a nuclear self-destruct device designed to prevent the escape of dangerous biological agents..","moviesInCollection":[],"ratingKey":2290,"key":"/library/metadata/2290","collectionTitle":"","collectionId":-1,"tmdbId":10514},{"name":"The Human Centipede (First Sequence)","year":2009,"posterUrl":"/library/metadata/39823/thumb/1599309097","imdbId":"","language":"en","overview":"During a stopover in Germany in the middle of a carefree road trip through Europe, two American girls find themselves alone at night when their car breaks down in the woods. Searching for help at a nearby villa, they are wooed into the clutches of a deranged retired surgeon who explains his mad scientific vision to his captives' utter horror. They are to be the subjects of his sick lifetime fantasy: to be the first to connect people, one to the next, and in doing so bring to life \"the human centipede.\"","moviesInCollection":[],"ratingKey":39823,"key":"/library/metadata/39823","collectionTitle":"","collectionId":-1,"tmdbId":37169},{"name":"Teenage Mutant Ninja Turtles Out of the Shadows","year":2016,"posterUrl":"/library/metadata/2257/thumb/1599308710","imdbId":"","language":"en","overview":"After supervillain Shredder escapes custody, he joins forces with mad scientist Baxter Stockman and two dimwitted henchmen, Bebop and Rocksteady, to unleash a diabolical plan to take over the world. As the Turtles prepare to take on Shredder and his new crew, they find themselves facing an even greater evil with similar intentions: the notorious Krang.","moviesInCollection":[],"ratingKey":2257,"key":"/library/metadata/2257","collectionTitle":"","collectionId":-1,"tmdbId":308531},{"name":"Bleeding Steel","year":2017,"posterUrl":"/library/metadata/380/thumb/1599307966","imdbId":"","language":"en","overview":"Jackie Chan stars as a hardened special forces agent who fights to protect a young woman from a sinister criminal gang. At the same time, he feels a special connection to the young woman, like they met in a different life.","moviesInCollection":[],"ratingKey":380,"key":"/library/metadata/380","collectionTitle":"","collectionId":-1,"tmdbId":460648},{"name":"American Animals","year":2018,"posterUrl":"/library/metadata/175/thumb/1599307890","imdbId":"","language":"en","overview":"Lexington, Kentucky, 2004. Four young men attempt to execute one of the most audacious art heists in the history of the United States.","moviesInCollection":[],"ratingKey":175,"key":"/library/metadata/175","collectionTitle":"","collectionId":-1,"tmdbId":489931},{"name":"Dogma","year":1999,"posterUrl":"/library/metadata/726/thumb/1599308092","imdbId":"","language":"en","overview":"The latest battle in the eternal war between Good and Evil has come to New Jersey in the late, late 20th Century. Angels, demons, apostles and prophets (of a sort) walk among the cynics and innocents of America and duke it out for the fate of humankind.","moviesInCollection":[],"ratingKey":726,"key":"/library/metadata/726","collectionTitle":"","collectionId":-1,"tmdbId":1832},{"name":"Irresistible","year":2020,"posterUrl":"/library/metadata/47484/thumb/1599309185","imdbId":"","language":"en","overview":"A Democratic political consultant helps a retired Marine colonel run for mayor in a small, conservative Wisconsin town.","moviesInCollection":[],"ratingKey":47484,"key":"/library/metadata/47484","collectionTitle":"","collectionId":-1,"tmdbId":595148},{"name":"Close Encounters of the Third Kind","year":1977,"posterUrl":"/library/metadata/527/thumb/1599308020","imdbId":"","language":"en","overview":"After an encounter with UFOs, a line worker feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.","moviesInCollection":[],"ratingKey":527,"key":"/library/metadata/527","collectionTitle":"","collectionId":-1,"tmdbId":840},{"name":"Our Nature","year":2018,"posterUrl":"/library/metadata/1674/thumb/1599308466","imdbId":"","language":"en","overview":"This unique Documentary was produced in 2 years in the most beautiful places on earth.","moviesInCollection":[],"ratingKey":1674,"key":"/library/metadata/1674","collectionTitle":"","collectionId":-1,"tmdbId":578537},{"name":"The Entitled","year":2011,"posterUrl":"/library/metadata/2437/thumb/1599308774","imdbId":"","language":"en","overview":"Without the security of the job he wants or the future he dreamed of, Paul Dynan plans the perfect crime to help his struggling family – abduct the socialite children of three wealthy men and collect a ransom of $3-million dollars. Over the course of one long night, Paul and his accomplices hold the rich kids hostage awaiting the ransom with little idea of the secrets that will surface between the fathers when they are forced to choose between their children and their money.","moviesInCollection":[],"ratingKey":2437,"key":"/library/metadata/2437","collectionTitle":"","collectionId":-1,"tmdbId":73818},{"name":"Ultraviolet","year":2006,"posterUrl":"/library/metadata/3034/thumb/1599309008","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3034,"key":"/library/metadata/3034","collectionTitle":"","collectionId":-1,"tmdbId":9920},{"name":"Dead Man Down","year":2013,"posterUrl":"/library/metadata/654/thumb/1599308064","imdbId":"","language":"en","overview":"In New York City, a crime lord's right-hand man is seduced by a woman seeking retribution.","moviesInCollection":[],"ratingKey":654,"key":"/library/metadata/654","collectionTitle":"","collectionId":-1,"tmdbId":102362},{"name":"Backdraft 2","year":2019,"posterUrl":"/library/metadata/261/thumb/1599307923","imdbId":"","language":"en","overview":"Years after the original Backdraft, Sean, son of the late Steve \"Bull\" McCaffrey, is assigned to investigate a deadly fire only to realize it is something much more sinister.","moviesInCollection":[],"ratingKey":261,"key":"/library/metadata/261","collectionTitle":"","collectionId":-1,"tmdbId":587808},{"name":"Hellraiser Judgment","year":2018,"posterUrl":"/library/metadata/1098/thumb/1599308231","imdbId":"","language":"en","overview":"Detectives Sean and David Carter are on the case to find a gruesome serial killer terrorizing the city. Joining forces with Detective Christine Egerton, they dig deeper into a spiraling maze of horror that may not be of this world.","moviesInCollection":[],"ratingKey":1098,"key":"/library/metadata/1098","collectionTitle":"","collectionId":-1,"tmdbId":444149},{"name":"The Furies","year":2019,"posterUrl":"/library/metadata/27780/thumb/1599309070","imdbId":"","language":"en","overview":"A gripping female-driven horror film where a young woman faces her darkest fears with seven other unwilling participants in a deadly game. A game that can only have one winner. The film burrows into universal themes of survival, revenge and redemption, and reveals the darkness lurking within us all.","moviesInCollection":[],"ratingKey":27780,"key":"/library/metadata/27780","collectionTitle":"","collectionId":-1,"tmdbId":528091},{"name":"Million Dollar Arm","year":2014,"posterUrl":"/library/metadata/1508/thumb/1599308392","imdbId":"","language":"en","overview":"In a last-ditch effort to save his career, sports agent JB Bernstein (Jon Hamm) dreams up a wild game plan to find Major League Baseball’s next great pitcher from a pool of cricket players in India. He soon discovers two young men who can throw a fastball but know nothing about the game of baseball. Or America. It’s an incredible and touching journey that will change them all — especially JB, who learns valuable lessons about teamwork, commitment and family.","moviesInCollection":[],"ratingKey":1508,"key":"/library/metadata/1508","collectionTitle":"","collectionId":-1,"tmdbId":198185},{"name":"The Human Centipede 3 (Final Sequence)","year":2015,"posterUrl":"/library/metadata/2557/thumb/1599308820","imdbId":"","language":"en","overview":"Taking inspiration from The Human Centipede films, the warden of a notorious and troubled prison looks to create a 500-person human centipede as a solution to his problems.","moviesInCollection":[],"ratingKey":2557,"key":"/library/metadata/2557","collectionTitle":"","collectionId":-1,"tmdbId":94365},{"name":"Tremors 4 The Legend Begins","year":2004,"posterUrl":"/library/metadata/2996/thumb/1599308996","imdbId":"","language":"en","overview":"This prequel of the bone-chilling Tremors begins in the town of Rejection, Nev., in 1889, where 17 men die under mysterious circumstances. Spooked by recent events, the miners who populate the town leave in droves until there's nothing left but a shell of a community. It's up to the remaining residents to get to the bottom of the deaths -- but they must do so before they, too, are eradicated off the face of the planet.","moviesInCollection":[],"ratingKey":2996,"key":"/library/metadata/2996","collectionTitle":"","collectionId":-1,"tmdbId":10891},{"name":"Dumbo","year":1941,"posterUrl":"/library/metadata/795/thumb/1599308115","imdbId":"","language":"en","overview":"Dumbo is a baby elephant born with over-sized ears and a supreme lack of confidence. But thanks to his even more diminutive buddy Timothy the Mouse, the pint-sized pachyderm learns to surmount all obstacles.","moviesInCollection":[],"ratingKey":795,"key":"/library/metadata/795","collectionTitle":"","collectionId":-1,"tmdbId":11360},{"name":"The Shed","year":2019,"posterUrl":"/library/metadata/2813/thumb/1599308929","imdbId":"","language":"en","overview":"The story of Stan, an orphaned teenager stuck living with his abusive grandfather and tasked with routinely protecting his best friend from high school bullies. When Stan discovers a murderous creature has taken refuge inside the tool shed in his backyard, he tries to secretly battle the demon alone until his bullied friend discovers the creature and has a far more sinister plan in mind.","moviesInCollection":[],"ratingKey":2813,"key":"/library/metadata/2813","collectionTitle":"","collectionId":-1,"tmdbId":551994},{"name":"Phenomenon","year":1996,"posterUrl":"/library/metadata/1735/thumb/1599308493","imdbId":"","language":"en","overview":"An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.","moviesInCollection":[],"ratingKey":1735,"key":"/library/metadata/1735","collectionTitle":"","collectionId":-1,"tmdbId":9294},{"name":"A Rainy Day in New York","year":2019,"posterUrl":"/library/metadata/90/thumb/1599307858","imdbId":"","language":"en","overview":"Two young people arrive in New York to spend a weekend, but once they arrive they're met with bad weather and a series of adventures.","moviesInCollection":[],"ratingKey":90,"key":"/library/metadata/90","collectionTitle":"","collectionId":-1,"tmdbId":475303},{"name":"Cars","year":2006,"posterUrl":"/library/metadata/476/thumb/1599308002","imdbId":"","language":"en","overview":"Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters.","moviesInCollection":[],"ratingKey":476,"key":"/library/metadata/476","collectionTitle":"","collectionId":-1,"tmdbId":920},{"name":"The Great Battle","year":2019,"posterUrl":"/library/metadata/2506/thumb/1599308801","imdbId":"","language":"en","overview":"Kingdom of Goguryeo, ancient Korea, 645. The ruthless Emperor Taizong of Tang invades the country and leads his armies towards the capital, achieving one victory after another, but on his way is the stronghold of Ansi, protected by General Yang Man-chu, who will do everything possible to stop the invasion, even if his troops are outnumbered by thousands of enemies.","moviesInCollection":[],"ratingKey":2506,"key":"/library/metadata/2506","collectionTitle":"","collectionId":-1,"tmdbId":535389},{"name":"The Meg","year":2018,"posterUrl":"/library/metadata/2682/thumb/1599308870","imdbId":"","language":"en","overview":"A deep sea submersible pilot revisits his past fears in the Mariana Trench, and accidentally unleashes the seventy foot ancestor of the Great White Shark believed to be extinct.","moviesInCollection":[],"ratingKey":2682,"key":"/library/metadata/2682","collectionTitle":"","collectionId":-1,"tmdbId":345940},{"name":"The Rundown","year":2003,"posterUrl":"/library/metadata/2791/thumb/1599308920","imdbId":"","language":"en","overview":"When Travis, the mouthy son of a criminal, disappears in the Amazon in search of a treasured artifact, his father sends in Beck, who becomes Travis's rival for the affections of Mariana, a mysterious Brazilian woman. With his steely disposition, Beck is a man of few words -- but it takes him all the discipline he can muster to work with Travis to nab a tyrant who's after the same treasure.","moviesInCollection":[],"ratingKey":2791,"key":"/library/metadata/2791","collectionTitle":"","collectionId":-1,"tmdbId":10159},{"name":"Batman vs. Teenage Mutant Ninja Turtles","year":2019,"posterUrl":"/library/metadata/307/thumb/1599307939","imdbId":"","language":"en","overview":"Batman, Batgirl and Robin forge an alliance with the Teenage Mutant Ninja Turtles to fight against the Turtles' sworn enemy, The Shredder, who has apparently teamed up with Ra's Al Ghul and The League of Assassins.","moviesInCollection":[],"ratingKey":307,"key":"/library/metadata/307","collectionTitle":"","collectionId":-1,"tmdbId":581997},{"name":"The A-Team","year":2010,"posterUrl":"/library/metadata/2276/thumb/1599308716","imdbId":"","language":"en","overview":"A group of Iraq War veterans goes on the run from U.S. military forces while they try to clear their names after being framed for a crime they didn't commit. Along the way, Col. Hannibal Smith, Capt. H.M. ‘Howling Mad’ Murdock , Sgt. Bosco ‘B.A.’ Baracus, and Lt. Templeton ‘Faceman’ Peck help out various people they encounter.","moviesInCollection":[],"ratingKey":2276,"key":"/library/metadata/2276","collectionTitle":"","collectionId":-1,"tmdbId":34544},{"name":"Michael Clayton","year":2007,"posterUrl":"/library/metadata/1503/thumb/1599308390","imdbId":"","language":"en","overview":"A law firm brings in its 'fixer' to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.","moviesInCollection":[],"ratingKey":1503,"key":"/library/metadata/1503","collectionTitle":"","collectionId":-1,"tmdbId":4566},{"name":"mid90s","year":2019,"posterUrl":"/library/metadata/1504/thumb/1599308391","imdbId":"","language":"en","overview":"Stevie is a sweet 13-year-old about to explode. His mom is loving and attentive, but a little too forthcoming about her romantic life. His big brother is a taciturn and violent bully. So Stevie searches his working-class Los Angeles suburb for somewhere to belong. He finds it at the Motor Avenue skate shop.","moviesInCollection":[],"ratingKey":1504,"key":"/library/metadata/1504","collectionTitle":"","collectionId":-1,"tmdbId":437586},{"name":"Transformers Age of Extinction","year":2014,"posterUrl":"/library/metadata/2985/thumb/1599308992","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2985,"key":"/library/metadata/2985","collectionTitle":"","collectionId":-1,"tmdbId":91314},{"name":"Disturbing Behavior","year":1998,"posterUrl":"/library/metadata/48455/thumb/1601904194","imdbId":"","language":"en","overview":"Steve Clark is a newcomer in the town of Cradle Bay, and he quickly realizes that there's something odd about his high school classmates. The clique known as the \"Blue Ribbons\" are the eerie embodiment of academic excellence and clean living. But, like the rest of the town, they're a little too perfect. When Steve's rebellious friend Gavin mysteriously joins their ranks, Steve searches for the truth with fellow misfit Rachel.","moviesInCollection":[],"ratingKey":48455,"key":"/library/metadata/48455","collectionTitle":"","collectionId":-1,"tmdbId":9424},{"name":"The King of Staten Island","year":2020,"posterUrl":"/library/metadata/47353/thumb/1599309180","imdbId":"","language":"en","overview":"Scott has been a case of arrested development ever since his firefighter father died when he was seven. He’s now reached his mid-20s having achieved little, chasing a dream of becoming a tattoo artist that seems far out of reach. As his ambitious younger sister heads off to college, Scott is still living with his exhausted ER nurse mother and spends his days smoking weed, hanging with the guys — Oscar, Igor and Richie — and secretly hooking up with his childhood friend Kelsey. But when his mother starts dating a loudmouth firefighter named Ray, it sets off a chain of events that will force Scott to grapple with his grief and take his first tentative steps toward moving forward in life.","moviesInCollection":[],"ratingKey":47353,"key":"/library/metadata/47353","collectionTitle":"","collectionId":-1,"tmdbId":579583},{"name":"Satan's Little Helper","year":2004,"posterUrl":"/library/metadata/48789/thumb/1601905014","imdbId":"","language":"en","overview":"A naïve young boy unknowingly becomes the pawn of a serial killer.","moviesInCollection":[],"ratingKey":48789,"key":"/library/metadata/48789","collectionTitle":"","collectionId":-1,"tmdbId":9976},{"name":"Night of the Demons","year":2009,"posterUrl":"/library/metadata/48791/thumb/1601966923","imdbId":"","language":"en","overview":"Angela is throwing a decadent Halloween party at New Orleans' infamous Broussard Mansion. But after the police break up the festivities, Maddie and a few friends stay behind. Trapped inside the locked mansion gates, the remaining guests uncover a horrifying secret and soon fall victim to seven vicious, blood-thirsty demons.","moviesInCollection":[],"ratingKey":48791,"key":"/library/metadata/48791","collectionTitle":"","collectionId":-1,"tmdbId":27646},{"name":"Cats","year":2019,"posterUrl":"/library/metadata/488/thumb/1599308007","imdbId":"","language":"en","overview":"A tribe of cats called the Jellicles must decide yearly which one will ascend to the Heaviside Layer and come back to a new Jellicle life.","moviesInCollection":[],"ratingKey":488,"key":"/library/metadata/488","collectionTitle":"","collectionId":-1,"tmdbId":536869},{"name":"The Punisher","year":2004,"posterUrl":"/library/metadata/2766/thumb/1599308908","imdbId":"","language":"en","overview":"When undercover FBI agent Frank Castle's wife and son are slaughtered, he becomes 'the Punisher' -- a ruthless vigilante willing to go to any length to avenge his family.","moviesInCollection":[],"ratingKey":2766,"key":"/library/metadata/2766","collectionTitle":"","collectionId":-1,"tmdbId":7220},{"name":"Paranormal Activity","year":2007,"posterUrl":"/library/metadata/48460/thumb/1601944213","imdbId":"","language":"en","overview":"Soon after moving into a suburban tract home, Katie and Micah become increasingly disturbed by what appears to be a supernatural presence. Hoping to capture evidence of it on film, they set up video cameras in the house but are not prepared for the terrifying events that follow.","moviesInCollection":[],"ratingKey":48460,"key":"/library/metadata/48460","collectionTitle":"","collectionId":-1,"tmdbId":23827},{"name":"Riddick","year":2013,"posterUrl":"/library/metadata/1902/thumb/1599308563","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1902,"key":"/library/metadata/1902","collectionTitle":"","collectionId":-1,"tmdbId":87421},{"name":"Alita Battle Angel","year":2019,"posterUrl":"/library/metadata/157/thumb/1599307884","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":157,"key":"/library/metadata/157","collectionTitle":"","collectionId":-1,"tmdbId":399579},{"name":"EuroTrip","year":2004,"posterUrl":"/library/metadata/840/thumb/1599308130","imdbId":"","language":"en","overview":"When Scott learns that his longtime cyber-buddy from Berlin is a gorgeous young woman, he and his friends embark on a trip across Europe.","moviesInCollection":[],"ratingKey":840,"key":"/library/metadata/840","collectionTitle":"","collectionId":-1,"tmdbId":9352},{"name":"Bloodsport The Dark Kumite","year":1999,"posterUrl":"/library/metadata/389/thumb/1599307969","imdbId":"","language":"en","overview":"Agent John Keller goes undercover into the tough prison known as Fuego Penal to find out about the corpses of prisoners disappearing without a trace. There he gets involved in a dangerous tournament arranged by a man named Justin Caesar, where the prisoners are forced fight to death.","moviesInCollection":[],"ratingKey":389,"key":"/library/metadata/389","collectionTitle":"","collectionId":-1,"tmdbId":36693},{"name":"The Punisher","year":1989,"posterUrl":"/library/metadata/2765/thumb/1599308908","imdbId":"","language":"en","overview":"The avenging angel of Marvel Comics fame comes brilliantly to life in this searing action-adventure thriller! Dolph Lundgren stars as Frank Castle, a veteran cop who loses his entire family to a mafia car bomb. Only his ex-partner believes Castle survived the blast to become THE PUNISHER ... a shadowy, invincible fighter against evil who lives for total revenge on his mob enemies.","moviesInCollection":[],"ratingKey":2765,"key":"/library/metadata/2765","collectionTitle":"","collectionId":-1,"tmdbId":8867},{"name":"Pinocchio","year":1940,"posterUrl":"/library/metadata/1744/thumb/1599308496","imdbId":"","language":"en","overview":"Lonely toymaker Geppetto has his wishes answered when the Blue Fairy arrives to bring his wooden puppet Pinocchio to life. Before becoming a real boy, however, Pinocchio must prove he's worthy as he sets off on an adventure with his whistling sidekick and conscience, Jiminy Cricket.","moviesInCollection":[],"ratingKey":1744,"key":"/library/metadata/1744","collectionTitle":"","collectionId":-1,"tmdbId":10895},{"name":"Judy","year":2019,"posterUrl":"/library/metadata/1264/thumb/1599308294","imdbId":"","language":"en","overview":"Winter 1968 and showbiz legend Judy Garland arrives in Swinging London to perform a five-week sold-out run at The Talk of the Town. It is 30 years since she shot to global stardom in The Wizard of Oz, but if her voice has weakened, its dramatic intensity has only grown. As she prepares for the show, battles with management, charms musicians and reminisces with friends and adoring fans, her wit and warmth shine through. Even her dreams of love seem undimmed as she embarks on a whirlwind romance with Mickey Deans, her soon-to-be fifth husband.","moviesInCollection":[],"ratingKey":1264,"key":"/library/metadata/1264","collectionTitle":"","collectionId":-1,"tmdbId":491283},{"name":"Bullitt","year":1968,"posterUrl":"/library/metadata/441/thumb/1599307988","imdbId":"","language":"en","overview":"Senator Walter Chalmers is aiming to take down mob boss Pete Ross with the help of testimony from the criminal's hothead brother Johnny, who is in protective custody in San Francisco under the watch of police lieutenant Frank Bullitt. When a pair of mob hitmen enter the scene, Bullitt follows their trail through a maze of complications and double-crosses. This thriller includes one of the most famous car chases ever filmed.","moviesInCollection":[],"ratingKey":441,"key":"/library/metadata/441","collectionTitle":"","collectionId":-1,"tmdbId":916},{"name":"P.S. I Love You","year":2007,"posterUrl":"/library/metadata/1685/thumb/1599308470","imdbId":"","language":"en","overview":"A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.","moviesInCollection":[],"ratingKey":1685,"key":"/library/metadata/1685","collectionTitle":"","collectionId":-1,"tmdbId":6023},{"name":"Better Living Through Chemistry","year":2014,"posterUrl":"/library/metadata/338/thumb/1599307950","imdbId":"","language":"en","overview":"A straight-laced pharmacist's uneventful life spirals out of control when he starts an affair with a trophy wife customer who takes him on a joyride involving sex, drugs and possibly murder.","moviesInCollection":[],"ratingKey":338,"key":"/library/metadata/338","collectionTitle":"","collectionId":-1,"tmdbId":157099},{"name":"Vacation","year":2015,"posterUrl":"/library/metadata/3069/thumb/1599309021","imdbId":"","language":"en","overview":"Hoping to bring his family closer together and to recreate his childhood vacation for his own kids, a grown up Rusty Griswold takes his wife and their two sons on a cross-country road trip to the coolest theme park in America, Walley World. Needless to say, things don't go quite as planned.","moviesInCollection":[],"ratingKey":3069,"key":"/library/metadata/3069","collectionTitle":"","collectionId":-1,"tmdbId":296099},{"name":"Wolf Warrior","year":2015,"posterUrl":"/library/metadata/3159/thumb/1599309051","imdbId":"","language":"en","overview":"A Chinese special force soldier with extraordinary marksmanship is confronted by a group of deadly foreign mercenaries who are hired to assassinate him by a vicious drug lord.","moviesInCollection":[],"ratingKey":3159,"key":"/library/metadata/3159","collectionTitle":"","collectionId":-1,"tmdbId":335462},{"name":"Star Wars The Rise of Skywalker","year":2019,"posterUrl":"/library/metadata/2151/thumb/1599308672","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2151,"key":"/library/metadata/2151","collectionTitle":"","collectionId":-1,"tmdbId":181812},{"name":"Daddy's Home","year":2015,"posterUrl":"/library/metadata/624/thumb/1599308054","imdbId":"","language":"en","overview":"The story of a mild-mannered radio executive (Ferrell) who strives to become the best stepdad ever to his wife's two children, but complications ensue when their freewheeling, freeloading real father arrives, forcing stepdad to compete for the affection of the kids.","moviesInCollection":[],"ratingKey":624,"key":"/library/metadata/624","collectionTitle":"","collectionId":-1,"tmdbId":274167},{"name":"Platoon Leader","year":1988,"posterUrl":"/library/metadata/1758/thumb/1599308501","imdbId":"","language":"en","overview":"West Point graduate lieutenant Jeff Knight meets cynicism when taking command of sergeant Michael McNamara's tour veterans platoon in a Vietnamese trench camp. Unlike his predecessor, who hid till the end of his tour, Jeff takes charge, experiences the manual doesn't allow coping with all realities and gets wounded. He returns, now fully respect by men and superiors. Besides the Vietcong, the platoon wrestles with the inscrutable villagers, which the G.I.'s officially protect, but also fear as some collaborate with them, other covertly with the Cong, either way subject to bloody reprisals.","moviesInCollection":[],"ratingKey":1758,"key":"/library/metadata/1758","collectionTitle":"","collectionId":-1,"tmdbId":48457},{"name":"Dante's Inferno An Animated Epic","year":2010,"posterUrl":"/library/metadata/632/thumb/1599308056","imdbId":"","language":"en","overview":"Dante journeys through the nine circles of Hell -- limbo, lust, gluttony, greed, anger, heresy, violence, fraud and treachery -- in search of his true love, Beatrice. An animated version of the video game of the same name.","moviesInCollection":[],"ratingKey":632,"key":"/library/metadata/632","collectionTitle":"","collectionId":-1,"tmdbId":31967},{"name":"Shot Caller","year":2017,"posterUrl":"/library/metadata/2025/thumb/1599308616","imdbId":"","language":"en","overview":"A newly-released prison gangster is forced by the leaders of his gang to orchestrate a major crime with a brutal rival gang on the streets of Southern California.","moviesInCollection":[],"ratingKey":2025,"key":"/library/metadata/2025","collectionTitle":"","collectionId":-1,"tmdbId":339692},{"name":"Hideaway","year":1995,"posterUrl":"/library/metadata/1107/thumb/1599308235","imdbId":"","language":"en","overview":"Hatch Harrison, his wife, Lindsey, and their daughter, Regina, are enjoying a pleasant drive when a car crash leaves wife and daughter unharmed but kills Hatch. However, an ingenious doctor, Jonas Nyebern, manages to revive Hatch after two lifeless hours. But Hatch does not come back unchanged. He begins to suffer horrible visions of murder -- only to find out the visions are the sights of a serial killer.","moviesInCollection":[],"ratingKey":1107,"key":"/library/metadata/1107","collectionTitle":"","collectionId":-1,"tmdbId":27303},{"name":"The NeverEnding Story III","year":1996,"posterUrl":"/library/metadata/2713/thumb/1599308884","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2713,"key":"/library/metadata/2713","collectionTitle":"","collectionId":-1,"tmdbId":27793},{"name":"Blazing Saddles","year":1974,"posterUrl":"/library/metadata/379/thumb/1599307966","imdbId":"","language":"en","overview":"A town—where everyone seems to be named Johnson—stands in the way of the railroad. In order to grab their land, robber baron Hedley Lemar sends his henchmen to make life in the town unbearable. After the sheriff is killed, the town demands a new sheriff from the Governor, so Hedley convinces him to send the town the first black sheriff in the west.","moviesInCollection":[],"ratingKey":379,"key":"/library/metadata/379","collectionTitle":"","collectionId":-1,"tmdbId":11072},{"name":"Dracula Untold","year":2014,"posterUrl":"/library/metadata/748/thumb/1599308099","imdbId":"","language":"en","overview":"Vlad Tepes is a great hero, but when he learns the Sultan is preparing for battle and needs to form an army of 1,000 boys, he vows to find a way to protect his family. Vlad turns to dark forces in order to get the power to destroy his enemies and agrees to go from hero to monster as he's turned into the mythological vampire, Dracula.","moviesInCollection":[],"ratingKey":748,"key":"/library/metadata/748","collectionTitle":"","collectionId":-1,"tmdbId":49017},{"name":"The Public","year":2018,"posterUrl":"/library/metadata/2764/thumb/1599308907","imdbId":"","language":"en","overview":"An act of civil disobedience turns into a standoff with police when homeless people in Cincinnati take over the public library to seek shelter from the bitter cold.","moviesInCollection":[],"ratingKey":2764,"key":"/library/metadata/2764","collectionTitle":"","collectionId":-1,"tmdbId":331986},{"name":"A Madea Christmas","year":2011,"posterUrl":"/library/metadata/70/thumb/1599307850","imdbId":"","language":"en","overview":"When a family meets for Christmas at their posh Cape Cod estate, family arguments and secrets cause a stir. It takes a real down-to-earth family - like Aunt Bam and the almighty Madea - to save this holiday.","moviesInCollection":[],"ratingKey":70,"key":"/library/metadata/70","collectionTitle":"","collectionId":-1,"tmdbId":239650},{"name":"Buster's Mal Heart","year":2017,"posterUrl":"/library/metadata/449/thumb/1599307992","imdbId":"","language":"en","overview":"An eccentric mountain man on the run from the local sheriff recalls the mysterious events that brought him to his present fugitive state.","moviesInCollection":[],"ratingKey":449,"key":"/library/metadata/449","collectionTitle":"","collectionId":-1,"tmdbId":367147},{"name":"The Irishman","year":2019,"posterUrl":"/library/metadata/2590/thumb/1599308832","imdbId":"","language":"en","overview":"Pennsylvania, 1956. Frank Sheeran, a war veteran of Irish origin who works as a truck driver, accidentally meets mobster Russell Bufalino. Once Frank becomes his trusted man, Bufalino sends him to Chicago with the task of helping Jimmy Hoffa, a powerful union leader related to organized crime, with whom Frank will maintain a close friendship for nearly twenty years.","moviesInCollection":[],"ratingKey":2590,"key":"/library/metadata/2590","collectionTitle":"","collectionId":-1,"tmdbId":398978},{"name":"The Core","year":2003,"posterUrl":"/library/metadata/2376/thumb/1599308750","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2376,"key":"/library/metadata/2376","collectionTitle":"","collectionId":-1,"tmdbId":9341},{"name":"Full Metal Jacket","year":1987,"posterUrl":"/library/metadata/958/thumb/1599308177","imdbId":"","language":"en","overview":"A pragmatic U.S. Marine observes the dehumanizing effects the U.S.-Vietnam War has on his fellow recruits from their brutal boot camp training to the bloody street fighting in Hue.","moviesInCollection":[],"ratingKey":958,"key":"/library/metadata/958","collectionTitle":"","collectionId":-1,"tmdbId":600},{"name":"Life","year":2017,"posterUrl":"/library/metadata/1384/thumb/1599308336","imdbId":"","language":"en","overview":"The six-member crew of the International Space Station is tasked with studying a sample from Mars that may be the first proof of extra-terrestrial life, which proves more intelligent than ever expected.","moviesInCollection":[],"ratingKey":1384,"key":"/library/metadata/1384","collectionTitle":"","collectionId":-1,"tmdbId":395992},{"name":"The Departed","year":2006,"posterUrl":"/library/metadata/2411/thumb/1599308764","imdbId":"","language":"en","overview":"To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.","moviesInCollection":[],"ratingKey":2411,"key":"/library/metadata/2411","collectionTitle":"","collectionId":-1,"tmdbId":1422},{"name":"The Hills Have Eyes","year":2006,"posterUrl":"/library/metadata/27844/thumb/1599309076","imdbId":"","language":"en","overview":"Based on Wes Craven's 1977 suspenseful cult classic, The Hills Have Eyes is the story of a family road trip that goes terrifyingly awry when the travelers become stranded in a government atomic zone. Miles from nowhere, the Carter family soon realizes the seemingly uninhabited wasteland is actually the breeding ground of a blood-thirsty mutant family...and they are the prey.","moviesInCollection":[],"ratingKey":27844,"key":"/library/metadata/27844","collectionTitle":"","collectionId":-1,"tmdbId":9792},{"name":"My Pretend Girlfriend","year":2014,"posterUrl":"/library/metadata/1578/thumb/1599308423","imdbId":"","language":"en","overview":"Noboru is a high school student who isn't popular at all. He looks up to senior student Miyazaki who is one of the most popular guys at school. Miyazaki has two girlfriends: Momose and Tetsuko. Momose and Tetsuko have totally different personalities. Momose is bright and Tetsuko is a popular student from a wealthy family. One day, Miyazaki is caught with Momose. To keep his relationship with Tetsuko, Miyazaki asks Noboru and Momose to pretend they are dating. They both agree due to their affections for Miyazaki. Noboru and Momose begin to act like a couple in front others and soon Noboru begins to develop feelings for Momose, who is still in love with Miyazaki.","moviesInCollection":[],"ratingKey":1578,"key":"/library/metadata/1578","collectionTitle":"","collectionId":-1,"tmdbId":303224},{"name":"Arthur","year":2011,"posterUrl":"/library/metadata/225/thumb/1599307910","imdbId":"","language":"en","overview":"A drunken playboy stands to lose a wealthy inheritance when he falls for a woman, his family doesn't like.","moviesInCollection":[],"ratingKey":225,"key":"/library/metadata/225","collectionTitle":"","collectionId":-1,"tmdbId":49012},{"name":"The Da Vinci Code","year":2006,"posterUrl":"/library/metadata/2387/thumb/1599308755","imdbId":"","language":"en","overview":"A murder in Paris’ Louvre Museum and cryptic clues in some of Leonardo da Vinci’s most famous paintings lead to the discovery of a religious mystery. For 2,000 years a secret society closely guards information that — should it come to light — could rock the very foundations of Christianity.","moviesInCollection":[],"ratingKey":2387,"key":"/library/metadata/2387","collectionTitle":"","collectionId":-1,"tmdbId":591},{"name":"Risky Business","year":1983,"posterUrl":"/library/metadata/1912/thumb/1599308568","imdbId":"","language":"en","overview":"Meet Joel Goodson, an industrious, college-bound 17-year-old and a responsible, trustworthy son. However, when his parents go away and leave him home alone in the wealthy Chicago suburbs with the Porsche at his disposal he quickly decides he has been good for too long and it is time to enjoy himself. After an unfortunate incident with the Porsche Joel must raise some cash, in a risky way.","moviesInCollection":[],"ratingKey":1912,"key":"/library/metadata/1912","collectionTitle":"","collectionId":-1,"tmdbId":9346},{"name":"Where'd You Go, Bernadette","year":2019,"posterUrl":"/library/metadata/3132/thumb/1599309042","imdbId":"","language":"en","overview":"When architect-turned-recluse Bernadette Fox goes missing prior to a family trip to Antarctica, her 15-year-old daughter Bee goes on a quest with Bernadette's husband to find her.","moviesInCollection":[],"ratingKey":3132,"key":"/library/metadata/3132","collectionTitle":"","collectionId":-1,"tmdbId":405177},{"name":"Dirty Grandpa","year":2016,"posterUrl":"/library/metadata/711/thumb/1599308085","imdbId":"","language":"en","overview":"Jason Kelly is one week away from marrying his boss's uber-controlling daughter, putting him on the fast track for a partnership at the law firm. However, when the straight-laced Jason is tricked into driving his foul-mouthed grandfather, Dick, to Daytona for spring break, his pending nuptials are suddenly in jeopardy. Between riotous frat parties, bar fights, and an epic night of karaoke, Dick is on a quest to live his life to the fullest and bring Jason along for the ride.","moviesInCollection":[],"ratingKey":711,"key":"/library/metadata/711","collectionTitle":"","collectionId":-1,"tmdbId":291870},{"name":"The Great Escape","year":1963,"posterUrl":"/library/metadata/2509/thumb/1599308802","imdbId":"","language":"en","overview":"The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocate them to a high-security 'escape-proof' camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.","moviesInCollection":[],"ratingKey":2509,"key":"/library/metadata/2509","collectionTitle":"","collectionId":-1,"tmdbId":5925},{"name":"Isle of Dogs","year":2018,"posterUrl":"/library/metadata/1212/thumb/1599308274","imdbId":"","language":"en","overview":"In the future, an outbreak of canine flu leads the mayor of a Japanese city to banish all dogs to an island that's a garbage dump. The outcasts must soon embark on an epic journey when a 12-year-old boy arrives on the island to find his beloved pet.","moviesInCollection":[],"ratingKey":1212,"key":"/library/metadata/1212","collectionTitle":"","collectionId":-1,"tmdbId":399174},{"name":"Short Circuit","year":1986,"posterUrl":"/library/metadata/2024/thumb/1599308615","imdbId":"","language":"en","overview":"After a lightning bolt zaps a robot named Number 5, the lovable machine starts to think he's human and escapes the lab. Hot on his trail is his designer, Newton, who hopes to get to Number 5 before the military does. In the meantime, a spunky animal lover mistakes the robot for an alien and takes him in, teaching her new guest about life on Earth.","moviesInCollection":[],"ratingKey":2024,"key":"/library/metadata/2024","collectionTitle":"","collectionId":-1,"tmdbId":2605},{"name":"Berlin, I Love You","year":2019,"posterUrl":"/library/metadata/336/thumb/1599307949","imdbId":"","language":"en","overview":"An anthology feature of 10 stories of romance set in the German capital.","moviesInCollection":[],"ratingKey":336,"key":"/library/metadata/336","collectionTitle":"","collectionId":-1,"tmdbId":401686},{"name":"A Most Wanted Man","year":2014,"posterUrl":"/library/metadata/78/thumb/1599307853","imdbId":"","language":"en","overview":"A Chechen Muslim illegally immigrates to Hamburg and becomes a person of interest for a covert government team which tracks the movements of potential terrorists.","moviesInCollection":[],"ratingKey":78,"key":"/library/metadata/78","collectionTitle":"","collectionId":-1,"tmdbId":157849},{"name":"Batman vs. Robin","year":2015,"posterUrl":"/library/metadata/306/thumb/1599307938","imdbId":"","language":"en","overview":"Damian Wayne is having a hard time coping with his father's \"no killing\" rule. Meanwhile, Gotham is going through hell with threats such as the insane Dollmaker, and the secretive Court of Owls.","moviesInCollection":[],"ratingKey":306,"key":"/library/metadata/306","collectionTitle":"","collectionId":-1,"tmdbId":321528},{"name":"Batman and Harley Quinn","year":2017,"posterUrl":"/library/metadata/286/thumb/1599307932","imdbId":"","language":"en","overview":"Batman and Nightwing are forced to team with the Joker's sometimes-girlfriend Harley Quinn to stop a global threat brought about by Poison Ivy and Jason Woodrue, the Floronic Man.","moviesInCollection":[],"ratingKey":286,"key":"/library/metadata/286","collectionTitle":"","collectionId":-1,"tmdbId":408648},{"name":"Before the Fire","year":2020,"posterUrl":"/library/metadata/48435/thumb/1601899688","imdbId":"","language":"en","overview":"Deep in the throes of a global pandemic, up and coming TV star, Ava Boone, is forced to flee the mounting chaos in Los Angeles and return to her rural hometown. But as she struggles to acclimate to a way of life she left behind long ago, her homecoming attracts a dangerous figure from her past – threatening both her and the family that serves as her only sanctuary.","moviesInCollection":[],"ratingKey":48435,"key":"/library/metadata/48435","collectionTitle":"","collectionId":-1,"tmdbId":671145},{"name":"The Hummingbird Project","year":2019,"posterUrl":"/library/metadata/2559/thumb/1599308820","imdbId":"","language":"en","overview":"A pair of high-frequency traders go up against their old boss in an effort to make millions in a fiber-optic cable deal.","moviesInCollection":[],"ratingKey":2559,"key":"/library/metadata/2559","collectionTitle":"","collectionId":-1,"tmdbId":489243},{"name":"House of Purgatory","year":2016,"posterUrl":"/library/metadata/1137/thumb/1599308246","imdbId":"","language":"en","overview":"Four teenagers go looking for a legendary haunted house that gives you money back for every floor you can complete. Once finding it, they realize the house is much more terrifying than a normal Halloween attraction - the house knows each of their secrets and one by one uses them against the teens.","moviesInCollection":[],"ratingKey":1137,"key":"/library/metadata/1137","collectionTitle":"","collectionId":-1,"tmdbId":289559},{"name":"The Flintstones","year":1994,"posterUrl":"/library/metadata/2469/thumb/1599308787","imdbId":"","language":"en","overview":"Modern Stone Age family the Flintstones hit the big screen in this live-action version of the classic cartoon. Fred helps Barney adopt a child. Barney sees an opportunity to repay him when Slate Mining tests its employees to find a new executive. But no good deed goes unpunished.","moviesInCollection":[],"ratingKey":2469,"key":"/library/metadata/2469","collectionTitle":"","collectionId":-1,"tmdbId":888},{"name":"Frankenstein Must Be Destroyed","year":1970,"posterUrl":"/library/metadata/937/thumb/1599308169","imdbId":"","language":"en","overview":"Blackmailing a young couple to assist with his horrific experiments the Baron, desperate for vital medical data, abducts a man from an insane asylum. On route the abductee dies and the Baron and his assistant transplant his brain into a corpse. The creature is tormented by a trapped soul in an alien shell and, after a visit to his wife who violently rejects his monstrous form, the creature wreaks his revenge on the perpetrator of his misery: Baron Frankenstein.","moviesInCollection":[],"ratingKey":937,"key":"/library/metadata/937","collectionTitle":"","collectionId":-1,"tmdbId":3075},{"name":"Christine","year":2016,"posterUrl":"/library/metadata/509/thumb/1599308014","imdbId":"","language":"en","overview":"The story of Christine Chubbuck, a 1970s TV reporter struggling with depression and professional frustrations as she tries to advance her career.","moviesInCollection":[],"ratingKey":509,"key":"/library/metadata/509","collectionTitle":"","collectionId":-1,"tmdbId":339405},{"name":"Snowmageddon","year":2011,"posterUrl":"/library/metadata/2079/thumb/1599308640","imdbId":"","language":"en","overview":"A seemingly-harmless snow globe unleashes a devastating winter storm on a peaceful mountainside community, prompting one family on a race to save their town from certain destruction. As night falls on Christmas Eve, the Miller family finds a gift-wrapped snow globe just outside their door. Inside is an exact replica of their town - right down to the smallest detail. But this isn't your typical holiday decoration, because every time it's shaken, a blank of snow a blizzard blasts through town. Later, when the buttons on the globe plunge the town into total chaos, the Miller's must find a way to stop the destruction once and for all.","moviesInCollection":[],"ratingKey":2079,"key":"/library/metadata/2079","collectionTitle":"","collectionId":-1,"tmdbId":81179},{"name":"The Peacemaker","year":1997,"posterUrl":"/library/metadata/2736/thumb/1599308894","imdbId":"","language":"en","overview":"When a train carrying atomic warheads mysteriously crashes in the former Soviet Union, a nuclear specialist discovers the accident is really part of a plot to cover up the theft of the weapons. Assigned to help her recover the missing bombs is a crack Special Forces Colonel.","moviesInCollection":[],"ratingKey":2736,"key":"/library/metadata/2736","collectionTitle":"","collectionId":-1,"tmdbId":6623},{"name":"Indiana Jones and the Temple of Doom","year":1984,"posterUrl":"/library/metadata/1189/thumb/1599308265","imdbId":"","language":"en","overview":"After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees – and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.","moviesInCollection":[],"ratingKey":1189,"key":"/library/metadata/1189","collectionTitle":"","collectionId":-1,"tmdbId":87},{"name":"Superman","year":1978,"posterUrl":"/library/metadata/2206/thumb/1599308692","imdbId":"","language":"en","overview":"Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane. Clark must summon his superhero alter-ego when the nefarious Lex Luthor launches a plan to take over the world.","moviesInCollection":[],"ratingKey":2206,"key":"/library/metadata/2206","collectionTitle":"","collectionId":-1,"tmdbId":1924},{"name":"Burnt","year":2015,"posterUrl":"/library/metadata/448/thumb/1599307991","imdbId":"","language":"en","overview":"Adam Jones is a Chef who destroyed his career with drugs and diva behavior. He cleans up and returns to London, determined to redeem himself by spearheading a top restaurant that can gain three Michelin stars.","moviesInCollection":[],"ratingKey":448,"key":"/library/metadata/448","collectionTitle":"","collectionId":-1,"tmdbId":295964},{"name":"Porky's 3 Revenge","year":1985,"posterUrl":"/library/metadata/1792/thumb/1599308515","imdbId":"","language":"en","overview":"As graduation nears for the class of 1955 at Angel Beach High, the gang once again faces off against their old enemy, Porky, who wants them to throw the school's championship basketball game since he has bet on the opposing team.","moviesInCollection":[],"ratingKey":1792,"key":"/library/metadata/1792","collectionTitle":"","collectionId":-1,"tmdbId":23919},{"name":"Misery","year":1990,"posterUrl":"/library/metadata/1516/thumb/1599308396","imdbId":"","language":"en","overview":"Novelist Paul Sheldon crashes his car on a snowy Colorado road. He is found by Annie Wilkes, the \"number one fan\" of Paul's heroine Misery Chastaine. Annie is also somewhat unstable, and Paul finds himself crippled, drugged and at her mercy.","moviesInCollection":[],"ratingKey":1516,"key":"/library/metadata/1516","collectionTitle":"","collectionId":-1,"tmdbId":1700},{"name":"Dirty Rotten Scoundrels","year":1988,"posterUrl":"/library/metadata/713/thumb/1599308086","imdbId":"","language":"en","overview":"Two con men try to settle their rivalry by betting on who can be the first to swindle a young American heiress out of $50,000.","moviesInCollection":[],"ratingKey":713,"key":"/library/metadata/713","collectionTitle":"","collectionId":-1,"tmdbId":10141},{"name":"The Thompsons","year":2012,"posterUrl":"/library/metadata/2862/thumb/1599308949","imdbId":"","language":"en","overview":"On the run with the law on their trail, America's most anguished vampire family heads to England to find an ancient vampire clan. What they find instead could tear their family, and their throats, apart forever.","moviesInCollection":[],"ratingKey":2862,"key":"/library/metadata/2862","collectionTitle":"","collectionId":-1,"tmdbId":128841},{"name":"Those Magnificent Men in Their Flying Machines or How I Flew from London to Paris in 25 hours 11 minutes","year":1965,"posterUrl":"/library/metadata/2930/thumb/1599308974","imdbId":"","language":"en","overview":"Set in 1910. In order to boost circulation of his newspaper, Lord Rawnsley offers £10,000 to the first person who can fly across the English Channel.","moviesInCollection":[],"ratingKey":2930,"key":"/library/metadata/2930","collectionTitle":"","collectionId":-1,"tmdbId":10338},{"name":"American Pie Presents The Naked Mile","year":2006,"posterUrl":"/library/metadata/187/thumb/1599307896","imdbId":"","language":"en","overview":"The movie will shift its focus on Erik Stifler, the cousin of Matt and Steve, a youngster who is nothing like his wild relations. Peer pressure starts to turn him to live up to the legacy of the other Stiflers when he attends the Naked Mile, a naked run across the college campus. Things get worse when he finds that his cousin Dwight is the life of the party down at the campus","moviesInCollection":[],"ratingKey":187,"key":"/library/metadata/187","collectionTitle":"","collectionId":-1,"tmdbId":8275},{"name":"Brightburn","year":2019,"posterUrl":"/library/metadata/430/thumb/1599307984","imdbId":"","language":"en","overview":"What if a child from another world crash-landed on Earth, but instead of becoming a hero to mankind, he proved to be something far more sinister?","moviesInCollection":[],"ratingKey":430,"key":"/library/metadata/430","collectionTitle":"","collectionId":-1,"tmdbId":531309},{"name":"Conspiracy Theory","year":1997,"posterUrl":"/library/metadata/566/thumb/1599308035","imdbId":"","language":"en","overview":"A man obsessed with conspiracy theories becomes a target after one of his theories turns out to be true. Unfortunately, in order to save himself, he has to figure out which theory it is.","moviesInCollection":[],"ratingKey":566,"key":"/library/metadata/566","collectionTitle":"","collectionId":-1,"tmdbId":8834},{"name":"Goosebumps","year":2016,"posterUrl":"/library/metadata/1020/thumb/1599308201","imdbId":"","language":"en","overview":"After moving to a small town, Zach Cooper finds a silver lining when he meets next door neighbor Hannah, the daughter of bestselling Goosebumps series author R.L. Stine. When Zach unintentionally unleashes real monsters from their manuscripts and they begin to terrorize the town, it’s suddenly up to Stine, Zach and Hannah to get all of them back in the books where they belong.","moviesInCollection":[],"ratingKey":1020,"key":"/library/metadata/1020","collectionTitle":"","collectionId":-1,"tmdbId":257445},{"name":"The House Bunny","year":2008,"posterUrl":"/library/metadata/2552/thumb/1599308818","imdbId":"","language":"en","overview":"Shelley is living a carefree life until a rival gets her tossed out of the Playboy Mansion. With nowhere to go, fate delivers her to the sorority girls from Zeta Alpha Zeta. Unless they can sign a new pledge class, the seven socially clueless women will lose their house to the scheming girls of Phi Iota Mu. In order to accomplish their goal, they need Shelley to teach them the ways of makeup and men; at the same time, Shelley needs some of what the Zetas have - a sense of individuality. The combination leads all the girls to learn how to stop pretending and start being themselves.","moviesInCollection":[],"ratingKey":2552,"key":"/library/metadata/2552","collectionTitle":"","collectionId":-1,"tmdbId":12620},{"name":"It Follows","year":2014,"posterUrl":"/library/metadata/1216/thumb/1599308276","imdbId":"","language":"en","overview":"After carefree teenager Jay sleeps with her new boyfriend, Hugh, for the first time, she learns that she is the latest recipient of a fatal curse that is passed from victim to victim via sexual intercourse. Death, Jay learns, will creep inexorably toward her as either a friend or a stranger. Jay's friends don't believe her seemingly paranoid ravings, until they too begin to see the phantom assassins and band together to help her flee or defend herself.","moviesInCollection":[],"ratingKey":1216,"key":"/library/metadata/1216","collectionTitle":"","collectionId":-1,"tmdbId":270303},{"name":"Alien Resurrection","year":1997,"posterUrl":"/library/metadata/154/thumb/1599307882","imdbId":"","language":"en","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 … as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.","moviesInCollection":[],"ratingKey":154,"key":"/library/metadata/154","collectionTitle":"","collectionId":-1,"tmdbId":8078},{"name":"Borg vs McEnroe","year":2017,"posterUrl":"/library/metadata/406/thumb/1599307974","imdbId":"","language":"en","overview":"The Swedish Björn Borg and the American John McEnroe, the best tennis players in the world, maintain a legendary duel during the 1980 Wimbledon tournament.","moviesInCollection":[],"ratingKey":406,"key":"/library/metadata/406","collectionTitle":"","collectionId":-1,"tmdbId":397538},{"name":"Saw VI","year":2009,"posterUrl":"/library/metadata/41025/thumb/1599309118","imdbId":"","language":"en","overview":"Special Agent Strahm is dead, and Detective Hoffman has emerged as the unchallenged successor to Jigsaw's legacy. However, when the FBI draws closer to Hoffman, he is forced to set a game into motion, and Jigsaw's grand scheme is finally understood.","moviesInCollection":[],"ratingKey":41025,"key":"/library/metadata/41025","collectionTitle":"","collectionId":-1,"tmdbId":22804},{"name":"The Blair Witch Project","year":1999,"posterUrl":"/library/metadata/2323/thumb/1599308732","imdbId":"","language":"en","overview":"In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary. A year later their footage was found.","moviesInCollection":[],"ratingKey":2323,"key":"/library/metadata/2323","collectionTitle":"","collectionId":-1,"tmdbId":2667},{"name":"Enemy at the Gates","year":2001,"posterUrl":"/library/metadata/823/thumb/1599308124","imdbId":"","language":"en","overview":"A Russian and a German sniper play a game of cat-and-mouse during the Battle of Stalingrad in WWII.","moviesInCollection":[],"ratingKey":823,"key":"/library/metadata/823","collectionTitle":"","collectionId":-1,"tmdbId":853},{"name":"Police Academy 4 Citizens on Patrol","year":1987,"posterUrl":"/library/metadata/1781/thumb/1599308511","imdbId":"","language":"en","overview":"A new batch of recruits arrives at Police Academy, this time a group of civilian volunteers who have joined Commandant Lassard's new Citizens on Patrol program. Although the community relations project has strong governmental support, a disgusted Captain Harris is determined to see it fail.","moviesInCollection":[],"ratingKey":1781,"key":"/library/metadata/1781","collectionTitle":"","collectionId":-1,"tmdbId":10587},{"name":"For Your Eyes Only","year":1981,"posterUrl":"/library/metadata/927/thumb/1599308163","imdbId":"","language":"en","overview":"A British spy ship has sunk and on board was a hi-tech encryption device. James Bond is sent to find the device that holds British launching instructions before the enemy Soviets get to it first.","moviesInCollection":[],"ratingKey":927,"key":"/library/metadata/927","collectionTitle":"","collectionId":-1,"tmdbId":699},{"name":"Mayhem","year":2017,"posterUrl":"/library/metadata/1476/thumb/1599308377","imdbId":"","language":"en","overview":"A virus spreads through an office complex causing white collar workers to act out their worst impulses.","moviesInCollection":[],"ratingKey":1476,"key":"/library/metadata/1476","collectionTitle":"","collectionId":-1,"tmdbId":429733},{"name":"The Great Race","year":1965,"posterUrl":"/library/metadata/2515/thumb/1599308804","imdbId":"","language":"en","overview":"Professional daredevil and white-suited hero, The Great Leslie, convinces turn-of-the-century auto makers that a race from New York to Paris (westward across America, the Bering Straight and Russia) will help to promote automobile sales. Leslie's arch-rival, the mustached and black-attired Professor Fate vows to beat Leslie to the finish line in a car of Fate's own invention.","moviesInCollection":[],"ratingKey":2515,"key":"/library/metadata/2515","collectionTitle":"","collectionId":-1,"tmdbId":11575},{"name":"American Beauty","year":1999,"posterUrl":"/library/metadata/176/thumb/1599307890","imdbId":"","language":"en","overview":"Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.","moviesInCollection":[],"ratingKey":176,"key":"/library/metadata/176","collectionTitle":"","collectionId":-1,"tmdbId":14},{"name":"Mulan","year":1998,"posterUrl":"/library/metadata/1560/thumb/1599308416","imdbId":"","language":"en","overview":"A tomboyish girl disguises herself as a young man so she can fight with the Imperial Chinese Army against the invading Huns. With help from wise-cracking dragon Mushu, Mulan just might save her country -- and win the heart of handsome Captain Li Shang.","moviesInCollection":[],"ratingKey":1560,"key":"/library/metadata/1560","collectionTitle":"","collectionId":-1,"tmdbId":10674},{"name":"Cardboard Boxer","year":2016,"posterUrl":"/library/metadata/471/thumb/1599308001","imdbId":"","language":"en","overview":"Gentle and broken, a homeless man fights others on video for money but soon finds comfort in an unlikely friend and the lost diary of a young girl.","moviesInCollection":[],"ratingKey":471,"key":"/library/metadata/471","collectionTitle":"","collectionId":-1,"tmdbId":413452},{"name":"Star Wars Episode II - Attack of the Clones","year":2002,"posterUrl":"/library/metadata/2146/thumb/1599308670","imdbId":"","language":"en","overview":"Following an assassination attempt on Senator Padmé Amidala, Jedi Knights Anakin Skywalker and Obi-Wan Kenobi investigate a mysterious plot that could change the galaxy forever.","moviesInCollection":[],"ratingKey":2146,"key":"/library/metadata/2146","collectionTitle":"","collectionId":-1,"tmdbId":1894},{"name":"Trouble","year":2017,"posterUrl":"/library/metadata/3008/thumb/1599308999","imdbId":"","language":"en","overview":"A feuding brother and sister entangle the fate of an old friend.","moviesInCollection":[],"ratingKey":3008,"key":"/library/metadata/3008","collectionTitle":"","collectionId":-1,"tmdbId":456648},{"name":"Fantastic Beasts and Where to Find Them","year":2016,"posterUrl":"/library/metadata/862/thumb/1599308139","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":862,"key":"/library/metadata/862","collectionTitle":"","collectionId":-1,"tmdbId":259316},{"name":"DodgeBall A True Underdog Story","year":2004,"posterUrl":"/library/metadata/723/thumb/1599308090","imdbId":"","language":"en","overview":"When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.","moviesInCollection":[],"ratingKey":723,"key":"/library/metadata/723","collectionTitle":"","collectionId":-1,"tmdbId":9472},{"name":"Trading Places","year":1983,"posterUrl":"/library/metadata/2975/thumb/1599308988","imdbId":"","language":"en","overview":"A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.","moviesInCollection":[],"ratingKey":2975,"key":"/library/metadata/2975","collectionTitle":"","collectionId":-1,"tmdbId":1621},{"name":"Dumb and Dumberer When Harry Met Lloyd","year":2003,"posterUrl":"/library/metadata/794/thumb/1599308115","imdbId":"","language":"en","overview":"This wacky prequel to the 1994 blockbuster goes back to the lame-brained Harry and Lloyd's days as classmates at a Rhode Island high school, where the unprincipled principal puts the pair in remedial courses as part of a scheme to fleece the school.","moviesInCollection":[],"ratingKey":794,"key":"/library/metadata/794","collectionTitle":"","collectionId":-1,"tmdbId":10152},{"name":"Interlude In Prague","year":2017,"posterUrl":"/library/metadata/1201/thumb/1599308270","imdbId":"","language":"en","overview":"The incredible tale of Mozart's Prague years.","moviesInCollection":[],"ratingKey":1201,"key":"/library/metadata/1201","collectionTitle":"","collectionId":-1,"tmdbId":458759},{"name":"War Dogs","year":2016,"posterUrl":"/library/metadata/3103/thumb/1599309031","imdbId":"","language":"en","overview":"Based on the true story of two young men, David Packouz and Efraim Diveroli, who won a $300 million contract from the Pentagon to arm America's allies in Afghanistan.","moviesInCollection":[],"ratingKey":3103,"key":"/library/metadata/3103","collectionTitle":"","collectionId":-1,"tmdbId":308266},{"name":"Space Station 3D","year":2002,"posterUrl":"/library/metadata/2098/thumb/1599308648","imdbId":"","language":"en","overview":"Some 220 miles above Earth lies the International Space Station, a one-of-a-kind outer space laboratory that 16 nations came together to build. Get a behind-the-scenes look at the making of this extraordinary structure in this spectacular IMAX film. Viewers will blast off from Florida's Kennedy Space Center and the Baikonur Cosmodrome in Russia for this incredible journey -- IMAX's first-ever space film. Tom Cruise narrates.","moviesInCollection":[],"ratingKey":2098,"key":"/library/metadata/2098","collectionTitle":"","collectionId":-1,"tmdbId":18221},{"name":"Mulan","year":2020,"posterUrl":"/library/metadata/47969/thumb/1599353860","imdbId":"","language":"en","overview":"When the Emperor of China issues a decree that one man per family must serve in the Imperial Chinese Army to defend the country from Huns, Hua Mulan, the eldest daughter of an honored warrior, steps in to take the place of her ailing father. She is spirited, determined and quick on her feet. Disguised as a man by the name of Hua Jun, she is tested every step of the way and must harness her innermost strength and embrace her true potential.","moviesInCollection":[],"ratingKey":47969,"key":"/library/metadata/47969","collectionTitle":"","collectionId":-1,"tmdbId":337401},{"name":"Cult of Chucky","year":2017,"posterUrl":"/library/metadata/615/thumb/1599308051","imdbId":"","language":"en","overview":"Confined to an asylum for the criminally insane for the past four years, Nica Pierce is erroneously convinced that she, not Chucky, murdered her entire family. But when her psychiatrist introduces a new therapeutic “tool” to facilitate his patients’ group sessions — an all-too-familiar “Good Guy” doll with an innocently smiling face — a string of grisly deaths begins to plague the asylum, and Nica starts to wonder if maybe she isn’t crazy after all. Meanwhile, Andy Barclay, Chucky’s now all-grown-up nemesis from the first three Child’s Plays, races to Nica’s aid. But to save her he’ll have to get past Tiffany, Chucky’s long-ago bride, who will do anything, no matter how deadly or depraved, to help her beloved evil devilish doll.","moviesInCollection":[],"ratingKey":615,"key":"/library/metadata/615","collectionTitle":"","collectionId":-1,"tmdbId":393345},{"name":"The Dirt","year":2019,"posterUrl":"/library/metadata/2422/thumb/1599308768","imdbId":"","language":"en","overview":"The story of Mötley Crüe and their rise from the Sunset Strip club scene of the early 1980s to superstardom.","moviesInCollection":[],"ratingKey":2422,"key":"/library/metadata/2422","collectionTitle":"","collectionId":-1,"tmdbId":327331},{"name":"The Curious Case of Benjamin Button","year":2008,"posterUrl":"/library/metadata/2383/thumb/1599308753","imdbId":"","language":"en","overview":"Born under unusual circumstances, Benjamin Button springs into being as an elderly man in a New Orleans nursing home and ages in reverse. Twelve years after his birth, he meets Daisy, a child who flits in and out of his life as she grows up to be a dancer. Though he has all sorts of unusual adventures over the course of his life, it is his relationship with Daisy, and the hope that they will come together at the right time, that drives Benjamin forward.","moviesInCollection":[],"ratingKey":2383,"key":"/library/metadata/2383","collectionTitle":"","collectionId":-1,"tmdbId":4922},{"name":"Braveheart","year":1995,"posterUrl":"/library/metadata/416/thumb/1599307978","imdbId":"","language":"en","overview":"Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.","moviesInCollection":[],"ratingKey":416,"key":"/library/metadata/416","collectionTitle":"","collectionId":-1,"tmdbId":197},{"name":"Police Academy 3 Back in Training","year":1986,"posterUrl":"/library/metadata/1780/thumb/1599308510","imdbId":"","language":"en","overview":"When police funding is cut, the Governor announces he must close one of the academies. To make it fair, the two police academies must compete against each other to stay in operation. Mauser persuades two officers in Lassard's academy to better his odds, but things don't quite turn out as expected...","moviesInCollection":[],"ratingKey":1780,"key":"/library/metadata/1780","collectionTitle":"","collectionId":-1,"tmdbId":12118},{"name":"The Commuter","year":2018,"posterUrl":"/library/metadata/2368/thumb/1599308748","imdbId":"","language":"en","overview":"A businessman, on his daily commute home, gets unwittingly caught up in a criminal conspiracy that threatens not only his life but the lives of those around him.","moviesInCollection":[],"ratingKey":2368,"key":"/library/metadata/2368","collectionTitle":"","collectionId":-1,"tmdbId":399035},{"name":"Scooby-Doo! Return to Zombie Island","year":2019,"posterUrl":"/library/metadata/1985/thumb/1599308598","imdbId":"","language":"en","overview":"Scooby-Doo and his pals win an all-expense paid vacation and embark on a trip of a lifetime to a tropical paradise. Their destination however, turns out to be Zombie Island. As soon as they arrive, they realize the place looks strangely familiar and is reminiscent of a trip they took years ago, in which they became wrapped up in a mystery involving zombies. The gang soon learns that their trip to paradise comes with a price when the zombies re-emerge and attack their hotel. Will Scooby-Doo and the Mystery Inc. gang finally solve the mystery behind Zombie Island?","moviesInCollection":[],"ratingKey":1985,"key":"/library/metadata/1985","collectionTitle":"","collectionId":-1,"tmdbId":615774},{"name":"Thor The Dark World","year":2013,"posterUrl":"/library/metadata/2928/thumb/1599308973","imdbId":"","language":"en","overview":"Thor fights to restore order across the cosmos… 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.","moviesInCollection":[],"ratingKey":2928,"key":"/library/metadata/2928","collectionTitle":"","collectionId":-1,"tmdbId":76338},{"name":"The Ballad of Lefty Brown","year":2017,"posterUrl":"/library/metadata/2309/thumb/1599308727","imdbId":"","language":"en","overview":"Aging sidekick Lefty Brown has ridden with Eddie Johnson his entire life. But when a rustler kills Eddie, Lefty is forced from his partner’s shadow and must confront the ugly realities of frontier justice.","moviesInCollection":[],"ratingKey":2309,"key":"/library/metadata/2309","collectionTitle":"","collectionId":-1,"tmdbId":438457},{"name":"7500","year":2020,"posterUrl":"/library/metadata/43650/thumb/1599309143","imdbId":"","language":"en","overview":"A pilot's aircraft is hi-jacked by terrorists.","moviesInCollection":[],"ratingKey":43650,"key":"/library/metadata/43650","collectionTitle":"","collectionId":-1,"tmdbId":509585},{"name":"Mr. Turner","year":2014,"posterUrl":"/library/metadata/1556/thumb/1599308414","imdbId":"","language":"en","overview":"Eccentric British painter J.M.W. Turner lives his last 25 years with gusto and secretly becomes involved with a seaside landlady, while his faithful housekeeper bears an unrequited love for him.","moviesInCollection":[],"ratingKey":1556,"key":"/library/metadata/1556","collectionTitle":"","collectionId":-1,"tmdbId":245700},{"name":"Star Wars Despecialized Edition Remastered V2 7","year":1977,"posterUrl":"/library/metadata/39574/thumb/1599309085","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":39574,"key":"/library/metadata/39574","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"The Losers","year":2010,"posterUrl":"/library/metadata/2655/thumb/1599308859","imdbId":"","language":"en","overview":"A tale of double cross and revenge, centered upon the members of an elite U.S. Special Forces unit sent into the Bolivian jungle on a search and destroy mission. The team-Clay, Jensen, Roque, Pooch and Cougar -find themselves the target of a lethal betrayal instigated from inside by a powerful enemy known only as Max. Presumed dead, the group makes plans to even the score when they're joined by the mysterious Aisha, a beautiful operative with her own agenda. Working together, they must remain deep undercover while tracking the heavily-guarded Max, a ruthless man bent on embroiling the world in a new high-tech global war.","moviesInCollection":[],"ratingKey":2655,"key":"/library/metadata/2655","collectionTitle":"","collectionId":-1,"tmdbId":34813},{"name":"The Hunt for Red October","year":1990,"posterUrl":"/library/metadata/2568/thumb/1599308823","imdbId":"","language":"en","overview":"A new, technologically-superior Soviet sub, the Red October, is heading for the U.S. coast under the command of Captain Marko Ramius. The American government thinks Ramius is planning to attack. A lone CIA analyst has a different idea: he thinks Ramius is planning to defect, but he has only a few hours to find him and prove it — because the entire Russian naval and air commands are trying to find him, too.","moviesInCollection":[],"ratingKey":2568,"key":"/library/metadata/2568","collectionTitle":"","collectionId":-1,"tmdbId":1669},{"name":"The Last Samurai","year":2003,"posterUrl":"/library/metadata/2622/thumb/1599308844","imdbId":"","language":"en","overview":"Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare, which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.","moviesInCollection":[],"ratingKey":2622,"key":"/library/metadata/2622","collectionTitle":"","collectionId":-1,"tmdbId":616},{"name":"Madea's Witness Protection","year":2012,"posterUrl":"/library/metadata/1440/thumb/1599308360","imdbId":"","language":"en","overview":"A Wall Street investment banker who has been set up as the linchpin of his company's mob-backed Ponzi scheme is relocated with his family to Aunt Madea's southern home.","moviesInCollection":[],"ratingKey":1440,"key":"/library/metadata/1440","collectionTitle":"","collectionId":-1,"tmdbId":103370},{"name":"Hard Kill","year":2020,"posterUrl":"/library/metadata/48091/thumb/1599637052","imdbId":"","language":"en","overview":"The work of billionaire tech CEO Donovan Chalmers is so valuable that he hires mercenaries to protect it, and a terrorist group kidnaps his daughter just to get it.","moviesInCollection":[],"ratingKey":48091,"key":"/library/metadata/48091","collectionTitle":"","collectionId":-1,"tmdbId":724989},{"name":"Safe","year":2012,"posterUrl":"/library/metadata/1952/thumb/1599308586","imdbId":"","language":"en","overview":"After a former elite agent rescues a 12-year-old Chinese girl who's been abducted, they find themselves in the middle of a standoff between Triads, the Russian Mafia and high-level corrupt New York City politicians and police.","moviesInCollection":[],"ratingKey":1952,"key":"/library/metadata/1952","collectionTitle":"","collectionId":-1,"tmdbId":72387},{"name":"Dragon Ball Z Battle of Gods","year":2014,"posterUrl":"/library/metadata/758/thumb/1599308103","imdbId":"","language":"en","overview":"The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. After awakening from a long slumber, Beerus, the God of Destruction is visited by Whis, his attendant and learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai's advice and battles Beerus, but he is easily overwhelmed and defeated. Beerus leaves, but his eerie remark of \"Is there nobody on Earth more worthy to destroy?\" lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost.","moviesInCollection":[],"ratingKey":758,"key":"/library/metadata/758","collectionTitle":"","collectionId":-1,"tmdbId":126963},{"name":"Lost in Space","year":1998,"posterUrl":"/library/metadata/1419/thumb/1599308350","imdbId":"","language":"en","overview":"The prospects for continuing life on Earth in the year 2058 are grim. So the Robinsons are launched into space to colonize Alpha Prime, the only other inhabitable planet in the galaxy. But when a stowaway sabotages the mission, the Robinsons find themselves hurtling through uncharted space.","moviesInCollection":[],"ratingKey":1419,"key":"/library/metadata/1419","collectionTitle":"","collectionId":-1,"tmdbId":2157},{"name":"DragonHeart A New Beginning","year":2000,"posterUrl":"/library/metadata/39678/thumb/1599309090","imdbId":"","language":"en","overview":"When Geoff, an orphaned stable boy (Chris Masterson), discovers Drake (voice of Robby Benson), the world's last living dragon, he realizes that his dream of becoming a knight in shining armor can now come true. Together, they soon face challenges that turn them into heroes. But caught up in the excitement of their new lives, Geoff and Drake fail to see the hidden dangers that surround them.","moviesInCollection":[],"ratingKey":39678,"key":"/library/metadata/39678","collectionTitle":"","collectionId":-1,"tmdbId":10473},{"name":"The Taste of Money","year":2012,"posterUrl":"/library/metadata/2848/thumb/1599308945","imdbId":"","language":"en","overview":"In this suspenseful erotic drama, the private male secretary and lover of Madam Baek, a Korean conglomerate's middle-aged matriarch, falls for her more genuine daughter. Meanwhile, Madam Baek's husband has an affair with the Filipino nanny.","moviesInCollection":[],"ratingKey":2848,"key":"/library/metadata/2848","collectionTitle":"","collectionId":-1,"tmdbId":103750},{"name":"Please Stand By","year":2017,"posterUrl":"/library/metadata/1761/thumb/1599308502","imdbId":"","language":"en","overview":"A young autistic woman runs away from her caregiver in order to boldly go and deliver her 500-page Star Trek script to a writing competition in Hollywood. On an adventure full of laughter and tears, Wendy follows the guiding spirit of Mr. Spock on her journey into the unknown.","moviesInCollection":[],"ratingKey":1761,"key":"/library/metadata/1761","collectionTitle":"","collectionId":-1,"tmdbId":338768},{"name":"The Tourist","year":2010,"posterUrl":"/library/metadata/2864/thumb/1599308950","imdbId":"","language":"en","overview":"American tourist Frank meets mysterious British woman Elsie on the train to Venice. Romance seems to bud, but there's more to her than meets the eye. Remake of the 2005 French film \"Anthony Zimmer\", written and directed by Jérôme Salle.","moviesInCollection":[],"ratingKey":2864,"key":"/library/metadata/2864","collectionTitle":"","collectionId":-1,"tmdbId":37710},{"name":"The Transformers The Movie","year":1986,"posterUrl":"/library/metadata/2868/thumb/1599308951","imdbId":"","language":"en","overview":"The Autobots must stop a colossal planet-consuming robot who goes after the Autobot Matrix of Leadership. At the same time, they must defend themselves against an all-out attack from the Decepticons.","moviesInCollection":[],"ratingKey":2868,"key":"/library/metadata/2868","collectionTitle":"","collectionId":-1,"tmdbId":1857},{"name":"Donnybrook","year":2018,"posterUrl":"/library/metadata/736/thumb/1599308095","imdbId":"","language":"en","overview":"An ex-marine who struggles to provide for his family and a violent drug dealer with an undefeated fighting record are determined to compete in the Donnybrook, a legendary, bare-knuckle brawl with a cash prize of $100,000.","moviesInCollection":[],"ratingKey":736,"key":"/library/metadata/736","collectionTitle":"","collectionId":-1,"tmdbId":504599},{"name":"Hangman","year":2017,"posterUrl":"/library/metadata/1055/thumb/1599308215","imdbId":"","language":"en","overview":"A homicide detective teams up with a criminal profiler to catch a serial killer whose crimes are inspired by the children's game, Hangman.","moviesInCollection":[],"ratingKey":1055,"key":"/library/metadata/1055","collectionTitle":"","collectionId":-1,"tmdbId":323368},{"name":"Avicii True Stories","year":2017,"posterUrl":"/library/metadata/251/thumb/1599307920","imdbId":"","language":"en","overview":"Documentary about the arena-packing Swedish DJ, chronicling his explosive rise to fame and surprising decision to retire from live performances in 2016.","moviesInCollection":[],"ratingKey":251,"key":"/library/metadata/251","collectionTitle":"","collectionId":-1,"tmdbId":479626},{"name":"Dragon Ball Z Broly – Second Coming","year":1994,"posterUrl":"/library/metadata/761/thumb/1599308104","imdbId":"","language":"en","overview":"A Saiyan Space pod crash-lands on Earth out of which a wounded Saiyan crawls: Broly, the Legendary Super Saiyan. The wounded Broly shouts out in frustration and turns into normal form. The place soon freezes, trapping him in it and he falls into a coma.","moviesInCollection":[],"ratingKey":761,"key":"/library/metadata/761","collectionTitle":"","collectionId":-1,"tmdbId":44251},{"name":"The Good Dinosaur","year":2015,"posterUrl":"/library/metadata/2500/thumb/1599308799","imdbId":"","language":"en","overview":"An epic journey into the world of dinosaurs where an Apatosaurus named Arlo makes an unlikely human friend.","moviesInCollection":[],"ratingKey":2500,"key":"/library/metadata/2500","collectionTitle":"","collectionId":-1,"tmdbId":105864},{"name":"Used Cars","year":1980,"posterUrl":"/library/metadata/3065/thumb/1599309019","imdbId":"","language":"en","overview":"When the owner of a struggling used car lot is killed, it's up to the lot's hot-shot salesman to save the property from falling into the hands of the owner's ruthless brother and used-car rival.","moviesInCollection":[],"ratingKey":3065,"key":"/library/metadata/3065","collectionTitle":"","collectionId":-1,"tmdbId":14475},{"name":"The League of Extraordinary Gentlemen","year":2003,"posterUrl":"/library/metadata/2626/thumb/1599308845","imdbId":"","language":"en","overview":"To prevent a world war from breaking out, famous characters from Victorian literature band together to do battle against a cunning villain.","moviesInCollection":[],"ratingKey":2626,"key":"/library/metadata/2626","collectionTitle":"","collectionId":-1,"tmdbId":8698},{"name":"Mo' Money","year":1992,"posterUrl":"/library/metadata/1526/thumb/1599308401","imdbId":"","language":"en","overview":"Trying to get his act together, a con artist gets a job in a credit card company. He falls in love with a fellow employee, he steals a couple of cards, everything is going great. But soon, the chief of security drags him into the big leagues of criminals...","moviesInCollection":[],"ratingKey":1526,"key":"/library/metadata/1526","collectionTitle":"","collectionId":-1,"tmdbId":12251},{"name":"The Hunger Games Catching Fire","year":2013,"posterUrl":"/library/metadata/2564/thumb/1599308822","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2564,"key":"/library/metadata/2564","collectionTitle":"","collectionId":-1,"tmdbId":101299},{"name":"Ferdinand","year":2017,"posterUrl":"/library/metadata/881/thumb/1599308146","imdbId":"","language":"en","overview":"Ferdinand, a little bull, prefers sitting quietly under a cork tree just smelling the flowers versus jumping around, snorting, and butting heads with other bulls. As Ferdinand grows big and strong, his temperament remains mellow, but one day five men come to choose the \"biggest, fastest, roughest bull\" for the bullfights in Madrid and Ferdinand is mistakenly chosen. Based on the classic 1936 children's book by Munro Leaf.","moviesInCollection":[],"ratingKey":881,"key":"/library/metadata/881","collectionTitle":"","collectionId":-1,"tmdbId":364689},{"name":"Super 8","year":2011,"posterUrl":"/library/metadata/27840/thumb/1599309074","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":27840,"key":"/library/metadata/27840","collectionTitle":"","collectionId":-1,"tmdbId":37686},{"name":"The Secret Life of Pets 2","year":2019,"posterUrl":"/library/metadata/2805/thumb/1599308926","imdbId":"","language":"en","overview":"Max the terrier must cope with some major life changes when his owner gets married and has a baby. When the family takes a trip to the countryside, nervous Max has numerous run-ins with canine-intolerant cows, hostile foxes and a scary turkey. Luckily for Max, he soon catches a break when he meets Rooster, a gruff farm dog who tries to cure the lovable pooch of his neuroses.","moviesInCollection":[],"ratingKey":2805,"key":"/library/metadata/2805","collectionTitle":"","collectionId":-1,"tmdbId":412117},{"name":"Severance","year":2006,"posterUrl":"/library/metadata/2006/thumb/1599308607","imdbId":"","language":"en","overview":"Members (Danny Dyer, Laura Harris, Tim McInnerny) of the Palisades Defense Corp. sales group arrive in Europe for a team-building exercise. A fallen tree blocks the route, and they must hike to their destination. However, a psychotic killer lurks in the woods, and he has a horrible fate in mind for each of the co-workers.","moviesInCollection":[],"ratingKey":2006,"key":"/library/metadata/2006","collectionTitle":"","collectionId":-1,"tmdbId":5072},{"name":"Leave No Trace","year":2018,"posterUrl":"/library/metadata/1353/thumb/1599308326","imdbId":"","language":"en","overview":"A father and daughter live a perfect but mysterious existence in Forest Park, a beautiful nature reserve near Portland, Oregon, rarely making contact with the world. But when a small mistake tips them off to authorities, they are sent on an increasingly erratic journey in search of a place to call their own.","moviesInCollection":[],"ratingKey":1353,"key":"/library/metadata/1353","collectionTitle":"","collectionId":-1,"tmdbId":443463},{"name":"Red Sparrow","year":2018,"posterUrl":"/library/metadata/1870/thumb/1599308550","imdbId":"","language":"en","overview":"Prima ballerina, Dominika Egorova faces a bleak and uncertain future after she suffers an injury that ends her career. She soon turns to Sparrow School, a secret intelligence service that trains exceptional young people to use their minds and bodies as weapons. Dominika emerges as the most dangerous Sparrow after completing the sadistic training process. As she comes to terms with her new abilities, she meets a CIA agent who tries to convince her that he is the only person she can trust.","moviesInCollection":[],"ratingKey":1870,"key":"/library/metadata/1870","collectionTitle":"","collectionId":-1,"tmdbId":401981},{"name":"Mystic River","year":2003,"posterUrl":"/library/metadata/1581/thumb/1599308424","imdbId":"","language":"en","overview":"The lives of three men who were childhood friends are shattered when one of them has a family tragedy.","moviesInCollection":[],"ratingKey":1581,"key":"/library/metadata/1581","collectionTitle":"","collectionId":-1,"tmdbId":322},{"name":"Preservation","year":2015,"posterUrl":"/library/metadata/1805/thumb/1599308520","imdbId":"","language":"en","overview":"Three family members head deep into the woods for a hunting trip that doubles as a distraction from their troubles at home. When all of their gear is stolen, they turn on each other, but soon realize there are much more treacherous forces at work.","moviesInCollection":[],"ratingKey":1805,"key":"/library/metadata/1805","collectionTitle":"","collectionId":-1,"tmdbId":265019},{"name":"The One I Love","year":2014,"posterUrl":"/library/metadata/2729/thumb/1599308891","imdbId":"","language":"en","overview":"On the brink of separation, Ethan and Sophie escape to a beautiful vacation house for a weekend getaway in an attempt to save their marriage. What begins as a romantic and fun retreat soon becomes surreal, when an unexpected discovery forces the two to examine themselves, their relationship, and their future.","moviesInCollection":[],"ratingKey":2729,"key":"/library/metadata/2729","collectionTitle":"","collectionId":-1,"tmdbId":242090},{"name":"Singin' in the Rain","year":1952,"posterUrl":"/library/metadata/2044/thumb/1599308625","imdbId":"","language":"en","overview":"In 1927 Hollywood, a silent film production company and cast make a difficult transition to sound.","moviesInCollection":[],"ratingKey":2044,"key":"/library/metadata/2044","collectionTitle":"","collectionId":-1,"tmdbId":872},{"name":"Time Freak","year":2018,"posterUrl":"/library/metadata/2939/thumb/1599308977","imdbId":"","language":"en","overview":"Stillman, a heartbroken physics student, builds a time machine when his girlfriend breaks up with him. Going back in time, he attempts to save their relationship by fixing every mistake he made—while dragging his best friend along in the process.","moviesInCollection":[],"ratingKey":2939,"key":"/library/metadata/2939","collectionTitle":"","collectionId":-1,"tmdbId":451925},{"name":"El Chicano","year":2018,"posterUrl":"/library/metadata/810/thumb/1599308120","imdbId":"","language":"en","overview":"A pair of twin brothers from East L.A. choose to live their lives differently and end up on opposite sides of the law.","moviesInCollection":[],"ratingKey":810,"key":"/library/metadata/810","collectionTitle":"","collectionId":-1,"tmdbId":547590},{"name":"Poltergeist","year":1982,"posterUrl":"/library/metadata/1785/thumb/1599308512","imdbId":"","language":"en","overview":"Steve Freeling lives with his wife, Diane, and their three children, Dana, Robbie, and Carol Anne, in Southern California where he sells houses for the company that built the neighborhood. It starts with just a few odd occurrences, such as broken dishes and furniture moving around by itself. However, when he realizes that something truly evil haunts his home, Steve calls in a team of parapsychologists led by Dr. Lesh to help before it's too late.","moviesInCollection":[],"ratingKey":1785,"key":"/library/metadata/1785","collectionTitle":"","collectionId":-1,"tmdbId":609},{"name":"LEGO DC Shazam! Magic and Monsters","year":2020,"posterUrl":"/library/metadata/43656/thumb/1599309145","imdbId":"","language":"en","overview":"It’s high time the Justice League took notice of Shazam, but joining the world’s greatest team of superheroes is a lot harder when they’ve all been turned into kids.","moviesInCollection":[],"ratingKey":43656,"key":"/library/metadata/43656","collectionTitle":"","collectionId":-1,"tmdbId":690369},{"name":"War Pigs","year":2015,"posterUrl":"/library/metadata/3107/thumb/1599309033","imdbId":"","language":"en","overview":"A rag tag unit of misfits known as the War Pigs must go behind enemy lines to exterminate Nazis by any means necessary.","moviesInCollection":[],"ratingKey":3107,"key":"/library/metadata/3107","collectionTitle":"","collectionId":-1,"tmdbId":348811},{"name":"8 Mile","year":2002,"posterUrl":"/library/metadata/44/thumb/1599307842","imdbId":"","language":"en","overview":"The setting is Detroit in 1995. The city is divided by 8 Mile, a road that splits the town in half along racial lines. A young white rapper, Jimmy \"B-Rabbit\" Smith Jr. summons strength within himself to cross over these arbitrary boundaries to fulfill his dream of success in hip hop. With his pal Future and the three one third in place, all he has to do is not choke.","moviesInCollection":[],"ratingKey":44,"key":"/library/metadata/44","collectionTitle":"","collectionId":-1,"tmdbId":65},{"name":"The Pianist","year":2002,"posterUrl":"/library/metadata/2740/thumb/1599308895","imdbId":"","language":"en","overview":"The true story of pianist Władysław Szpilman's experiences in Warsaw during the Nazi occupation. When the Jews of the city find themselves forced into a ghetto, Szpilman finds work playing in a café; and when his family is deported in 1942, he stays behind, works for a while as a laborer, and eventually goes into hiding in the ruins of the war-torn city.","moviesInCollection":[],"ratingKey":2740,"key":"/library/metadata/2740","collectionTitle":"","collectionId":-1,"tmdbId":423},{"name":"The Big Lebowski","year":1998,"posterUrl":"/library/metadata/2318/thumb/1599308730","imdbId":"","language":"en","overview":"Jeffrey \"The Dude\" Lebowski, a Los Angeles slacker who only wants to bowl and drink White Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.","moviesInCollection":[],"ratingKey":2318,"key":"/library/metadata/2318","collectionTitle":"","collectionId":-1,"tmdbId":115},{"name":"Running with the Devil","year":2019,"posterUrl":"/library/metadata/1944/thumb/1599308582","imdbId":"","language":"en","overview":"A leader of a drug cartel sends his two toughest henchmen to investigate why a shipment was botched.","moviesInCollection":[],"ratingKey":1944,"key":"/library/metadata/1944","collectionTitle":"","collectionId":-1,"tmdbId":523077},{"name":"Suicide Squad Hell to Pay","year":2018,"posterUrl":"/library/metadata/2193/thumb/1599308688","imdbId":"","language":"en","overview":"Task Force X targets a powerful mystical object that they will risk their lives to steal.","moviesInCollection":[],"ratingKey":2193,"key":"/library/metadata/2193","collectionTitle":"","collectionId":-1,"tmdbId":487242},{"name":"Dragon Ball The Path to Power","year":1996,"posterUrl":"/library/metadata/756/thumb/1599308102","imdbId":"","language":"en","overview":"A retelling of Dragon Ball's origin with a different take on the meeting of Goku, Bulma, and Kame-Sen'nin. It also retells the Red Ribbon Army story; but this time they find Goku rather than Goku finding them.","moviesInCollection":[],"ratingKey":756,"key":"/library/metadata/756","collectionTitle":"","collectionId":-1,"tmdbId":39148},{"name":"Hellraiser Hellseeker","year":2002,"posterUrl":"/library/metadata/1094/thumb/1599308230","imdbId":"","language":"en","overview":"Kirsty Cotten is now all grown up and married. Her memory of the events that took place back at her parent's home and the mental institution have dimmed, but she is still traumatized. A fatal car crash kills Kirsty. Now, her husband finds himself in a strange world full of sexy women, greed and murder, making him believe that he is in hell.","moviesInCollection":[],"ratingKey":1094,"key":"/library/metadata/1094","collectionTitle":"","collectionId":-1,"tmdbId":11246},{"name":"Starship Troopers 2 Hero of the Federation","year":2004,"posterUrl":"/library/metadata/2159/thumb/1599308675","imdbId":"","language":"en","overview":"In the sequel to Paul Verhoeven's loved/reviled sci-fi film, a group of troopers taking refuge in an abandoned outpost after fighting alien bugs, failing to realize that more danger lays in wait.","moviesInCollection":[],"ratingKey":2159,"key":"/library/metadata/2159","collectionTitle":"","collectionId":-1,"tmdbId":10304},{"name":"Welcome to Marwen","year":2018,"posterUrl":"/library/metadata/3122/thumb/1599309038","imdbId":"","language":"en","overview":"When a devastating attack shatters Mark Hogancamp and wipes away all memories, no one expected recovery. Putting together pieces from his old and new life, Mark meticulously creates a wondrous town named Marwen where he can heal and be heroic. As he builds an astonishing art installation — a testament to the most powerful women he knows — through his fantasy world, he draws strength to triumph in the real one.","moviesInCollection":[],"ratingKey":3122,"key":"/library/metadata/3122","collectionTitle":"","collectionId":-1,"tmdbId":351044},{"name":"Kursk","year":2019,"posterUrl":"/library/metadata/1330/thumb/1599308318","imdbId":"","language":"en","overview":"Barents Sea, August 12th, 2000. During a Russian naval exercise, and after suffering a serious accident, the K-141 Kursk submarine sinks with 118 crew members on board. While the few sailors who are still alive barely manage to survive, their families push for accurate information and a British officer struggles to obtain from the Russian government a permit to attempt a rescue before it is late. But general incompetence are against all their efforts.","moviesInCollection":[],"ratingKey":1330,"key":"/library/metadata/1330","collectionTitle":"","collectionId":-1,"tmdbId":401200},{"name":"The High Note","year":2020,"posterUrl":"/library/metadata/46678/thumb/1599309169","imdbId":"","language":"en","overview":"Set in the dazzling world of the LA music scene comes the story of Grace Davis, a superstar whose talent, and ego, have reached unbelievable heights. Maggie is Grace’s overworked personal assistant who’s stuck running errands, but still aspires to her childhood dream of becoming a music producer. When Grace’s manager presents her with a choice that could alter the course of her career, Maggie and Grace come up with a plan that could change their lives forever.","moviesInCollection":[],"ratingKey":46678,"key":"/library/metadata/46678","collectionTitle":"","collectionId":-1,"tmdbId":606679},{"name":"Tremors 3 Back to Perfection","year":2001,"posterUrl":"/library/metadata/2995/thumb/1599308995","imdbId":"","language":"en","overview":"Burt Gummer returns home to Perfection, Nev., to find that the town of terror has become a theme park, and when the simulated giant worm attacks turn real, the survivalist must battle the creatures once again. Gummer pits his impressive knowledge of weaponry against the newest and deadliest generation of flesh-eating graboids, with help from two young entrepreneurs.","moviesInCollection":[],"ratingKey":2995,"key":"/library/metadata/2995","collectionTitle":"","collectionId":-1,"tmdbId":10829},{"name":"The Ninth Gate","year":2000,"posterUrl":"/library/metadata/2720/thumb/1599308887","imdbId":"","language":"en","overview":"An all-expenses-paid international search for a rare copy of the book, 'The Nine Gates of the Kingdom Of Shadows' brings an unscrupulous book dealer deep into a world of murder, double-dealing and satanic worship.","moviesInCollection":[],"ratingKey":2720,"key":"/library/metadata/2720","collectionTitle":"","collectionId":-1,"tmdbId":622},{"name":"Letters from Iwo Jima","year":2006,"posterUrl":"/library/metadata/1378/thumb/1599308333","imdbId":"","language":"en","overview":"The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.","moviesInCollection":[],"ratingKey":1378,"key":"/library/metadata/1378","collectionTitle":"","collectionId":-1,"tmdbId":1251},{"name":"Madame Bovary","year":2015,"posterUrl":"/library/metadata/1438/thumb/1599308360","imdbId":"","language":"en","overview":"The classic story of Emma Bovary, the beautiful wife of a small-town doctor in 19th century France, who engages in extra marital affairs in an attempt to advance her social status.","moviesInCollection":[],"ratingKey":1438,"key":"/library/metadata/1438","collectionTitle":"","collectionId":-1,"tmdbId":253161},{"name":"Pirates of the Caribbean The Curse of the Black Pearl","year":2003,"posterUrl":"/library/metadata/1749/thumb/1599308497","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1749,"key":"/library/metadata/1749","collectionTitle":"","collectionId":-1,"tmdbId":22},{"name":"The Interview","year":2014,"posterUrl":"/library/metadata/2588/thumb/1599308831","imdbId":"","language":"en","overview":"Dave Skylark and his producer Aaron Rapaport run the celebrity tabloid show \"Skylark Tonight\". When they land an interview with a surprise fan, North Korean dictator Kim Jong-un, they are recruited by the CIA to turn their trip to Pyongyang into an assassination mission.","moviesInCollection":[],"ratingKey":2588,"key":"/library/metadata/2588","collectionTitle":"","collectionId":-1,"tmdbId":228967},{"name":"Shrek Forever After","year":2010,"posterUrl":"/library/metadata/2031/thumb/1599308618","imdbId":"","language":"en","overview":"A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away—where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met—he sets out to restore his world and reclaim his true love.","moviesInCollection":[],"ratingKey":2031,"key":"/library/metadata/2031","collectionTitle":"","collectionId":-1,"tmdbId":10192},{"name":"The Legend of Tarzan","year":2016,"posterUrl":"/library/metadata/2629/thumb/1599308847","imdbId":"","language":"en","overview":"Tarzan, having acclimated to life in London, is called back to his former home in the jungle to investigate the activities at a mining encampment.","moviesInCollection":[],"ratingKey":2629,"key":"/library/metadata/2629","collectionTitle":"","collectionId":-1,"tmdbId":258489},{"name":"Two Weeks Notice","year":2002,"posterUrl":"/library/metadata/3029/thumb/1599309007","imdbId":"","language":"en","overview":"Dedicated environmental lawyer Lucy Kelson goes to work for billionaire George Wade as part of a deal to preserve a community center. Indecisive and weak-willed George grows dependent on Lucy's guidance on everything from legal matters to clothing. Exasperated, Lucy gives notice and picks Harvard graduate June Carter as her replacement. As Lucy's time at the firm nears an end, she grows jealous of June and has second thoughts about leaving George.","moviesInCollection":[],"ratingKey":3029,"key":"/library/metadata/3029","collectionTitle":"","collectionId":-1,"tmdbId":2642},{"name":"Sharknado 3 Oh Hell No!","year":2015,"posterUrl":"/library/metadata/2013/thumb/1599308610","imdbId":"","language":"en","overview":"The sharks take bite out of the East Coast when the sharknado hits Washington, D.C. and Orlando, Florida.","moviesInCollection":[],"ratingKey":2013,"key":"/library/metadata/2013","collectionTitle":"","collectionId":-1,"tmdbId":331446},{"name":"Skyfall","year":2012,"posterUrl":"/library/metadata/2051/thumb/1599308628","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2051,"key":"/library/metadata/2051","collectionTitle":"","collectionId":-1,"tmdbId":37724},{"name":"American Pie 2","year":2001,"posterUrl":"/library/metadata/183/thumb/1599307893","imdbId":"","language":"en","overview":"The whole gang are back and as close as ever. They decide to get even closer by spending the summer together at a beach house. They decide to hold the biggest party ever to be seen, even if the preparation doesn't always go to plan. Especially when Stifler, Finch and Jim become more close to each other than they ever want to be and when Jim mistakes super glue for lubricant...","moviesInCollection":[],"ratingKey":183,"key":"/library/metadata/183","collectionTitle":"","collectionId":-1,"tmdbId":2770},{"name":"Hocus Pocus","year":1993,"posterUrl":"/library/metadata/1114/thumb/1599308237","imdbId":"","language":"en","overview":"After 300 years of slumber, three sister witches are accidentally resurrected in Salem on Halloween night, and it is up to three kids and their newfound feline friend to put an end to the witches' reign of terror once and for all.","moviesInCollection":[],"ratingKey":1114,"key":"/library/metadata/1114","collectionTitle":"","collectionId":-1,"tmdbId":10439},{"name":"Pete's Dragon","year":2016,"posterUrl":"/library/metadata/1728/thumb/1599308490","imdbId":"","language":"en","overview":"For years, old wood carver Mr. Meacham has delighted local children with his tales of the fierce dragon that resides deep in the woods of the Pacific Northwest. To his daughter, Grace, who works as a forest ranger, these stories are little more than tall tales... until she meets Pete, a mysterious 10-year-old with no family and no home who claims to live in the woods with a giant, green dragon named Elliott. And from Pete's descriptions, Elliott seems remarkably similar to the dragon from Mr. Meacham's stories. With the help of Natalie, an 11-year-old girl whose father Jack owns the local lumber mill, Grace sets out to determine where Pete came from, where he belongs, and the truth about this dragon.","moviesInCollection":[],"ratingKey":1728,"key":"/library/metadata/1728","collectionTitle":"","collectionId":-1,"tmdbId":294272},{"name":"Roma","year":2018,"posterUrl":"/library/metadata/1932/thumb/1599308577","imdbId":"","language":"en","overview":"In 1970s Mexico City, two domestic workers help a mother of four while her husband is away for an extended period of time.","moviesInCollection":[],"ratingKey":1932,"key":"/library/metadata/1932","collectionTitle":"","collectionId":-1,"tmdbId":426426},{"name":"Avengers Confidential Black Widow & Punisher","year":2014,"posterUrl":"/library/metadata/246/thumb/1599307918","imdbId":"","language":"en","overview":"When the Punisher takes out a black-market weapons dealer, he stumbles upon a far-reaching terrorist plot devised by a group known as Leviathan.","moviesInCollection":[],"ratingKey":246,"key":"/library/metadata/246","collectionTitle":"","collectionId":-1,"tmdbId":257346},{"name":"Ong Bak 2","year":2008,"posterUrl":"/library/metadata/1658/thumb/1599308459","imdbId":"","language":"en","overview":"Moments from death a young man is rescued by a renowned warrior. Realizing unsurpassed physical potential in the young boy he trains him into the most dangerous man alive. As he becomes a young man he goes on a lone mission of vengeance against the vicious slave traders who enslaved him as a youth and the treacherous warlord who killed his father.","moviesInCollection":[],"ratingKey":1658,"key":"/library/metadata/1658","collectionTitle":"","collectionId":-1,"tmdbId":16353},{"name":"Bad Milo","year":2013,"posterUrl":"/library/metadata/269/thumb/1599307926","imdbId":"","language":"en","overview":"A horror comedy centered on a guy who learns that his unusual stomach problems are being caused by a demon living in his intestines.","moviesInCollection":[],"ratingKey":269,"key":"/library/metadata/269","collectionTitle":"","collectionId":-1,"tmdbId":172828},{"name":"Annie","year":1982,"posterUrl":"/library/metadata/206/thumb/1599307903","imdbId":"","language":"en","overview":"An orphan in a facility run by the mean Miss Hannigan, Annie believes that her parents left her there by mistake. When a rich man named Oliver \"Daddy\" Warbucks decides to let an orphan live at his home to promote his image, Annie is selected. While Annie gets accustomed to living in Warbucks' mansion, she still longs to meet her parents. So Warbucks announces a search for them and a reward, which brings out many frauds.","moviesInCollection":[],"ratingKey":206,"key":"/library/metadata/206","collectionTitle":"","collectionId":-1,"tmdbId":15739},{"name":"Superbad","year":2007,"posterUrl":"/library/metadata/2203/thumb/1599308691","imdbId":"","language":"en","overview":"Two co-dependent high school seniors are forced to deal with separation anxiety after their plan to stage a booze-soaked party goes awry.","moviesInCollection":[],"ratingKey":2203,"key":"/library/metadata/2203","collectionTitle":"","collectionId":-1,"tmdbId":8363},{"name":"Parkland","year":2013,"posterUrl":"/library/metadata/1702/thumb/1599308478","imdbId":"","language":"en","overview":"November 22nd, 1963 was a day that changed the world forever — when young American President John F. Kennedy was assassinated in Dallas, Texas. This film follows, almost in real time, a handful of individuals forced to make split-second decisions after an event that would change their lives and forever alter the world’s landscape.","moviesInCollection":[],"ratingKey":1702,"key":"/library/metadata/1702","collectionTitle":"","collectionId":-1,"tmdbId":209262},{"name":"Maya the Bee The Honey Games","year":2018,"posterUrl":"/library/metadata/1475/thumb/1599308377","imdbId":"","language":"en","overview":"When an overenthusiastic Maya accidentally embarrasses the Empress of Buzztropolis, she is forced to unite with a team of misfit bugs and compete in the Honey Games for a chance to save her hive.","moviesInCollection":[],"ratingKey":1475,"key":"/library/metadata/1475","collectionTitle":"","collectionId":-1,"tmdbId":499088},{"name":"Bayonetta Bloody Fate","year":2013,"posterUrl":"/library/metadata/320/thumb/1599307943","imdbId":"","language":"en","overview":"Bayonetta: Bloody Fate follows the story of the witch Bayonetta, as she defeats the blood-thirsty Angels and tries to remember her past from before the time she awoke, 20 years ago. Along her side are a mysterious little girl who keeps calling her \"Mummy\", a journalist that holds a personal grudge against Bayonetta and a unknown white-haired woman who seems to know more than she is willing to reveal about Bayonetta's time before her sleep.","moviesInCollection":[],"ratingKey":320,"key":"/library/metadata/320","collectionTitle":"","collectionId":-1,"tmdbId":242546},{"name":"Killing Gunther","year":2017,"posterUrl":"/library/metadata/1306/thumb/1599308309","imdbId":"","language":"en","overview":"A group of eccentric assassins are fed up with Gunther, the world's greatest hitman, and decide to kill him – but their plan turns into a series of bungled encounters as Gunther seems to always be one step ahead.","moviesInCollection":[],"ratingKey":1306,"key":"/library/metadata/1306","collectionTitle":"","collectionId":-1,"tmdbId":412547},{"name":"Step Brothers","year":2008,"posterUrl":"/library/metadata/2165/thumb/1599308677","imdbId":"","language":"en","overview":"Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.","moviesInCollection":[],"ratingKey":2165,"key":"/library/metadata/2165","collectionTitle":"","collectionId":-1,"tmdbId":12133},{"name":"The Babysitter Killer Queen","year":2020,"posterUrl":"/library/metadata/48312/thumb/1600865846","imdbId":"","language":"en","overview":"Two years after defeating a satanic cult led by his babysitter Bee, Cole's trying to forget his past and focus on surviving high school. But when old enemies unexpectedly return, Cole will once again have to outsmart the forces of evil.","moviesInCollection":[],"ratingKey":48312,"key":"/library/metadata/48312","collectionTitle":"","collectionId":-1,"tmdbId":623491},{"name":"The Pirates! In an Adventure with Scientists!","year":2012,"posterUrl":"/library/metadata/2741/thumb/1599308896","imdbId":"","language":"en","overview":"The luxuriantly bearded Pirate Captain is a boundlessly enthusiastic, if somewhat less-than-successful, terror of the High Seas. With a rag-tag crew at his side, and seemingly blind to the impossible odds stacked against him, the Captain has one dream: to beat his bitter rivals Black Bellamy and Cutlass Liz to the much coveted Pirate of the Year Award. It’s a quest that takes our heroes from the shores of exotic Blood Island to the foggy streets of Victorian London. Along the way they battle a diabolical queen and team up with a haplessly smitten young scientist, but never lose sight of what a pirate loves best: adventure!","moviesInCollection":[],"ratingKey":2741,"key":"/library/metadata/2741","collectionTitle":"","collectionId":-1,"tmdbId":72197},{"name":"Batman Year One","year":2011,"posterUrl":"/library/metadata/309/thumb/1599307939","imdbId":"","language":"en","overview":"Two men come to Gotham City: Bruce Wayne after years abroad feeding his lifelong obsession for justice and Jim Gordon after being too honest a cop with the wrong people elsewhere. After learning painful lessons about the city's corruption on its streets and police department respectively, this pair learn how to fight back their own way. With that, Gotham's evildoers from top to bottom are terrorized by the mysterious Batman and the equally heroic Gordon is assigned to catch him by comrades who both hate and fear him themselves. In the ensuing manhunt, both find much in common as the seeds of an unexpected friendship are laid with additional friends and rivals helping to start the legend.","moviesInCollection":[],"ratingKey":309,"key":"/library/metadata/309","collectionTitle":"","collectionId":-1,"tmdbId":69735},{"name":"Jason Bourne","year":2016,"posterUrl":"/library/metadata/1223/thumb/1599308279","imdbId":"","language":"en","overview":"The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past.","moviesInCollection":[],"ratingKey":1223,"key":"/library/metadata/1223","collectionTitle":"","collectionId":-1,"tmdbId":324668},{"name":"The Female Brain","year":2017,"posterUrl":"/library/metadata/2458/thumb/1599308782","imdbId":"","language":"en","overview":"The neurological inner workings of romantic relationships between men and women are studied for science.","moviesInCollection":[],"ratingKey":2458,"key":"/library/metadata/2458","collectionTitle":"","collectionId":-1,"tmdbId":406668},{"name":"Iron Sky","year":2014,"posterUrl":"/library/metadata/1210/thumb/1599308274","imdbId":"","language":"en","overview":"In the last moments of World War II, a secret Nazi space program evaded destruction by fleeing to the Dark Side of the Moon. During 70 years of utter secrecy, the Nazis construct a gigantic space fortress with a massive armada of flying saucers.","moviesInCollection":[],"ratingKey":1210,"key":"/library/metadata/1210","collectionTitle":"","collectionId":-1,"tmdbId":10679},{"name":"Ong Bak 3","year":2010,"posterUrl":"/library/metadata/1659/thumb/1599308460","imdbId":"","language":"en","overview":"Ong Bak 3 picks up where Ong Bak 2 had left off. Tien is captured and almost beaten to death before he is saved and brought back to the Kana Khone villagers. There he is taught meditation and how to deal with his Karma, but very soon his arch rival returns challenging Tien for a final duel.","moviesInCollection":[],"ratingKey":1659,"key":"/library/metadata/1659","collectionTitle":"","collectionId":-1,"tmdbId":43209},{"name":"Oz the Great and Powerful","year":2013,"posterUrl":"/library/metadata/1683/thumb/1599308469","imdbId":"","language":"en","overview":"Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy, there to save Oz from the clutches of evil.","moviesInCollection":[],"ratingKey":1683,"key":"/library/metadata/1683","collectionTitle":"","collectionId":-1,"tmdbId":68728},{"name":"The Promise","year":2016,"posterUrl":"/library/metadata/2761/thumb/1599308906","imdbId":"","language":"en","overview":"Set during the last days of the Ottoman Empire, a love triangle develops between Mikael, a brilliant medical student, the beautiful and sophisticated artist Ana, and Chris, a renowned American journalist based in Paris.","moviesInCollection":[],"ratingKey":2761,"key":"/library/metadata/2761","collectionTitle":"","collectionId":-1,"tmdbId":354859},{"name":"Stolen","year":2012,"posterUrl":"/library/metadata/2170/thumb/1599308679","imdbId":"","language":"en","overview":"Master thief Will Montgomery is just released from the State penitentiary after serving a 10 year sentence, is contacted by Vincent, his ex comrade in crime, who is holding Will’s teenage daughter ransom in a hijacked taxi cab. Vincent will only surrender her when Will reveals the whereabouts of the 20 million dollars he contrived to conceal from their last robbery.","moviesInCollection":[],"ratingKey":2170,"key":"/library/metadata/2170","collectionTitle":"","collectionId":-1,"tmdbId":127493},{"name":"Come to Daddy","year":2019,"posterUrl":"/library/metadata/555/thumb/1599308030","imdbId":"","language":"en","overview":"After receiving a cryptic letter from his estranged father, Norval travels to his dad’s oceanfront home for what he hopes will be a positive experience. If only he’d known the dark truth about his old man beforehand.","moviesInCollection":[],"ratingKey":555,"key":"/library/metadata/555","collectionTitle":"","collectionId":-1,"tmdbId":586592},{"name":"eXistenZ","year":1999,"posterUrl":"/library/metadata/847/thumb/1599308133","imdbId":"","language":"en","overview":"A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.","moviesInCollection":[],"ratingKey":847,"key":"/library/metadata/847","collectionTitle":"","collectionId":-1,"tmdbId":1946},{"name":"Hanna","year":2011,"posterUrl":"/library/metadata/1056/thumb/1599308215","imdbId":"","language":"en","overview":"A 16-year-old girl raised by her father to be the perfect assassin is dispatched on a mission across Europe. Tracked by a ruthless operatives, she faces startling revelations about her existence and questions about her humanity.","moviesInCollection":[],"ratingKey":1056,"key":"/library/metadata/1056","collectionTitle":"","collectionId":-1,"tmdbId":50456},{"name":"Annabelle","year":2014,"posterUrl":"/library/metadata/202/thumb/1599307901","imdbId":"","language":"en","overview":"John Form has found the perfect gift for his expectant wife, Mia - a beautiful, rare vintage doll in a pure white wedding dress. But Mia's delight with Annabelle doesn't last long. On one horrific night, their home is invaded by members of a satanic cult, who violently attack the couple. Spilled blood and terror are not all they leave behind. The cultists have conjured an entity so malevolent that nothing they did will compare to the sinister conduit to the damned that is now... Annabelle.","moviesInCollection":[],"ratingKey":202,"key":"/library/metadata/202","collectionTitle":"","collectionId":-1,"tmdbId":250546},{"name":"I See You","year":2019,"posterUrl":"/library/metadata/1162/thumb/1599308255","imdbId":"","language":"en","overview":"When a 12-year-old boy goes missing, lead investigator Greg Harper struggles to balance the pressure of the investigation and troubles with his wife, Jackie. Facing a recent affair, great strain is put on the family that slowly gnaws away at Jackie's grip on reality. But after a malicious presence manifests itself in their home and puts their son, Connor, in mortal danger, the cold, hard truth about evil in the Harper household is finally uncovered.","moviesInCollection":[],"ratingKey":1162,"key":"/library/metadata/1162","collectionTitle":"","collectionId":-1,"tmdbId":524251},{"name":"Sleight","year":2016,"posterUrl":"/library/metadata/2059/thumb/1599308631","imdbId":"","language":"en","overview":"A young street magician is left to take care of his little sister after his mother's passing and turns to drug dealing in the Los Angeles party scene to keep a roof over their heads. When he gets into trouble with his supplier, his sister is kidnapped and he is forced to rely on both his sleight of hand and brilliant mind to save her.","moviesInCollection":[],"ratingKey":2059,"key":"/library/metadata/2059","collectionTitle":"","collectionId":-1,"tmdbId":347882},{"name":"The Nutcracker and the Four Realms","year":2018,"posterUrl":"/library/metadata/2724/thumb/1599308889","imdbId":"","language":"en","overview":"A young girl is transported into a magical world of gingerbread soldiers and an army of mice. In Disney’s magical take on the classic The Nutcracker, Clara wants a one-of-a-kind key that will unlock a box holding a priceless gift. A golden thread presented at her godfather’s holiday party leads her to the coveted key—which promptly disappears into a strange and mysterious parallel world. There Clara encounters a soldier, a gang of mice and the regents of three magical Realms. But she must brave the ominous Fourth Realm, home to the tyrant Mother Ginger, to retrieve her key and return harmony to the unstable world.","moviesInCollection":[],"ratingKey":2724,"key":"/library/metadata/2724","collectionTitle":"","collectionId":-1,"tmdbId":426543},{"name":"Avengers Grimm Time Wars","year":2018,"posterUrl":"/library/metadata/249/thumb/1599307920","imdbId":"","language":"en","overview":"When Rumpelstiltskin tries to take over Earth once and for all, The Avengers Grimm must track him down through time in order to defeat him.","moviesInCollection":[],"ratingKey":249,"key":"/library/metadata/249","collectionTitle":"","collectionId":-1,"tmdbId":521720},{"name":"Crazy Rich Asians","year":2018,"posterUrl":"/library/metadata/590/thumb/1599308044","imdbId":"","language":"en","overview":"An American-born Chinese economics professor accompanies her boyfriend to Singapore for his best friend's wedding, only to get thrust into the lives of Asia's rich and famous.","moviesInCollection":[],"ratingKey":590,"key":"/library/metadata/590","collectionTitle":"","collectionId":-1,"tmdbId":455207},{"name":"Night of the Eagle","year":1962,"posterUrl":"/library/metadata/1609/thumb/1599308436","imdbId":"","language":"en","overview":"A skeptical college professor discovers that his wife has been practicing magic for years. Like the learned, rational fellow he is, he forces her to destroy all her magical charms and protective devices, and stop that foolishness. He isn't put off by her insistence that his professional rivals are working magic against him, and her protections are necessary to his career and life.","moviesInCollection":[],"ratingKey":1609,"key":"/library/metadata/1609","collectionTitle":"","collectionId":-1,"tmdbId":45714},{"name":"Trinity Is Still My Name","year":1972,"posterUrl":"/library/metadata/3000/thumb/1599308997","imdbId":"","language":"en","overview":"A couple of two-bit thieving brothers try and keep a promise to their dying father: stick together and become successful outlaws. Bambino reluctantly agrees to show younger Trinity the ropes, but their gentle demeanors tend to diminish their haul by repeatedly helping the selfsame family they initially held up. Fun ensues in town and at the local Spanish mission where they are taken for federal agents, mistakenly so identified by Trinity's young love interest, daughter of the aforementioned family.","moviesInCollection":[],"ratingKey":3000,"key":"/library/metadata/3000","collectionTitle":"","collectionId":-1,"tmdbId":11829},{"name":"Scary Stories to Tell in the Dark","year":2019,"posterUrl":"/library/metadata/1978/thumb/1599308595","imdbId":"","language":"en","overview":"Mill Valley, Pennsylvania, Halloween night, 1968. After playing a joke on a school bully, Sarah and her friends decide to sneak into a supposedly haunted house that once belonged to the powerful Bellows family, unleashing dark forces that they will be unable to control.","moviesInCollection":[],"ratingKey":1978,"key":"/library/metadata/1978","collectionTitle":"","collectionId":-1,"tmdbId":417384},{"name":"Bully","year":2011,"posterUrl":"/library/metadata/442/thumb/1599307989","imdbId":"","language":"en","overview":"This year, over 5 million American kids will be bullied at school, online, on the bus, at home, through their cell phones and on the streets of their towns, making it the most common form of violence young people in this country experience. The Bully Project is the first feature documentary film to show how we've all been affected by bullying, whether we've been victims, perpetrators or stood silent witness. The world we inhabit as adults begins on the playground. The Bully Project opens on the first day of school. For the more than 5 million kids who'll be bullied this year in the United States, it's a day filled with more anxiety and foreboding than excitement. As the sun rises and school busses across the country overflow with backpacks, brass instruments and the rambunctious sounds of raging hormones, this is a ride into the unknown.","moviesInCollection":[],"ratingKey":442,"key":"/library/metadata/442","collectionTitle":"","collectionId":-1,"tmdbId":84404},{"name":"The Watch","year":2012,"posterUrl":"/library/metadata/2889/thumb/1599308959","imdbId":"","language":"en","overview":"Four everyday suburban guys come together as an excuse to escape their humdrum lives one night a week. But when they accidentally discover that their town has become overrun with aliens posing as ordinary suburbanites, they have no choice but to save their neighborhood - and the world - from total extermination.","moviesInCollection":[],"ratingKey":2889,"key":"/library/metadata/2889","collectionTitle":"","collectionId":-1,"tmdbId":80035},{"name":"Now You See Me 2","year":2016,"posterUrl":"/library/metadata/1626/thumb/1599308445","imdbId":"","language":"en","overview":"One year after outwitting the FBI and winning the public’s adulation with their mind-bending spectacles, the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.","moviesInCollection":[],"ratingKey":1626,"key":"/library/metadata/1626","collectionTitle":"","collectionId":-1,"tmdbId":291805},{"name":"Blindspotting","year":2018,"posterUrl":"/library/metadata/383/thumb/1599307967","imdbId":"","language":"en","overview":"Collin must make it through his final three days of probation for a chance at a new beginning. He and his troublemaking childhood best friend, Miles, work as movers, and when Collin witnesses a police shooting, the two men’s friendship is tested as they grapple with identity and their changed realities in the rapidly-gentrifying neighborhood they grew up in.","moviesInCollection":[],"ratingKey":383,"key":"/library/metadata/383","collectionTitle":"","collectionId":-1,"tmdbId":489930},{"name":"Code 8","year":2019,"posterUrl":"/library/metadata/39631/thumb/1599309088","imdbId":"","language":"en","overview":"In Lincoln City, some inhabitants have extraordinary abilities. Most live below the poverty line, under the close surveillance of a heavily militarized police force. Connor, a construction worker with powers, involves with a criminal gang to help his ailing mother. (Based on the short film “Code 8,” 2016.)","moviesInCollection":[],"ratingKey":39631,"key":"/library/metadata/39631","collectionTitle":"","collectionId":-1,"tmdbId":461130},{"name":"The Dustwalker","year":2019,"posterUrl":"/library/metadata/39375/thumb/1599309082","imdbId":"","language":"en","overview":"An alien spaceship crash-lands in an isolated town in the middle of the Australian desert, releasing an insidious parasite that attacks the brain of all creatures including humans, making them disorientated, unnaturally strong and violent. Sargeant Jo Sharp, readying for a return to the big city beat, wakes to find the township, her family and friends falling victim to an evil that is spreading faster than it can be contained.","moviesInCollection":[],"ratingKey":39375,"key":"/library/metadata/39375","collectionTitle":"","collectionId":-1,"tmdbId":614869},{"name":"Critters Attack!","year":2019,"posterUrl":"/library/metadata/602/thumb/1599308048","imdbId":"","language":"en","overview":"Follows 20-year-old Drea, who reluctantly takes a job babysitting for a professor of a college she hopes to attend. Struggling to entertain the professor's children Trissy and Jake, along with her own little brother Phillip , Drea takes them on a hike, unaware that mysterious alien critters have crash-landed and started devouring every living thing they encounter.","moviesInCollection":[],"ratingKey":602,"key":"/library/metadata/602","collectionTitle":"","collectionId":-1,"tmdbId":597856},{"name":"Fahrenheit 451","year":1966,"posterUrl":"/library/metadata/856/thumb/1599308137","imdbId":"","language":"en","overview":"In the future, the government maintains control of public opinion by outlawing literature and maintaining a group of enforcers, known as “firemen,” to perform the necessary book burnings. Fireman Montag begins to question the morality of his vocation…","moviesInCollection":[],"ratingKey":856,"key":"/library/metadata/856","collectionTitle":"","collectionId":-1,"tmdbId":1714},{"name":"Sing","year":2016,"posterUrl":"/library/metadata/2043/thumb/1599308624","imdbId":"","language":"en","overview":"A koala named Buster recruits his best friend to help him drum up business for his theater by hosting a singing competition.","moviesInCollection":[],"ratingKey":2043,"key":"/library/metadata/2043","collectionTitle":"","collectionId":-1,"tmdbId":335797},{"name":"A Nightmare on Elm Street Part 2 Freddy's Revenge","year":1985,"posterUrl":"/library/metadata/85/thumb/1599307855","imdbId":"","language":"en","overview":"A new family moves into the house on Elm Street, and before long, the kids are again having nightmares about deceased child murderer Freddy Krueger. This time, Freddy attempts to possess a teenage boy to cause havoc in the real world, and can only be overcome if the boy's sweetheart can master her fear.","moviesInCollection":[],"ratingKey":85,"key":"/library/metadata/85","collectionTitle":"","collectionId":-1,"tmdbId":10014},{"name":"Into the Woods","year":2014,"posterUrl":"/library/metadata/1205/thumb/1599308271","imdbId":"","language":"en","overview":"In a woods filled with magic and fairy tale characters, a baker and his wife set out to end the curse put on them by their neighbor, a spiteful witch.","moviesInCollection":[],"ratingKey":1205,"key":"/library/metadata/1205","collectionTitle":"","collectionId":-1,"tmdbId":224141},{"name":"Madagascar","year":2005,"posterUrl":"/library/metadata/1436/thumb/1599308359","imdbId":"","language":"en","overview":"Alex the lion is the king of the urban jungle, the main attraction at New York’s Central Park Zoo. He and his best friends—Marty the zebra, Melman the giraffe and Gloria the hippo—have spent their whole lives in blissful captivity before an admiring public and with regular meals provided for them. Not content to leave well enough alone, Marty lets his curiosity get the better of him and makes his escape—with the help of some prodigious penguins—to explore the world.","moviesInCollection":[],"ratingKey":1436,"key":"/library/metadata/1436","collectionTitle":"","collectionId":-1,"tmdbId":953},{"name":"The Hobbit An Unexpected Journey","year":2012,"posterUrl":"/library/metadata/2542/thumb/1599308814","imdbId":"","language":"en","overview":"Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.","moviesInCollection":[],"ratingKey":2542,"key":"/library/metadata/2542","collectionTitle":"","collectionId":-1,"tmdbId":49051},{"name":"Christmas Vacation 2 Cousin Eddie's Island Adventure","year":2003,"posterUrl":"/library/metadata/46946/thumb/1599309170","imdbId":"","language":"en","overview":"Though Eddie's fired right at Christmastime, his boss sends him and his family on a South Pacific vacation, hoping Eddie won't sue him after being bitten by a lab monkey. When the Tuttle family winds up trapped on a tropical island, however, Eddie manages to provide for everyone and prove himself a real man.","moviesInCollection":[],"ratingKey":46946,"key":"/library/metadata/46946","collectionTitle":"","collectionId":-1,"tmdbId":11155},{"name":"House on Haunted Hill","year":1999,"posterUrl":"/library/metadata/1139/thumb/1599308246","imdbId":"","language":"en","overview":"A remake of the 1959 film of the same name. A millionaire offers a group of diverse people $1,000,000 to spend the night in a haunted house with a horrifying past.","moviesInCollection":[],"ratingKey":1139,"key":"/library/metadata/1139","collectionTitle":"","collectionId":-1,"tmdbId":11377},{"name":"The Fugitive","year":1993,"posterUrl":"/library/metadata/2480/thumb/1599308792","imdbId":"","language":"en","overview":"Wrongfully convicted of murdering his wife and sentenced to death, Richard Kimble escapes from the law in an attempt to find her killer and clear his name. Pursuing him is a team of U.S. marshals led by Deputy Samuel Gerard, a determined detective who will not rest until Richard is captured. As Kimble leads the marshals through a series of intricate chases, he uncovers the secret behind his wife's death and struggles to expose the killer before he is recaptured, or killed.","moviesInCollection":[],"ratingKey":2480,"key":"/library/metadata/2480","collectionTitle":"","collectionId":-1,"tmdbId":5503},{"name":"Spartacus","year":1960,"posterUrl":"/library/metadata/2102/thumb/1599308650","imdbId":"","language":"en","overview":"The rebellious Thracian Spartacus, born and raised a slave, is sold to Gladiator trainer Batiatus. After weeks of being trained to kill for the arena, Spartacus turns on his owners and leads the other slaves in rebellion. As the rebels move from town to town, their numbers swell as escaped slaves join their ranks. Under the leadership of Spartacus, they make their way to southern Italy, where they will cross the sea and return to their homes.","moviesInCollection":[],"ratingKey":2102,"key":"/library/metadata/2102","collectionTitle":"","collectionId":-1,"tmdbId":967},{"name":"Kingpin","year":1996,"posterUrl":"/library/metadata/1312/thumb/1599308311","imdbId":"","language":"en","overview":"After bowler Roy Munson swindles the wrong crowd and is left with a hook for a hand, he settles into impoverished obscurity. That is, until he uncovers the next big thing: an Amish kid named Ishmael. So, the corrupt and the hopelessly naïve hit the circuit intent on settling an old score with Big Ern.","moviesInCollection":[],"ratingKey":1312,"key":"/library/metadata/1312","collectionTitle":"","collectionId":-1,"tmdbId":11543},{"name":"Ice Age Collision Course","year":2016,"posterUrl":"/library/metadata/1169/thumb/1599308258","imdbId":"","language":"en","overview":"Set after the events of Continental Drift, Scrat's epic pursuit of his elusive acorn catapults him outside of Earth, where he accidentally sets off a series of cosmic events that transform and threaten the planet. To save themselves from peril, Manny, Sid, Diego, and the rest of the herd leave their home and embark on a quest full of thrills and spills, highs and lows, laughter and adventure while traveling to exotic new lands and encountering a host of colorful new characters.","moviesInCollection":[],"ratingKey":1169,"key":"/library/metadata/1169","collectionTitle":"","collectionId":-1,"tmdbId":278154},{"name":"Good Boys","year":2019,"posterUrl":"/library/metadata/1014/thumb/1599308199","imdbId":"","language":"en","overview":"A group of young boys on the cusp of becoming teenagers embark on an epic quest to fix their broken drone before their parents get home.","moviesInCollection":[],"ratingKey":1014,"key":"/library/metadata/1014","collectionTitle":"","collectionId":-1,"tmdbId":521777},{"name":"Fahrenheit 451","year":2018,"posterUrl":"/library/metadata/857/thumb/1599308137","imdbId":"","language":"en","overview":"In an oppressive future, a 'fireman' whose duty is to destroy all books begins to question his task.","moviesInCollection":[],"ratingKey":857,"key":"/library/metadata/857","collectionTitle":"","collectionId":-1,"tmdbId":401905},{"name":"Jonathan","year":2018,"posterUrl":"/library/metadata/1259/thumb/1599308292","imdbId":"","language":"en","overview":"Jonathan is a young man with a strange condition that only his brother understands. But when he begins to yearn for a different life, their unique bond becomes increasingly tested.","moviesInCollection":[],"ratingKey":1259,"key":"/library/metadata/1259","collectionTitle":"","collectionId":-1,"tmdbId":422619},{"name":"Munster, Go Home!","year":1966,"posterUrl":"/library/metadata/1566/thumb/1599308418","imdbId":"","language":"en","overview":"Herman discovers he's the new lord of Munster Hall in England. The family sails to Britain, where they receive a tepid welcome from Lady Effigy and Freddie Munster, who throws tantrums because he wasn't named Lord Munster. An on-board romance had blossomed between Marilyn and Roger, but on land Marilyn discovers Roger's family holds a longstanding grudge against the Munsters.","moviesInCollection":[],"ratingKey":1566,"key":"/library/metadata/1566","collectionTitle":"","collectionId":-1,"tmdbId":35992},{"name":"Leaving Neverland ProSieben Spezial","year":2019,"posterUrl":"/library/metadata/1354/thumb/1599308326","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":1354,"key":"/library/metadata/1354","collectionTitle":"","collectionId":-1,"tmdbId":594404},{"name":"Talladega Nights The Ballad of Ricky Bobby","year":2006,"posterUrl":"/library/metadata/2240/thumb/1599308703","imdbId":"","language":"en","overview":"The fastest man on four wheels, Ricky Bobby is one of the greatest drivers in NASCAR history. A big, hairy American winning machine, Ricky has everything a dimwitted daredevil could want, a luxurious mansion, a smokin' hot wife and all the fast food he can eat. But Ricky's turbo-charged lifestyle hits an unexpected speed bump when he's bested by flamboyant Euro-idiot Jean Girard and reduced to a fear-ridden wreck.","moviesInCollection":[],"ratingKey":2240,"key":"/library/metadata/2240","collectionTitle":"","collectionId":-1,"tmdbId":9718},{"name":"The Bourne Legacy","year":2012,"posterUrl":"/library/metadata/2330/thumb/1599308734","imdbId":"","language":"en","overview":"New CIA operative Aaron Cross experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne.","moviesInCollection":[],"ratingKey":2330,"key":"/library/metadata/2330","collectionTitle":"","collectionId":-1,"tmdbId":49040},{"name":"Princess Mononoke","year":1999,"posterUrl":"/library/metadata/46119/thumb/1599309156","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46119,"key":"/library/metadata/46119","collectionTitle":"","collectionId":-1,"tmdbId":128},{"name":"Friday the 13th Part VII The New Blood","year":1988,"posterUrl":"/library/metadata/951/thumb/1599308175","imdbId":"","language":"en","overview":"A young girl who possesses the power of telekinesis accidentally causes her father's death after a family dispute at Crystal Lake. Years later, when a doctor tries to exploit her abilities, her power becomes a hellish curse, and she unwittingly unchains the merciless, bloodthirsty Jason Voorhees from his watery grave.","moviesInCollection":[],"ratingKey":951,"key":"/library/metadata/951","collectionTitle":"","collectionId":-1,"tmdbId":10281},{"name":"Love, Simon","year":2018,"posterUrl":"/library/metadata/1422/thumb/1599308351","imdbId":"","language":"en","overview":"Everyone deserves a great love story. But for seventeen-year old Simon Spier it's a little more complicated: he's yet to tell his family or friends he's gay and he doesn't know the identity of the anonymous classmate he's fallen for online.","moviesInCollection":[],"ratingKey":1422,"key":"/library/metadata/1422","collectionTitle":"","collectionId":-1,"tmdbId":449176},{"name":"Hellraiser Bloodline","year":1996,"posterUrl":"/library/metadata/1092/thumb/1599308230","imdbId":"","language":"en","overview":"In the 22nd century, a scientist attempts to right the wrong his ancestor created: the puzzle box that opens the gates of Hell and unleashes Pinhead and his Cenobite legions","moviesInCollection":[],"ratingKey":1092,"key":"/library/metadata/1092","collectionTitle":"","collectionId":-1,"tmdbId":8766},{"name":"All the Money in the World","year":2017,"posterUrl":"/library/metadata/164/thumb/1599307886","imdbId":"","language":"en","overview":"The story of the kidnapping of 16-year-old John Paul Getty III and the desperate attempt by his devoted mother to convince his billionaire grandfather Jean Paul Getty to pay the ransom.","moviesInCollection":[],"ratingKey":164,"key":"/library/metadata/164","collectionTitle":"","collectionId":-1,"tmdbId":446791},{"name":"Don't Worry, He Won't Get Far on Foot","year":2018,"posterUrl":"/library/metadata/734/thumb/1599308094","imdbId":"","language":"en","overview":"On the rocky path to sobriety after a life-changing accident, John Callahan discovers the healing power of art, willing his injured hands into drawing hilarious, often controversial cartoons, which bring him a new lease on life.","moviesInCollection":[],"ratingKey":734,"key":"/library/metadata/734","collectionTitle":"","collectionId":-1,"tmdbId":443009},{"name":"Lost Command","year":1966,"posterUrl":"/library/metadata/1416/thumb/1599308349","imdbId":"","language":"en","overview":"After being freed from a Vietnamese war prison, French Lt. Col. Pierre Raspeguy is sent to help quell resistance forces in Algeria. With the help of the Capt. Esclavier, who has grown weary of war, and Capt. Boisfeuras, who lives for it, Raspeguy attempts to convert a rugged band of soldiers into a formidable fighting unit, with the promise of marrying a beautiful countess if he's made a general.","moviesInCollection":[],"ratingKey":1416,"key":"/library/metadata/1416","collectionTitle":"","collectionId":-1,"tmdbId":41057},{"name":"Patriot Games","year":1992,"posterUrl":"/library/metadata/1710/thumb/1599308481","imdbId":"","language":"en","overview":"When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets Jack and his family as revenge.","moviesInCollection":[],"ratingKey":1710,"key":"/library/metadata/1710","collectionTitle":"","collectionId":-1,"tmdbId":9869},{"name":"Hereditary","year":2018,"posterUrl":"/library/metadata/1103/thumb/1599308233","imdbId":"","language":"en","overview":"When Ellen, the matriarch of the Graham family, passes away, her daughter’s family begins to unravel cryptic and increasingly terrifying secrets about their ancestry.","moviesInCollection":[],"ratingKey":1103,"key":"/library/metadata/1103","collectionTitle":"","collectionId":-1,"tmdbId":493922},{"name":"The Prodigy","year":2019,"posterUrl":"/library/metadata/2759/thumb/1599308905","imdbId":"","language":"en","overview":"A mother concerned about her young son's disturbing behavior thinks something supernatural may be affecting him.","moviesInCollection":[],"ratingKey":2759,"key":"/library/metadata/2759","collectionTitle":"","collectionId":-1,"tmdbId":532671},{"name":"The Experiment","year":2010,"posterUrl":"/library/metadata/2447/thumb/1599308778","imdbId":"","language":"en","overview":"20 men are chosen to participate in the roles of guards and prisoners in a psychological study that ultimately spirals out of control.","moviesInCollection":[],"ratingKey":2447,"key":"/library/metadata/2447","collectionTitle":"","collectionId":-1,"tmdbId":43549},{"name":"Sling Blade","year":1996,"posterUrl":"/library/metadata/2062/thumb/1599308633","imdbId":"","language":"en","overview":"Karl Childers is a mentally disabled man who has been in the custody of the state mental hospital since the age of 12 for killing his mother and her lover. Although thoroughly institutionalized, Karl is deemed fit to be released into the outside world.","moviesInCollection":[],"ratingKey":2062,"key":"/library/metadata/2062","collectionTitle":"","collectionId":-1,"tmdbId":12498},{"name":"Cobra","year":1986,"posterUrl":"/library/metadata/534/thumb/1599308023","imdbId":"","language":"en","overview":"A tough-on-crime street cop must protect the only surviving witness to a strange murderous cult with far reaching plans.","moviesInCollection":[],"ratingKey":534,"key":"/library/metadata/534","collectionTitle":"","collectionId":-1,"tmdbId":9874},{"name":"Pom Poko","year":2005,"posterUrl":"/library/metadata/46115/thumb/1599309155","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46115,"key":"/library/metadata/46115","collectionTitle":"","collectionId":-1,"tmdbId":15283},{"name":"Mary Poppins Returns","year":2018,"posterUrl":"/library/metadata/1462/thumb/1599308372","imdbId":"","language":"en","overview":"In Depression-era London, a now-grown Jane and Michael Banks, along with Michael's three children, are visited by the enigmatic Mary Poppins following a personal loss. Through her unique magical skills, and with the aid of her friend Jack, she helps the family rediscover the joy and wonder missing in their lives.","moviesInCollection":[],"ratingKey":1462,"key":"/library/metadata/1462","collectionTitle":"","collectionId":-1,"tmdbId":400650},{"name":"Poltergeist","year":2015,"posterUrl":"/library/metadata/1786/thumb/1599308513","imdbId":"","language":"en","overview":"Legendary filmmaker Sam Raimi and director Gil Kenan reimagine and contemporize the classic tale about a family whose suburban home is invaded by angry spirits. When the terrifying apparitions escalate their attacks and take the youngest daughter, the family must come together to rescue her.","moviesInCollection":[],"ratingKey":1786,"key":"/library/metadata/1786","collectionTitle":"","collectionId":-1,"tmdbId":243688},{"name":"Lion","year":2016,"posterUrl":"/library/metadata/1396/thumb/1599308340","imdbId":"","language":"en","overview":"A five-year-old Indian boy gets lost on the streets of Calcutta, thousands of kilometers from home. He survives many challenges before being adopted by a couple in Australia; 25 years later, he sets out to find his lost family.","moviesInCollection":[],"ratingKey":1396,"key":"/library/metadata/1396","collectionTitle":"","collectionId":-1,"tmdbId":334543},{"name":"Titanic","year":1997,"posterUrl":"/library/metadata/47213/thumb/1599309173","imdbId":"","language":"en","overview":"101-year-old Rose DeWitt Bukater tells the story of her life aboard the Titanic, 84 years later. A young Rose boards the ship with her mother and fiancé. Meanwhile, Jack Dawson and Fabrizio De Rossi win third-class tickets aboard the ship. Rose tells the whole story from Titanic's departure through to its death—on its first and last voyage—on April 15, 1912.","moviesInCollection":[],"ratingKey":47213,"key":"/library/metadata/47213","collectionTitle":"","collectionId":-1,"tmdbId":597},{"name":"Amnesiac","year":2015,"posterUrl":"/library/metadata/193/thumb/1599307898","imdbId":"","language":"en","overview":"The story of a man who wakes up in bed suffering from memory loss after being in an accident, only to begin to suspect that his wife may not be his real wife and that a web of lies and deceit deepen inside the house where he soon finds himself a prisoner.","moviesInCollection":[],"ratingKey":193,"key":"/library/metadata/193","collectionTitle":"","collectionId":-1,"tmdbId":351043},{"name":"Black Water Abyss","year":2020,"posterUrl":"/library/metadata/48380/thumb/1601124377","imdbId":"","language":"en","overview":"An adventure-loving couple convince their friends to explore a remote, uncharted cave system in the forests of Northern Australia. With a tropical storm approaching, they abseil into the mouth of the cave, but when the caves start to flood, tensions rise as oxygen levels fall and the friends find themselves trapped. Unknown to them, the storm has also brought in a pack of dangerous and hungry crocodiles.","moviesInCollection":[],"ratingKey":48380,"key":"/library/metadata/48380","collectionTitle":"","collectionId":-1,"tmdbId":522444},{"name":"Jason Goes to Hell The Final Friday","year":1993,"posterUrl":"/library/metadata/1224/thumb/1599308279","imdbId":"","language":"en","overview":"Jason Voorhees, the living, breathing essence of evil, is back for one fierce, final fling! Tracked down and blown to bits by a special FBI task force, everyone now assumes that he's finally dead. But everybody assumes wrong. Jason has been reborn with the bone-chilling ability to assume the identity of anyone he touches. The terrifying truth is that he could be anywhere, or anybody. In this shocking, blood-soaked finale to Jason's carnage-ridden reign of terror, the horrible secret of his unstoppable killing instinct is finally revealed.","moviesInCollection":[],"ratingKey":1224,"key":"/library/metadata/1224","collectionTitle":"","collectionId":-1,"tmdbId":10285},{"name":"Kung Fu Panda","year":2008,"posterUrl":"/library/metadata/1327/thumb/1599308316","imdbId":"","language":"en","overview":"When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the \"chosen one\" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.","moviesInCollection":[],"ratingKey":1327,"key":"/library/metadata/1327","collectionTitle":"","collectionId":-1,"tmdbId":9502},{"name":"Steven Universe The Movie","year":2019,"posterUrl":"/library/metadata/2167/thumb/1599308678","imdbId":"","language":"en","overview":"Two years after the events of \"Change Your Mind\", Steven (now 16 years old) and his friends are ready to enjoy the rest of their lives peacefully. However, all of that changes when a new sinister Gem arrives, armed with a giant drill that saps the life force of all living things on Earth. In their biggest challenge ever, the Crystal Gems must work together to save all organic life on Earth within 48 hours.","moviesInCollection":[],"ratingKey":2167,"key":"/library/metadata/2167","collectionTitle":"","collectionId":-1,"tmdbId":537061},{"name":"Lara Croft Tomb Raider","year":2001,"posterUrl":"/library/metadata/1340/thumb/1599308321","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1340,"key":"/library/metadata/1340","collectionTitle":"","collectionId":-1,"tmdbId":1995},{"name":"Hannibal Rising","year":2007,"posterUrl":"/library/metadata/1058/thumb/1599308216","imdbId":"","language":"en","overview":"The story of the early, murderous roots of the cannibalistic killer, Hannibal Lecter – from his hard-scrabble Lithuanian childhood, where he witnesses the repulsive lengths to which hungry soldiers will go to satiate themselves, through his sojourn in France, where as a med student he hones his appetite for the kill.","moviesInCollection":[],"ratingKey":1058,"key":"/library/metadata/1058","collectionTitle":"","collectionId":-1,"tmdbId":1248},{"name":"Collateral","year":2004,"posterUrl":"/library/metadata/546/thumb/1599308027","imdbId":"","language":"en","overview":"Cab driver Max picks up a man who offers him $600 to drive him around. But the promise of easy money sours when Max realizes his fare is an assassin.","moviesInCollection":[],"ratingKey":546,"key":"/library/metadata/546","collectionTitle":"","collectionId":-1,"tmdbId":1538},{"name":"After the Dark","year":2014,"posterUrl":"/library/metadata/128/thumb/1599307873","imdbId":"","language":"en","overview":"At an international school in Jakarta, a philosophy teacher challenges his class of twenty graduating seniors to choose which ten of them would take shelter underground and reboot the human race in the event of a nuclear apocalypse.","moviesInCollection":[],"ratingKey":128,"key":"/library/metadata/128","collectionTitle":"","collectionId":-1,"tmdbId":198287},{"name":"Alexander and the Terrible, Horrible, No Good, Very Bad Day","year":2014,"posterUrl":"/library/metadata/144/thumb/1599307879","imdbId":"","language":"en","overview":"Alexander's day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.","moviesInCollection":[],"ratingKey":144,"key":"/library/metadata/144","collectionTitle":"","collectionId":-1,"tmdbId":218778},{"name":"No Country for Old Men","year":2007,"posterUrl":"/library/metadata/1614/thumb/1599308439","imdbId":"","language":"en","overview":"Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.","moviesInCollection":[],"ratingKey":1614,"key":"/library/metadata/1614","collectionTitle":"","collectionId":-1,"tmdbId":6977},{"name":"Patch Adams","year":1998,"posterUrl":"/library/metadata/1706/thumb/1599308480","imdbId":"","language":"en","overview":"Patch Adams is a doctor who doesn't look, act or think like any doctor you've met before. For Patch, humour is the best medicine and he's willing to do just anything to make his patients laugh—even if it means risking his own career.","moviesInCollection":[],"ratingKey":1706,"key":"/library/metadata/1706","collectionTitle":"","collectionId":-1,"tmdbId":10312},{"name":"Streets of Fire","year":1984,"posterUrl":"/library/metadata/2181/thumb/1599308683","imdbId":"","language":"en","overview":"Raven Shaddock and his gang of merciless biker friends kidnap rock singer Ellen Aim. Ellen's former lover, soldier-for-hire Tom Cody, happens to be passing through town on a visit. In an attempt to save his star act, Ellen's manager hires Tom to rescue her. Along with a former soldier, they battle through dangerous cityscapes, determined to get Ellen back.","moviesInCollection":[],"ratingKey":2181,"key":"/library/metadata/2181","collectionTitle":"","collectionId":-1,"tmdbId":14746},{"name":"Wayne's World 2","year":1993,"posterUrl":"/library/metadata/3115/thumb/1599309036","imdbId":"","language":"en","overview":"A message from Jim Morrison in a dream prompts cable access TV stars Wayne and Garth to put on a rock concert, \"Waynestock,\" with Aerosmith as headliners. But amid the preparations, Wayne frets that a record producer is putting the moves on his girlfriend, Cassandra, while Garth handles the advances of mega-babe Honey Hornee.","moviesInCollection":[],"ratingKey":3115,"key":"/library/metadata/3115","collectionTitle":"","collectionId":-1,"tmdbId":8873},{"name":"The Town","year":2010,"posterUrl":"/library/metadata/2866/thumb/1599308951","imdbId":"","language":"en","overview":"Doug MacRay is a longtime thief, who, smarter than the rest of his crew, is looking for his chance to exit the game. When a bank job leads to the group kidnapping an attractive branch manager, he takes on the role of monitoring her – but their burgeoning relationship threatens to unveil the identities of Doug and his crew to the FBI Agent who is on their case.","moviesInCollection":[],"ratingKey":2866,"key":"/library/metadata/2866","collectionTitle":"","collectionId":-1,"tmdbId":23168},{"name":"The Hobbit The Desolation of Smaug","year":2013,"posterUrl":"/library/metadata/2544/thumb/1599308815","imdbId":"","language":"en","overview":"The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.","moviesInCollection":[],"ratingKey":2544,"key":"/library/metadata/2544","collectionTitle":"","collectionId":-1,"tmdbId":57158},{"name":"Frenzy","year":2018,"posterUrl":"/library/metadata/944/thumb/1599308172","imdbId":"","language":"en","overview":"A group of friends run a popular travel vlog that helps fund their adventures. The leader of the group brings along her younger sister for the next scuba diving trip to an isolated cove. But when their plane crashes, the two sisters must use their strength, resourcefulness and immense courage to survive a pack of great white sharks.","moviesInCollection":[],"ratingKey":944,"key":"/library/metadata/944","collectionTitle":"","collectionId":-1,"tmdbId":542787},{"name":"Thoroughbreds","year":2018,"posterUrl":"/library/metadata/2929/thumb/1599308973","imdbId":"","language":"en","overview":"Two teenage girls in suburban Connecticut rekindle their unlikely friendship after years of growing apart. In the process, they learn that neither is what she seems to be, and that a murder might solve both of their problems.","moviesInCollection":[],"ratingKey":2929,"key":"/library/metadata/2929","collectionTitle":"","collectionId":-1,"tmdbId":397722},{"name":"Sonic the Hedgehog","year":2020,"posterUrl":"/library/metadata/40887/thumb/1599309108","imdbId":"","language":"en","overview":"Based on the global blockbuster videogame franchise from Sega, Sonic the Hedgehog tells the story of the world’s speediest hedgehog as he embraces his new home on Earth. In this live-action adventure comedy, Sonic and his new best friend team up to defend the planet from the evil genius Dr. Robotnik and his plans for world domination.","moviesInCollection":[],"ratingKey":40887,"key":"/library/metadata/40887","collectionTitle":"","collectionId":-1,"tmdbId":454626},{"name":"Sharknado 5 Global Swarming","year":2017,"posterUrl":"/library/metadata/2014/thumb/1599308610","imdbId":"","language":"en","overview":"Fin and his wife April travel around the world to save their young son who's trapped inside a sharknado.","moviesInCollection":[],"ratingKey":2014,"key":"/library/metadata/2014","collectionTitle":"","collectionId":-1,"tmdbId":438970},{"name":"The Death of Superman","year":2018,"posterUrl":"/library/metadata/2407/thumb/1599308762","imdbId":"","language":"en","overview":"When a hulking monster arrives on Earth and begins a mindless rampage, the Justice League is quickly called in to stop it. But it soon becomes apparent that only Superman can stand against the monstrosity.","moviesInCollection":[],"ratingKey":2407,"key":"/library/metadata/2407","collectionTitle":"","collectionId":-1,"tmdbId":487670},{"name":"The Scorpion King Quest for Power","year":2015,"posterUrl":"/library/metadata/2801/thumb/1599308924","imdbId":"","language":"en","overview":"When he is betrayed by a trusted friend, Mathayus must marshal all his strength and cunning to outwit a formidable opponent who will stop at nothing to unlock a supreme ancient power.","moviesInCollection":[],"ratingKey":2801,"key":"/library/metadata/2801","collectionTitle":"","collectionId":-1,"tmdbId":297291},{"name":"Doctor Sleep","year":2019,"posterUrl":"/library/metadata/721/thumb/1599308089","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":721,"key":"/library/metadata/721","collectionTitle":"","collectionId":-1,"tmdbId":501170},{"name":"Visiting Hours","year":1982,"posterUrl":"/library/metadata/3086/thumb/1599309026","imdbId":"","language":"en","overview":"A slasher finds the hospital where a TV newswoman is recovering from his attack.","moviesInCollection":[],"ratingKey":3086,"key":"/library/metadata/3086","collectionTitle":"","collectionId":-1,"tmdbId":46885},{"name":"Munchie","year":1992,"posterUrl":"/library/metadata/1563/thumb/1599308417","imdbId":"","language":"en","overview":"No friends. The new school sucks. And Mom (Loni Anderson) is in love with a sleazy lawyer (Andrew Stevens). Pretty bleak. That’s how life looks to ten-year-old Gage (Jaime McEnnan) when suddenly, into his world pops the magical Munchie (Dom DeLuise). Munchie is the ever-hungry and hilarious mysterious creature from another world who delivers flying pizzas and brings on the parties! With the help of Munchie and loony Professor Cruikshank (Arte Johnson), Gage evens the score on his school’s bullies as well as his mom’s boyfriend and has the greatest summer ever!","moviesInCollection":[],"ratingKey":1563,"key":"/library/metadata/1563","collectionTitle":"","collectionId":-1,"tmdbId":116158},{"name":"The Dark Tower","year":2017,"posterUrl":"/library/metadata/2388/thumb/1599308755","imdbId":"","language":"en","overview":"The last Gunslinger, Roland Deschain, has been locked in an eternal battle with Walter O’Dim, also known as the Man in Black, determined to prevent him from toppling the Dark Tower, which holds the universe together. With the fate of the worlds at stake, good and evil will collide in the ultimate battle as only Roland can defend the Tower from the Man in Black.","moviesInCollection":[],"ratingKey":2388,"key":"/library/metadata/2388","collectionTitle":"","collectionId":-1,"tmdbId":353491},{"name":"Tusk","year":2014,"posterUrl":"/library/metadata/3021/thumb/1599309004","imdbId":"","language":"en","overview":"When his best friend and podcast co-host goes missing in the backwoods of Canada, a young guy joins forces with his friend's girlfriend to search for him.","moviesInCollection":[],"ratingKey":3021,"key":"/library/metadata/3021","collectionTitle":"","collectionId":-1,"tmdbId":246403},{"name":"Elf","year":2003,"posterUrl":"/library/metadata/812/thumb/1599308121","imdbId":"","language":"en","overview":"When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic publisher.","moviesInCollection":[],"ratingKey":812,"key":"/library/metadata/812","collectionTitle":"","collectionId":-1,"tmdbId":10719},{"name":"Starfish","year":2018,"posterUrl":"/library/metadata/46621/thumb/1599309167","imdbId":"","language":"en","overview":"A unique, intimate and honest portrayal of a girl grieving for the loss of her best friend. That just happens to take place on the day the world ends as we know it.","moviesInCollection":[],"ratingKey":46621,"key":"/library/metadata/46621","collectionTitle":"","collectionId":-1,"tmdbId":542713},{"name":"30 Minutes or Less","year":2011,"posterUrl":"/library/metadata/33/thumb/1599307838","imdbId":"","language":"en","overview":"Two fledgling criminals kidnap a pizza delivery guy, strap a bomb to his chest, and advise him that he has mere hours to rob a bank or else...","moviesInCollection":[],"ratingKey":33,"key":"/library/metadata/33","collectionTitle":"","collectionId":-1,"tmdbId":62206},{"name":"Who's Harry Crumb?","year":1989,"posterUrl":"/library/metadata/3142/thumb/1599309045","imdbId":"","language":"en","overview":"Harry Crumb is a bumbling and inept private investigator who is hired to solve the kidnapping of a young heiress which he's not expected to solve because his employer is the mastermind behind the kidnapping.","moviesInCollection":[],"ratingKey":3142,"key":"/library/metadata/3142","collectionTitle":"","collectionId":-1,"tmdbId":11718},{"name":"Bridge of Spies","year":2015,"posterUrl":"/library/metadata/429/thumb/1599307983","imdbId":"","language":"en","overview":"During the Cold War, the Soviet Union captures U.S. pilot Francis Gary Powers after shooting down his U-2 spy plane. Sentenced to 10 years in prison, Powers' only hope is New York lawyer James Donovan, recruited by a CIA operative to negotiate his release. Donovan boards a plane to Berlin, hoping to win the young man's freedom through a prisoner exchange. If all goes well, the Russians would get Rudolf Abel, the convicted spy who Donovan defended in court.","moviesInCollection":[],"ratingKey":429,"key":"/library/metadata/429","collectionTitle":"","collectionId":-1,"tmdbId":296098},{"name":"Malevolence","year":2004,"posterUrl":"/library/metadata/1449/thumb/1599308364","imdbId":"","language":"en","overview":"It's ten years after the kidnapping of Martin Bristol. Taken from a backyard swing at his home at the age of six, he is forced to witness unspeakable crimes of a deranged madman. For years, Martin's whereabouts have remained a mystery...until now.","moviesInCollection":[],"ratingKey":1449,"key":"/library/metadata/1449","collectionTitle":"","collectionId":-1,"tmdbId":54702},{"name":"Sniper Assassin's End","year":2020,"posterUrl":"/library/metadata/43710/thumb/1599309147","imdbId":"","language":"en","overview":"Special Ops sniper Brandon Beckett is set up as the primary suspect for the murder of a foreign dignitary on the eve of signing a high-profile trade agreement with the United States. Narrowly escaping death, Beckett realizes that there may be a dark operative working within the government, and partners with the only person whom he can trust: his father, legendary sniper Sgt. Thomas Beckett. Both Becketts are on the run from the CIA, Russian mercenaries and Lady Death, a Yakuza-trained assassin with sniper skills that rival both legendary sharpshooters.","moviesInCollection":[],"ratingKey":43710,"key":"/library/metadata/43710","collectionTitle":"","collectionId":-1,"tmdbId":702936},{"name":"Jailbait","year":2014,"posterUrl":"/library/metadata/1221/thumb/1599308278","imdbId":"","language":"en","overview":"A gritty coming of age thriller about a young girl sent to juvenile prison for the murder of her abusive step father. The film follows Anna Nix's journey into the dark world of an all girls jail where she discovers complex relationships, drugs, mental illness and her eventual search for redemption.","moviesInCollection":[],"ratingKey":1221,"key":"/library/metadata/1221","collectionTitle":"","collectionId":-1,"tmdbId":253046},{"name":"Nostalgia","year":2018,"posterUrl":"/library/metadata/1620/thumb/1599308442","imdbId":"","language":"en","overview":"A mosaic of stories about love and loss, exploring our relationship to the objects, artifacts, and memories that shape our lives.","moviesInCollection":[],"ratingKey":1620,"key":"/library/metadata/1620","collectionTitle":"","collectionId":-1,"tmdbId":442709},{"name":"Ghost Stories","year":2018,"posterUrl":"/library/metadata/993/thumb/1599308190","imdbId":"","language":"en","overview":"Professor Phillip Goodman devotes his life to exposing phony psychics and fraudulent supernatural shenanigans. His skepticism soon gets put to the test when he receives news of three chilling and inexplicable cases -- disturbing visions in an abandoned asylum, a car accident deep in the woods and the spirit of an unborn child. Even scarier -- each of the macabre stories seems to have a sinister connection to the professor's own life.","moviesInCollection":[],"ratingKey":993,"key":"/library/metadata/993","collectionTitle":"","collectionId":-1,"tmdbId":429417},{"name":"Mission to Mars","year":2000,"posterUrl":"/library/metadata/1525/thumb/1599308401","imdbId":"","language":"en","overview":"When contact is lost with the crew of the first Mars expedition, a rescue mission is launched to discover their fate.","moviesInCollection":[],"ratingKey":1525,"key":"/library/metadata/1525","collectionTitle":"","collectionId":-1,"tmdbId":2067},{"name":"Batman The Dark Knight Returns, Part 2","year":2013,"posterUrl":"/library/metadata/302/thumb/1599307937","imdbId":"","language":"en","overview":"Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.","moviesInCollection":[],"ratingKey":302,"key":"/library/metadata/302","collectionTitle":"","collectionId":-1,"tmdbId":142061},{"name":"Iron Man","year":2008,"posterUrl":"/library/metadata/1207/thumb/1599308272","imdbId":"","language":"en","overview":"After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.","moviesInCollection":[],"ratingKey":1207,"key":"/library/metadata/1207","collectionTitle":"","collectionId":-1,"tmdbId":1726},{"name":"Natural Born Killers","year":1994,"posterUrl":"/library/metadata/1595/thumb/1599308430","imdbId":"","language":"en","overview":"Two victims of traumatized childhoods become lovers and psychopathic serial murderers irresponsibly glorified by the mass media.","moviesInCollection":[],"ratingKey":1595,"key":"/library/metadata/1595","collectionTitle":"","collectionId":-1,"tmdbId":241},{"name":"LEGO DC Comics Super Heroes Justice League vs. Bizarro League","year":2015,"posterUrl":"/library/metadata/1357/thumb/1599308327","imdbId":"","language":"en","overview":"Superman’s clone, Bizarro, has become an embarrassing problem. Chaos and destruction follow Bizarro everywhere as he always hears the opposite of what is said, says the opposite of what he means and does the opposite of what is right. And when the citizens of Metropolis keep confusing Bizarro with Superman, the Man of Steel decides it’s time to find a new home for him…on another planet! It’s up to the Justice League to come to terms with their backward counterparts and team up with them to stop Darkseid and save the galaxy!","moviesInCollection":[],"ratingKey":1357,"key":"/library/metadata/1357","collectionTitle":"","collectionId":-1,"tmdbId":322456},{"name":"The Prince","year":2014,"posterUrl":"/library/metadata/2754/thumb/1599308902","imdbId":"","language":"en","overview":"A family man who turns out to be a retired mob enforcer must travel across the country to find his daughter who has gone missing.","moviesInCollection":[],"ratingKey":2754,"key":"/library/metadata/2754","collectionTitle":"","collectionId":-1,"tmdbId":241254},{"name":"Timecop","year":1994,"posterUrl":"/library/metadata/2942/thumb/1599308977","imdbId":"","language":"en","overview":"An officer for a security agency that regulates time travel, must fend for his life against a shady politician who has a tie to his past.","moviesInCollection":[],"ratingKey":2942,"key":"/library/metadata/2942","collectionTitle":"","collectionId":-1,"tmdbId":8831},{"name":"Daybreakers","year":2009,"posterUrl":"/library/metadata/648/thumb/1599308062","imdbId":"","language":"en","overview":"In the year 2019, a plague has transformed almost every human into vampires. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.","moviesInCollection":[],"ratingKey":648,"key":"/library/metadata/648","collectionTitle":"","collectionId":-1,"tmdbId":19901},{"name":"Shaft","year":2019,"posterUrl":"/library/metadata/2010/thumb/1599308608","imdbId":"","language":"en","overview":"JJ, aka John Shaft Jr., may be a cyber security expert with a degree from MIT, but to uncover the truth behind his best friend’s untimely death, he needs an education only his dad can provide. Absent throughout JJ’s youth, the legendary locked-and-loaded John Shaft agrees to help his progeny navigate Harlem’s heroin-infested underbelly.","moviesInCollection":[],"ratingKey":2010,"key":"/library/metadata/2010","collectionTitle":"","collectionId":-1,"tmdbId":486131},{"name":"Adrift","year":2018,"posterUrl":"/library/metadata/123/thumb/1599307871","imdbId":"","language":"en","overview":"A true story of survival, as a young couple's chance encounter leads them first to love, and then on the adventure of a lifetime as they face one of the most catastrophic hurricanes in recorded history.","moviesInCollection":[],"ratingKey":123,"key":"/library/metadata/123","collectionTitle":"","collectionId":-1,"tmdbId":429300},{"name":"Walking Out","year":2017,"posterUrl":"/library/metadata/3094/thumb/1599309029","imdbId":"","language":"en","overview":"A city teen travels to Montana to go hunting with his estranged father, only for the strained trip to become a battle for survival when they encounter a grizzly bear","moviesInCollection":[],"ratingKey":3094,"key":"/library/metadata/3094","collectionTitle":"","collectionId":-1,"tmdbId":428446},{"name":"Widows","year":2019,"posterUrl":"/library/metadata/3146/thumb/1599309047","imdbId":"","language":"en","overview":"A police shootout leaves four thieves dead during an explosive armed robbery attempt in Chicago. Their widows have nothing in common except a debt left behind by their spouses' criminal activities. Hoping to forge a future on their own terms, they join forces to pull off a heist.","moviesInCollection":[],"ratingKey":3146,"key":"/library/metadata/3146","collectionTitle":"","collectionId":-1,"tmdbId":401469},{"name":"Batman The Dark Knight Returns, Part 1","year":2012,"posterUrl":"/library/metadata/301/thumb/1599307937","imdbId":"","language":"en","overview":"Batman has not been seen for ten years. A new breed of criminal ravages Gotham City, forcing 55-year-old Bruce Wayne back into the cape and cowl. But, does he still have what it takes to fight crime in a new era?","moviesInCollection":[],"ratingKey":301,"key":"/library/metadata/301","collectionTitle":"","collectionId":-1,"tmdbId":123025},{"name":"A Damsel in Distress","year":1937,"posterUrl":"/library/metadata/58/thumb/1599307846","imdbId":"","language":"en","overview":"Lady Alyce Marshmorton must marry soon, and the staff of Tottney Castle have laid bets on who she'll choose, with young Albert wagering on \"Mr. X.\" After Alyce goes to London to meet a beau (bumping into dancer Jerry Halliday, instead), she is restricted to the castle to curb her scandalous behavior. Albert then summons Jerry to Alyce's aid in order to \"protect his investment.\"","moviesInCollection":[],"ratingKey":58,"key":"/library/metadata/58","collectionTitle":"","collectionId":-1,"tmdbId":66473},{"name":"The Sicilian","year":1987,"posterUrl":"/library/metadata/2815/thumb/1599308930","imdbId":"","language":"en","overview":"Egocentric bandit Salvatore Guiliano fights the Church, the Mafia, and the landed gentry while leading a populist movement for Sicilian independence.","moviesInCollection":[],"ratingKey":2815,"key":"/library/metadata/2815","collectionTitle":"","collectionId":-1,"tmdbId":31945},{"name":"A Twist of the Wrist II","year":2009,"posterUrl":"/library/metadata/3027/thumb/1599309006","imdbId":"","language":"en","overview":"Filmed in HiDef with advanced film making technology, this film shows riding technique in ways that have never been done before and brings Code's bestselling book vividly to life.","moviesInCollection":[],"ratingKey":3027,"key":"/library/metadata/3027","collectionTitle":"","collectionId":-1,"tmdbId":133528},{"name":"Passengers","year":2016,"posterUrl":"/library/metadata/1705/thumb/1599308480","imdbId":"","language":"en","overview":"A spacecraft traveling to a distant colony planet and transporting thousands of people has a malfunction in its sleep chambers. As a result, two passengers are awakened 90 years early.","moviesInCollection":[],"ratingKey":1705,"key":"/library/metadata/1705","collectionTitle":"","collectionId":-1,"tmdbId":274870},{"name":"Inherit the Viper","year":2020,"posterUrl":"/library/metadata/39364/thumb/1599309082","imdbId":"","language":"en","overview":"Since the death of their father, the Riley siblings have kept their heads above water by illegally dealing in painkillers. Josie is managing the business with an iron fist, when her brother, War veteran Kip, is concerned that the risky business is increasingly turning them into outsiders in their small community. While Kip wants to keep his younger brother out of their illegal endeavors, his younger brother is already making plans of his own.","moviesInCollection":[],"ratingKey":39364,"key":"/library/metadata/39364","collectionTitle":"","collectionId":-1,"tmdbId":634904},{"name":"Freddy vs. Jason","year":2003,"posterUrl":"/library/metadata/940/thumb/1599308171","imdbId":"","language":"en","overview":"In an attempt to free himself from a state of forgotten limbo, evil dream-demon Freddy Krueger (Robert Englund) devises a plan to manipulate un-dead mass murderer Jason Voorhees (Ken Kirzenger) into slicing-and-dicing his way through the teenage population of Springwood. But when the master of dreams loses control of his monster, a brutal fight to the death is the only way out in this long anticipated crossover between two of modern horror's most notorious killers!","moviesInCollection":[],"ratingKey":940,"key":"/library/metadata/940","collectionTitle":"","collectionId":-1,"tmdbId":6466},{"name":"Black Christmas","year":2019,"posterUrl":"/library/metadata/27826/thumb/1599309071","imdbId":"","language":"en","overview":"Hawthorne College is winding down for the holidays, yet one by one, sorority girls are being picked off. Riley Stone, a girl dealing with her own trauma, begins to notice and tries to save her friends before they too are picked off.","moviesInCollection":[],"ratingKey":27826,"key":"/library/metadata/27826","collectionTitle":"","collectionId":-1,"tmdbId":551808},{"name":"Another Cinderella Story","year":2008,"posterUrl":"/library/metadata/39785/thumb/1599309096","imdbId":"","language":"en","overview":"A guy who danced with what could be the girl of his dreams at a costume ball only has one hint at her identity: the Zune she left behind as she rushed home in order to make her curfew. And with a once-in-a-lifetime opportunity in front of him, he sets out to find his masked beauty.","moviesInCollection":[],"ratingKey":39785,"key":"/library/metadata/39785","collectionTitle":"","collectionId":-1,"tmdbId":15157},{"name":"Geostorm","year":2018,"posterUrl":"/library/metadata/979/thumb/1599308185","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":979,"key":"/library/metadata/979","collectionTitle":"","collectionId":-1,"tmdbId":274855},{"name":"Push","year":2009,"posterUrl":"/library/metadata/1824/thumb/1599308529","imdbId":"","language":"en","overview":"After his father, an assassin, is brutally murdered, Nick Gant vows revenge on Division, the covert government agency that dabbles in psychic warfare and experimental drugs. Hiding in Hong Kong's underworld, Nick assembles a band of rogue psychics dedicated to destroying Division. Together with Cassie, a teenage clairvoyant, Nick goes in search of a missing girl and a stolen suitcase that could be the key to accomplishing their mutual goal.","moviesInCollection":[],"ratingKey":1824,"key":"/library/metadata/1824","collectionTitle":"","collectionId":-1,"tmdbId":13455},{"name":"22 Jump Street","year":2014,"posterUrl":"/library/metadata/39590/thumb/1599309086","imdbId":"","language":"en","overview":"After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.","moviesInCollection":[],"ratingKey":39590,"key":"/library/metadata/39590","collectionTitle":"","collectionId":-1,"tmdbId":187017},{"name":"Home Alone The Holiday Heist","year":2012,"posterUrl":"/library/metadata/1122/thumb/1599308241","imdbId":"","language":"en","overview":"8-year-old Finn is terrified to learn his family is relocating from sunny California to Maine in the scariest house he has ever seen! Convinced that his new house is haunted, Finn sets up a series of elaborate traps to catch the “ghost” in action. Left home alone with his sister while their parents are stranded across town, Finn’s traps catch a new target – a group of thieves who have targeted Finn’s house.","moviesInCollection":[],"ratingKey":1122,"key":"/library/metadata/1122","collectionTitle":"","collectionId":-1,"tmdbId":134375},{"name":"Crypto","year":2019,"posterUrl":"/library/metadata/610/thumb/1599308050","imdbId":"","language":"en","overview":"A young agent is tasked with investigating a tangled web of corruption and fraud in New York.","moviesInCollection":[],"ratingKey":610,"key":"/library/metadata/610","collectionTitle":"","collectionId":-1,"tmdbId":567733},{"name":"The Outpost","year":2020,"posterUrl":"/library/metadata/46952/thumb/1599309172","imdbId":"","language":"en","overview":"A small unit of U.S. soldiers, alone at the remote Combat Outpost Keating, located deep in the valley of three mountains in Afghanistan, battles to defend against an overwhelming force of Taliban fighters in a coordinated attack. The Battle of Kamdesh, as it was known, was the bloodiest American engagement of the Afghan War in 2009 and Bravo Troop 3-61 CAV became one of the most decorated units of the 19-year conflict.","moviesInCollection":[],"ratingKey":46952,"key":"/library/metadata/46952","collectionTitle":"","collectionId":-1,"tmdbId":531876},{"name":"Napoleon Dynamite","year":2004,"posterUrl":"/library/metadata/1586/thumb/1599308426","imdbId":"","language":"en","overview":"A listless and alienated teenager decides to help his new friend win the class presidency in their small western high school, while he must deal with his bizarre family life back home.","moviesInCollection":[],"ratingKey":1586,"key":"/library/metadata/1586","collectionTitle":"","collectionId":-1,"tmdbId":8193},{"name":"Bad Moms","year":2016,"posterUrl":"/library/metadata/270/thumb/1599307926","imdbId":"","language":"en","overview":"When three overworked and under-appreciated moms are pushed beyond their limits, they ditch their conventional responsibilities for a jolt of long overdue freedom, fun, and comedic self-indulgence.","moviesInCollection":[],"ratingKey":270,"key":"/library/metadata/270","collectionTitle":"","collectionId":-1,"tmdbId":376659},{"name":"Pan's Labyrinth","year":2006,"posterUrl":"/library/metadata/1693/thumb/1599308474","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1693,"key":"/library/metadata/1693","collectionTitle":"","collectionId":-1,"tmdbId":1417},{"name":"Independence Day","year":1996,"posterUrl":"/library/metadata/1185/thumb/1599308263","imdbId":"","language":"en","overview":"On July 2, a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped 'destroyer' spacecraft that quickly lay waste to major cities around the planet. On July 3, the United States conducts a coordinated counterattack that fails. On July 4, a plan is devised to gain access to the interior of the alien mothership in space, in order to plant a nuclear missile.","moviesInCollection":[],"ratingKey":1185,"key":"/library/metadata/1185","collectionTitle":"","collectionId":-1,"tmdbId":602},{"name":"Coco","year":2017,"posterUrl":"/library/metadata/536/thumb/1599308024","imdbId":"","language":"en","overview":"Despite his family’s baffling generations-old ban on music, Miguel dreams of becoming an accomplished musician like his idol, Ernesto de la Cruz. Desperate to prove his talent, Miguel finds himself in the stunning and colorful Land of the Dead following a mysterious chain of events. Along the way, he meets charming trickster Hector, and together, they set off on an extraordinary journey to unlock the real story behind Miguel's family history.","moviesInCollection":[],"ratingKey":536,"key":"/library/metadata/536","collectionTitle":"","collectionId":-1,"tmdbId":354912},{"name":"Flashpoint","year":1984,"posterUrl":"/library/metadata/917/thumb/1599308160","imdbId":"","language":"en","overview":"Two Texas border guards find a jeep buried for 20 years in the desert, with a skeleton, a scoped rifle, and a box with $800,000 in cash. They decide to keep the money, but quietly check up on the info they find. Soon the Feds are running all over the place, and it looks like jeep maybe linked to the JFK assassination. But the Feds are trying to cover it up, and eliminate anyone involved with the jeep.","moviesInCollection":[],"ratingKey":917,"key":"/library/metadata/917","collectionTitle":"","collectionId":-1,"tmdbId":47825},{"name":"A-X-L","year":2018,"posterUrl":"/library/metadata/104/thumb/1599307864","imdbId":"","language":"en","overview":"The life of a teenage boy is forever altered by a chance encounter with cutting edge military technology.","moviesInCollection":[],"ratingKey":104,"key":"/library/metadata/104","collectionTitle":"","collectionId":-1,"tmdbId":438590},{"name":"Yesterday","year":2019,"posterUrl":"/library/metadata/3187/thumb/1599309060","imdbId":"","language":"en","overview":"Jack Malik is a struggling singer-songwriter in an English seaside town whose dreams of fame are rapidly fading, despite the fierce devotion and support of his childhood best friend, Ellie. After a freak bus accident during a mysterious global blackout, Jack wakes up to discover that he's the only person on Earth who can remember The Beatles.","moviesInCollection":[],"ratingKey":3187,"key":"/library/metadata/3187","collectionTitle":"","collectionId":-1,"tmdbId":515195},{"name":"Looper","year":2012,"posterUrl":"/library/metadata/1413/thumb/1599308347","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1413,"key":"/library/metadata/1413","collectionTitle":"","collectionId":-1,"tmdbId":59967},{"name":"The Serpent and the Rainbow","year":1988,"posterUrl":"/library/metadata/2808/thumb/1599308927","imdbId":"","language":"en","overview":"A Harvard anthropologist is sent to Haiti to retrieve a strange powder that is said to have the power to bring human beings back from the dead. In his quest to find the miracle drug, the cynical scientist enters the rarely seen netherworld of walking zombies, blood rites and ancient curses. Based on the true life experiences of Wade Davis and filmed on location in Haiti, it's a frightening excursion into black magic and the supernatural.","moviesInCollection":[],"ratingKey":2808,"key":"/library/metadata/2808","collectionTitle":"","collectionId":-1,"tmdbId":11503},{"name":"Good Time","year":2017,"posterUrl":"/library/metadata/1016/thumb/1599308200","imdbId":"","language":"en","overview":"After a botched bank robbery lands his younger brother in prison, Connie Nikas embarks on a twisted odyssey through New York City's underworld to get his brother Nick out of jail.","moviesInCollection":[],"ratingKey":1016,"key":"/library/metadata/1016","collectionTitle":"","collectionId":-1,"tmdbId":429200},{"name":"Mary and the Witch's Flower","year":2018,"posterUrl":"/library/metadata/1461/thumb/1599308371","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1461,"key":"/library/metadata/1461","collectionTitle":"","collectionId":-1,"tmdbId":430447},{"name":"Ouija Origin of Evil","year":2016,"posterUrl":"/library/metadata/1671/thumb/1599308465","imdbId":"","language":"en","overview":"In 1965 Los Angeles, a widowed mother and her two daughters add a new stunt to bolster their séance scam business and unwittingly invite authentic evil into their home. When the youngest daughter is overtaken by the merciless spirit, this small family confronts unthinkable fears to save her and send her possessor back to the other side.","moviesInCollection":[],"ratingKey":1671,"key":"/library/metadata/1671","collectionTitle":"","collectionId":-1,"tmdbId":335796},{"name":"Lowriders","year":2016,"posterUrl":"/library/metadata/1423/thumb/1599308352","imdbId":"","language":"en","overview":"A young street artist in East Los Angeles is caught between his father's obsession with lowrider car culture, his ex-felon brother and his need for self-expression.","moviesInCollection":[],"ratingKey":1423,"key":"/library/metadata/1423","collectionTitle":"","collectionId":-1,"tmdbId":333384},{"name":"The Hitcher","year":1986,"posterUrl":"/library/metadata/2540/thumb/1599308813","imdbId":"","language":"en","overview":"On a stormy night, young Jim, who transports a luxury car from Chicago to California to deliver it to its owner, feeling tired and sleepy, picks up a mysterious hitchhiker, who has appeared out of nowhere, thinking that a good conversation will help him not to fall asleep. He will have enough time to deeply regret such an unmeditated decision.","moviesInCollection":[],"ratingKey":2540,"key":"/library/metadata/2540","collectionTitle":"","collectionId":-1,"tmdbId":9542},{"name":"Dark Horse","year":2012,"posterUrl":"/library/metadata/635/thumb/1599308058","imdbId":"","language":"en","overview":"Abe is a man who is in his thirties and who lives with his parents. He works regretfully for his father while pursuing his hobby of collecting toys. Aware that his family doesn't think highly of him, he tries to spark a relationship with Miranda, who recently moved back home after a failed literary/academic career. Miranda agrees to marry Abe out of desperation, but things go awry.","moviesInCollection":[],"ratingKey":635,"key":"/library/metadata/635","collectionTitle":"","collectionId":-1,"tmdbId":83384},{"name":"Goodbye Christopher Robin","year":2017,"posterUrl":"/library/metadata/1018/thumb/1599308200","imdbId":"","language":"en","overview":"The behind the scenes story of the life of A.A. Milne and the creation of the Winnie the Pooh stories inspired by his son Christopher Robin.","moviesInCollection":[],"ratingKey":1018,"key":"/library/metadata/1018","collectionTitle":"","collectionId":-1,"tmdbId":418680},{"name":"Mad Max 2","year":1982,"posterUrl":"/library/metadata/1433/thumb/1599308357","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1433,"key":"/library/metadata/1433","collectionTitle":"","collectionId":-1,"tmdbId":8810},{"name":"Justice League Dark","year":2017,"posterUrl":"/library/metadata/1281/thumb/1599308300","imdbId":"","language":"en","overview":"Beings with supernatural powers join together to fight against supernatural villains.","moviesInCollection":[],"ratingKey":1281,"key":"/library/metadata/1281","collectionTitle":"","collectionId":-1,"tmdbId":408220},{"name":"Da 5 Bloods","year":2020,"posterUrl":"/library/metadata/43705/thumb/1599309146","imdbId":"","language":"en","overview":"Four African American Vietnam veterans return to Vietnam. They are in search of the remains of their fallen squad leader and the promise of buried treasure. These heroes battle forces of humanity and nature while confronted by the lasting ravages of the immorality of the Vietnam War.","moviesInCollection":[],"ratingKey":43705,"key":"/library/metadata/43705","collectionTitle":"","collectionId":-1,"tmdbId":581859},{"name":"Christine","year":1983,"posterUrl":"/library/metadata/508/thumb/1599308014","imdbId":"","language":"en","overview":"Geeky student Arnie Cunningham falls for Christine, a rusty 1958 Plymouth Fury, and becomes obsessed with restoring the classic automobile to her former glory. As the car changes, so does Arnie, whose newfound confidence turns to arrogance behind the wheel of his exotic beauty. Arnie's girlfriend Leigh and best friend Dennis reach out to him, only to be met by a Fury like no other.","moviesInCollection":[],"ratingKey":508,"key":"/library/metadata/508","collectionTitle":"","collectionId":-1,"tmdbId":8769},{"name":"The Day After Tomorrow","year":2004,"posterUrl":"/library/metadata/2397/thumb/1599308758","imdbId":"","language":"en","overview":"After years of increases in the greenhouse effect, havoc is wreaked globally in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and the beginning of a new Ice Age. Paleoclimatologist, Jack Hall tries to warn the world while also shepherding to safety his son, trapped in New York after the city is overwhelmed by the start of the new big freeze.","moviesInCollection":[],"ratingKey":2397,"key":"/library/metadata/2397","collectionTitle":"","collectionId":-1,"tmdbId":435},{"name":"The Curse of La Llorona","year":2019,"posterUrl":"/library/metadata/2385/thumb/1599308754","imdbId":"","language":"en","overview":"A social worker dealing with the disappearance of two children fears for her own family after beginning the investigation.","moviesInCollection":[],"ratingKey":2385,"key":"/library/metadata/2385","collectionTitle":"","collectionId":-1,"tmdbId":480414},{"name":"Tolkien","year":2019,"posterUrl":"/library/metadata/2949/thumb/1599308980","imdbId":"","language":"en","overview":"England, early 20th century. The future writer and philologist John Ronald Reuel Tolkien (1892-1973) and three of his schoolmates create a strong bond between them as they share the same passion for literature and art, a true fellowship that strengthens as they grow up, but the outbreak of World War I threatens to shatter it.","moviesInCollection":[],"ratingKey":2949,"key":"/library/metadata/2949","collectionTitle":"","collectionId":-1,"tmdbId":468224},{"name":"The Wrestler","year":2008,"posterUrl":"/library/metadata/2907/thumb/1599308966","imdbId":"","language":"en","overview":"Aging wrestler Randy \"The Ram\" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.","moviesInCollection":[],"ratingKey":2907,"key":"/library/metadata/2907","collectionTitle":"","collectionId":-1,"tmdbId":12163},{"name":"Assassination Nation","year":2018,"posterUrl":"/library/metadata/231/thumb/1599307912","imdbId":"","language":"en","overview":"High school senior Lily and her group of friends live in a haze of texts, posts, selfies and chats just like the rest of the world. So, when an anonymous hacker starts posting details from the private lives of everyone in their small town, the result is absolute madness leaving Lily and her friends questioning whether they'll live through the night.","moviesInCollection":[],"ratingKey":231,"key":"/library/metadata/231","collectionTitle":"","collectionId":-1,"tmdbId":446101},{"name":"Titan A.E.","year":2000,"posterUrl":"/library/metadata/2943/thumb/1599308978","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2943,"key":"/library/metadata/2943","collectionTitle":"","collectionId":-1,"tmdbId":7450},{"name":"Good Will Hunting","year":1997,"posterUrl":"/library/metadata/1017/thumb/1599308200","imdbId":"","language":"en","overview":"Will Hunting has a genius-level IQ but chooses to work as a janitor at MIT. When he solves a difficult graduate-level math problem, his talents are discovered by Professor Gerald Lambeau, who decides to help the misguided youth reach his potential. When Will is arrested for attacking a police officer, Professor Lambeau makes a deal to get leniency for him if he will get treatment from therapist Sean Maguire.","moviesInCollection":[],"ratingKey":1017,"key":"/library/metadata/1017","collectionTitle":"","collectionId":-1,"tmdbId":489},{"name":"Sniper Legacy","year":2014,"posterUrl":"/library/metadata/47271/thumb/1599309176","imdbId":"","language":"en","overview":"A rogue gunman is assassinating high-ranking military officers one by one. When Gunnery Sgt. Brandon Beckett is informed his father, legendary shooter Thomas Beckett has been killed, Brandon springs into action to take out the perpetrator. But when his father rescues him from an ambush, Brandon realizes he's a pawn being played by his superiors to draw out the killer. It's up to the two men, bound by blood, to bring an end to the carnage.","moviesInCollection":[],"ratingKey":47271,"key":"/library/metadata/47271","collectionTitle":"","collectionId":-1,"tmdbId":290729},{"name":"Sin City A Dame to Kill For","year":2014,"posterUrl":"/library/metadata/2041/thumb/1599308623","imdbId":"","language":"en","overview":"Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.","moviesInCollection":[],"ratingKey":2041,"key":"/library/metadata/2041","collectionTitle":"","collectionId":-1,"tmdbId":189},{"name":"Mean Girls","year":2004,"posterUrl":"/library/metadata/1481/thumb/1599308380","imdbId":"","language":"en","overview":"Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.","moviesInCollection":[],"ratingKey":1481,"key":"/library/metadata/1481","collectionTitle":"","collectionId":-1,"tmdbId":10625},{"name":"Act of Valor","year":2012,"posterUrl":"/library/metadata/116/thumb/1599307868","imdbId":"","language":"en","overview":"When a covert mission to rescue a kidnapped CIA operative uncovers a chilling plot, an elite, highly trained U.S. SEAL team speeds to hotspots around the globe, racing against the clock to stop a deadly terrorist attack.","moviesInCollection":[],"ratingKey":116,"key":"/library/metadata/116","collectionTitle":"","collectionId":-1,"tmdbId":75674},{"name":"Breaking In","year":2018,"posterUrl":"/library/metadata/422/thumb/1599307981","imdbId":"","language":"en","overview":"Shaun Russell takes her son and daughter on a weekend getaway to her late father's secluded, high-tech vacation home in the countryside. The family soon gets an unwelcome surprise when four men break into the house to find hidden money. After managing to escape, Shaun must now figure out a way to turn the tables on the desperate thieves and save her captive children.","moviesInCollection":[],"ratingKey":422,"key":"/library/metadata/422","collectionTitle":"","collectionId":-1,"tmdbId":497814},{"name":"Trainwreck","year":2015,"posterUrl":"/library/metadata/2982/thumb/1599308991","imdbId":"","language":"en","overview":"Having thought that monogamy was never possible, a commitment-phobic career woman may have to face her fears when she meets a good guy.","moviesInCollection":[],"ratingKey":2982,"key":"/library/metadata/2982","collectionTitle":"","collectionId":-1,"tmdbId":271718},{"name":"Police Academy","year":1984,"posterUrl":"/library/metadata/1778/thumb/1599308509","imdbId":"","language":"en","overview":"New rules enforced by the Lady Mayoress mean that sex, weight, height and intelligence need no longer be a factor for joining the Police Force. This opens the floodgates for all and sundry to enter the Police Academy, much to the chagrin of the instructors. Not everyone is there through choice, though. Social misfit Mahoney has been forced to sign up as the only alternative to a jail sentence and it doesn't take long before he falls foul of the boorish Lieutenant Harris. But before long, Mahoney realises that he is enjoying being a police cadet and decides he wants to stay... while Harris decides he wants Mahoney out!","moviesInCollection":[],"ratingKey":1778,"key":"/library/metadata/1778","collectionTitle":"","collectionId":-1,"tmdbId":9336},{"name":"Rubin & Ed","year":1991,"posterUrl":"/library/metadata/1937/thumb/1599308579","imdbId":"","language":"en","overview":"Reclusive Rubin Farr teams up with vocal but unsuccessful multi-level salesman Ed Tuttle on a quest to bury Rubin's dead cat in the \"perfect spot.\" Their trip takes them across Utah's desert where they have run-ins with Ed's ex-wife Rula and an elusive Andy Warhol critic.","moviesInCollection":[],"ratingKey":1937,"key":"/library/metadata/1937","collectionTitle":"","collectionId":-1,"tmdbId":41792},{"name":"The Santa Clause","year":1994,"posterUrl":"/library/metadata/2794/thumb/1599308921","imdbId":"","language":"en","overview":"Scott Calvin is an ordinary man, who accidentally causes Santa Claus to fall from his roof on Christmas Eve and is knocked unconscious. When he and his young son finish Santa's trip and deliveries, they go to the North Pole, where Scott learns he must become the new Santa and convince those he loves that he is indeed, Father Christmas.","moviesInCollection":[],"ratingKey":2794,"key":"/library/metadata/2794","collectionTitle":"","collectionId":-1,"tmdbId":11395},{"name":"The Half of It","year":2020,"posterUrl":"/library/metadata/43730/thumb/1599309148","imdbId":"","language":"en","overview":"Shy, straight-A student Ellie is hired by sweet but inarticulate jock Paul, who needs help wooing the most popular girl in school. But their new and unlikely friendship gets tricky when Ellie discovers she has feelings for the same girl.","moviesInCollection":[],"ratingKey":43730,"key":"/library/metadata/43730","collectionTitle":"","collectionId":-1,"tmdbId":597219},{"name":"Doom Annihilation","year":2019,"posterUrl":"/library/metadata/738/thumb/1599308096","imdbId":"","language":"en","overview":"A group of UAC Marines responds to a distress call from a top-secret scientific base on Phobos, a Martian moon, only to discover it's been overrun by demons.","moviesInCollection":[],"ratingKey":738,"key":"/library/metadata/738","collectionTitle":"","collectionId":-1,"tmdbId":520901},{"name":"Cinderella III A Twist in Time","year":2007,"posterUrl":"/library/metadata/516/thumb/1599308016","imdbId":"","language":"en","overview":"When Lady Tremaine steals the Fairy Godmother's wand and changes history, it's up to Cinderella to restore the timeline and reclaim her prince.","moviesInCollection":[],"ratingKey":516,"key":"/library/metadata/516","collectionTitle":"","collectionId":-1,"tmdbId":16119},{"name":"Borneo The Fascination of Asia","year":2017,"posterUrl":"/library/metadata/407/thumb/1599307975","imdbId":"","language":"en","overview":"Experience a tour through one of the most beautiful islands on earth, which is not easily forgotten. Go on a journey of discovery through Borneo, Greenland and New Guinea with 751,936 sq km third largest island in the world, divided between Malaysia, Indonesia and Brunei.","moviesInCollection":[],"ratingKey":407,"key":"/library/metadata/407","collectionTitle":"","collectionId":-1,"tmdbId":543480},{"name":"Coriolanus","year":2012,"posterUrl":"/library/metadata/576/thumb/1599308038","imdbId":"","language":"en","overview":"Caius Martius, aka Coriolanus, is an arrogant and fearsome general who has built a career on protecting Rome from its enemies. Pushed by his ambitious mother to seek the position of consul, Coriolanus is at odds with the masses and unpopular with certain colleagues. When a riot results in his expulsion from Rome, Coriolanus seeks out his sworn enemy, Tullus Aufidius. Together, the pair vow to destroy the great city.","moviesInCollection":[],"ratingKey":576,"key":"/library/metadata/576","collectionTitle":"","collectionId":-1,"tmdbId":101173},{"name":"Flash Gordon","year":1980,"posterUrl":"/library/metadata/915/thumb/1599308159","imdbId":"","language":"en","overview":"A football player and his friends travel to the planet Mongo and find themselves fighting the tyrant, Ming the Merciless, to save Earth.","moviesInCollection":[],"ratingKey":915,"key":"/library/metadata/915","collectionTitle":"","collectionId":-1,"tmdbId":3604},{"name":"Social Animals","year":2018,"posterUrl":"/library/metadata/2082/thumb/1599308641","imdbId":"","language":"en","overview":"Determined not to turn into her parents, or be drawn into any relationship longer than a one night stand, Zoe constantly struggles with her failing business and love life. Then she falls in love for the first time with Paul. But there's one problem: Paul is married.","moviesInCollection":[],"ratingKey":2082,"key":"/library/metadata/2082","collectionTitle":"","collectionId":-1,"tmdbId":506407},{"name":"The Faculty","year":1998,"posterUrl":"/library/metadata/2450/thumb/1599308780","imdbId":"","language":"en","overview":"When some very creepy things start happening around school, the kids at Herrington High make a chilling discovery that confirms their worst suspicions: their teachers really are from another planet!","moviesInCollection":[],"ratingKey":2450,"key":"/library/metadata/2450","collectionTitle":"","collectionId":-1,"tmdbId":9276},{"name":"Tango & Cash","year":1989,"posterUrl":"/library/metadata/2243/thumb/1599308704","imdbId":"","language":"en","overview":"Ray Tango and Gabriel Cash are narcotics detectives who, while both being extremely successful, can't stand each other. Crime Lord Yves Perret, furious at the loss of income that Tango and Cash have caused him, frames the two for murder. Caught with the murder weapon on the scene of the crime, the two have no alibi. Thrown into prison with most of the criminals they helped convict, it appears that they are going to have to trust each other if they are to clear their names and catch the evil Perret.","moviesInCollection":[],"ratingKey":2243,"key":"/library/metadata/2243","collectionTitle":"","collectionId":-1,"tmdbId":9618},{"name":"The Deer Hunter","year":1978,"posterUrl":"/library/metadata/2408/thumb/1599308762","imdbId":"","language":"en","overview":"A group of working-class friends decides to enlist in the Army during the Vietnam War and finds it to be hellish chaos -- not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend -- and Michael and Nick were in love with the same woman. But all three are different men upon their return.","moviesInCollection":[],"ratingKey":2408,"key":"/library/metadata/2408","collectionTitle":"","collectionId":-1,"tmdbId":11778},{"name":"It Comes at Night","year":2017,"posterUrl":"/library/metadata/47608/thumb/1599309187","imdbId":"","language":"en","overview":"Secure within a desolate home as an unnatural threat terrorizes the world, a man has established a tenuous domestic order with his wife and son, but this will soon be put to test when a desperate young family arrives seeking refuge.","moviesInCollection":[],"ratingKey":47608,"key":"/library/metadata/47608","collectionTitle":"","collectionId":-1,"tmdbId":418078},{"name":"Paradise Hills","year":2019,"posterUrl":"/library/metadata/1696/thumb/1599308476","imdbId":"","language":"en","overview":"A young woman is sent to Paradise Hills to be reformed, only to learn that the high-class facility's beautiful facade hides a sinister secret.","moviesInCollection":[],"ratingKey":1696,"key":"/library/metadata/1696","collectionTitle":"","collectionId":-1,"tmdbId":487083},{"name":"The Boys in Company C","year":1978,"posterUrl":"/library/metadata/2336/thumb/1599308736","imdbId":"","language":"en","overview":"Disheartened by futile combat, appalled by the corruption of their South Vietnamese ally, and constantly endangered by the incompetence of their own company commander, the young men find a possible way out of the war. They are told that if they purposely lose a soccer game against a South Vietnamese team, they can spend the rest of their tour playing exhibition games behind the lines.","moviesInCollection":[],"ratingKey":2336,"key":"/library/metadata/2336","collectionTitle":"","collectionId":-1,"tmdbId":27521},{"name":"The Invisible Man","year":2020,"posterUrl":"/library/metadata/42565/thumb/1599309140","imdbId":"","language":"en","overview":"When Cecilia's abusive ex takes his own life and leaves her his fortune, she suspects his death was a hoax. As a series of coincidences turn lethal, Cecilia works to prove that she is being hunted by someone nobody can see.","moviesInCollection":[],"ratingKey":42565,"key":"/library/metadata/42565","collectionTitle":"","collectionId":-1,"tmdbId":570670},{"name":"It","year":2017,"posterUrl":"/library/metadata/1214/thumb/1599308275","imdbId":"","language":"en","overview":"In a small town in Maine, seven children known as The Losers Club come face to face with life problems, bullies and a monster that takes the shape of a clown called Pennywise.","moviesInCollection":[],"ratingKey":1214,"key":"/library/metadata/1214","collectionTitle":"","collectionId":-1,"tmdbId":346364},{"name":"Hot Fuzz","year":2007,"posterUrl":"/library/metadata/39905/thumb/1599309099","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":39905,"key":"/library/metadata/39905","collectionTitle":"","collectionId":-1,"tmdbId":4638},{"name":"If Beale Street Could Talk","year":2018,"posterUrl":"/library/metadata/1175/thumb/1599308260","imdbId":"","language":"en","overview":"After her fiance is falsely imprisoned, a pregnant African-American woman sets out to clear his name and prove his innocence.","moviesInCollection":[],"ratingKey":1175,"key":"/library/metadata/1175","collectionTitle":"","collectionId":-1,"tmdbId":465914},{"name":"Straight Outta Compton","year":2016,"posterUrl":"/library/metadata/2172/thumb/1599308680","imdbId":"","language":"en","overview":"In 1987, five young men, using brutally honest rhymes and hardcore beats, put their frustration and anger about life in the most dangerous place in America into the most powerful weapon they had: their music. Taking us back to where it all began, Straight Outta Compton tells the true story of how these cultural rebels—armed only with their lyrics, swagger, bravado and raw talent—stood up to the authorities that meant to keep them down and formed the world’s most dangerous group, N.W.A. And as they spoke the truth that no one had before and exposed life in the hood, their voice ignited a social revolution that is still reverberating today.","moviesInCollection":[],"ratingKey":2172,"key":"/library/metadata/2172","collectionTitle":"","collectionId":-1,"tmdbId":277216},{"name":"Every Day","year":2018,"posterUrl":"/library/metadata/842/thumb/1599308131","imdbId":"","language":"en","overview":"16-year old Rhiannon falls in love with a mysterious spirit named “A” that inhabits a different body every day. Feeling an unmatched connection, Rhiannon and “A” work each day to find each other, not knowing what the next day will bring.","moviesInCollection":[],"ratingKey":842,"key":"/library/metadata/842","collectionTitle":"","collectionId":-1,"tmdbId":465136},{"name":"28 Weeks Later","year":2007,"posterUrl":"/library/metadata/28/thumb/1599307836","imdbId":"","language":"en","overview":"The inhabitants of the British Isles have lost their battle against the onslaught of disease, as the deadly rage virus has killed every citizen there. Six months later, a group of Americans dare to set foot on the isles, convinced the danger has come and gone. But it soon becomes all too clear that the scourge continues to live, waiting to pounce on its next victims.","moviesInCollection":[],"ratingKey":28,"key":"/library/metadata/28","collectionTitle":"","collectionId":-1,"tmdbId":1562},{"name":"The Patriot","year":2000,"posterUrl":"/library/metadata/2735/thumb/1599308894","imdbId":"","language":"en","overview":"After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.","moviesInCollection":[],"ratingKey":2735,"key":"/library/metadata/2735","collectionTitle":"","collectionId":-1,"tmdbId":2024},{"name":"Disturbing the Peace","year":2020,"posterUrl":"/library/metadata/48782/thumb/1601904673","imdbId":"","language":"en","overview":"A small-town marshal who hasn't carried a gun since he left the Texas Rangers after a tragic shooting must pick up his gun again to do battle with a gang of outlaw bikers that has invaded the town to pull off a brazen and violent heist.","moviesInCollection":[],"ratingKey":48782,"key":"/library/metadata/48782","collectionTitle":"","collectionId":-1,"tmdbId":620924},{"name":"Zero Days","year":2016,"posterUrl":"/library/metadata/3200/thumb/1599309064","imdbId":"","language":"en","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’s nuclear programme. However, the complex computer worm ended up not only infecting its intended target but also spreading uncontrollably.","moviesInCollection":[],"ratingKey":3200,"key":"/library/metadata/3200","collectionTitle":"","collectionId":-1,"tmdbId":380808},{"name":"The Green Mile","year":1999,"posterUrl":"/library/metadata/2521/thumb/1599308807","imdbId":"","language":"en","overview":"A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cell block's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.","moviesInCollection":[],"ratingKey":2521,"key":"/library/metadata/2521","collectionTitle":"","collectionId":-1,"tmdbId":497},{"name":"Call Girl","year":2012,"posterUrl":"/library/metadata/459/thumb/1599307995","imdbId":"","language":"en","overview":"Stockholm, late 1970s. Within a stone’s throw of government buildings and juvenile homes lies the seductive world of sex clubs, discotheques and private residences. Call Girl tells the story of how young Iris is recruited from the bottom of society into a ruthless world where power can get you anything.","moviesInCollection":[],"ratingKey":459,"key":"/library/metadata/459","collectionTitle":"","collectionId":-1,"tmdbId":127872},{"name":"McKellen Playing the Part","year":2018,"posterUrl":"/library/metadata/1479/thumb/1599308379","imdbId":"","language":"en","overview":"Built upon a 14 hour interview, McKellen: Playing the Part is a unique journey through the key landmarks of McKellen's life, from early childhood into a demanding career that placed him in the public eye for the best part of his lifetime. Using an abundance of photography from McKellen's private albums and cinematically reconstructed scenes, a raw talent shines through in the intensity, variety and devotion to that moment in the light.","moviesInCollection":[],"ratingKey":1479,"key":"/library/metadata/1479","collectionTitle":"","collectionId":-1,"tmdbId":518801},{"name":"50/50","year":2011,"posterUrl":"/library/metadata/41/thumb/1599307840","imdbId":"","language":"en","overview":"Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis and his subsequent struggle to beat the disease.","moviesInCollection":[],"ratingKey":41,"key":"/library/metadata/41","collectionTitle":"","collectionId":-1,"tmdbId":40807},{"name":"Leprechaun 4 In Space","year":1997,"posterUrl":"/library/metadata/1365/thumb/1599308329","imdbId":"","language":"en","overview":"On a planet in a distant galaxy, a power hungry Leprechaun, holds a beautiful alien princess hostage in order to marry her for her royal title. With her title and his beloved gold, he'll be able to rule the universe. While making his maniacal plans, what he doesn't count on is an invading platoon of marines from Earth, to save the princess and foil his plans. An accomplished trickster, the Leprechaun stows himself away on the orbiting spaceship and wreaks havoc on the crew in an attempt to recapture his bride.","moviesInCollection":[],"ratingKey":1365,"key":"/library/metadata/1365","collectionTitle":"","collectionId":-1,"tmdbId":19287},{"name":"A Haunted House 2","year":2014,"posterUrl":"/library/metadata/67/thumb/1599307849","imdbId":"","language":"en","overview":"After exorcising the demons of his ex-, Malcolm starts afresh with his new girlfriend and her two children. After moving into their dream home, Malcolm is once again plagued by bizarre paranormal events.","moviesInCollection":[],"ratingKey":67,"key":"/library/metadata/67","collectionTitle":"","collectionId":-1,"tmdbId":184345},{"name":"Equilibrium","year":2002,"posterUrl":"/library/metadata/828/thumb/1599308126","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":828,"key":"/library/metadata/828","collectionTitle":"","collectionId":-1,"tmdbId":7299},{"name":"Maleficent Mistress of Evil","year":2019,"posterUrl":"/library/metadata/1448/thumb/1599308364","imdbId":"","language":"en","overview":"Maleficent and her goddaughter Aurora begin to question the complex family ties that bind them as they are pulled in different directions by impending nuptials, unexpected allies, and dark new forces at play.","moviesInCollection":[],"ratingKey":1448,"key":"/library/metadata/1448","collectionTitle":"","collectionId":-1,"tmdbId":420809},{"name":"Crazy, Stupid, Love.","year":2011,"posterUrl":"/library/metadata/591/thumb/1599308044","imdbId":"","language":"en","overview":"Cal Weaver is living the American dream. He has a good job, a beautiful house, great children and a beautiful wife, named Emily. Cal's seemingly perfect life unravels, however, when he learns that Emily has been unfaithful and wants a divorce. Over 40 and suddenly single, Cal is adrift in the fickle world of dating. Enter, Jacob Palmer, a self-styled player who takes Cal under his wing and teaches him how to be a hit with the ladies.","moviesInCollection":[],"ratingKey":591,"key":"/library/metadata/591","collectionTitle":"","collectionId":-1,"tmdbId":50646},{"name":"Jexi","year":2019,"posterUrl":"/library/metadata/1239/thumb/1599308285","imdbId":"","language":"en","overview":"Phil's new phone comes with an unexpected feature, Jexi...an A.I. determined to keep him all to herself in a comedy about what can happen when you love your phone more than all else.","moviesInCollection":[],"ratingKey":1239,"key":"/library/metadata/1239","collectionTitle":"","collectionId":-1,"tmdbId":620725},{"name":"Batman Hush","year":2019,"posterUrl":"/library/metadata/294/thumb/1599307934","imdbId":"","language":"en","overview":"A mysterious new villain known only as Hush uses a gallery of villains to destroy Batman's crime-fighting career as well as Bruce Wayne's personal life, which has been further complicated by a relationship with Selina Kyle/Catwoman.","moviesInCollection":[],"ratingKey":294,"key":"/library/metadata/294","collectionTitle":"","collectionId":-1,"tmdbId":537056},{"name":"White Men Can't Jump","year":1992,"posterUrl":"/library/metadata/3139/thumb/1599309044","imdbId":"","language":"en","overview":"Billy Hoyle and Sidney Deane are an unlikely pair of basketball hustlers. They team up to con their way across the courts of Los Angeles, playing a game that's fast dangerous - and funny.","moviesInCollection":[],"ratingKey":3139,"key":"/library/metadata/3139","collectionTitle":"","collectionId":-1,"tmdbId":10158},{"name":"Mirai","year":2019,"posterUrl":"/library/metadata/1515/thumb/1599308396","imdbId":"","language":"en","overview":"The movie follows a 4-year old boy who is struggling to cope with the arrival of a little sister in the family until things turn magical. A mysterious garden in the backyard of the boy's home becomes a gateway allowing the child to travel back in time and encounter his mother as a little girl and his great-grandfather as a young man. These fantasy-filled adventures allow the child to change his perspective and help him become the big brother he was meant to be.","moviesInCollection":[],"ratingKey":1515,"key":"/library/metadata/1515","collectionTitle":"","collectionId":-1,"tmdbId":475215},{"name":"The Matrix Reloaded","year":2003,"posterUrl":"/library/metadata/41077/thumb/1599309122","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41077,"key":"/library/metadata/41077","collectionTitle":"","collectionId":-1,"tmdbId":604},{"name":"Mulan II","year":2004,"posterUrl":"/library/metadata/1561/thumb/1599308416","imdbId":"","language":"en","overview":"Fa Mulan gets the surprise of her young life when her love, Captain Li Shang asks for her hand in marriage. Before the two can have their happily ever after, the Emperor assigns them a secret mission, to escort three princesses to Chang'an, China. Mushu is determined to drive a wedge between the couple after he learns that he will lose his guardian job if Mulan marries into the Li family.","moviesInCollection":[],"ratingKey":1561,"key":"/library/metadata/1561","collectionTitle":"","collectionId":-1,"tmdbId":12242},{"name":"Species II","year":1998,"posterUrl":"/library/metadata/45991/thumb/1599309152","imdbId":"","language":"en","overview":"Having just returned from a mission to Mars, Commander Ross isn't exactly himself. He's slowly becoming a terrifying alien entity with one goal -- to procreate with human women! When countless women suffer gruesome deaths after bearing half-alien offspring, scientist Laura Baker and hired assassin Press Lennox use Eve, a more tempered alien clone, to find Ross and his brood. Before long Eve escapes to mate with Ross.","moviesInCollection":[],"ratingKey":45991,"key":"/library/metadata/45991","collectionTitle":"","collectionId":-1,"tmdbId":10216},{"name":"Futureworld","year":1976,"posterUrl":"/library/metadata/963/thumb/1599308179","imdbId":"","language":"en","overview":"Two years after the Westworld tragedy in the Delos amusement park, the corporate owners have reopened the park following over $1 billion in safety and other improvements. For publicity purposes, reporters Chuck Browning and Tracy Ballard are invited to review the park. Just prior to arriving at the park, however, Browning is given a clue by a dying man that something is amiss.","moviesInCollection":[],"ratingKey":963,"key":"/library/metadata/963","collectionTitle":"","collectionId":-1,"tmdbId":10640},{"name":"Victoria & Abdul","year":2017,"posterUrl":"/library/metadata/3084/thumb/1599309026","imdbId":"","language":"en","overview":"Queen Victoria strikes up an unlikely friendship with a young Indian clerk named Abdul Karim.","moviesInCollection":[],"ratingKey":3084,"key":"/library/metadata/3084","collectionTitle":"","collectionId":-1,"tmdbId":423899},{"name":"The Cat Returns","year":2002,"posterUrl":"/library/metadata/46040/thumb/1599309154","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46040,"key":"/library/metadata/46040","collectionTitle":"","collectionId":-1,"tmdbId":15370},{"name":"The Crazies","year":2010,"posterUrl":"/library/metadata/2379/thumb/1599308751","imdbId":"","language":"en","overview":"Four friends find themselves trapped in their small hometown after they discover their friends and neighbors going quickly and horrifically insane.","moviesInCollection":[],"ratingKey":2379,"key":"/library/metadata/2379","collectionTitle":"","collectionId":-1,"tmdbId":29427},{"name":"Atlas Shrugged Part III","year":2014,"posterUrl":"/library/metadata/238/thumb/1599307914","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":238,"key":"/library/metadata/238","collectionTitle":"","collectionId":-1,"tmdbId":199933},{"name":"Everybody Knows","year":2019,"posterUrl":"/library/metadata/843/thumb/1599308132","imdbId":"","language":"en","overview":"Laura, a Spanish woman living in Buenos Aires, returns to her hometown outside Madrid with her Argentinian husband and children. However, the trip is upset by unexpected events that bring secrets into the open.","moviesInCollection":[],"ratingKey":843,"key":"/library/metadata/843","collectionTitle":"","collectionId":-1,"tmdbId":401545},{"name":"Alien Predator","year":2018,"posterUrl":"/library/metadata/153/thumb/1599307882","imdbId":"","language":"en","overview":"A black ops reconnaissance team is sent to investigate the crash of an unidentified aircraft. When they arrive, they find strange markings and residue visible only in infrared. As the team gets deeper in and tries to figure out the source of the markings, they discover that they are being hunted by an alien expedition to Earth.","moviesInCollection":[],"ratingKey":153,"key":"/library/metadata/153","collectionTitle":"","collectionId":-1,"tmdbId":548257},{"name":"X-Men","year":2000,"posterUrl":"/library/metadata/1499/thumb/1599308389","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1499,"key":"/library/metadata/1499","collectionTitle":"","collectionId":-1,"tmdbId":36657},{"name":"Tully","year":2018,"posterUrl":"/library/metadata/3017/thumb/1599309002","imdbId":"","language":"en","overview":"Marlo, a mother of three, including a newborn, is gifted a night nanny by her brother. Hesitant at first, she quickly forms a bond with the thoughtful, surprising, and sometimes challenging nanny named Tully.","moviesInCollection":[],"ratingKey":3017,"key":"/library/metadata/3017","collectionTitle":"","collectionId":-1,"tmdbId":400579},{"name":"The Cabin in the Woods","year":2012,"posterUrl":"/library/metadata/2347/thumb/1599308740","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2347,"key":"/library/metadata/2347","collectionTitle":"","collectionId":-1,"tmdbId":22970},{"name":"Split","year":2016,"posterUrl":"/library/metadata/40022/thumb/1599309102","imdbId":"","language":"en","overview":"Though Kevin has evidenced 23 personalities to his trusted psychiatrist, Dr. Fletcher, there remains one still submerged who is set to materialize and dominate all the others. Compelled to abduct three teenage girls led by the willful, observant Casey, Kevin reaches a war for survival among all of those contained within him — as well as everyone around him — as the walls between his compartments shatter apart.","moviesInCollection":[],"ratingKey":40022,"key":"/library/metadata/40022","collectionTitle":"","collectionId":-1,"tmdbId":381288},{"name":"One Hundred and One Dalmatians","year":1961,"posterUrl":"/library/metadata/1656/thumb/1599308459","imdbId":"","language":"en","overview":"When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.","moviesInCollection":[],"ratingKey":1656,"key":"/library/metadata/1656","collectionTitle":"","collectionId":-1,"tmdbId":12230},{"name":"The World Is Not Enough","year":1999,"posterUrl":"/library/metadata/2905/thumb/1599308965","imdbId":"","language":"en","overview":"Greed, revenge, world dominance and high-tech terrorism – it's all in a day's work for Bond, who's on a mission to protect a beautiful oil heiress from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown, Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.","moviesInCollection":[],"ratingKey":2905,"key":"/library/metadata/2905","collectionTitle":"","collectionId":-1,"tmdbId":36643},{"name":"Girl on the Third Floor","year":2019,"posterUrl":"/library/metadata/1002/thumb/1599308193","imdbId":"","language":"en","overview":"Don Koch tries to renovate a rundown mansion with a sordid history for his growing family, only to learn that the house has other plans.","moviesInCollection":[],"ratingKey":1002,"key":"/library/metadata/1002","collectionTitle":"","collectionId":-1,"tmdbId":580630},{"name":"The Wolverine","year":2013,"posterUrl":"/library/metadata/2902/thumb/1599308964","imdbId":"","language":"en","overview":"Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.","moviesInCollection":[],"ratingKey":2902,"key":"/library/metadata/2902","collectionTitle":"","collectionId":-1,"tmdbId":76170},{"name":"Cleopatra","year":1963,"posterUrl":"/library/metadata/522/thumb/1599308018","imdbId":"","language":"en","overview":"Determined to hold on to the throne, Cleopatra seduces the Roman emperor Julius Caesar. When Caesar is murdered, she redirects her attentions to his general, Marc Antony, who vows to take power—but Caesar’s successor has other plans.","moviesInCollection":[],"ratingKey":522,"key":"/library/metadata/522","collectionTitle":"","collectionId":-1,"tmdbId":8095},{"name":"Land of the Dead","year":2005,"posterUrl":"/library/metadata/1339/thumb/1599308321","imdbId":"","language":"en","overview":"The world is full of zombies and the survivors have barricaded themselves inside a walled city to keep out the living dead. As the wealthy hide out in skyscrapers and chaos rules the streets, the rest of the survivors must find a way to stop the evolving zombies from breaking into the city.","moviesInCollection":[],"ratingKey":1339,"key":"/library/metadata/1339","collectionTitle":"","collectionId":-1,"tmdbId":11683},{"name":"Harry Potter and the Half-Blood Prince","year":2009,"posterUrl":"/library/metadata/1072/thumb/1599308222","imdbId":"","language":"en","overview":"As Harry begins his sixth year at Hogwarts, he discovers an old book marked as 'Property of the Half-Blood Prince', and begins to learn more about Lord Voldemort's dark past.","moviesInCollection":[],"ratingKey":1072,"key":"/library/metadata/1072","collectionTitle":"","collectionId":-1,"tmdbId":767},{"name":"Journey to the End of the Night","year":2006,"posterUrl":"/library/metadata/1260/thumb/1599308293","imdbId":"","language":"en","overview":"In a dark and decadent area of São Paulo, the exiled Americans Sinatra and his son Paul own a brothel. Paul is a compulsive gambler addicted in cocaine and his father is married with the former prostitute Angie, and they have a little son. When a client is killed by his wife in their establishment, they find a suitcase with drugs.","moviesInCollection":[],"ratingKey":1260,"key":"/library/metadata/1260","collectionTitle":"","collectionId":-1,"tmdbId":15558},{"name":"Brave","year":2012,"posterUrl":"/library/metadata/415/thumb/1599307978","imdbId":"","language":"en","overview":"Brave is set in the mystical Scottish Highlands, where Mérida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, Mérida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, Mérida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into Mérida’s quest — and serving as comic relief — are the kingdom’s three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.","moviesInCollection":[],"ratingKey":415,"key":"/library/metadata/415","collectionTitle":"","collectionId":-1,"tmdbId":62177},{"name":"Demolition","year":2016,"posterUrl":"/library/metadata/687/thumb/1599308076","imdbId":"","language":"en","overview":"An emotionally desperate investment banker finds hope through a woman he meets in Chicago.","moviesInCollection":[],"ratingKey":687,"key":"/library/metadata/687","collectionTitle":"","collectionId":-1,"tmdbId":303991},{"name":"Hotel Transylvania","year":2012,"posterUrl":"/library/metadata/1132/thumb/1599308244","imdbId":"","language":"en","overview":"Welcome to Hotel Transylvania, Dracula's lavish five-stake resort, where monsters and their families can live it up and no humans are allowed. One special weekend, Dracula has invited all his best friends to celebrate his beloved daughter Mavis's 118th birthday. For Dracula catering to all of these legendary monsters is no problem but the party really starts when one ordinary guy stumbles into the hotel and changes everything!","moviesInCollection":[],"ratingKey":1132,"key":"/library/metadata/1132","collectionTitle":"","collectionId":-1,"tmdbId":76492},{"name":"The Twilight Saga Eclipse","year":2010,"posterUrl":"/library/metadata/2877/thumb/1599308955","imdbId":"","language":"en","overview":"Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all, she is forced to choose between her love for Edward and her friendship with Jacob, knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching, Bella is confronted with the most important decision of her life.","moviesInCollection":[],"ratingKey":2877,"key":"/library/metadata/2877","collectionTitle":"","collectionId":-1,"tmdbId":24021},{"name":"Dope","year":2015,"posterUrl":"/library/metadata/739/thumb/1599308096","imdbId":"","language":"en","overview":"Malcolm is carefully surviving life in a tough neighborhood in Los Angeles while juggling college applications, academic interviews, and the SAT. A chance invitation to an underground party leads him into an adventure that could allow him to go from being a geek, to being dope, to ultimately being himself.","moviesInCollection":[],"ratingKey":739,"key":"/library/metadata/739","collectionTitle":"","collectionId":-1,"tmdbId":308639},{"name":"John Wick","year":2014,"posterUrl":"/library/metadata/40808/thumb/1599309105","imdbId":"","language":"en","overview":"Ex-hitman John Wick comes out of retirement to track down the gangsters that took everything from him.","moviesInCollection":[],"ratingKey":40808,"key":"/library/metadata/40808","collectionTitle":"","collectionId":-1,"tmdbId":245891},{"name":"Bride of Chucky","year":1998,"posterUrl":"/library/metadata/427/thumb/1599307982","imdbId":"","language":"en","overview":"Chucky hooks up with another murderous doll, the bridal gown-clad Tiffany, for a Route 66 murder spree with their unwitting hosts.","moviesInCollection":[],"ratingKey":427,"key":"/library/metadata/427","collectionTitle":"","collectionId":-1,"tmdbId":11932},{"name":"High-Rise","year":2015,"posterUrl":"/library/metadata/1110/thumb/1599308236","imdbId":"","language":"en","overview":"Life for the residents of a tower block begins to run out of control.","moviesInCollection":[],"ratingKey":1110,"key":"/library/metadata/1110","collectionTitle":"","collectionId":-1,"tmdbId":254302},{"name":"What Women Want","year":2000,"posterUrl":"/library/metadata/3129/thumb/1599309041","imdbId":"","language":"en","overview":"Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women's thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.","moviesInCollection":[],"ratingKey":3129,"key":"/library/metadata/3129","collectionTitle":"","collectionId":-1,"tmdbId":3981},{"name":"Rain Man","year":1988,"posterUrl":"/library/metadata/1838/thumb/1599308534","imdbId":"","language":"en","overview":"Selfish yuppie Charlie Babbitt's father left a fortune to his savant brother Raymond and a pittance to Charlie; they travel cross-country.","moviesInCollection":[],"ratingKey":1838,"key":"/library/metadata/1838","collectionTitle":"","collectionId":-1,"tmdbId":380},{"name":"I Feel Pretty","year":2018,"posterUrl":"/library/metadata/1156/thumb/1599308253","imdbId":"","language":"en","overview":"A head injury causes a woman to develop an extraordinary amount of confidence and believe she's drop dead gorgeous.","moviesInCollection":[],"ratingKey":1156,"key":"/library/metadata/1156","collectionTitle":"","collectionId":-1,"tmdbId":460668},{"name":"Mr. Nobody","year":2011,"posterUrl":"/library/metadata/1553/thumb/1599308413","imdbId":"","language":"en","overview":"Nemo Nobody leads an ordinary existence with his wife and 3 children; one day, he wakes up as a mortal centenarian in the year 2092.","moviesInCollection":[],"ratingKey":1553,"key":"/library/metadata/1553","collectionTitle":"","collectionId":-1,"tmdbId":31011},{"name":"Happy Christmas","year":2014,"posterUrl":"/library/metadata/1059/thumb/1599308216","imdbId":"","language":"en","overview":"After a breakup with her boyfriend, a young woman moves in with her older brother, his wife, and their 2-year-old son.","moviesInCollection":[],"ratingKey":1059,"key":"/library/metadata/1059","collectionTitle":"","collectionId":-1,"tmdbId":244534},{"name":"Bee Movie","year":2007,"posterUrl":"/library/metadata/328/thumb/1599307946","imdbId":"","language":"en","overview":"Barry B. Benson, a bee who has just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry's life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue us.","moviesInCollection":[],"ratingKey":328,"key":"/library/metadata/328","collectionTitle":"","collectionId":-1,"tmdbId":5559},{"name":"The Lego Movie 2 The Second Part","year":2019,"posterUrl":"/library/metadata/2632/thumb/1599308848","imdbId":"","language":"en","overview":"It's been five years since everything was awesome and the citizens are facing a huge new threat: LEGO DUPLO® invaders from outer space, wrecking everything faster than they can rebuild.","moviesInCollection":[],"ratingKey":2632,"key":"/library/metadata/2632","collectionTitle":"","collectionId":-1,"tmdbId":280217},{"name":"Transcendence","year":2014,"posterUrl":"/library/metadata/2983/thumb/1599308991","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2983,"key":"/library/metadata/2983","collectionTitle":"","collectionId":-1,"tmdbId":157353},{"name":"A Christmas Story Live!","year":2017,"posterUrl":"/library/metadata/54/thumb/1599307845","imdbId":"","language":"en","overview":"A live broadcast of the Broadway hit \"A Christmas Story: The Musical\" in which Ralphie wishes for nothing more than a Red Rider BB Gun for Christmas.","moviesInCollection":[],"ratingKey":54,"key":"/library/metadata/54","collectionTitle":"","collectionId":-1,"tmdbId":485517},{"name":"Leprechaun 2","year":1994,"posterUrl":"/library/metadata/27856/thumb/1599309080","imdbId":"","language":"en","overview":"A thousand years ago, the Leprechaun left a bloody trail when he ripped through the countryside in search of his stolen gold. Now he's back in the big city using all of his deadly tricks to snare the girl of his nightmares. His bloody quest becomes more deadly when her boyfriend steals one of the Leprechaun's gold coins. The town soon discovers two dead bodies and a trail of gold dust leads them to the Leprechaun's lair.","moviesInCollection":[],"ratingKey":27856,"key":"/library/metadata/27856","collectionTitle":"","collectionId":-1,"tmdbId":18009},{"name":"The Southerner","year":1945,"posterUrl":"/library/metadata/2827/thumb/1599308936","imdbId":"","language":"en","overview":"Sam Tucker, a cotton picker, in search of a better future for his family, decides to grow his own cotton crop. In the first year, the Tuckers battle disease, a flood, and a jealous neighbor. Can they make it as farmers?","moviesInCollection":[],"ratingKey":2827,"key":"/library/metadata/2827","collectionTitle":"","collectionId":-1,"tmdbId":45219},{"name":"RockNRolla","year":2008,"posterUrl":"/library/metadata/1927/thumb/1599308575","imdbId":"","language":"en","overview":"When a Russian mobster sets up a real estate scam that generates millions of pounds, various members of London's criminal underworld pursue their share of the fortune. Various shady characters, including Mr One-Two, Stella the accountant, and Johnny Quid, a druggie rock-star, try to claim their slice.","moviesInCollection":[],"ratingKey":1927,"key":"/library/metadata/1927","collectionTitle":"","collectionId":-1,"tmdbId":13809},{"name":"National Lampoon Presents Dorm Daze","year":2003,"posterUrl":"/library/metadata/1587/thumb/1599308426","imdbId":"","language":"en","overview":"A man decides he needs to help his younger brother lose his virginity and hires a prostitute named Dominique. But hilarious high jinks ensue when a French exchange student with the same name also shows up at his brother's dorm room.","moviesInCollection":[],"ratingKey":1587,"key":"/library/metadata/1587","collectionTitle":"","collectionId":-1,"tmdbId":18113},{"name":"Cutting Class","year":1989,"posterUrl":"/library/metadata/617/thumb/1599308052","imdbId":"","language":"en","overview":"High school student Paula Carson's affections are being sought after by two of her classmates: Dwight, the \"bad boy\", and Brian, a disturbed young man who has just been released from a mental hospital where he was committed following the suspicious death of his father. Soon after being released, more murders start happening. Is Brian back to his old tricks, or is Dwight just trying to eliminate the competition?","moviesInCollection":[],"ratingKey":617,"key":"/library/metadata/617","collectionTitle":"","collectionId":-1,"tmdbId":21799},{"name":"George of the Jungle 2","year":2003,"posterUrl":"/library/metadata/977/thumb/1599308184","imdbId":"","language":"en","overview":"George and Ursula now have a son, George Junior, so Ursula's mother arrives to try and take them back to \"civilization\".","moviesInCollection":[],"ratingKey":977,"key":"/library/metadata/977","collectionTitle":"","collectionId":-1,"tmdbId":26264},{"name":"White Fang","year":2018,"posterUrl":"/library/metadata/3137/thumb/1599309044","imdbId":"","language":"en","overview":"A loyal wolfdog’s curiosity leads him on the adventure of a lifetime while serving a series of three distinctly different masters.","moviesInCollection":[],"ratingKey":3137,"key":"/library/metadata/3137","collectionTitle":"","collectionId":-1,"tmdbId":456154},{"name":"The Green Inferno","year":1988,"posterUrl":"/library/metadata/2520/thumb/1599308806","imdbId":"","language":"en","overview":"Four friends head into the jungle to locate a lost professor but instead face off against treasure hunters who are torturing and killing natives.","moviesInCollection":[],"ratingKey":2520,"key":"/library/metadata/2520","collectionTitle":"","collectionId":-1,"tmdbId":90164},{"name":"The 13th Warrior","year":1999,"posterUrl":"/library/metadata/2271/thumb/1599308714","imdbId":"","language":"en","overview":"A Muslim ambassador exiled from his homeland, Ahmad ibn Fadlan finds himself in the company of Vikings. While the behavior of the Norsemen initially offends ibn Fadlan, the more cultured outsider grows to respect the tough, if uncouth, warriors. During their travels together, ibn Fadlan and the Vikings get word of an evil presence closing in, and they must fight the frightening and formidable force, which was previously thought to exist only in legend.","moviesInCollection":[],"ratingKey":2271,"key":"/library/metadata/2271","collectionTitle":"","collectionId":-1,"tmdbId":1911},{"name":"The Mechanic","year":2011,"posterUrl":"/library/metadata/2681/thumb/1599308870","imdbId":"","language":"en","overview":"Arthur Bishop is a 'mechanic' - an elite assassin with a strict code and unique talent for cleanly eliminating targets. It's a job that requires professional perfection and total detachment, and Bishop is the best in the business. But when he is ordered to take out his mentor and close friend Harry, Bishop is anything but detached.","moviesInCollection":[],"ratingKey":2681,"key":"/library/metadata/2681","collectionTitle":"","collectionId":-1,"tmdbId":27582},{"name":"Screamers","year":1995,"posterUrl":"/library/metadata/1990/thumb/1599308600","imdbId":"","language":"en","overview":"SIRIUS 6B, Year 2078. On a distant mining planet ravaged by a decade of war, scientists have created the perfect weapon: a blade-wielding, self-replicating race of killing devices known as Screamers designed for one purpose only -- to hunt down and destroy all enemy life forms.","moviesInCollection":[],"ratingKey":1990,"key":"/library/metadata/1990","collectionTitle":"","collectionId":-1,"tmdbId":9102},{"name":"Running Scared","year":2006,"posterUrl":"/library/metadata/1943/thumb/1599308581","imdbId":"","language":"en","overview":"After a drug-op gone bad, Joey Gazelle is put in charge of disposing the gun that shot a dirty cop. But things goes wrong for Joey after the neighbor kid stole the gun and used it to shoot his abusive father. Now Joey has to find the kid and the gun before the police and the mob find them first.","moviesInCollection":[],"ratingKey":1943,"key":"/library/metadata/1943","collectionTitle":"","collectionId":-1,"tmdbId":7304},{"name":"Ponyo","year":2009,"posterUrl":"/library/metadata/46619/thumb/1599309167","imdbId":"","language":"en","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. The daughter of a masterful wizard and a sea goddess, Ponyo uses her father's magic to transform herself into a young girl and quickly falls in love with Sosuke, but the use of such powerful sorcery causes a dangerous imbalance in the world. As the moon steadily draws nearer to the earth and Ponyo's father sends the ocean's mighty waves to find his daughter, the two children embark on an adventure of a lifetime to save the world and fulfill Ponyo's dreams of becoming human.","moviesInCollection":[],"ratingKey":46619,"key":"/library/metadata/46619","collectionTitle":"","collectionId":-1,"tmdbId":12429},{"name":"Serendipity","year":2001,"posterUrl":"/library/metadata/1999/thumb/1599308604","imdbId":"","language":"en","overview":"Although strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter – but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another again.","moviesInCollection":[],"ratingKey":1999,"key":"/library/metadata/1999","collectionTitle":"","collectionId":-1,"tmdbId":9778},{"name":"Leprechaun 3","year":1995,"posterUrl":"/library/metadata/1364/thumb/1599308328","imdbId":"","language":"en","overview":"It was a normal night in Las Vegas, Nevada, all the lights were flashing brightly, until a man with one hand, one eye, and one leg walks into a pawn shop with a statue of a hideous looking Leprechaun. The owner claims it's a good luck charm. The statue also wore a medallion around it's neck. The careless pawn shop owner took off the medallion setting the Leprechaun free...","moviesInCollection":[],"ratingKey":1364,"key":"/library/metadata/1364","collectionTitle":"","collectionId":-1,"tmdbId":19286},{"name":"Beetlejuice","year":1988,"posterUrl":"/library/metadata/329/thumb/1599307946","imdbId":"","language":"en","overview":"Thanks to an untimely demise via drowning, a young couple end up as poltergeists in their New England farmhouse, where they fail to meet the challenge of scaring away the insufferable new owners, who want to make drastic changes. In desperation, the undead newlyweds turn to an expert frightmeister, but he's got a diabolical agenda of his own.","moviesInCollection":[],"ratingKey":329,"key":"/library/metadata/329","collectionTitle":"","collectionId":-1,"tmdbId":4011},{"name":"Feast of Love","year":2007,"posterUrl":"/library/metadata/879/thumb/1599308145","imdbId":"","language":"en","overview":"A meditation on love and its various incarnations, set within a community of friends in Oregon. It is described as an exploration of the magical, mysterious and sometimes painful incarnations of love.","moviesInCollection":[],"ratingKey":879,"key":"/library/metadata/879","collectionTitle":"","collectionId":-1,"tmdbId":14313},{"name":"The Storm Riders","year":1998,"posterUrl":"/library/metadata/2840/thumb/1599308942","imdbId":"","language":"en","overview":"Based on a comic book called Fung Wan (or Tin Ha), the movie stars Ekin Cheng as Wind and Aaron Kwok as Cloud. The plot involves two children, Whispering Wind and Striding Cloud, who become powerful warriors under the evil warlord Conquer's tutelage. They grow up serving as his subordinates, but a love triangle and an accident leads to a quest for retribution.","moviesInCollection":[],"ratingKey":2840,"key":"/library/metadata/2840","collectionTitle":"","collectionId":-1,"tmdbId":2137},{"name":"Black Out","year":2012,"posterUrl":"/library/metadata/366/thumb/1599307960","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":366,"key":"/library/metadata/366","collectionTitle":"","collectionId":-1,"tmdbId":357087},{"name":"Battle Royale II Requiem","year":2003,"posterUrl":"/library/metadata/312/thumb/1599307941","imdbId":"","language":"en","overview":"It's three years after the events of the original Battle Royale, and Shuya Nanahara is now an internationally-known terrorist determined to bring down the government. His terrorist group, Wild Seven, stages an attack that levels several buildings in Tokyo on Christmas Day, killing 8000 people. In order for the government to study the benefits of \"teamwork\", the new students work in pairs, with their collars electronically linked so that if one of them is killed, the other dies as well. They must kill Nanahara in three days - or die.","moviesInCollection":[],"ratingKey":312,"key":"/library/metadata/312","collectionTitle":"","collectionId":-1,"tmdbId":3177},{"name":"Grave of the Fireflies","year":1988,"posterUrl":"/library/metadata/46394/thumb/1599309157","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46394,"key":"/library/metadata/46394","collectionTitle":"","collectionId":-1,"tmdbId":12477},{"name":"Horrible Bosses","year":2011,"posterUrl":"/library/metadata/1124/thumb/1599308241","imdbId":"","language":"en","overview":"For Nick, Kurt and Dale, the only thing that would make the daily grind more tolerable would be to grind their intolerable bosses into dust. Quitting is not an option, so, with the benefit of a few-too-many drinks and some dubious advice from a hustling ex-con, the three friends devise a convoluted and seemingly foolproof plan to rid themselves of their respective employers... permanently.","moviesInCollection":[],"ratingKey":1124,"key":"/library/metadata/1124","collectionTitle":"","collectionId":-1,"tmdbId":51540},{"name":"The Godfather Part III","year":1990,"posterUrl":"/library/metadata/2498/thumb/1599308798","imdbId":"","language":"en","overview":"In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.","moviesInCollection":[],"ratingKey":2498,"key":"/library/metadata/2498","collectionTitle":"","collectionId":-1,"tmdbId":242},{"name":"Fantasia 2000","year":1999,"posterUrl":"/library/metadata/860/thumb/1599308138","imdbId":"","language":"en","overview":"Blending lively music and brilliant animation, this sequel to the original 'Fantasia' restores 'The Sorcerer's Apprentice' and adds seven new shorts.","moviesInCollection":[],"ratingKey":860,"key":"/library/metadata/860","collectionTitle":"","collectionId":-1,"tmdbId":49948},{"name":"The Terminator","year":1984,"posterUrl":"/library/metadata/2850/thumb/1599308945","imdbId":"","language":"en","overview":"In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \"Terminator\" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?","moviesInCollection":[],"ratingKey":2850,"key":"/library/metadata/2850","collectionTitle":"","collectionId":-1,"tmdbId":218},{"name":"Jersey Boys","year":2014,"posterUrl":"/library/metadata/1237/thumb/1599308284","imdbId":"","language":"en","overview":"A musical biopic of the Four Seasons—the rise, the tough times and personal clashes, and the ultimate triumph of a group of friends whose music became symbolic of a generation. Far from a mere tribute concert, it gets to the heart of the relationships at the centre of the group, with a special focus on frontman Frankie Valli, the small kid with the big falsetto.","moviesInCollection":[],"ratingKey":1237,"key":"/library/metadata/1237","collectionTitle":"","collectionId":-1,"tmdbId":209451},{"name":"American History X","year":1998,"posterUrl":"/library/metadata/179/thumb/1599307892","imdbId":"","language":"en","overview":"Derek Vineyard is paroled after serving 3 years in prison for killing two thugs who tried to break into/steal his truck. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.","moviesInCollection":[],"ratingKey":179,"key":"/library/metadata/179","collectionTitle":"","collectionId":-1,"tmdbId":73},{"name":"After the Wedding","year":2019,"posterUrl":"/library/metadata/129/thumb/1599307873","imdbId":"","language":"en","overview":"Seeking funds for her orphanage in India, Isabelle travels to New York to meet Theresa, a wealthy benefactor. An invitation to attend a wedding ignites a series of events in which the past collides with the present while mysteries unravel.","moviesInCollection":[],"ratingKey":129,"key":"/library/metadata/129","collectionTitle":"","collectionId":-1,"tmdbId":527385},{"name":"Freaks","year":2019,"posterUrl":"/library/metadata/939/thumb/1599308170","imdbId":"","language":"en","overview":"Kept locked inside the house by her father, 7-year-old Chloe lives in fear and fascination of the outside world, where Abnormals create a constant threat - or so she believes. When a mysterious stranger offers her a glimpse of what's really happening outside, Chloe soon finds that while the truth isn't so simple, the danger is very real.","moviesInCollection":[],"ratingKey":939,"key":"/library/metadata/939","collectionTitle":"","collectionId":-1,"tmdbId":539892},{"name":"The Hunger","year":1983,"posterUrl":"/library/metadata/2562/thumb/1599308821","imdbId":"","language":"en","overview":"Miriam promises her lovers the gift of eternal life, but John, her companion for centuries, suddenly discovers that he is getting old minute by minute, so he looks for Dr. Sarah Roberts, a researcher on the mechanisms of aging, and asks her for help.","moviesInCollection":[],"ratingKey":2562,"key":"/library/metadata/2562","collectionTitle":"","collectionId":-1,"tmdbId":11654},{"name":"Slaughterhouse Rulez","year":2018,"posterUrl":"/library/metadata/2054/thumb/1599308629","imdbId":"","language":"en","overview":"Don Wallace arrives at Slaughterhouse, an elite boarding school in the English countryside where the children of the wealthiest are groomed to dominate society. But the monolithic rules of the British upper class change when greed and recklessness unleash an ancient power hidden for centuries and future predators become helpless prey.","moviesInCollection":[],"ratingKey":2054,"key":"/library/metadata/2054","collectionTitle":"","collectionId":-1,"tmdbId":457943},{"name":"Murder on the Orient Express","year":2017,"posterUrl":"/library/metadata/1570/thumb/1599308420","imdbId":"","language":"en","overview":"Genius Belgian detective Hercule Poirot investigates the murder of an American tycoon aboard the Orient Express train.","moviesInCollection":[],"ratingKey":1570,"key":"/library/metadata/1570","collectionTitle":"","collectionId":-1,"tmdbId":392044},{"name":"Old School","year":2003,"posterUrl":"/library/metadata/1642/thumb/1599308452","imdbId":"","language":"en","overview":"Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.","moviesInCollection":[],"ratingKey":1642,"key":"/library/metadata/1642","collectionTitle":"","collectionId":-1,"tmdbId":11635},{"name":"Addicted to Sexting","year":2015,"posterUrl":"/library/metadata/122/thumb/1599307871","imdbId":"","language":"en","overview":"A look at the social-media phenomenon known as sexting, the process of sending sexually explicit photos via text messages or on the Internet, includes scandals it has caused as well as ways it can actually benefit healthy relationships.","moviesInCollection":[],"ratingKey":122,"key":"/library/metadata/122","collectionTitle":"","collectionId":-1,"tmdbId":378263},{"name":"Capone","year":2020,"posterUrl":"/library/metadata/41248/thumb/1599309130","imdbId":"","language":"en","overview":"The 47-year old Al Capone, after 10 years in prison, starts suffering from dementia and comes to be haunted by his violent past.","moviesInCollection":[],"ratingKey":41248,"key":"/library/metadata/41248","collectionTitle":"","collectionId":-1,"tmdbId":429422},{"name":"Scoob!","year":2020,"posterUrl":"/library/metadata/46605/thumb/1599309166","imdbId":"","language":"en","overview":"In Scooby-Doo’s greatest adventure yet, see the never-before told story of how lifelong friends Scooby and Shaggy first met and how they joined forces with young detectives Fred, Velma, and Daphne to form the famous Mystery Inc. Now, with hundreds of cases solved, Scooby and the gang face their biggest, toughest mystery ever: an evil plot to unleash the ghost dog Cerberus upon the world. As they race to stop this global “dogpocalypse,” the gang discovers that Scooby has a secret legacy and an epic destiny greater than anyone ever imagined.","moviesInCollection":[],"ratingKey":46605,"key":"/library/metadata/46605","collectionTitle":"","collectionId":-1,"tmdbId":385103},{"name":"Monster on the Campus","year":1958,"posterUrl":"/library/metadata/1533/thumb/1599308404","imdbId":"","language":"en","overview":"A college paleontology professor acquires a newly discovered specimen of a coelecanth, but while examining it, he is accidentally exposed to its blood, and finds himself periodically turning into a murderous Neanderthal man.","moviesInCollection":[],"ratingKey":1533,"key":"/library/metadata/1533","collectionTitle":"","collectionId":-1,"tmdbId":34593},{"name":"Color Out of Space","year":2020,"posterUrl":"/library/metadata/550/thumb/1599308028","imdbId":"","language":"en","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—including them.","moviesInCollection":[],"ratingKey":550,"key":"/library/metadata/550","collectionTitle":"","collectionId":-1,"tmdbId":548473},{"name":"Leprechaun in the Hood","year":2000,"posterUrl":"/library/metadata/1367/thumb/1599308329","imdbId":"","language":"en","overview":"When Butch, Postmaster P, and Stray Bullet loot the local hip-hop mogul's studio to fund their demo album, the threesome unwittingly ends up with the secret of Mack Daddy's success: a magical flute. Their gigs instantly turn golden but a blood-thristy Leprechaun and an angry Mack Daddy are hot on their trail, leaving a wake of destruction tainted by politically incorrect limericks.","moviesInCollection":[],"ratingKey":1367,"key":"/library/metadata/1367","collectionTitle":"","collectionId":-1,"tmdbId":18011},{"name":"Inglourious Basterds","year":2009,"posterUrl":"/library/metadata/1192/thumb/1599308266","imdbId":"","language":"en","overview":"In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as \"The Basterds\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.","moviesInCollection":[],"ratingKey":1192,"key":"/library/metadata/1192","collectionTitle":"","collectionId":-1,"tmdbId":16869},{"name":"Forsaken","year":2016,"posterUrl":"/library/metadata/931/thumb/1599308164","imdbId":"","language":"en","overview":"John Henry returns to his hometown in hopes of repairing his relationship with his estranged father, but a local gang is terrorizing the town. John Henry is the only one who can stop them, however he has abandoned both his gun and reputation as a fearless quick-draw killer.","moviesInCollection":[],"ratingKey":931,"key":"/library/metadata/931","collectionTitle":"","collectionId":-1,"tmdbId":354110},{"name":"Harry Potter and the Chamber of Secrets","year":2002,"posterUrl":"/library/metadata/1068/thumb/1599308220","imdbId":"","language":"en","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’s magical abilities and courage.","moviesInCollection":[],"ratingKey":1068,"key":"/library/metadata/1068","collectionTitle":"","collectionId":-1,"tmdbId":672},{"name":"Joe Dirt 2 Beautiful Loser","year":2015,"posterUrl":"/library/metadata/1246/thumb/1599308287","imdbId":"","language":"en","overview":"When happy family man Joe Dirt finds himself transported to the recent past, he begins an epic journey to get back to his loved ones in the present.","moviesInCollection":[],"ratingKey":1246,"key":"/library/metadata/1246","collectionTitle":"","collectionId":-1,"tmdbId":335970},{"name":"Austin Powers in Goldmember","year":2002,"posterUrl":"/library/metadata/240/thumb/1599307916","imdbId":"","language":"en","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 -- '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.","moviesInCollection":[],"ratingKey":240,"key":"/library/metadata/240","collectionTitle":"","collectionId":-1,"tmdbId":818},{"name":"Wrong Turn","year":2003,"posterUrl":"/library/metadata/47461/thumb/1599309183","imdbId":"","language":"en","overview":"Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.","moviesInCollection":[],"ratingKey":47461,"key":"/library/metadata/47461","collectionTitle":"","collectionId":-1,"tmdbId":9902},{"name":"Jersey Girl","year":2004,"posterUrl":"/library/metadata/1238/thumb/1599308285","imdbId":"","language":"en","overview":"Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.","moviesInCollection":[],"ratingKey":1238,"key":"/library/metadata/1238","collectionTitle":"","collectionId":-1,"tmdbId":9541},{"name":"Rogue Warfare The Hunt","year":2019,"posterUrl":"/library/metadata/48371/thumb/1601124250","imdbId":"","language":"en","overview":"The next installment of the Rogue Warfare Trilogy. Daniel has been captured and it is up to the TEAM to find him before it is to late.","moviesInCollection":[],"ratingKey":48371,"key":"/library/metadata/48371","collectionTitle":"","collectionId":-1,"tmdbId":635776},{"name":"Ace Ventura Jr Pet Detective","year":2009,"posterUrl":"/library/metadata/112/thumb/1599307867","imdbId":"","language":"en","overview":"\"I will try to be normal\" 12-year-old Ace Ventura Jr. promises. Thats cool, except whats normal for him is finding missing mutts, kidnapped kitties or gone gators and creating hilarious chaos every step of the way.","moviesInCollection":[],"ratingKey":112,"key":"/library/metadata/112","collectionTitle":"","collectionId":-1,"tmdbId":15338},{"name":"Atlas Shrugged Part I","year":2011,"posterUrl":"/library/metadata/237/thumb/1599307914","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":237,"key":"/library/metadata/237","collectionTitle":"","collectionId":-1,"tmdbId":56780},{"name":"Descendants","year":2015,"posterUrl":"/library/metadata/694/thumb/1599308079","imdbId":"","language":"en","overview":"A present-day idyllic kingdom where the benevolent teenage son of King Adam and Queen Belle offers a chance of redemption for the troublemaking offspring of Disney's classic villains: Cruella De Vil (Carlos), Maleficent (Mal), the Evil Queen (Evvie) and Jafar (Jay).","moviesInCollection":[],"ratingKey":694,"key":"/library/metadata/694","collectionTitle":"","collectionId":-1,"tmdbId":277217},{"name":"King Kong","year":2005,"posterUrl":"/library/metadata/43646/thumb/1599309143","imdbId":"","language":"en","overview":"In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with the leading lady.","moviesInCollection":[],"ratingKey":43646,"key":"/library/metadata/43646","collectionTitle":"","collectionId":-1,"tmdbId":254},{"name":"The Quiet Ones","year":2014,"posterUrl":"/library/metadata/2772/thumb/1599308911","imdbId":"","language":"en","overview":"A university student and some classmates are recruited to carry out a private experiment -- to create a poltergeist. Their subject: an alluring, but dangerously disturbed young woman. Their quest: to explore the dark energy that her damaged psyche might manifest. As the experiment unravels along with their sanity, the rogue PHD students, led by their determined professor, are soon confronted with a terrifying reality: they have triggered an unspeakable force with a power beyond all explanation.","moviesInCollection":[],"ratingKey":2772,"key":"/library/metadata/2772","collectionTitle":"","collectionId":-1,"tmdbId":193612},{"name":"The Shadow Effect","year":2017,"posterUrl":"/library/metadata/2809/thumb/1599308927","imdbId":"","language":"en","overview":"A young man's life is turned upside down when his violent dreams begin to blend with reality.","moviesInCollection":[],"ratingKey":2809,"key":"/library/metadata/2809","collectionTitle":"","collectionId":-1,"tmdbId":383538},{"name":"Alien","year":1979,"posterUrl":"/library/metadata/149/thumb/1599307881","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":149,"key":"/library/metadata/149","collectionTitle":"","collectionId":-1,"tmdbId":348},{"name":"The Way of the Gun","year":2000,"posterUrl":"/library/metadata/2894/thumb/1599308961","imdbId":"","language":"en","overview":"Two criminal drifters without sympathy get more than they bargained for after kidnapping and holding for ransom the surrogate mother of a powerful and shady man.","moviesInCollection":[],"ratingKey":2894,"key":"/library/metadata/2894","collectionTitle":"","collectionId":-1,"tmdbId":1619},{"name":"I Got the Hook Up 2","year":2019,"posterUrl":"/library/metadata/1158/thumb/1599308253","imdbId":"","language":"en","overview":"After best friends Black and Blue's restaurant is shut down, Black needs to find some cash -- fast. He thinks his luck has turned when Blue's son, Fatboy, and his best friend, Spyda,, bring him a stash of stolen cellphones, and Black decides to sell them on the streets. There's only one problem: The boxes with the phones also contain the Colombian cartel's stash of Molly, which Spyda decides to sell.","moviesInCollection":[],"ratingKey":1158,"key":"/library/metadata/1158","collectionTitle":"","collectionId":-1,"tmdbId":576187},{"name":"Raw","year":2016,"posterUrl":"/library/metadata/1852/thumb/1599308541","imdbId":"","language":"en","overview":"In Justine’s family everyone is a vet and a vegetarian. At 16, she’s a gifted teen ready to take on her first year in vet school, where her older sister also studies. There, she gets no time to settle: hazing starts right away. Justine is forced to eat raw meat for the first time in her life. Unexpected consequences emerge as her true self begins to form.","moviesInCollection":[],"ratingKey":1852,"key":"/library/metadata/1852","collectionTitle":"","collectionId":-1,"tmdbId":393519},{"name":"Austin Powers The Spy Who Shagged Me","year":1999,"posterUrl":"/library/metadata/242/thumb/1599307917","imdbId":"","language":"en","overview":"When diabolical genius, Dr. Evil travels back in time to steal superspy Austin Powers's ‘mojo’, 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 and saves the world in his own unbelievably groovy way.","moviesInCollection":[],"ratingKey":242,"key":"/library/metadata/242","collectionTitle":"","collectionId":-1,"tmdbId":817},{"name":"Return of the Seven","year":1966,"posterUrl":"/library/metadata/1892/thumb/1599308559","imdbId":"","language":"en","overview":"Chico one of the remaining members of The Magnificent Seven now lives in the town that they (The Seven) helped. One day someone comes and takes most of the men prisoner. His wife seeks out Chris, the leader of The Seven for help. Chris also meets Vin another member of The Seven. They find four other men and they go to help Chico.","moviesInCollection":[],"ratingKey":1892,"key":"/library/metadata/1892","collectionTitle":"","collectionId":-1,"tmdbId":12639},{"name":"Enemy of the State","year":1998,"posterUrl":"/library/metadata/824/thumb/1599308125","imdbId":"","language":"en","overview":"A hotshot Washington criminal lawyer becomes the target of a rogue security executive videotaped in the act of murdering a congressman when the incriminating tape is surreptitiously slipped into his shopping bag by the videographer, who is fleeing the executive's assassins.","moviesInCollection":[],"ratingKey":824,"key":"/library/metadata/824","collectionTitle":"","collectionId":-1,"tmdbId":9798},{"name":"Havana","year":1990,"posterUrl":"/library/metadata/1076/thumb/1599308224","imdbId":"","language":"en","overview":"An American professional gambler named Jack Weil (Redford) decides to visit Havana, Cuba to gamble. On the boat to Havana, he meets Roberta Duran (Olin), the wife of a revolutionary, Arturo (Julia). Shortly after their arrival, Arturo is taken away by the secret police, and Roberta is captured and tortured. Jack frees her, but she continues to support the revolution.","moviesInCollection":[],"ratingKey":1076,"key":"/library/metadata/1076","collectionTitle":"","collectionId":-1,"tmdbId":22189},{"name":"A Man Apart","year":2003,"posterUrl":"/library/metadata/73/thumb/1599307851","imdbId":"","language":"en","overview":"When Vetter's wife is killed in a botched hit organized by Diablo, he seeks revenge against those responsible. But in the process, Vetter and Hicks have to fight their way up the chain to get to Diablo but it's easier said than done when all Vetter can focus on is revenge.","moviesInCollection":[],"ratingKey":73,"key":"/library/metadata/73","collectionTitle":"","collectionId":-1,"tmdbId":8409},{"name":"End of the World","year":2018,"posterUrl":"/library/metadata/819/thumb/1599308123","imdbId":"","language":"en","overview":"As mass of solar storms causes tsunamis, volcanoes, and flooding, a city-dwelling family attempts to flee to the relative safety of a group of high-elevation caves several miles away.","moviesInCollection":[],"ratingKey":819,"key":"/library/metadata/819","collectionTitle":"","collectionId":-1,"tmdbId":573641},{"name":"Rust Creek","year":2018,"posterUrl":"/library/metadata/1950/thumb/1599308585","imdbId":"","language":"en","overview":"When an overachieving college senior makes a wrong turn, her road trip becomes a life-changing fight for survival in rural Kentucky.","moviesInCollection":[],"ratingKey":1950,"key":"/library/metadata/1950","collectionTitle":"","collectionId":-1,"tmdbId":561362},{"name":"The Long Dumb Road","year":2018,"posterUrl":"/library/metadata/2648/thumb/1599308855","imdbId":"","language":"en","overview":"Two guys serendipitously meet at a time when they both find themselves at personal crossroads and decide to embark on an unplanned road trip across the American Southwest.","moviesInCollection":[],"ratingKey":2648,"key":"/library/metadata/2648","collectionTitle":"","collectionId":-1,"tmdbId":457243},{"name":"Whitney","year":2018,"posterUrl":"/library/metadata/3141/thumb/1599309045","imdbId":"","language":"en","overview":"Filmmaker Kevin Macdonald examines the life and career of singer Whitney Houston. Features never-before-seen archival footage, exclusive recordings, rare performances and interviews with the people who knew her best.","moviesInCollection":[],"ratingKey":3141,"key":"/library/metadata/3141","collectionTitle":"","collectionId":-1,"tmdbId":507256},{"name":"Man on the Moon","year":1999,"posterUrl":"/library/metadata/1454/thumb/1599308367","imdbId":"","language":"en","overview":"The story of the life and career of eccentric avant-garde comedian, Andy Kaufman.","moviesInCollection":[],"ratingKey":1454,"key":"/library/metadata/1454","collectionTitle":"","collectionId":-1,"tmdbId":1850},{"name":"Justice League The New Frontier","year":2008,"posterUrl":"/library/metadata/1285/thumb/1599308301","imdbId":"","language":"en","overview":"The human race is threatened by a powerful creature, and only the combined power of Superman, Batman, Wonder Woman, Green Lantern, Martian Manhunter and The Flash can stop it. But can they overcome their differences to thwart this enemy using the combined strength of their newly formed Justice League?","moviesInCollection":[],"ratingKey":1285,"key":"/library/metadata/1285","collectionTitle":"","collectionId":-1,"tmdbId":14011},{"name":"Rudolph and Frosty's Christmas in July","year":1979,"posterUrl":"/library/metadata/1938/thumb/1599308580","imdbId":"","language":"en","overview":"Long ago the Lady Borealis placed the evil Winterbolt under a magic spell, and put the last of her magic into the nose of a newborn reindeer: Rudolph. But now Winterbolt's awake. He gives Frosty's family magic amulets to keep them from melting until the Fourth of July so that Frosty and Rudolph can help Lilly's circus and Milton can marry his girlfriend on the high-wire, and Santa will use his sleigh to make sure everybody gets back to the North Pole in time...which leaves Winterbolt alone at the North Pole on the Fourth...","moviesInCollection":[],"ratingKey":1938,"key":"/library/metadata/1938","collectionTitle":"","collectionId":-1,"tmdbId":40246},{"name":"The Express","year":2008,"posterUrl":"/library/metadata/2448/thumb/1599308779","imdbId":"","language":"en","overview":"Based on the incredible true story, The Express follows the inspirational life of college football hero Ernie Davis, the first African-American to win the Heisman Trophy.","moviesInCollection":[],"ratingKey":2448,"key":"/library/metadata/2448","collectionTitle":"","collectionId":-1,"tmdbId":14325},{"name":"Couples Retreat","year":2009,"posterUrl":"/library/metadata/581/thumb/1599308040","imdbId":"","language":"en","overview":"Four couples, all friends, descend on a tropical island resort. Though one husband and wife are there to work on their marriage, the others just want to enjoy some fun in the sun. They soon find, however, that paradise comes at a price: Participation in couples therapy sessions is mandatory. What started out as a cut-rate vacation turns into an examination of the common problems many face.","moviesInCollection":[],"ratingKey":581,"key":"/library/metadata/581","collectionTitle":"","collectionId":-1,"tmdbId":19899},{"name":"Snowtime!","year":2016,"posterUrl":"/library/metadata/2081/thumb/1599308641","imdbId":"","language":"en","overview":"To amuse themselves during the winter school break, the kids in a small village decide to have a massive snowball fight. Luke and Sophie, both 11 years old, become the leaders of the opposing sides. Sophie and her cohort defend an elaborate snow fort against the assault of Luke’s horde. Whichever side occupies the fort at the end of the winter break, wins. But what starts out as pure youthful fun and enthusiasm deteriorates into a more serious conflict. Joy is restored when all the children decide to attack the fort rather than each other and happily destroy every last bit of the snow fort.","moviesInCollection":[],"ratingKey":2081,"key":"/library/metadata/2081","collectionTitle":"","collectionId":-1,"tmdbId":366656},{"name":"The First Purge","year":2018,"posterUrl":"/library/metadata/2468/thumb/1599308786","imdbId":"","language":"en","overview":"To push the crime rate below one percent for the rest of the year, the New Founding Fathers of America test a sociological theory that vents aggression for one night in one isolated community. But when the violence of oppressors meets the rage of the others, the contagion will explode from the trial-city borders and spread across the nation.","moviesInCollection":[],"ratingKey":2468,"key":"/library/metadata/2468","collectionTitle":"","collectionId":-1,"tmdbId":442249},{"name":"National Lampoon's European Vacation","year":1985,"posterUrl":"/library/metadata/1590/thumb/1599308427","imdbId":"","language":"en","overview":"The Griswalds win a vacation to Europe on a game show, and thus pack their bags for the continent. They do their best to catch the flavor of Europe, but they just don't know how to be be good tourists. Besides, they have trouble taking holidays in countries where they CAN speak the language.","moviesInCollection":[],"ratingKey":1590,"key":"/library/metadata/1590","collectionTitle":"","collectionId":-1,"tmdbId":11418},{"name":"Big Daddy","year":1999,"posterUrl":"/library/metadata/348/thumb/1599307953","imdbId":"","language":"en","overview":"A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn't go as planned and he becomes the unlikely foster father.","moviesInCollection":[],"ratingKey":348,"key":"/library/metadata/348","collectionTitle":"","collectionId":-1,"tmdbId":9032},{"name":"Thursday","year":1998,"posterUrl":"/library/metadata/2935/thumb/1599308975","imdbId":"","language":"en","overview":"Casey has given up drug dealing for a suburban idyll in Houston, a job as an architect and a new wife. They are even planning to adopt a child. But Casey's past arrives on the doorstep in the shape of Nick, an old business partner. And all hell breaks loose!","moviesInCollection":[],"ratingKey":2935,"key":"/library/metadata/2935","collectionTitle":"","collectionId":-1,"tmdbId":9812},{"name":"Butter","year":2011,"posterUrl":"/library/metadata/451/thumb/1599307992","imdbId":"","language":"en","overview":"An adopted girl discovers her talent for butter carving and finds herself pitted against an ambitious local woman in their Iowa town's annual contest.","moviesInCollection":[],"ratingKey":451,"key":"/library/metadata/451","collectionTitle":"","collectionId":-1,"tmdbId":79697},{"name":"Rudy","year":1993,"posterUrl":"/library/metadata/1941/thumb/1599308580","imdbId":"","language":"en","overview":"Rudy grew up in a steel mill town where most people ended up working, but wanted to play football at Notre Dame instead. There were only a couple of problems. His grades were a little low, his athletic skills were poor, and he was only half the size of the other players. But he had the drive and the spirit of 5 people and has set his sights upon joining the team.","moviesInCollection":[],"ratingKey":1941,"key":"/library/metadata/1941","collectionTitle":"","collectionId":-1,"tmdbId":14534},{"name":"Beautiful Boy","year":2018,"posterUrl":"/library/metadata/323/thumb/1599307944","imdbId":"","language":"en","overview":"After he and his first wife separate, journalist David Sheff struggles to help their teenage son, who goes from experimenting with drugs to becoming devastatingly addicted to methamphetamine.","moviesInCollection":[],"ratingKey":323,"key":"/library/metadata/323","collectionTitle":"","collectionId":-1,"tmdbId":451915},{"name":"Butch Cassidy and the Sundance Kid","year":1969,"posterUrl":"/library/metadata/450/thumb/1599307992","imdbId":"","language":"en","overview":"In late 1890s Wyoming, Butch Cassidy is the affable, clever and talkative leader of the outlaw Hole in the Wall Gang. His closest companion is the laconic dead-shot 'Sundance Kid'. As the west rapidly becomes civilized, the law finally catches up to Butch, Sundance and their gang. Chased doggedly by a special posse, the two decide to make their way to South America in hopes of evading their pursuers once and for all.","moviesInCollection":[],"ratingKey":450,"key":"/library/metadata/450","collectionTitle":"","collectionId":-1,"tmdbId":642},{"name":"Scary Movie","year":2000,"posterUrl":"/library/metadata/1973/thumb/1599308593","imdbId":"","language":"en","overview":"Following on the heels of popular teen-scream horror movies, with uproarious comedy and biting satire. Marlon and Shawn Wayans, Shannon Elizabeth and Carmen Electra pitch in to skewer some of Hollywood's biggest blockbusters, including Scream, I Know What You Did Last Summer, The Matrix, American Pie and The Blair Witch Project.","moviesInCollection":[],"ratingKey":1973,"key":"/library/metadata/1973","collectionTitle":"","collectionId":-1,"tmdbId":4247},{"name":"Ray","year":2004,"posterUrl":"/library/metadata/1854/thumb/1599308542","imdbId":"","language":"en","overview":"Born on a sharecropping plantation in Northern Florida, Ray Charles went blind at seven. Inspired by a fiercely independent mom who insisted he make his own way, He found his calling and his gift behind a piano keyboard. Touring across the Southern musical circuit, the soulful singer gained a reputation and then exploded with worldwide fame when he pioneered couping gospel and country together.","moviesInCollection":[],"ratingKey":1854,"key":"/library/metadata/1854","collectionTitle":"","collectionId":-1,"tmdbId":1677},{"name":"The Running Man","year":1987,"posterUrl":"/library/metadata/2792/thumb/1599308920","imdbId":"","language":"en","overview":"By 2017, the global economy has collapsed and American society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where “runners” attempt to evade “stalkers” and certain death for a chance to be pardoned and set free.","moviesInCollection":[],"ratingKey":2792,"key":"/library/metadata/2792","collectionTitle":"","collectionId":-1,"tmdbId":865},{"name":"Independence Day Resurgence","year":2016,"posterUrl":"/library/metadata/1186/thumb/1599308264","imdbId":"","language":"en","overview":"We always knew they were coming back. Using recovered alien technology, the nations of Earth have collaborated on an immense defense program to protect the planet. But nothing can prepare us for the aliens’ advanced and unprecedented force. Only the ingenuity of a few brave men and women can bring our world back from the brink of extinction.","moviesInCollection":[],"ratingKey":1186,"key":"/library/metadata/1186","collectionTitle":"","collectionId":-1,"tmdbId":47933},{"name":"Doctor Strange","year":2016,"posterUrl":"/library/metadata/722/thumb/1599308090","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":722,"key":"/library/metadata/722","collectionTitle":"","collectionId":-1,"tmdbId":284052},{"name":"The Men Who Stare at Goats","year":2009,"posterUrl":"/library/metadata/2683/thumb/1599308871","imdbId":"","language":"en","overview":"A reporter in Iraq might just have the story of a lifetime when he meets Lyn Cassady, a guy who claims to be a former member of the U.S. Army's New Earth Army, a unit that employs paranormal powers in their missions.","moviesInCollection":[],"ratingKey":2683,"key":"/library/metadata/2683","collectionTitle":"","collectionId":-1,"tmdbId":10313},{"name":"Step Up All In","year":2014,"posterUrl":"/library/metadata/47252/thumb/1599309174","imdbId":"","language":"en","overview":"All-stars from the previous Step Up installments come together in glittering Las Vegas, battling for a victory that could define their dreams and their careers.","moviesInCollection":[],"ratingKey":47252,"key":"/library/metadata/47252","collectionTitle":"","collectionId":-1,"tmdbId":243683},{"name":"Mythica The Iron Crown","year":2016,"posterUrl":"/library/metadata/1583/thumb/1599308425","imdbId":"","language":"en","overview":"When a team of unlikely heroes hijacks a steam-powered battle wagon, a daring young wizard (Marek) steals the final piece of the all-powerful Darkspore and embarks on a desperate quest to deliver the cursed artifact to the gods for safe keeping; but when they are caught in a death race between a ruthless team of elite mercenaries and a trinity of demons, Marek must learn to believe in herself before her friends are killed and the Darkspore is lost, to stop the evil necromancer (Szorlok) from uniting the Darkspore and flooding the living world with his legions of undead.","moviesInCollection":[],"ratingKey":1583,"key":"/library/metadata/1583","collectionTitle":"","collectionId":-1,"tmdbId":388191},{"name":"The Forger","year":2015,"posterUrl":"/library/metadata/2475/thumb/1599308790","imdbId":"","language":"en","overview":"A former child art prodigy and second generation petty thief arranges to buy his way out of prison to spend time with his ailing son, only to be forced to alter his plans and commit one more job for the man who financed his release.","moviesInCollection":[],"ratingKey":2475,"key":"/library/metadata/2475","collectionTitle":"","collectionId":-1,"tmdbId":255157},{"name":"Tears of the Sun","year":2003,"posterUrl":"/library/metadata/2249/thumb/1599308707","imdbId":"","language":"en","overview":"Navy SEAL Lieutenant A.K. Waters and his elite squadron of tactical specialists are forced to choose between their duty and their humanity, between following orders by ignoring the conflict that surrounds them, or finding the courage to follow their conscience and protect a group of innocent refugees. When the democratic government of Nigeria collapses and the country is taken over by a ruthless military dictator, Waters, a fiercely loyal and hardened veteran is dispatched on a routine mission to retrieve a Doctors Without Borders physician.","moviesInCollection":[],"ratingKey":2249,"key":"/library/metadata/2249","collectionTitle":"","collectionId":-1,"tmdbId":9567},{"name":"Under the Tree","year":2017,"posterUrl":"/library/metadata/3042/thumb/1599309012","imdbId":"","language":"en","overview":"When Baldwin and Inga's next door neighbours complain that a tree in their backyard casts a shadow over their sundeck, what starts off as a typical spat between neighbours in the suburbs unexpectedly and violently spirals out of control.","moviesInCollection":[],"ratingKey":3042,"key":"/library/metadata/3042","collectionTitle":"","collectionId":-1,"tmdbId":472640},{"name":"The Imaginarium of Doctor Parnassus","year":2009,"posterUrl":"/library/metadata/2577/thumb/1599308827","imdbId":"","language":"en","overview":"A traveling theater company gives its audience much more than they were expecting.","moviesInCollection":[],"ratingKey":2577,"key":"/library/metadata/2577","collectionTitle":"","collectionId":-1,"tmdbId":8054},{"name":"Wrong Turn 3 Left for Dead","year":2009,"posterUrl":"/library/metadata/47423/thumb/1599309183","imdbId":"","language":"en","overview":"A group of people find themselves trapped in the backwoods of West Virginia, fighting for their lives against a group of vicious and horribly disfigured inbred cannibals.","moviesInCollection":[],"ratingKey":47423,"key":"/library/metadata/47423","collectionTitle":"","collectionId":-1,"tmdbId":23823},{"name":"Young Guns II","year":1990,"posterUrl":"/library/metadata/3193/thumb/1599309062","imdbId":"","language":"en","overview":"Three of the original five \"young guns\" — Billy the Kid (Emilio Estevez), Jose Chavez y Chavez (Lou Diamond Phillips), and Doc Scurlock (Kiefer Sutherland) — return in Young Guns, Part 2, which is the story of Billy the Kid and his race to safety in Old Mexico while being trailed by a group of government agents led by Pat Garrett.","moviesInCollection":[],"ratingKey":3193,"key":"/library/metadata/3193","collectionTitle":"","collectionId":-1,"tmdbId":9086},{"name":"Miss Peregrine's Home for Peculiar Children","year":2016,"posterUrl":"/library/metadata/1517/thumb/1599308397","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1517,"key":"/library/metadata/1517","collectionTitle":"","collectionId":-1,"tmdbId":283366},{"name":"Taxi Driver","year":1976,"posterUrl":"/library/metadata/2248/thumb/1599308706","imdbId":"","language":"en","overview":"A mentally unstable Vietnam War veteran works as a night-time taxi driver in New York City where the perceived decadence and sleaze feed his urge for violent action, attempting to save a preadolescent prostitute in the process.","moviesInCollection":[],"ratingKey":2248,"key":"/library/metadata/2248","collectionTitle":"","collectionId":-1,"tmdbId":103},{"name":"Time Bandits","year":1981,"posterUrl":"/library/metadata/2938/thumb/1599308976","imdbId":"","language":"en","overview":"Young history buff Kevin can scarcely believe it when six dwarfs emerge from his closet one night. Former employees of the Supreme Being, they've purloined a map charting all of the holes in the fabric of time and are using it to steal treasures from different historical eras. Taking Kevin with them, they variously drop in on Napoleon, Robin Hood and King Agamemnon before the Supreme Being catches up with them.","moviesInCollection":[],"ratingKey":2938,"key":"/library/metadata/2938","collectionTitle":"","collectionId":-1,"tmdbId":36819},{"name":"The Great Dictator","year":1940,"posterUrl":"/library/metadata/2508/thumb/1599308802","imdbId":"","language":"en","overview":"Dictator Adenoid Hynkel tries to expand his empire while a poor Jewish barber tries to avoid persecution from Hynkel's regime.","moviesInCollection":[],"ratingKey":2508,"key":"/library/metadata/2508","collectionTitle":"","collectionId":-1,"tmdbId":914},{"name":"Superman/Batman Apocalypse","year":2010,"posterUrl":"/library/metadata/2207/thumb/1599308692","imdbId":"","language":"en","overview":"Batman discovers a mysterious teen-aged girl with superhuman powers and a connection to Superman. When the girl comes to the attention of Darkseid, the evil overlord of Apokolips, events take a decidedly dangerous turn.","moviesInCollection":[],"ratingKey":2207,"key":"/library/metadata/2207","collectionTitle":"","collectionId":-1,"tmdbId":45162},{"name":"Ghost in the Shell Stand Alone Complex - Solid State Society","year":2007,"posterUrl":"/library/metadata/991/thumb/1599308189","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":991,"key":"/library/metadata/991","collectionTitle":"","collectionId":-1,"tmdbId":18874},{"name":"City of Industry","year":1997,"posterUrl":"/library/metadata/519/thumb/1599308017","imdbId":"","language":"en","overview":"A retired thief swears revenge on the lunatic who murdered his brother and partner, while going on the run with the loot they stole.","moviesInCollection":[],"ratingKey":519,"key":"/library/metadata/519","collectionTitle":"","collectionId":-1,"tmdbId":18420},{"name":"My Cousin Vinny","year":1992,"posterUrl":"/library/metadata/1575/thumb/1599308422","imdbId":"","language":"en","overview":"Two carefree pals traveling through Alabama are mistakenly arrested, and charged with murder. Fortunately, one of them has a cousin who's a lawyer - Vincent Gambini, a former auto mechanic from Brooklyn who just passed his bar exam after his sixth try. When he arrives with his leather-clad girlfriend , to try his first case, it's a real shock - for him and the Deep South!","moviesInCollection":[],"ratingKey":1575,"key":"/library/metadata/1575","collectionTitle":"","collectionId":-1,"tmdbId":10377},{"name":"Snowpiercer","year":2014,"posterUrl":"/library/metadata/2080/thumb/1599308640","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2080,"key":"/library/metadata/2080","collectionTitle":"","collectionId":-1,"tmdbId":110415},{"name":"Graduation Day","year":1981,"posterUrl":"/library/metadata/1025/thumb/1599308203","imdbId":"","language":"en","overview":"After a high school track runner, named Laura, suddenly dies from a heart attack after finishing a 30-second 200-meter race, a killer wearing a sweat suit and a fencing mask begins killing off her friends on the school track team one by one. The suspects include the track coach Michaels, Laura's sister Anne who arrives in town for the funeral, the creepy school principal Mr. Guglione, and Laura's strange boyfriend Kevin.","moviesInCollection":[],"ratingKey":1025,"key":"/library/metadata/1025","collectionTitle":"","collectionId":-1,"tmdbId":27420},{"name":"Love & Basketball","year":2000,"posterUrl":"/library/metadata/1420/thumb/1599308350","imdbId":"","language":"en","overview":"A young African-American couple navigates the tricky paths of romance and athletics in this drama. Quincy McCall (Omar Epps) and Monica Wright (Sanaa Lathan) grew up in the same neighborhood and have known each other since childhood. As they grow into adulthood, they fall in love, but they also share another all-consuming passion: basketball. They've followed the game all their lives and have no small amount of talent on the court. As Quincy and Monica struggle to make their relationship work, they follow separate career paths though high school and college basketball and, they hope, into stardom in big-league professional ball.","moviesInCollection":[],"ratingKey":1420,"key":"/library/metadata/1420","collectionTitle":"","collectionId":-1,"tmdbId":14736},{"name":"The Martian","year":2015,"posterUrl":"/library/metadata/2673/thumb/1599308867","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2673,"key":"/library/metadata/2673","collectionTitle":"","collectionId":-1,"tmdbId":286217},{"name":"Pacific Rim Uprising","year":2018,"posterUrl":"/library/metadata/1687/thumb/1599308471","imdbId":"","language":"en","overview":"It has been ten years since The Battle of the Breach and the oceans are still, but restless. Vindicated by the victory at the Breach, the Jaeger program has evolved into the most powerful global defense force in human history. The PPDC now calls upon the best and brightest to rise up and become the next generation of heroes when the Kaiju threat returns.","moviesInCollection":[],"ratingKey":1687,"key":"/library/metadata/1687","collectionTitle":"","collectionId":-1,"tmdbId":268896},{"name":"A Star Is Born","year":2018,"posterUrl":"/library/metadata/94/thumb/1599307860","imdbId":"","language":"en","overview":"Seasoned musician Jackson Maine discovers — and falls in love with — struggling artist Ally. She has just about given up on her dream to make it big as a singer — until Jack coaxes her into the spotlight. But even as Ally's career takes off, the personal side of their relationship is breaking down, as Jack fights an ongoing battle with his own internal demons.","moviesInCollection":[],"ratingKey":94,"key":"/library/metadata/94","collectionTitle":"","collectionId":-1,"tmdbId":332562},{"name":"Wreck-It Ralph","year":2012,"posterUrl":"/library/metadata/3170/thumb/1599309055","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3170,"key":"/library/metadata/3170","collectionTitle":"","collectionId":-1,"tmdbId":82690},{"name":"Climax","year":2018,"posterUrl":"/library/metadata/526/thumb/1599308020","imdbId":"","language":"en","overview":"Young dancers gather in a remote and empty school building to rehearse on a cold and wintry night. The all-night celebration soon turns into a hallucinatory nightmare when they learn that their sangria is laced with LSD.","moviesInCollection":[],"ratingKey":526,"key":"/library/metadata/526","collectionTitle":"","collectionId":-1,"tmdbId":507076},{"name":"21","year":2008,"posterUrl":"/library/metadata/25/thumb/1599307835","imdbId":"","language":"en","overview":"Ben Campbell is a young, highly intelligent, student at M.I.T. in Boston who strives to succeed. Wanting a scholarship to transfer to Harvard School of Medicine with the desire to become a doctor, Ben learns that he cannot afford the $300,000 for the four to five years of schooling as he comes from a poor, working-class background. But one evening, Ben is introduced by his unorthodox math professor Micky Rosa into a small but secretive club of five. Students Jill, Choi, Kianna, and Fisher, who are being trained by Professor Rosa of the skill of card counting at blackjack.","moviesInCollection":[],"ratingKey":25,"key":"/library/metadata/25","collectionTitle":"","collectionId":-1,"tmdbId":8065},{"name":"The Death and Life of Bobby Z","year":2007,"posterUrl":"/library/metadata/2403/thumb/1599308760","imdbId":"","language":"en","overview":"A DEA agent provides former Marine Tim Kearney with a way out of his prison sentence: impersonate Bobby Z, a recently deceased drug dealer, in a hostage switch with a crime lord. When the negotiations go awry, Kearney flees, with Z's son in tow.","moviesInCollection":[],"ratingKey":2403,"key":"/library/metadata/2403","collectionTitle":"","collectionId":-1,"tmdbId":10425},{"name":"We Are Marshall","year":2006,"posterUrl":"/library/metadata/3116/thumb/1599309036","imdbId":"","language":"en","overview":"When a plane crash claims the lives of members of the Marshall University football team and some of its fans, the team's new coach and his surviving players try to keep the football program alive.","moviesInCollection":[],"ratingKey":3116,"key":"/library/metadata/3116","collectionTitle":"","collectionId":-1,"tmdbId":11170},{"name":"Airplane II The Sequel","year":1982,"posterUrl":"/library/metadata/39807/thumb/1599309096","imdbId":"","language":"en","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 – again – all the while trying to patch up his relationship with Elaine.","moviesInCollection":[],"ratingKey":39807,"key":"/library/metadata/39807","collectionTitle":"","collectionId":-1,"tmdbId":2665},{"name":"Happy Death Day 2U","year":2019,"posterUrl":"/library/metadata/1061/thumb/1599308217","imdbId":"","language":"en","overview":"Collegian Tree Gelbman wakes up in horror to learn that she's stuck in a parallel universe. Her boyfriend Carter is now with someone else, and her friends and fellow students seem to be completely different versions of themselves. When Tree discovers that Carter's roommate has been altering time, she finds herself once again the target of a masked killer. When the psychopath starts to go after her inner circle, Tree soon realizes that she must die over and over again to save everyone.","moviesInCollection":[],"ratingKey":1061,"key":"/library/metadata/1061","collectionTitle":"","collectionId":-1,"tmdbId":512196},{"name":"The Last Movie","year":1971,"posterUrl":"/library/metadata/2620/thumb/1599308843","imdbId":"","language":"en","overview":"A film shoot in Peru goes badly wrong when an actor is killed in a stunt, and the unit wrangler, Kansas, decides to give up film-making and stay on in the village, shacking up with local prostitute Maria. But his dreams of an unspoiled existence are interrupted when the local priest asks him to help stop the villagers killing each other by re-enacting scenes from the film for real because they don't understand movie fakery...","moviesInCollection":[],"ratingKey":2620,"key":"/library/metadata/2620","collectionTitle":"","collectionId":-1,"tmdbId":49600},{"name":"Maze Runner The Death Cure","year":2018,"posterUrl":"/library/metadata/1477/thumb/1599308378","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1477,"key":"/library/metadata/1477","collectionTitle":"","collectionId":-1,"tmdbId":336843},{"name":"Bloodsport II","year":1996,"posterUrl":"/library/metadata/27835/thumb/1599309073","imdbId":"","language":"en","overview":"After thief Alex Cardo gets caught while stealing an ancient katana in East Asia, he soon finds himself imprisoned and beaten up by the crowd there. One of the guards, Demon, feels upset by Alex appearance and tortures him as often as he gets the opportunity. Alex finds a friend and mentor in the jailhouse, Master Sun, who teaches him a superior fighting style called Iron Hand. When a 'best of the best kumite' is to take place, Demon gets an invitation. Now Master Sun and Alex need to find a way to let Alex take part in the kumite too.","moviesInCollection":[],"ratingKey":27835,"key":"/library/metadata/27835","collectionTitle":"","collectionId":-1,"tmdbId":25087},{"name":"The Hollow Point","year":2016,"posterUrl":"/library/metadata/2546/thumb/1599308816","imdbId":"","language":"en","overview":"Los Reyes County, Arizona. Leland, a retired lawman, works with Wallace, the new sheriff who replaces him, when a vicious hit man, sent by a Mexican drug cartel, threatens their border small town.","moviesInCollection":[],"ratingKey":2546,"key":"/library/metadata/2546","collectionTitle":"","collectionId":-1,"tmdbId":262982},{"name":"Kite","year":2014,"posterUrl":"/library/metadata/1315/thumb/1599308312","imdbId":"","language":"en","overview":"Based on the groundbreaking, cult classic anime, KITE tells the story of Sawa, a young woman living in a corrupt society where crime and gangs terrorize the streets. When Sawa's mother and policeman father are found victims of a grisly double homicide, she begins a ruthless pursuit for the man who murdered them. With the help of her father's ex-partner, Karl Aker, and a mysterious friend from her past, she becomes a merciless teen assassin, blasting her way through the dark world of human trafficking only to uncover a devastating truth","moviesInCollection":[],"ratingKey":1315,"key":"/library/metadata/1315","collectionTitle":"","collectionId":-1,"tmdbId":192712},{"name":"Red Dragon","year":2002,"posterUrl":"/library/metadata/1866/thumb/1599308547","imdbId":"","language":"en","overview":"Former FBI Agent Will Graham, who was once almost killed by the savage Hannibal 'The Cannibal' Lecter, now has no choice but to face him again, as it seems Lecter is the only one who can help Graham track down a new serial killer.","moviesInCollection":[],"ratingKey":1866,"key":"/library/metadata/1866","collectionTitle":"","collectionId":-1,"tmdbId":9533},{"name":"Blade Runner 2049","year":2017,"posterUrl":"/library/metadata/375/thumb/1599307964","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":375,"key":"/library/metadata/375","collectionTitle":"","collectionId":-1,"tmdbId":335984},{"name":"Generation Iron","year":2013,"posterUrl":"/library/metadata/975/thumb/1599308184","imdbId":"","language":"en","overview":"Generation Iron - examines the professional sport of bodybuilding today and gives the audience front row access to the lives of the top 7 bodybuilders in the sport as they train to compete in the world's most premiere bodybuilding stage - Mr. Olympia.","moviesInCollection":[],"ratingKey":975,"key":"/library/metadata/975","collectionTitle":"","collectionId":-1,"tmdbId":207021},{"name":"TRON Legacy","year":2010,"posterUrl":"/library/metadata/3006/thumb/1599308999","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3006,"key":"/library/metadata/3006","collectionTitle":"","collectionId":-1,"tmdbId":20526},{"name":"Open Windows","year":2014,"posterUrl":"/library/metadata/1664/thumb/1599308462","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1664,"key":"/library/metadata/1664","collectionTitle":"","collectionId":-1,"tmdbId":151368},{"name":"Stalingrad","year":1994,"posterUrl":"/library/metadata/2125/thumb/1599308660","imdbId":"","language":"en","overview":"\"Stalingrad\" follows the progress of a German Platoon through the brutal fighting of the Battle of Stalingrad. After having half their number wiped out and after being placed under the command of a sadistic Captain, the Lieutenant of the platoon leads his men to desert. The men of the platoon attempt to escape from the city which is now surrounded by the Soviet Army.","moviesInCollection":[],"ratingKey":2125,"key":"/library/metadata/2125","collectionTitle":"","collectionId":-1,"tmdbId":11101},{"name":"Knightriders","year":1981,"posterUrl":"/library/metadata/1317/thumb/1599308313","imdbId":"","language":"en","overview":"George Romero's unusual story of a modern-day Renaissance troupe whose participants follow a medieval code of honor.","moviesInCollection":[],"ratingKey":1317,"key":"/library/metadata/1317","collectionTitle":"","collectionId":-1,"tmdbId":22167},{"name":"Empire State","year":2013,"posterUrl":"/library/metadata/817/thumb/1599308122","imdbId":"","language":"en","overview":"After failing to get into the police academy, Chris Potamitis settles for a security guard job with an armoured truck company. After he makes the mistake of mentioning the company's lax security to his best friend, He's unwittingly drawn into an elaborate scheme to rob the abundant amounts of cash being stored on their premises—resulting in the largest cash heist in U.S.history.","moviesInCollection":[],"ratingKey":817,"key":"/library/metadata/817","collectionTitle":"","collectionId":-1,"tmdbId":169209},{"name":"Night of the Demons 2","year":1994,"posterUrl":"/library/metadata/48815/thumb/1601966673","imdbId":"","language":"en","overview":"Angela, the universe's most unpleasant party crasher, returns! Angela's sister, Mouse, is taken by her bullying Catholic school classmates to a party at Angela's favorite haunt, and before long, everybody's being turned into demons and only a butt-kickin' nun, who wields her ruler like a mighty sword of steel, can save the day.","moviesInCollection":[],"ratingKey":48815,"key":"/library/metadata/48815","collectionTitle":"","collectionId":-1,"tmdbId":24925},{"name":"Ghost in the Shell 2 Innocence","year":2004,"posterUrl":"/library/metadata/988/thumb/1599308189","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":988,"key":"/library/metadata/988","collectionTitle":"","collectionId":-1,"tmdbId":12140},{"name":"The Glass Castle","year":2017,"posterUrl":"/library/metadata/2495/thumb/1599308797","imdbId":"","language":"en","overview":"A young girl is raised in a dysfunctional family constantly on the run from the FBI. Living in poverty, she comes of age guided by her drunkard, ingenious father who distracts her with magical stories to keep her mind off the family's dire state, and her selfish, nonconformist mother who has no intention of raising a family, along with her younger brother and sister, and her other older sister. Together, they fend for each other as they mature in an unorthodox journey that is their family life.","moviesInCollection":[],"ratingKey":2495,"key":"/library/metadata/2495","collectionTitle":"","collectionId":-1,"tmdbId":336000},{"name":"Underworld Blood Wars","year":2017,"posterUrl":"/library/metadata/3047/thumb/1599309013","imdbId":"","language":"en","overview":"Vampire death dealer Selene fends off brutal attacks from both the Lycan clan and the Vampire faction that betrayed her. With her only allies, David and his father Thomas, she must stop the eternal war between Lycans and Vampires, even if it means she has to make the ultimate sacrifice.","moviesInCollection":[],"ratingKey":3047,"key":"/library/metadata/3047","collectionTitle":"","collectionId":-1,"tmdbId":346672},{"name":"Alpha Dog","year":2006,"posterUrl":"/library/metadata/173/thumb/1599307889","imdbId":"","language":"en","overview":"Johnny Truelove likes to see himself as tough. He's the son of an underworld figure and a drug dealer. Johnny also likes to get tough when things don't go his way. When Jake Mazursky fails to pay up for Johnny, things get worse for the Mazursky family, as Johnny and his 'gang' kidnap Jake's 15 year old brother and holds him hostage. Problem now is what to do with 'stolen boy?'","moviesInCollection":[],"ratingKey":173,"key":"/library/metadata/173","collectionTitle":"","collectionId":-1,"tmdbId":7457},{"name":"Amadeus","year":1984,"posterUrl":"/library/metadata/174/thumb/1599307890","imdbId":"","language":"en","overview":"The incredible story of genius musician Wolfgang Amadeus Mozart, told in flashback by his peer and secret rival, Antonio Salieri—now confined to an insane asylum.","moviesInCollection":[],"ratingKey":174,"key":"/library/metadata/174","collectionTitle":"","collectionId":-1,"tmdbId":279},{"name":"The Aristocats","year":1970,"posterUrl":"/library/metadata/2297/thumb/1599308723","imdbId":"","language":"en","overview":"When Madame Adelaide Bonfamille leaves her fortune to Duchess and her children—Bonfamille’s beloved family of cats—the butler plots to steal the money and kidnaps the legatees, leaving them out on a country road. All seems lost until the wily Thomas O’Malley Cat and his jazz-playing alley cats come to the aristocats’ rescue.","moviesInCollection":[],"ratingKey":2297,"key":"/library/metadata/2297","collectionTitle":"","collectionId":-1,"tmdbId":10112},{"name":"Planet Hulk","year":2010,"posterUrl":"/library/metadata/1753/thumb/1599308499","imdbId":"","language":"en","overview":"When the Hulk becomes too dangerous for the Earth, the Illuminati trick Hulk into a shuttle and launch him into space to a planet where the Hulk can live in peace. Unfortunately, the Hulk's struggle to escape makes a malfunction in the shuttle causing Hulk to land on the planet Sakaar where he is sold into slavery and trained as a gladiator.","moviesInCollection":[],"ratingKey":1753,"key":"/library/metadata/1753","collectionTitle":"","collectionId":-1,"tmdbId":30675},{"name":"Perfect Android Rising","year":2013,"posterUrl":"/library/metadata/1723/thumb/1599308488","imdbId":"","language":"en","overview":"The perfect killing machine is reprogrammed to think and feel.","moviesInCollection":[],"ratingKey":1723,"key":"/library/metadata/1723","collectionTitle":"","collectionId":-1,"tmdbId":282659},{"name":"The Abyss","year":1989,"posterUrl":"/library/metadata/2277/thumb/1599308717","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2277,"key":"/library/metadata/2277","collectionTitle":"","collectionId":-1,"tmdbId":2756},{"name":"The Girl in Black Stockings","year":1957,"posterUrl":"/library/metadata/2489/thumb/1599308795","imdbId":"","language":"en","overview":"Residents at a posh Utah hotel become suspects when a girl is found murdered during a pool party. Local sheriff Jess Holmes takes charge of the investigation and must discover who among the terrified guests and staff -- including bodacious vixen Harriet Ames, the hotel's bitter, crippled proprietor, visiting lawyer David Hewson and his secretary, Beth -- is the culprit, even as murders continue to take place.","moviesInCollection":[],"ratingKey":2489,"key":"/library/metadata/2489","collectionTitle":"","collectionId":-1,"tmdbId":62033},{"name":"Tremors 5 Bloodlines","year":2015,"posterUrl":"/library/metadata/2997/thumb/1599308996","imdbId":"","language":"en","overview":"The giant, man-eating Graboids are back and even deadlier than before, terrorizing the inhabitants of a South African wildlife reserve as they attack from below-and above.","moviesInCollection":[],"ratingKey":2997,"key":"/library/metadata/2997","collectionTitle":"","collectionId":-1,"tmdbId":339530},{"name":"Pirates of the Caribbean Dead Men Tell No Tales","year":2017,"posterUrl":"/library/metadata/41822/thumb/1599309131","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41822,"key":"/library/metadata/41822","collectionTitle":"","collectionId":-1,"tmdbId":166426},{"name":"Lean on Pete","year":2017,"posterUrl":"/library/metadata/1349/thumb/1599308324","imdbId":"","language":"en","overview":"Charley Thompson, a teenager living with his single father, gets a summer job working for horse trainer Del Montgomery. Bonding with an aging racehorse named Lean on Pete, Charley is horrified to learn he is bound for slaughter, and so he steals the horse, and the duo embark on an odyssey across the new American frontier.","moviesInCollection":[],"ratingKey":1349,"key":"/library/metadata/1349","collectionTitle":"","collectionId":-1,"tmdbId":407890},{"name":"Head in the Clouds","year":2004,"posterUrl":"/library/metadata/1078/thumb/1599308224","imdbId":"","language":"en","overview":"A romantic drama set in 1930's England, Paris, and Spain. Gilda Bessé shares her Paris apartment with an Irish schoolteacher, Guy Malyon, and Mia, a refugee from Spain. As the world drifts toward war, Gilda defiantly pursues her hedonistic lifestyle and her burgeoning career as a photographer. But Guy and Mia feel impelled to join the fight against fascism, and the three friends are separated.","moviesInCollection":[],"ratingKey":1078,"key":"/library/metadata/1078","collectionTitle":"","collectionId":-1,"tmdbId":18804},{"name":"The Stanford Prison Experiment","year":2015,"posterUrl":"/library/metadata/2836/thumb/1599308940","imdbId":"","language":"en","overview":"This film is based on the actual events that took place in 1971 when Stanford professor Dr. Philip Zimbardo created what became one of the most shocking and famous social experiments of all time.","moviesInCollection":[],"ratingKey":2836,"key":"/library/metadata/2836","collectionTitle":"","collectionId":-1,"tmdbId":308032},{"name":"Home Alone 3","year":1997,"posterUrl":"/library/metadata/1121/thumb/1599308240","imdbId":"","language":"en","overview":"9-year-old Alex Pruitt is home alone with the chicken pox. Turns out, due to a mix-up among nefarious spies, Alex was given a toy car concealing a top-secret microchip. Now Alex must fend off the spies as they try break into his house to get it back.","moviesInCollection":[],"ratingKey":1121,"key":"/library/metadata/1121","collectionTitle":"","collectionId":-1,"tmdbId":9714},{"name":"Stalingrad","year":2014,"posterUrl":"/library/metadata/2126/thumb/1599308660","imdbId":"","language":"en","overview":"Drama set in 1942, during one of the most important battles of World War II, which stopped the progress of Nazi forces and turned the tide of war in favor of the Allies. The Soviet army mounts a counter-attack on the Nazi forces that occupy half of Stalingrad on the other side of the Volga, but the operation to cross the river is unsuccessful. A few soldiers who managed to get to the other side take refuge in a house on the bank of Volga. Here they find a girl who didn’t escape when the Germans came. While the whole might of the German army descends onto them, the heroes of Stalingrad experience love, loss, joy and the sense of ultimate freedom that can only be felt by those about to die. They defend the house at all costs while the Red Army prepares for another attack.","moviesInCollection":[],"ratingKey":2126,"key":"/library/metadata/2126","collectionTitle":"","collectionId":-1,"tmdbId":203793},{"name":"The Witch","year":2015,"posterUrl":"/library/metadata/2898/thumb/1599308962","imdbId":"","language":"en","overview":"In 1630s New England, William and Katherine lead a devout Christian life with five children, homesteading on the edge of an impassable wilderness, exiled from their settlement when William defies the local church. When their newborn son vanishes and crops mysteriously fail, the family turns on one another.","moviesInCollection":[],"ratingKey":2898,"key":"/library/metadata/2898","collectionTitle":"","collectionId":-1,"tmdbId":310131},{"name":"Down by Law","year":1986,"posterUrl":"/library/metadata/742/thumb/1599308097","imdbId":"","language":"en","overview":"A disc jockey, a pimp and an Italian tourist escape from jail in New Orleans.","moviesInCollection":[],"ratingKey":742,"key":"/library/metadata/742","collectionTitle":"","collectionId":-1,"tmdbId":1554},{"name":"Horrible Bosses 2","year":2014,"posterUrl":"/library/metadata/1125/thumb/1599308242","imdbId":"","language":"en","overview":"Dale, Kurt and Nick decide to start their own business but things don't go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.","moviesInCollection":[],"ratingKey":1125,"key":"/library/metadata/1125","collectionTitle":"","collectionId":-1,"tmdbId":227159},{"name":"Justice League War","year":2014,"posterUrl":"/library/metadata/1289/thumb/1599308302","imdbId":"","language":"en","overview":"The world is under attack by an alien armada led by the powerful Apokoliptian, Darkseid. A group of superheroes consisting of Superman, Batman, Wonder Woman, The Flash, Green Lantern, Cyborg, and Shazam must set aside their differences and gather together to defend Earth.","moviesInCollection":[],"ratingKey":1289,"key":"/library/metadata/1289","collectionTitle":"","collectionId":-1,"tmdbId":217993},{"name":"The Day After","year":1983,"posterUrl":"/library/metadata/2396/thumb/1599308757","imdbId":"","language":"en","overview":"In the mid-1980s, the U.S. is poised on the brink of nuclear war. This shadow looms over the residents of a small town in Kansas as they continue their daily lives. Dr. Russell Oakes maintains his busy schedule at the hospital, Denise Dahlberg prepares for her upcoming wedding, and Stephen Klein is deep in his graduate studies. When the unthinkable happens and the bombs come down, the town's residents are thrust into the horrors of nuclear winter.","moviesInCollection":[],"ratingKey":2396,"key":"/library/metadata/2396","collectionTitle":"","collectionId":-1,"tmdbId":7012},{"name":"Puzzle","year":2014,"posterUrl":"/library/metadata/1827/thumb/1599308530","imdbId":"","language":"en","overview":"High school student Azusa jumps off from the rooftop of a school building, but she survives. One month later, the school is taken over by group of people wearing bizarre masks. A pregnant teacher is imprisoned, while the head director of the school and male students disappear. Azusa then finds pieces of a puzzle in an envelope given to her by classmate Shigeo (Shuhei Nomura). The puzzle pieces holds the key to solve the case. Azusa chases after Shigeo and she sees something which is unimaginable.","moviesInCollection":[],"ratingKey":1827,"key":"/library/metadata/1827","collectionTitle":"","collectionId":-1,"tmdbId":278545},{"name":"One Cut of the Dead","year":2017,"posterUrl":"/library/metadata/1654/thumb/1599308458","imdbId":"","language":"en","overview":"Things go badly for a hack director and film crew shooting a low budget zombie movie in an abandoned Second World War Japanese facility, when they are attacked by real zombies.","moviesInCollection":[],"ratingKey":1654,"key":"/library/metadata/1654","collectionTitle":"","collectionId":-1,"tmdbId":513434},{"name":"Allegiant","year":2016,"posterUrl":"/library/metadata/165/thumb/1599307887","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":165,"key":"/library/metadata/165","collectionTitle":"","collectionId":-1,"tmdbId":262504},{"name":"Turbo A Power Rangers Movie","year":1997,"posterUrl":"/library/metadata/3020/thumb/1599309004","imdbId":"","language":"en","overview":"The legendary Power Rangers must stop the evil space pirate Divatox from releasing the powerful Maligore from his volcanic imprisonment on the island of Muranthias, where only the kindly wizard Lerigot has the key to release him. The hope of victory lies in the Ranger's incredible new Turbo powers and powerful Turbo Zords.","moviesInCollection":[],"ratingKey":3020,"key":"/library/metadata/3020","collectionTitle":"","collectionId":-1,"tmdbId":6499},{"name":"Batman Mystery of the Batwoman","year":2003,"posterUrl":"/library/metadata/296/thumb/1599307935","imdbId":"","language":"en","overview":"A new vigilante, Batwoman, is wreaking havoc in Gotham City. The dynamic duo must discover her true identity.","moviesInCollection":[],"ratingKey":296,"key":"/library/metadata/296","collectionTitle":"","collectionId":-1,"tmdbId":21683},{"name":"The Dirty Dozen The Fatal Mission","year":1988,"posterUrl":"/library/metadata/2426/thumb/1599308769","imdbId":"","language":"en","overview":"A renegade team of World War II soldiers. This time, one of the 12 is a woman and, with a Nazi spy within their midst, they're up against German wartime geniuses out to establish a Fourth Reich.","moviesInCollection":[],"ratingKey":2426,"key":"/library/metadata/2426","collectionTitle":"","collectionId":-1,"tmdbId":36573},{"name":"Mary, Mary, Bloody Mary","year":1975,"posterUrl":"/library/metadata/1464/thumb/1599308372","imdbId":"","language":"en","overview":"Mexican horror film about an American painter named Mary (Cristina Ferrare) who is living in Mexico where she sells her works and also kills people for their blood. It turns out Mary is a vampire but not the traditional one with fangs. Since she has no fangs she must stab or slash the throats of her victims but soon she has a new man (David Young) in her life as well as a mysterious man (John Carradine) in black who appears to be doing the same type of murders.","moviesInCollection":[],"ratingKey":1464,"key":"/library/metadata/1464","collectionTitle":"","collectionId":-1,"tmdbId":115131},{"name":"The Last Boy Scout","year":1991,"posterUrl":"/library/metadata/2614/thumb/1599308841","imdbId":"","language":"en","overview":"When the girl that detective Joe Hallenback is protecting gets murdered, the boyfriend of the murdered girl attempts to investigate and solve the case. What they discover is that there is deep seated corruption going on between a crooked politician and the owner of a pro football team.","moviesInCollection":[],"ratingKey":2614,"key":"/library/metadata/2614","collectionTitle":"","collectionId":-1,"tmdbId":9319},{"name":"Locke","year":2014,"posterUrl":"/library/metadata/1405/thumb/1599308343","imdbId":"","language":"en","overview":"Ivan Locke has worked hard to craft a good life for himself. Tonight, that life will collapse around him. On the eve of the biggest challenge of his career, Ivan receives a phone call that sets in motion a series of events that will unravel his family, job, and soul.","moviesInCollection":[],"ratingKey":1405,"key":"/library/metadata/1405","collectionTitle":"","collectionId":-1,"tmdbId":210479},{"name":"Predator 2","year":1990,"posterUrl":"/library/metadata/1799/thumb/1599308518","imdbId":"","language":"en","overview":"Ten years after a band of mercenaries first battled a vicious alien, the invisible creature from another world has returned to Earth—and this time, it’s drawn to the gang-ruled and ravaged city of Los Angeles. When it starts murdering drug dealers, detective-lieutenant Mike Harrigan and his police force set out to capture the creature, ignoring warnings from a mysterious government agent to stay away.","moviesInCollection":[],"ratingKey":1799,"key":"/library/metadata/1799","collectionTitle":"","collectionId":-1,"tmdbId":169},{"name":"How to Train Your Dragon","year":2010,"posterUrl":"/library/metadata/1143/thumb/1599308248","imdbId":"","language":"en","overview":"As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it, and instead befriends the beast – which he names Toothless – much to the chagrin of his warrior father","moviesInCollection":[],"ratingKey":1143,"key":"/library/metadata/1143","collectionTitle":"","collectionId":-1,"tmdbId":10191},{"name":"Fast & Furious Presents Hobbs & Shaw","year":2019,"posterUrl":"/library/metadata/871/thumb/1599308142","imdbId":"","language":"en","overview":"Ever since US Diplomatic Security Service Agent Hobbs and lawless outcast Shaw first faced off, they just have swapped smacks and bad words. But when cyber-genetically enhanced anarchist Brixton's ruthless actions threaten the future of humanity, both join forces to defeat him. (A spin-off of “The Fate of the Furious,” focusing on Johnson's Luke Hobbs and Statham's Deckard Shaw.)","moviesInCollection":[],"ratingKey":871,"key":"/library/metadata/871","collectionTitle":"","collectionId":-1,"tmdbId":384018},{"name":"The Fifth Cord","year":1971,"posterUrl":"/library/metadata/2460/thumb/1599308783","imdbId":"","language":"en","overview":"Luigi Bazzoni (Le Orme) directed this outstanding giallo thriller starring Franco Nero as a hard-drinking newspaperman who gets involved in a string of brutal murders.","moviesInCollection":[],"ratingKey":2460,"key":"/library/metadata/2460","collectionTitle":"","collectionId":-1,"tmdbId":42676},{"name":"Triple Frontier","year":2019,"posterUrl":"/library/metadata/3001/thumb/1599308997","imdbId":"","language":"en","overview":"Struggling to make ends meet, former special ops soldiers reunite for a high-stakes heist: stealing $75 million from a South American drug lord.","moviesInCollection":[],"ratingKey":3001,"key":"/library/metadata/3001","collectionTitle":"","collectionId":-1,"tmdbId":399361},{"name":"Machete Kills","year":2013,"posterUrl":"/library/metadata/1430/thumb/1599308355","imdbId":"","language":"en","overview":"Ex-Federale agent Machete is recruited by the President of the United States for a mission which would be impossible for any mortal man – he must take down a madman revolutionary and an eccentric billionaire arms dealer who has hatched a plan to spread war and anarchy across the planet.","moviesInCollection":[],"ratingKey":1430,"key":"/library/metadata/1430","collectionTitle":"","collectionId":-1,"tmdbId":106747},{"name":"Witness","year":1985,"posterUrl":"/library/metadata/3158/thumb/1599309051","imdbId":"","language":"en","overview":"A sheltered Amish child is the sole witness of a brutal murder in a restroom at a Philadelphia train station, and he must be protected. The assignment falls to a taciturn detective who goes undercover in a Pennsylvania Dutch community. On the farm, he slowly assimilates despite his urban grit and forges a romantic bond with the child's beautiful mother.","moviesInCollection":[],"ratingKey":3158,"key":"/library/metadata/3158","collectionTitle":"","collectionId":-1,"tmdbId":9281},{"name":"The Incredibles","year":2005,"posterUrl":"/library/metadata/2582/thumb/1599308829","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2582,"key":"/library/metadata/2582","collectionTitle":"","collectionId":-1,"tmdbId":9806},{"name":"You Were Never Really Here","year":2018,"posterUrl":"/library/metadata/3190/thumb/1599309061","imdbId":"","language":"en","overview":"A traumatised veteran, unafraid of violence, tracks down missing girls for a living. When a job spins out of control, Joe's nightmares overtake him as a conspiracy is uncovered leading to what may be his death trip or his awakening.","moviesInCollection":[],"ratingKey":3190,"key":"/library/metadata/3190","collectionTitle":"","collectionId":-1,"tmdbId":398181},{"name":"Fargo","year":1996,"posterUrl":"/library/metadata/868/thumb/1599308141","imdbId":"","language":"en","overview":"Jerry, a small-town Minnesota car salesman is bursting at the seams with debt... but he's got a plan. He's going to hire two thugs to kidnap his wife in a scheme to collect a hefty ransom from his wealthy father-in-law. It's going to be a snap and nobody's going to get hurt... until people start dying. Enter Police Chief Marge, a coffee-drinking, parka-wearing - and extremely pregnant - investigator who'll stop at nothing to get her man. And if you think her small-time investigative skills will give the crooks a run for their ransom... you betcha!","moviesInCollection":[],"ratingKey":868,"key":"/library/metadata/868","collectionTitle":"","collectionId":-1,"tmdbId":275},{"name":"Don't Go","year":2018,"posterUrl":"/library/metadata/732/thumb/1599308094","imdbId":"","language":"en","overview":"Devastated by his daughter's death in a terrible accident, Ben becomes convinced that he can bring her back through a recurring dream. But is it just a dream? Or is Ben losing his mind?","moviesInCollection":[],"ratingKey":732,"key":"/library/metadata/732","collectionTitle":"","collectionId":-1,"tmdbId":542202},{"name":"Psycho II","year":1983,"posterUrl":"/library/metadata/1817/thumb/1599308526","imdbId":"","language":"en","overview":"After years of treatment at a mental institution for the criminally insane, serial killer Norman Bates is finally released. Deciding to move back into his long-dead mother's infamous old house, he soon finds himself tormented by 'her' demands and begins to question his own sanity.","moviesInCollection":[],"ratingKey":1817,"key":"/library/metadata/1817","collectionTitle":"","collectionId":-1,"tmdbId":10576},{"name":"Back to the Future Part III","year":1990,"posterUrl":"/library/metadata/259/thumb/1599307922","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":259,"key":"/library/metadata/259","collectionTitle":"","collectionId":-1,"tmdbId":196},{"name":"Lady Bird","year":2017,"posterUrl":"/library/metadata/1337/thumb/1599308320","imdbId":"","language":"en","overview":"A California high school student plans to escape from her family and small town by going to college in New York, much to the disapproval of wildly loving, deeply opinionated and strong-willed mother.","moviesInCollection":[],"ratingKey":1337,"key":"/library/metadata/1337","collectionTitle":"","collectionId":-1,"tmdbId":391713},{"name":"Instant Death","year":2017,"posterUrl":"/library/metadata/1198/thumb/1599308269","imdbId":"","language":"en","overview":"A vicious gang war for drug dominance draws in a disturbed Special Forces veteran John Bradley. Trying to adjust to normal life and haunted by inner demons of a violent past, the underworld's retribution on his last connection to humanity, a daughter and grandchild leads to a descent of fury and violence that not even the brutality of gangland is prepared for.","moviesInCollection":[],"ratingKey":1198,"key":"/library/metadata/1198","collectionTitle":"","collectionId":-1,"tmdbId":375343},{"name":"The Man Who Killed Don Quixote","year":2019,"posterUrl":"/library/metadata/2666/thumb/1599308863","imdbId":"","language":"en","overview":"Toby, a cynical advertising director finds himself trapped in the outrageous delusions of an old Spanish shoe-maker who believes himself to be Don Quixote. In the course of their comic and increasingly surreal adventures, Toby is forced to confront the tragic repercussions of a film he made in his idealistic youth.","moviesInCollection":[],"ratingKey":2666,"key":"/library/metadata/2666","collectionTitle":"","collectionId":-1,"tmdbId":297725},{"name":"Crouching Tiger, Hidden Dragon","year":2000,"posterUrl":"/library/metadata/606/thumb/1599308049","imdbId":"","language":"en","overview":"Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.","moviesInCollection":[],"ratingKey":606,"key":"/library/metadata/606","collectionTitle":"","collectionId":-1,"tmdbId":146},{"name":"Neighbors 2 Sorority Rising","year":2016,"posterUrl":"/library/metadata/1599/thumb/1599308432","imdbId":"","language":"en","overview":"A sorority moves in next door to the home of Mac and Kelly Radner who have a young child. The Radner's enlist their former nemeses from the fraternity to help battle the raucous sisters.","moviesInCollection":[],"ratingKey":1599,"key":"/library/metadata/1599","collectionTitle":"","collectionId":-1,"tmdbId":325133},{"name":"Ghostwatch","year":1992,"posterUrl":"/library/metadata/48794/thumb/1601966894","imdbId":"","language":"en","overview":"For Halloween 1992, the BBC decides to broadcast an investigation into the supernatural, hosted by TV chat-show legend Michael Parkinson. Parky (assisted by Mike Smith, Sarah Greene & Craig Charles) and a camera crew attempt to discover the truth behind the most haunted house in Britain. This ground-breaking live television experiment does not go as planned, however.","moviesInCollection":[],"ratingKey":48794,"key":"/library/metadata/48794","collectionTitle":"","collectionId":-1,"tmdbId":46633},{"name":"Avengers Age of Ultron","year":2015,"posterUrl":"/library/metadata/245/thumb/1599307918","imdbId":"","language":"en","overview":"When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s 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.","moviesInCollection":[],"ratingKey":245,"key":"/library/metadata/245","collectionTitle":"","collectionId":-1,"tmdbId":99861},{"name":"3 from Hell","year":2019,"posterUrl":"/library/metadata/30/thumb/1599307837","imdbId":"","language":"en","overview":"After barely surviving a furious shootout with the police, Baby Firefly, Otis Driftwood and Captain Spaulding are behind bars. But pure evil cannot be contained. Teaming up with Otis’ half-brother Winslow, the demented Firefly clan escape to unleash a whole new wave of murder, madness and mayhem.","moviesInCollection":[],"ratingKey":30,"key":"/library/metadata/30","collectionTitle":"","collectionId":-1,"tmdbId":489064},{"name":"Domino","year":2019,"posterUrl":"/library/metadata/728/thumb/1599308092","imdbId":"","language":"en","overview":"Seeking justice for his partner’s murder by an ISIS member, a Copenhagen police officer finds himself caught in a cat and mouse game with a duplicitous CIA agent who is using the killer as a pawn to trap other ISIS members.","moviesInCollection":[],"ratingKey":728,"key":"/library/metadata/728","collectionTitle":"","collectionId":-1,"tmdbId":455957},{"name":"National Security","year":2003,"posterUrl":"/library/metadata/1592/thumb/1599308428","imdbId":"","language":"en","overview":"Two mismatched security guards are thrown together to bust a smuggling operation.","moviesInCollection":[],"ratingKey":1592,"key":"/library/metadata/1592","collectionTitle":"","collectionId":-1,"tmdbId":11078},{"name":"Brazilian Western","year":2013,"posterUrl":"/library/metadata/420/thumb/1599307980","imdbId":"","language":"en","overview":"An adaptation of the eponymous song by Renato Russo, a famous Brazilian singer and composer who in the style of Bob Dylan knew how to delight crowds by telling stories and singing with his lyrics. Focusing on the love story of outlaw João do Santo Cristo with Architecture major student Maria Lúcia, the movie takes place in Brasilia in the early 80s. In a clash of interest, drug dealers and the police conflict with one another,while the end of the military dictatorship in the Capital of Brazil, Brasilia takes place. The wanderings and tedium of a young rocker, who lived in a city still being built, are the backdrop for this story.","moviesInCollection":[],"ratingKey":420,"key":"/library/metadata/420","collectionTitle":"","collectionId":-1,"tmdbId":195423},{"name":"Sleeping Beauty","year":1959,"posterUrl":"/library/metadata/2055/thumb/1599308630","imdbId":"","language":"en","overview":"A beautiful princess born in a faraway kingdom is destined by a terrible curse to prick her finger on the spindle of a spinning wheel and fall into a deep sleep that can only be awakened by true love's first kiss. Determined to protect her, her parents ask three fairies to raise her in hiding. But the evil Maleficent is just as determined to seal the princess's fate.","moviesInCollection":[],"ratingKey":2055,"key":"/library/metadata/2055","collectionTitle":"","collectionId":-1,"tmdbId":10882},{"name":"12 Angry Men","year":1957,"posterUrl":"/library/metadata/8/thumb/1599307829","imdbId":"","language":"en","overview":"The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.","moviesInCollection":[],"ratingKey":8,"key":"/library/metadata/8","collectionTitle":"","collectionId":-1,"tmdbId":389},{"name":"The Girl King","year":2015,"posterUrl":"/library/metadata/2491/thumb/1599308796","imdbId":"","language":"en","overview":"A portrait of the brilliant, extravagant Kristina of Sweden, queen from age six, who fights the conservative forces that are against her ideas to modernize Sweden and who have no tolerance for her awakening sexuality.","moviesInCollection":[],"ratingKey":2491,"key":"/library/metadata/2491","collectionTitle":"","collectionId":-1,"tmdbId":329829},{"name":"Partysaurus Rex","year":2012,"posterUrl":"/library/metadata/47410/thumb/1599309182","imdbId":"","language":"en","overview":"When Rex finds himself left behind in the bathroom, he puts his limbs to use by getting a bath going for a bunch of new toy friends.","moviesInCollection":[],"ratingKey":47410,"key":"/library/metadata/47410","collectionTitle":"","collectionId":-1,"tmdbId":130925},{"name":"Little Miss Sunshine","year":2006,"posterUrl":"/library/metadata/41099/thumb/1599309125","imdbId":"","language":"en","overview":"A family loaded with quirky, colorful characters piles into an old van and road trips to California for little Olive to compete in a beauty pageant.","moviesInCollection":[],"ratingKey":41099,"key":"/library/metadata/41099","collectionTitle":"","collectionId":-1,"tmdbId":773},{"name":"1898 Our Last Men in the Philippines","year":2017,"posterUrl":"/library/metadata/16/thumb/1599307832","imdbId":"","language":"en","overview":"The Philippines, 1898. Fifty Spanish soldiers arrive in the small village of Baler to rebuild an outpost. Although the war against the Filipinos and their American allies is almost lost, as is the Spanish Empire, the garrison will endure a cruel siege for eleven months. They will be the last to surrender.","moviesInCollection":[],"ratingKey":16,"key":"/library/metadata/16","collectionTitle":"","collectionId":-1,"tmdbId":403357},{"name":"Sausage Party","year":2016,"posterUrl":"/library/metadata/1960/thumb/1599308589","imdbId":"","language":"en","overview":"Frank leads a group of supermarket products on a quest to discover the truth about their existence and what really happens when they become chosen to leave the grocery store.","moviesInCollection":[],"ratingKey":1960,"key":"/library/metadata/1960","collectionTitle":"","collectionId":-1,"tmdbId":223702},{"name":"Demonic","year":2015,"posterUrl":"/library/metadata/690/thumb/1599308077","imdbId":"","language":"en","overview":"A police officer and a psychologist investigate the deaths of five people who were killed while trying to summon ghosts.","moviesInCollection":[],"ratingKey":690,"key":"/library/metadata/690","collectionTitle":"","collectionId":-1,"tmdbId":234212},{"name":"Ted 2","year":2015,"posterUrl":"/library/metadata/2251/thumb/1599308708","imdbId":"","language":"en","overview":"Newlywed couple Ted and Tami-Lynn want to have a baby, but in order to qualify to be a parent, Ted will have to prove he's a person in a court of law.","moviesInCollection":[],"ratingKey":2251,"key":"/library/metadata/2251","collectionTitle":"","collectionId":-1,"tmdbId":214756},{"name":"Death to Smoochy","year":2002,"posterUrl":"/library/metadata/673/thumb/1599308071","imdbId":"","language":"en","overview":"Tells the story of Rainbow Randolph, the corrupt, costumed star of a popular children's TV show, who is fired over a bribery scandal and replaced by squeaky-clean Smoochy, a puffy fuscia rhinoceros. As Smoochy catapults to fame - scoring hit ratings and the affections of a network executive - Randolph makes the unsuspecting rhino the target of his numerous outrageous attempts to exact revenge and reclaim his status as America's sweetheart.","moviesInCollection":[],"ratingKey":673,"key":"/library/metadata/673","collectionTitle":"","collectionId":-1,"tmdbId":9275},{"name":"Queen of Earth","year":2015,"posterUrl":"/library/metadata/1831/thumb/1599308531","imdbId":"","language":"en","overview":"Two women retreat to a lake house to get a break from the pressures of the outside world, only to realize how disconnected from each other they have become, allowing their suspicions to bleed into reality.","moviesInCollection":[],"ratingKey":1831,"key":"/library/metadata/1831","collectionTitle":"","collectionId":-1,"tmdbId":300542},{"name":"The Dead Zone","year":1983,"posterUrl":"/library/metadata/2401/thumb/1599308759","imdbId":"","language":"en","overview":"Johnny Smith is a schoolteacher with his whole life ahead of him but, after leaving his fiancee's home one night, is involved in a car crash which leaves him in a coma for 5 years. When he wakes, he discovers he has an ability to see into the past, present and future life of anyone with whom he comes into physical contact.","moviesInCollection":[],"ratingKey":2401,"key":"/library/metadata/2401","collectionTitle":"","collectionId":-1,"tmdbId":11336},{"name":"Ex Machina","year":2015,"posterUrl":"/library/metadata/846/thumb/1599308133","imdbId":"","language":"en","overview":"Caleb, a 26 year old 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.","moviesInCollection":[],"ratingKey":846,"key":"/library/metadata/846","collectionTitle":"","collectionId":-1,"tmdbId":264660},{"name":"Siberia","year":2018,"posterUrl":"/library/metadata/2034/thumb/1599308620","imdbId":"","language":"en","overview":"Lucas, a diamond trader who travels to Saint Petersburg to arrange a sale, discovers that his Russian business partner has left his hotel and gone to a small Siberian village, so Lucas also heads there to try find him.","moviesInCollection":[],"ratingKey":2034,"key":"/library/metadata/2034","collectionTitle":"","collectionId":-1,"tmdbId":438689},{"name":"Jack Reacher Never Go Back","year":2016,"posterUrl":"/library/metadata/1219/thumb/1599308277","imdbId":"","language":"en","overview":"Jack Reacher must uncover the truth behind a major government conspiracy in order to clear his name. On the run as a fugitive from the law, Reacher uncovers a potential secret from his past that could change his life forever.","moviesInCollection":[],"ratingKey":1219,"key":"/library/metadata/1219","collectionTitle":"","collectionId":-1,"tmdbId":343611},{"name":"Patrick","year":2018,"posterUrl":"/library/metadata/1709/thumb/1599308481","imdbId":"","language":"en","overview":"A woman's chaotic life becomes more complicated when she inherits her grandmother's dog.","moviesInCollection":[],"ratingKey":1709,"key":"/library/metadata/1709","collectionTitle":"","collectionId":-1,"tmdbId":478159},{"name":"The River Used to Be a Man","year":2012,"posterUrl":"/library/metadata/2783/thumb/1599308916","imdbId":"","language":"en","overview":"A drama centered on a white man lost in the Botswana marshlands.","moviesInCollection":[],"ratingKey":2783,"key":"/library/metadata/2783","collectionTitle":"","collectionId":-1,"tmdbId":129248},{"name":"Reno 911! Miami","year":2007,"posterUrl":"/library/metadata/1877/thumb/1599308552","imdbId":"","language":"en","overview":"A rag-tag team of Reno cops are called in to save the day after a terrorist attack disrupts a national police convention in Miami Beach during spring break. Based on the Comedy Central series.","moviesInCollection":[],"ratingKey":1877,"key":"/library/metadata/1877","collectionTitle":"","collectionId":-1,"tmdbId":10090},{"name":"Unsane","year":2018,"posterUrl":"/library/metadata/3058/thumb/1599309017","imdbId":"","language":"en","overview":"A woman is involuntarily committed to a mental institution where she is confronted by her greatest fear.","moviesInCollection":[],"ratingKey":3058,"key":"/library/metadata/3058","collectionTitle":"","collectionId":-1,"tmdbId":467660},{"name":"Rocketman","year":2019,"posterUrl":"/library/metadata/1926/thumb/1599308575","imdbId":"","language":"en","overview":"The story of Elton John's life, from his years as a prodigy at the Royal Academy of Music through his influential and enduring musical partnership with Bernie Taupin.","moviesInCollection":[],"ratingKey":1926,"key":"/library/metadata/1926","collectionTitle":"","collectionId":-1,"tmdbId":504608},{"name":"The Boss Baby","year":2017,"posterUrl":"/library/metadata/2327/thumb/1599308733","imdbId":"","language":"en","overview":"A story about how a new baby's arrival impacts a family, told from the point of view of a delightfully unreliable narrator, a wildly imaginative 7 year old named Tim.","moviesInCollection":[],"ratingKey":2327,"key":"/library/metadata/2327","collectionTitle":"","collectionId":-1,"tmdbId":295693},{"name":"Dragonheart Battle for the Heartfire","year":2017,"posterUrl":"/library/metadata/776/thumb/1599308108","imdbId":"","language":"en","overview":"When the King Gareth dies, his potential heirs, twin grandchildren who possess the dragon’s unique strengths, use their inherited powers against each other to vie for the throne. When Drago’s source of power – known as the Heartfire – is stolen, more than the throne is at stake; the siblings must end their rivalry with swords and sorcery or the kingdom may fall.","moviesInCollection":[],"ratingKey":776,"key":"/library/metadata/776","collectionTitle":"","collectionId":-1,"tmdbId":451644},{"name":"Outbreak","year":1995,"posterUrl":"/library/metadata/1675/thumb/1599308466","imdbId":"","language":"en","overview":"A deadly airborne virus finds its way into the USA and starts killing off people at an epidemic rate. Col Sam Daniels' job is to stop the virus spreading from a small town, which must be quarantined, and to prevent an over reaction by the White House.","moviesInCollection":[],"ratingKey":1675,"key":"/library/metadata/1675","collectionTitle":"","collectionId":-1,"tmdbId":6950},{"name":"Lady and the Tramp II Scamp's Adventure","year":2001,"posterUrl":"/library/metadata/1336/thumb/1599308320","imdbId":"","language":"en","overview":"Lady and Tramp's mischievous pup, Scamp, gets fed up with rules and restrictions imposed on him by life in a family, and longs for a wild and free lifestyle. He runs away from home and into the streets where he joins a pack of stray dogs known as the \"Junkyard Dogs.\" Buster, the pack's leader, takes an instant disliking to the \"house-dog\" and considers him a rival. Angel, a junkyard pup Scamp's age, longs for the safety and comfort of life in a family and the two become instant companions. Will Scamp choose the wild and free life of a stray or the unconditional love of his family?","moviesInCollection":[],"ratingKey":1336,"key":"/library/metadata/1336","collectionTitle":"","collectionId":-1,"tmdbId":18269},{"name":"The Last Starfighter","year":1984,"posterUrl":"/library/metadata/2625/thumb/1599308845","imdbId":"","language":"en","overview":"A video game expert Alex Rogan finds himself transported to another planet after conquering The Last Starfighter video game only to find out it was just a test. He was recruited to join the team of best Starfighters to defend their world from the attack.","moviesInCollection":[],"ratingKey":2625,"key":"/library/metadata/2625","collectionTitle":"","collectionId":-1,"tmdbId":11884},{"name":"Pirates of the Caribbean At World's End","year":2007,"posterUrl":"/library/metadata/41067/thumb/1599309121","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41067,"key":"/library/metadata/41067","collectionTitle":"","collectionId":-1,"tmdbId":285},{"name":"The Strangers Prey at Night","year":2018,"posterUrl":"/library/metadata/2842/thumb/1599308943","imdbId":"","language":"en","overview":"A family’s road trip takes a dangerous turn when they arrive at a secluded mobile home park to stay with some relatives and find it mysteriously deserted. Under the cover of darkness, three masked psychopaths pay them a visit to test the family’s every limit as they struggle to survive.","moviesInCollection":[],"ratingKey":2842,"key":"/library/metadata/2842","collectionTitle":"","collectionId":-1,"tmdbId":371608},{"name":"Hacksaw Ridge","year":2016,"posterUrl":"/library/metadata/1040/thumb/1599308209","imdbId":"","language":"en","overview":"WWII American Army Medic Desmond T. Doss, who served during the Battle of Okinawa, refuses to kill people and becomes the first Conscientious Objector in American history to receive the Congressional Medal of Honor.","moviesInCollection":[],"ratingKey":1040,"key":"/library/metadata/1040","collectionTitle":"","collectionId":-1,"tmdbId":324786},{"name":"Star Wars The Force Awakens","year":2016,"posterUrl":"/library/metadata/2149/thumb/1599308671","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2149,"key":"/library/metadata/2149","collectionTitle":"","collectionId":-1,"tmdbId":140607},{"name":"Space Battleship Yamato","year":2010,"posterUrl":"/library/metadata/2094/thumb/1599308647","imdbId":"","language":"en","overview":"In 2199, five years after the Gamilons began an invasion of Earth, the planet has been ravaged by the aliens' bombs. The remnants of humanity have fled underground to escape the irradiated surface. One day, former pilot Susumu Kodai discovers a capsule sent from the planet Iscandar that tells of a device that can remove the radiation from the Earth's surface. The Earth Defense Force rebuilds the battleship Yamato with a new type of propulsion system to make the 148,000 light year trip to Iscandar in hopes of saving the Earth. Within one year, the radiation will drive the rest of humanity to extinction.","moviesInCollection":[],"ratingKey":2094,"key":"/library/metadata/2094","collectionTitle":"","collectionId":-1,"tmdbId":61984},{"name":"Green Lantern Emerald Knights","year":2011,"posterUrl":"/library/metadata/1031/thumb/1599308205","imdbId":"","language":"en","overview":"As the home planet of the Green Lantern Corps faces a battle with an ancient enemy, Hal Jordan prepares new recruit Arisia for the coming conflict by relating stories of the first Green Lantern and several of Hal's comrades.","moviesInCollection":[],"ratingKey":1031,"key":"/library/metadata/1031","collectionTitle":"","collectionId":-1,"tmdbId":65291},{"name":"Mission Impossible III","year":2006,"posterUrl":"/library/metadata/1524/thumb/1599308400","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1524,"key":"/library/metadata/1524","collectionTitle":"","collectionId":-1,"tmdbId":956},{"name":"The Social Network","year":2010,"posterUrl":"/library/metadata/2822/thumb/1599308934","imdbId":"","language":"en","overview":"On a fall night in 2003, Harvard undergrad and computer programming genius Mark Zuckerberg sits down at his computer and heatedly begins working on a new idea. In a fury of blogging and programming, what begins in his dorm room as a small site among friends soon becomes a global social network and a revolution in communication. A mere six years and 500 million friends later, Mark Zuckerberg is the youngest billionaire in history... but for this entrepreneur, success leads to both personal and legal complications.","moviesInCollection":[],"ratingKey":2822,"key":"/library/metadata/2822","collectionTitle":"","collectionId":-1,"tmdbId":37799},{"name":"Clue","year":1985,"posterUrl":"/library/metadata/532/thumb/1599308022","imdbId":"","language":"en","overview":"Clue finds six colorful dinner guests gathered at the mansion of their host, Mr. Boddy -- who turns up dead after his secret is exposed: He was blackmailing all of them. With the killer among them, the guests and Boddy's chatty butler must suss out the culprit before the body count rises.","moviesInCollection":[],"ratingKey":532,"key":"/library/metadata/532","collectionTitle":"","collectionId":-1,"tmdbId":15196},{"name":"Fantastic Voyage","year":1966,"posterUrl":"/library/metadata/867/thumb/1599308141","imdbId":"","language":"en","overview":"The science of miniaturization has been unlocked, and the army has big plans. But when a scientist carrying the secret of the process is injured in a surprise attack, a life-threatening blood clot puts him into a coma. Now, a team of adventurers will have to use the technology to travel inside his body and destroy the clot.","moviesInCollection":[],"ratingKey":867,"key":"/library/metadata/867","collectionTitle":"","collectionId":-1,"tmdbId":2161},{"name":"The Gaelic King","year":2017,"posterUrl":"/library/metadata/2481/thumb/1599308792","imdbId":"","language":"en","overview":"Set in war-torn 800AD Scotland, The Gaelic King tells the story of warrior-king Alpin mac Eachdach. When his young brother is captured, Alpin must hunt the kidnappers though a dark forest that hides an ancient evil.","moviesInCollection":[],"ratingKey":2481,"key":"/library/metadata/2481","collectionTitle":"","collectionId":-1,"tmdbId":427395},{"name":"The Hunt","year":2013,"posterUrl":"/library/metadata/2567/thumb/1599308823","imdbId":"","language":"en","overview":"A teacher lives a lonely life, all the while struggling over his son’s custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.","moviesInCollection":[],"ratingKey":2567,"key":"/library/metadata/2567","collectionTitle":"","collectionId":-1,"tmdbId":103663},{"name":"Halloween","year":1978,"posterUrl":"/library/metadata/1043/thumb/1599308210","imdbId":"","language":"en","overview":"Fifteen years after murdering his sister on Halloween Night 1963, Michael Myers escapes from a mental hospital and returns to the small town of Haddonfield, Illinois to kill again.","moviesInCollection":[],"ratingKey":1043,"key":"/library/metadata/1043","collectionTitle":"","collectionId":-1,"tmdbId":948},{"name":"Paddington 2","year":2018,"posterUrl":"/library/metadata/1689/thumb/1599308472","imdbId":"","language":"en","overview":"Paddington, now happily settled with the Browns, picks up a series of odd jobs to buy the perfect present for his Aunt Lucy, but it is stolen.","moviesInCollection":[],"ratingKey":1689,"key":"/library/metadata/1689","collectionTitle":"","collectionId":-1,"tmdbId":346648},{"name":"Three Identical Strangers","year":2018,"posterUrl":"/library/metadata/2932/thumb/1599308974","imdbId":"","language":"en","overview":"New York, 1980. Three complete strangers accidentally discover that they're identical triplets, separated at birth. The 19-year-olds' joyous reunion catapults them to international fame, but also unlocks an extraordinary and disturbing secret that goes beyond their own lives – and could transform our understanding of human nature forever.","moviesInCollection":[],"ratingKey":2932,"key":"/library/metadata/2932","collectionTitle":"","collectionId":-1,"tmdbId":489988},{"name":"Bloodsport III","year":1997,"posterUrl":"/library/metadata/387/thumb/1599307968","imdbId":"","language":"en","overview":"Bloodsport III brings us back to the world of Alex Cardo. This time he must battle in a fight to end all fights - The Kumite, the most vicious warrior alive - Beast. He must not only battle for his own honor, but also avenge the death of Sun, his mentor, teacher, and spiritual \"father\", when Sun is spitefully killed by crime boss Duvalier. In order to defeat Beast, destroy Duvalier, and avenge Sun's death, Alex turns to Leung to whom he was indebted in Bloodsport II. Leung directs him to the great shaman, Makato \"the Judge\", to whom Alex must turn for guidance. The judge teaches him to fully channel the energy in his mind and body in order to rout the Beast in the Kumite...","moviesInCollection":[],"ratingKey":387,"key":"/library/metadata/387","collectionTitle":"","collectionId":-1,"tmdbId":36692},{"name":"The Arrival","year":1996,"posterUrl":"/library/metadata/2298/thumb/1599308724","imdbId":"","language":"en","overview":"Zane Ziminski is an astrophysicist who receives a message that seems to have extraterrestrial origins. Eerily soon after his discovery, Zane is fired. He then embarks on a search to determine the origins of the transmission that leads him into a Hitchcockian labyrinth of paranoia and intrigue.","moviesInCollection":[],"ratingKey":2298,"key":"/library/metadata/2298","collectionTitle":"","collectionId":-1,"tmdbId":10547},{"name":"Kiki's Delivery Service","year":1998,"posterUrl":"/library/metadata/46396/thumb/1599309157","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46396,"key":"/library/metadata/46396","collectionTitle":"","collectionId":-1,"tmdbId":16859},{"name":"Splash","year":1984,"posterUrl":"/library/metadata/2118/thumb/1599308657","imdbId":"","language":"en","overview":"A successful businessman falls in love with the girl of his dreams. There's one big complication though; he's fallen hook, line and sinker for a mermaid.","moviesInCollection":[],"ratingKey":2118,"key":"/library/metadata/2118","collectionTitle":"","collectionId":-1,"tmdbId":2619},{"name":"Twilight","year":2008,"posterUrl":"/library/metadata/3025/thumb/1599309005","imdbId":"","language":"en","overview":"When Bella Swan moves to a small town in the Pacific Northwest to live with her father, she meets the reclusive Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't help but fall in love with him, a fatal move that endangers her own life when a coven of bloodsuckers try to challenge the Cullen clan.","moviesInCollection":[],"ratingKey":3025,"key":"/library/metadata/3025","collectionTitle":"","collectionId":-1,"tmdbId":8966},{"name":"Stuber","year":2019,"posterUrl":"/library/metadata/2184/thumb/1599308684","imdbId":"","language":"en","overview":"After crashing his car, a cop who's recovering from eye surgery recruits an Uber driver to help him catch a heroin dealer. The mismatched pair soon find themselves in for a wild day of stakeouts and shootouts as they encounter the city's seedy side.","moviesInCollection":[],"ratingKey":2184,"key":"/library/metadata/2184","collectionTitle":"","collectionId":-1,"tmdbId":513045},{"name":"Crank","year":2006,"posterUrl":"/library/metadata/585/thumb/1599308042","imdbId":"","language":"en","overview":"Professional assassin Chev Chelios learns his rival has injected him with a poison that will kill him if his heart rate drops.","moviesInCollection":[],"ratingKey":585,"key":"/library/metadata/585","collectionTitle":"","collectionId":-1,"tmdbId":1948},{"name":"The Man with the Iron Fists","year":2012,"posterUrl":"/library/metadata/2669/thumb/1599308865","imdbId":"","language":"en","overview":"In feudal China, a blacksmith who makes weapons for a small village is put in the position where he must defend himself and his fellow villagers.","moviesInCollection":[],"ratingKey":2669,"key":"/library/metadata/2669","collectionTitle":"","collectionId":-1,"tmdbId":97430},{"name":"Malibu Rescue","year":2019,"posterUrl":"/library/metadata/47267/thumb/1599309175","imdbId":"","language":"en","overview":"When a long list of shenanigans lands Tyler in hot water, he’s forced to suit up and spend his summer training for an elite junior lifeguard program.","moviesInCollection":[],"ratingKey":47267,"key":"/library/metadata/47267","collectionTitle":"","collectionId":-1,"tmdbId":576040},{"name":"The Next Karate Kid","year":1994,"posterUrl":"/library/metadata/2714/thumb/1599308884","imdbId":"","language":"en","overview":"During a commemoration for Japanese soldiers fighting in the US Army during World War II, Mr. Miyagi meets the widow of his commanding officer. He gets to know her granddaughter Julie, an angry teenager who is still feeling the pain of losing both her parents in an accident and is having problems with her grandmother and her fellow pupils. Mr. Miyagi decides to teach her karate to get her through her pain and issues and back on the right path.","moviesInCollection":[],"ratingKey":2714,"key":"/library/metadata/2714","collectionTitle":"","collectionId":-1,"tmdbId":11231},{"name":"Flight of the Navigator","year":1986,"posterUrl":"/library/metadata/920/thumb/1599308161","imdbId":"","language":"en","overview":"12-year-old David is accidentally knocked out in the forest near his home, but when he awakens eight years have passed. His family is overjoyed to have him back, but is just as perplexed as he is that he hasn't aged. When a NASA scientist discovers a UFO nearby, David gets the chance to unravel the mystery and recover the life he lost.","moviesInCollection":[],"ratingKey":920,"key":"/library/metadata/920","collectionTitle":"","collectionId":-1,"tmdbId":10122},{"name":"The Hunt","year":2020,"posterUrl":"/library/metadata/42567/thumb/1599309141","imdbId":"","language":"en","overview":"Twelve strangers wake up in a clearing. They don't know where they are—or how they got there. In the shadow of a dark internet conspiracy theory, ruthless elitists gather at a remote location to hunt humans for sport. But their master plan is about to be derailed when one of the hunted turns the tables on her pursuers.","moviesInCollection":[],"ratingKey":42567,"key":"/library/metadata/42567","collectionTitle":"","collectionId":-1,"tmdbId":514847},{"name":"Child's Play","year":1988,"posterUrl":"/library/metadata/501/thumb/1599308011","imdbId":"","language":"en","overview":"A single mother gives her son a beloved doll for his birthday, only to discover that it is possessed by the soul of a serial killer.","moviesInCollection":[],"ratingKey":501,"key":"/library/metadata/501","collectionTitle":"","collectionId":-1,"tmdbId":10585},{"name":"Dawn of the Dead","year":1979,"posterUrl":"/library/metadata/644/thumb/1599308061","imdbId":"","language":"en","overview":"During an ever-growing epidemic of zombies that have risen from the dead, two Philadelphia SWAT team members, a traffic reporter, and his television-executive girlfriend seek refuge in a secluded shopping mall.","moviesInCollection":[],"ratingKey":644,"key":"/library/metadata/644","collectionTitle":"","collectionId":-1,"tmdbId":923},{"name":"Time Trap","year":2017,"posterUrl":"/library/metadata/47349/thumb/1599309179","imdbId":"","language":"en","overview":"A group of students become trapped inside a mysterious cave where they discover time passes differently underground than on the surface.","moviesInCollection":[],"ratingKey":47349,"key":"/library/metadata/47349","collectionTitle":"","collectionId":-1,"tmdbId":455839},{"name":"American Pie","year":1999,"posterUrl":"/library/metadata/182/thumb/1599307893","imdbId":"","language":"en","overview":"At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to all \"score.\" by their senior prom.","moviesInCollection":[],"ratingKey":182,"key":"/library/metadata/182","collectionTitle":"","collectionId":-1,"tmdbId":2105},{"name":"Suburbia","year":1983,"posterUrl":"/library/metadata/2188/thumb/1599308686","imdbId":"","language":"en","overview":"When household tensions and a sense of worthlessness overcome Evan, he finds escape when he clings with the orphans of a throw-away society. The runaways hold on to each other like a family until a tragedy tears them apart.","moviesInCollection":[],"ratingKey":2188,"key":"/library/metadata/2188","collectionTitle":"","collectionId":-1,"tmdbId":28054},{"name":"Book of Shadows Blair Witch 2","year":2000,"posterUrl":"/library/metadata/403/thumb/1599307973","imdbId":"","language":"en","overview":"Young adults become fascinated by the events of the three missing filmmakers in Maryland, so they decide to go into the same woods and find out what really happened.","moviesInCollection":[],"ratingKey":403,"key":"/library/metadata/403","collectionTitle":"","collectionId":-1,"tmdbId":11531},{"name":"A Nightmare on Elm Street 4 The Dream Master","year":1988,"posterUrl":"/library/metadata/83/thumb/1599307855","imdbId":"","language":"en","overview":"Dream demon Freddy Krueger is resurrected from his apparent demise, and rapidly tracks down and kills the remainder of the Elm Street kids. However, Kristen, who can draw others into her dreams, wills her special ability to her friend Alice. Alice soon realizes that Freddy is taking advantage of that unknown power to pull a new group of children into his foul domain.","moviesInCollection":[],"ratingKey":83,"key":"/library/metadata/83","collectionTitle":"","collectionId":-1,"tmdbId":10131},{"name":"Godzilla","year":2014,"posterUrl":"/library/metadata/1007/thumb/1599308195","imdbId":"","language":"en","overview":"Ford Brody, a Navy bomb expert, has just reunited with his family in San Francisco when he is forced to go to Japan to help his estranged father, Joe. Soon, both men are swept up in an escalating crisis when an ancient alpha predator arises from the sea to combat malevolent adversaries that threaten the survival of humanity. The creatures leave colossal destruction in their wake, as they make their way toward their final battleground: San Francisco.","moviesInCollection":[],"ratingKey":1007,"key":"/library/metadata/1007","collectionTitle":"","collectionId":-1,"tmdbId":124905},{"name":"Suspiria","year":2018,"posterUrl":"/library/metadata/2222/thumb/1599308697","imdbId":"","language":"en","overview":"A darkness swirls at the center of a world-renowned dance company, one that will engulf the troupe's artistic director, an ambitious young dancer and a grieving psychotherapist. Some will succumb to the nightmare, others will finally wake up.","moviesInCollection":[],"ratingKey":2222,"key":"/library/metadata/2222","collectionTitle":"","collectionId":-1,"tmdbId":361292},{"name":"Inside Man Most Wanted","year":2019,"posterUrl":"/library/metadata/1196/thumb/1599308268","imdbId":"","language":"en","overview":"An NYPD hostage negotiator teams up with a federal agent to rescue dozens of tourists held hostage during a 10-hour seige at the U.S. Federal Reserve.","moviesInCollection":[],"ratingKey":1196,"key":"/library/metadata/1196","collectionTitle":"","collectionId":-1,"tmdbId":619278},{"name":"The Matrix","year":1999,"posterUrl":"/library/metadata/41059/thumb/1599309119","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41059,"key":"/library/metadata/41059","collectionTitle":"","collectionId":-1,"tmdbId":603},{"name":"Rollerball","year":1975,"posterUrl":"/library/metadata/1931/thumb/1599308577","imdbId":"","language":"en","overview":"In a corporate-controlled future, an ultra-violent sport known as Rollerball represents the world, and one of its powerful athletes is out to defy those who want him out of the game.","moviesInCollection":[],"ratingKey":1931,"key":"/library/metadata/1931","collectionTitle":"","collectionId":-1,"tmdbId":11484},{"name":"Death Wish 3","year":1985,"posterUrl":"/library/metadata/677/thumb/1599308072","imdbId":"","language":"en","overview":"Architect/vigilante Paul Kersey arrives back in New York City and is forcibly recruited by a crooked police chief to fight street crime caused by a large gang terrorizing the neighborhoods.","moviesInCollection":[],"ratingKey":677,"key":"/library/metadata/677","collectionTitle":"","collectionId":-1,"tmdbId":24873},{"name":"Captain America Civil War","year":2016,"posterUrl":"/library/metadata/465/thumb/1599307998","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":465,"key":"/library/metadata/465","collectionTitle":"","collectionId":-1,"tmdbId":271110},{"name":"Godzilla","year":1998,"posterUrl":"/library/metadata/1006/thumb/1599308195","imdbId":"","language":"en","overview":"When a freighter is viciously attacked in the Pacific Ocean, a team of experts -- including biologist Niko Tatopoulos and scientists Elsie Chapman and Mendel Craven -- concludes that an oversized reptile is the culprit. Before long, the giant lizard is loose in Manhattan, destroying everything within its reach. The team chases the monster to Madison Square Garden, where a brutal battle ensues.","moviesInCollection":[],"ratingKey":1006,"key":"/library/metadata/1006","collectionTitle":"","collectionId":-1,"tmdbId":929},{"name":"E.T. the Extra-Terrestrial","year":1982,"posterUrl":"/library/metadata/39839/thumb/1599309098","imdbId":"","language":"en","overview":"After a gentle alien becomes stranded on Earth, the being is discovered and befriended by a young boy named Elliott. Bringing the extraterrestrial into his suburban California house, Elliott introduces E.T., as the alien is dubbed, to his brother and his little sister, Gertie, and the children decide to keep its existence a secret. Soon, however, E.T. falls ill, resulting in government intervention and a dire situation for both Elliott and the alien.","moviesInCollection":[],"ratingKey":39839,"key":"/library/metadata/39839","collectionTitle":"","collectionId":-1,"tmdbId":601},{"name":"The Next Three Days","year":2010,"posterUrl":"/library/metadata/2715/thumb/1599308885","imdbId":"","language":"en","overview":"A married couple's life is turned upside down when the wife is accused of a murder. Lara Brennan is arrested for murdering her boss with whom she had an argument. It seems she was seen leaving the scene of the crime and her fingerprints were on the murder weapon. Her husband, John would spend the next few years trying to get her released, but there's no evidence that negates the evidence against her. And when the strain of being separated from her family, especially her son, gets to her, John decides to break her out. So he does a lot of research to find a way.","moviesInCollection":[],"ratingKey":2715,"key":"/library/metadata/2715","collectionTitle":"","collectionId":-1,"tmdbId":43539},{"name":"Mausoleum","year":1983,"posterUrl":"/library/metadata/1471/thumb/1599308375","imdbId":"","language":"en","overview":"Traumatized by her mother's death, young Susan is becoming possessed by the same demon that possessed her mother before she died. More and more her husband and psychiatrist are noticing the strange changes","moviesInCollection":[],"ratingKey":1471,"key":"/library/metadata/1471","collectionTitle":"","collectionId":-1,"tmdbId":17923},{"name":"Why We Ride","year":2013,"posterUrl":"/library/metadata/3144/thumb/1599309046","imdbId":"","language":"en","overview":"The passion of the riders and the soul of their machines. WINNER - Best Documentary -Motorcycle Film Festival 2013 -- An inspiring adventure into the world of motorcycling, told by the famous racers, passionate riders and everyday families who live each day to the fullest on their two-wheeled machines.","moviesInCollection":[],"ratingKey":3144,"key":"/library/metadata/3144","collectionTitle":"","collectionId":-1,"tmdbId":224290},{"name":"Ong Bak Muay Thai Warrior","year":2004,"posterUrl":"/library/metadata/1660/thumb/1599308460","imdbId":"","language":"en","overview":"When the head of a statue sacred to a village is stolen, a young martial artist goes to the big city and finds himself taking on the underworld to retrieve it.","moviesInCollection":[],"ratingKey":1660,"key":"/library/metadata/1660","collectionTitle":"","collectionId":-1,"tmdbId":9316},{"name":"T-Men","year":1947,"posterUrl":"/library/metadata/2230/thumb/1599308700","imdbId":"","language":"en","overview":"Two U.S. Treasury (\"T-men\") agents go undercover in Detroit, and then Los Angeles, in an attempt to break a U.S. currency counterfeiting ring.","moviesInCollection":[],"ratingKey":2230,"key":"/library/metadata/2230","collectionTitle":"","collectionId":-1,"tmdbId":26174},{"name":"Transformers Dark of the Moon","year":2011,"posterUrl":"/library/metadata/2986/thumb/1599308992","imdbId":"","language":"en","overview":"Sam Witwicky takes his first tenuous steps into adulthood while remaining a reluctant human ally of Autobot-leader Optimus Prime. The film centers around the space race between the USSR and the USA, suggesting there was a hidden Transformers role in it all that remains one of the planet's most dangerous secrets.","moviesInCollection":[],"ratingKey":2986,"key":"/library/metadata/2986","collectionTitle":"","collectionId":-1,"tmdbId":38356},{"name":"Mission Impossible","year":1996,"posterUrl":"/library/metadata/1519/thumb/1599308397","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1519,"key":"/library/metadata/1519","collectionTitle":"","collectionId":-1,"tmdbId":954},{"name":"The Mountain Between Us","year":2017,"posterUrl":"/library/metadata/2692/thumb/1599308875","imdbId":"","language":"en","overview":"Stranded after a tragic plane crash, two strangers must forge a connection to survive the extreme elements of a remote snow covered mountain. When they realize help is not coming, they embark on a perilous journey across the wilderness.","moviesInCollection":[],"ratingKey":2692,"key":"/library/metadata/2692","collectionTitle":"","collectionId":-1,"tmdbId":290512},{"name":"Ralph Breaks the Internet","year":2018,"posterUrl":"/library/metadata/1840/thumb/1599308535","imdbId":"","language":"en","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 — the netizens — 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.","moviesInCollection":[],"ratingKey":1840,"key":"/library/metadata/1840","collectionTitle":"","collectionId":-1,"tmdbId":404368},{"name":"Lethal Weapon","year":1987,"posterUrl":"/library/metadata/1374/thumb/1599308332","imdbId":"","language":"en","overview":"Veteran buttoned-down LAPD detective Roger Murtaugh is partnered with unhinged cop Martin Riggs, who -- distraught after his wife's death -- has a death wish and takes unnecessary risks with criminals at every turn. The odd couple embark on their first homicide investigation as partners, involving a young woman known to Murtaugh with ties to a drug and prostitution ring.","moviesInCollection":[],"ratingKey":1374,"key":"/library/metadata/1374","collectionTitle":"","collectionId":-1,"tmdbId":941},{"name":"Revenge","year":2017,"posterUrl":"/library/metadata/1895/thumb/1599308560","imdbId":"","language":"en","overview":"Jen's romantic getaway with her wealthy (married) boyfriend is disrupted when his friends arrive for an impromptu hunting trip. Tension mounts at the house until the situation culminates in an unexpected way.","moviesInCollection":[],"ratingKey":1895,"key":"/library/metadata/1895","collectionTitle":"","collectionId":-1,"tmdbId":467938},{"name":"The Sweeney","year":2013,"posterUrl":"/library/metadata/2844/thumb/1599308943","imdbId":"","language":"en","overview":"Based on the '70s UK TV show, The Sweeney is an action-packed British police thriller from the director of Football Factory. Jack Regan (Ray Winstone), a hardened cop who doesn’t play by the rules, is confronted with a criminal from his past. With sidekick George Carter (Ben Drew aka Plan B) they are put on the case of a jewellery store heist that ends in a killing. But is that killing really an execution in disguise? With pressure from his boss and the fact that Regan is having an affair with that boss’s wife, it’s not going to be easy for him to stay out of trouble.","moviesInCollection":[],"ratingKey":2844,"key":"/library/metadata/2844","collectionTitle":"","collectionId":-1,"tmdbId":116613},{"name":"A Matador's Mistress","year":2009,"posterUrl":"/library/metadata/74/thumb/1599307851","imdbId":"","language":"en","overview":"Scandal erupts over a famous bullfighter's affair with a left-wing actress.","moviesInCollection":[],"ratingKey":74,"key":"/library/metadata/74","collectionTitle":"","collectionId":-1,"tmdbId":45127},{"name":"Star Wars Episode I - The Phantom Menace","year":1999,"posterUrl":"/library/metadata/2145/thumb/1599308669","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2145,"key":"/library/metadata/2145","collectionTitle":"","collectionId":-1,"tmdbId":1893},{"name":"Anne","year":2018,"posterUrl":"/library/metadata/205/thumb/1599307902","imdbId":"","language":"en","overview":"A mentally ill woman with a severe personalty disorder develops a strange relationship with her dolls. She becomes victim to insomnia and even self-mutilation leaving her son to unfold the strange truth about Anne's illness.","moviesInCollection":[],"ratingKey":205,"key":"/library/metadata/205","collectionTitle":"","collectionId":-1,"tmdbId":512064},{"name":"Paranormal Activity 4","year":2012,"posterUrl":"/library/metadata/48819/thumb/1601955106","imdbId":"","language":"en","overview":"It has been five years since the disappearance of Katie and Hunter, and a suburban family witness strange events in their neighborhood when a woman and a mysterious child move in.","moviesInCollection":[],"ratingKey":48819,"key":"/library/metadata/48819","collectionTitle":"","collectionId":-1,"tmdbId":82990},{"name":"Scooby-Doo 2 Monsters Unleashed","year":2004,"posterUrl":"/library/metadata/1982/thumb/1599308597","imdbId":"","language":"en","overview":"When Mystery, Inc. are guests of honor at the grand opening of the Coolsville Museum of Criminology, a masked villain shows up and creates havoc before stealing the costumes of the gang's most notorious villains...Could it be that their nemesis, mad scientist Jonathan Jacobo has returned and is trying to recreate their deadliest foes?","moviesInCollection":[],"ratingKey":1982,"key":"/library/metadata/1982","collectionTitle":"","collectionId":-1,"tmdbId":11024},{"name":"Captive State","year":2019,"posterUrl":"/library/metadata/470/thumb/1599308000","imdbId":"","language":"en","overview":"Nearly a decade after occupation by an extraterrestrial force, the lives of a Chicago neighborhood on both sides of the conflict are explored. In a working-class Chicago neighborhood occupied by an alien force for nine years, increased surveillance and the restriction of civil rights have given rise to an authoritarian system -- and dissent among the populace.","moviesInCollection":[],"ratingKey":470,"key":"/library/metadata/470","collectionTitle":"","collectionId":-1,"tmdbId":429471},{"name":"Star Wars The Empire Strikes Back D+80","year":1980,"posterUrl":"/library/metadata/46487/thumb/1599309159","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":46487,"key":"/library/metadata/46487","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"True Lies","year":1994,"posterUrl":"/library/metadata/3012/thumb/1599309000","imdbId":"","language":"en","overview":"A fearless, globe-trotting, terrorist-battling secret agent has his life turned upside down when he discovers his wife might be having an affair with a used car salesman while terrorists smuggle nuclear war heads into the United States.","moviesInCollection":[],"ratingKey":3012,"key":"/library/metadata/3012","collectionTitle":"","collectionId":-1,"tmdbId":36955},{"name":"The Garden of Words","year":2013,"posterUrl":"/library/metadata/2484/thumb/1599308793","imdbId":"","language":"en","overview":"Takao, who is training to become a shoemaker, skipped school and is sketching shoes in a Japanese-style garden. He meets a mysterious woman, Yukino, who is older than him. Then, without arranging the times, the two start to see each other again and again, but only on rainy days. They deepen their relationship and open up to each other. But the end of the rainy season soon approaches …","moviesInCollection":[],"ratingKey":2484,"key":"/library/metadata/2484","collectionTitle":"","collectionId":-1,"tmdbId":198375},{"name":"The Romance of Rosy Ridge","year":1947,"posterUrl":"/library/metadata/2788/thumb/1599308918","imdbId":"","language":"en","overview":"A mysterious Civil War veteran courts a Missouri farmer's daughter amid postwar unrest.","moviesInCollection":[],"ratingKey":2788,"key":"/library/metadata/2788","collectionTitle":"","collectionId":-1,"tmdbId":229757},{"name":"Madagascar Escape 2 Africa","year":2008,"posterUrl":"/library/metadata/1437/thumb/1599308359","imdbId":"","language":"en","overview":"Alex, Marty, and other zoo animals find a way to escape from Madagascar when the penguins reassemble a wrecked airplane. The precariously repaired craft stays airborne just long enough to make it to the African continent. There the New Yorkers encounter members of their own species for the first time. Africa proves to be a wild place, but Alex and company wonder if it is better than their Central Park home.","moviesInCollection":[],"ratingKey":1437,"key":"/library/metadata/1437","collectionTitle":"","collectionId":-1,"tmdbId":10527},{"name":"Brahms The Boy II","year":2020,"posterUrl":"/library/metadata/45909/thumb/1599309151","imdbId":"","language":"en","overview":"After a family moves into the Heelshire Mansion, their young son soon makes friends with a life-like doll called Brahms.","moviesInCollection":[],"ratingKey":45909,"key":"/library/metadata/45909","collectionTitle":"","collectionId":-1,"tmdbId":555974},{"name":"Human Desire","year":1954,"posterUrl":"/library/metadata/1147/thumb/1599308250","imdbId":"","language":"en","overview":"Jeff Warren, a Korean War vet just returning to his railroad engineer's job, boards at the home of co-worker Alec Simmons and is charmed by Alec's beautiful daughter. He becomes attracted immediately to Vicki Buckley, the sultry wife of brutish railroad supervisor Carl Buckley, an alcoholic wife beater with a hair trigger temper and penchant for explosive violence. Jeff becomes reluctantly drawn into a sordid affair by the compulsively seductive Vicki. After Buckley is fired for insubordination, he begs her to intercede on his behalf with John Owens, a rich and powerful businessman whose influence can get him reinstated.","moviesInCollection":[],"ratingKey":1147,"key":"/library/metadata/1147","collectionTitle":"","collectionId":-1,"tmdbId":21564},{"name":"The Scorpion King 2 Rise of a Warrior","year":2008,"posterUrl":"/library/metadata/2802/thumb/1599308924","imdbId":"","language":"en","overview":"The heroic tale of young Mathayus and his relentless quest for justice against an evil and powerful villain, King Sargon. Mathayus faces heart-stopping tribulations during his adventurous, odds-defying trajectory toward his ultimate destiny: becoming the formidable warrior king of an ancient desert empire.","moviesInCollection":[],"ratingKey":2802,"key":"/library/metadata/2802","collectionTitle":"","collectionId":-1,"tmdbId":13486},{"name":"Syrup","year":2013,"posterUrl":"/library/metadata/2229/thumb/1599308699","imdbId":"","language":"en","overview":"A slacker hatches a million-dollar idea. But, in order to see it through, he has to learn to trust his attractive corporate counterpart. Based on Max Barry's novel.","moviesInCollection":[],"ratingKey":2229,"key":"/library/metadata/2229","collectionTitle":"","collectionId":-1,"tmdbId":72525},{"name":"The Treasure of the Sierra Madre","year":1948,"posterUrl":"/library/metadata/2872/thumb/1599308953","imdbId":"","language":"en","overview":"Fred C. Dobbs and Bob Curtin, both down on their luck in Tampico, Mexico in 1925, meet up with a grizzled prospector named Howard and decide to join with him in search of gold in the wilds of central Mexico. Through enormous difficulties, they eventually succeed in finding gold, but bandits, the elements, and most especially greed threaten to turn their success into disaster.","moviesInCollection":[],"ratingKey":2872,"key":"/library/metadata/2872","collectionTitle":"","collectionId":-1,"tmdbId":3090},{"name":"Dawn of the Dead","year":2004,"posterUrl":"/library/metadata/645/thumb/1599308061","imdbId":"","language":"en","overview":"A group of survivors take refuge in a shopping mall after the world is taken over by aggressive, flesh-eating zombies.","moviesInCollection":[],"ratingKey":645,"key":"/library/metadata/645","collectionTitle":"","collectionId":-1,"tmdbId":924},{"name":"Ride Along","year":2014,"posterUrl":"/library/metadata/1904/thumb/1599308564","imdbId":"","language":"en","overview":"For the past two years, high-school security guard Ben has been trying to show decorated APD detective James that he's more than just a video-game junkie who's unworthy of James' sister, Angela. When Ben finally gets accepted into the academy, he thinks he's earned the seasoned policeman's respect and asks for his blessing to marry Angela. Knowing that a ride along will demonstrate if Ben has what it takes to take care of his sister, James invites him on a shift designed to scare the hell out of the trainee. But when the wild night leads them to the most notorious criminal in the city, James will find that his new partner's rapid-fire mouth is just as dangerous as the bullets speeding at it.","moviesInCollection":[],"ratingKey":1904,"key":"/library/metadata/1904","collectionTitle":"","collectionId":-1,"tmdbId":168530},{"name":"Evolution","year":2001,"posterUrl":"/library/metadata/845/thumb/1599308132","imdbId":"","language":"en","overview":"A comedy that follows the chaos that ensues when a meteor hits the Earth carrying alien life forms that give new meaning to the term \"survival of the fittest.\" David Duchovny, Orlando Jones, Seann William Scott, and Julianne Moore are the only people standing between the aliens and world domination... which could be bad news for the Earth.","moviesInCollection":[],"ratingKey":845,"key":"/library/metadata/845","collectionTitle":"","collectionId":-1,"tmdbId":9397},{"name":"Wonder","year":2017,"posterUrl":"/library/metadata/3162/thumb/1599309052","imdbId":"","language":"en","overview":"The story of August Pullman – a boy with facial differences – who enters fifth grade, attending a mainstream elementary school for the first time.","moviesInCollection":[],"ratingKey":3162,"key":"/library/metadata/3162","collectionTitle":"","collectionId":-1,"tmdbId":406997},{"name":"Arthur Christmas","year":2011,"posterUrl":"/library/metadata/226/thumb/1599307910","imdbId":"","language":"en","overview":"Each Christmas, Santa and his vast army of highly trained elves produce gifts and distribute them around the world in one night. However, when one of 600 million children to receive a gift from Santa on Christmas Eve is missed, it is deemed ‘acceptable’ to all but one – Arthur. Arthur Claus is Santa’s misfit son who executes an unauthorized rookie mission to get the last present half way around the globe before dawn on Christmas morning.","moviesInCollection":[],"ratingKey":226,"key":"/library/metadata/226","collectionTitle":"","collectionId":-1,"tmdbId":51052},{"name":"Body of Lies","year":2009,"posterUrl":"/library/metadata/393/thumb/1599307970","imdbId":"","language":"en","overview":"The CIA’s hunt is on for the mastermind of a wave of terrorist attacks. Roger Ferris is the agency’s man on the ground, moving from place to place, scrambling to stay ahead of ever-shifting events. An eye in the sky – a satellite link – watches Ferris. At the other end of that real-time link is the CIA’s Ed Hoffman, strategizing events from thousands of miles away. And as Ferris nears the target, he discovers trust can be just as dangerous as it is necessary for survival.","moviesInCollection":[],"ratingKey":393,"key":"/library/metadata/393","collectionTitle":"","collectionId":-1,"tmdbId":12113},{"name":"The Proposal","year":2009,"posterUrl":"/library/metadata/2762/thumb/1599308907","imdbId":"","language":"en","overview":"When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.","moviesInCollection":[],"ratingKey":2762,"key":"/library/metadata/2762","collectionTitle":"","collectionId":-1,"tmdbId":18240},{"name":"Borrowed Hearts","year":1997,"posterUrl":"/library/metadata/408/thumb/1599307975","imdbId":"","language":"en","overview":"Single mom Kathleen Russell (Roma Downey) and her daughter Zoey pretend to be Kathleen's boss's \"family\" so he can close a major business deal with the mysterious Mexican financier Javier Del Campo.","moviesInCollection":[],"ratingKey":408,"key":"/library/metadata/408","collectionTitle":"","collectionId":-1,"tmdbId":70417},{"name":"The Human Centipede 2 (Full Sequence)","year":2011,"posterUrl":"/library/metadata/2556/thumb/1599308819","imdbId":"","language":"en","overview":"Inspired by the fictional Dr. Heiter, disturbed loner Martin dreams of creating a 12-person centipede and sets out to realize his sick fantasy.","moviesInCollection":[],"ratingKey":2556,"key":"/library/metadata/2556","collectionTitle":"","collectionId":-1,"tmdbId":74997},{"name":"Ice Age Continental Drift","year":2012,"posterUrl":"/library/metadata/1170/thumb/1599308258","imdbId":"","language":"en","overview":"Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.","moviesInCollection":[],"ratingKey":1170,"key":"/library/metadata/1170","collectionTitle":"","collectionId":-1,"tmdbId":57800},{"name":"The Truman Show","year":1998,"posterUrl":"/library/metadata/2874/thumb/1599308953","imdbId":"","language":"en","overview":"Truman Burbank is the star of The Truman Show, a 24-hour-a-day reality TV show that broadcasts every aspect of his life without his knowledge. His entire life has been an unending soap opera for consumption by the rest of the world. And everyone he knows, including his wife and his best friend is really an actor, paid to be part of his life.","moviesInCollection":[],"ratingKey":2874,"key":"/library/metadata/2874","collectionTitle":"","collectionId":-1,"tmdbId":37165},{"name":"Hostiles","year":2017,"posterUrl":"/library/metadata/1126/thumb/1599308242","imdbId":"","language":"en","overview":"A legendary Native American-hating Army captain nearing retirement in 1892 is given one last assignment: to escort a Cheyenne chief and his family through dangerous territory back to his Montana reservation.","moviesInCollection":[],"ratingKey":1126,"key":"/library/metadata/1126","collectionTitle":"","collectionId":-1,"tmdbId":384680},{"name":"In the Mouth of Madness","year":1995,"posterUrl":"/library/metadata/1180/thumb/1599308262","imdbId":"","language":"en","overview":"With the disappearance of hack horror writer Sutter Cane, all Hell is breaking loose...literally! Author Cane, it seems, has a knack for description that really brings his evil creepy-crawlies to life. Insurance investigator John Trent is sent to investigate Cane's mysterious vanishing act and ends up in the sleepy little East Coast town of Hobb's End.","moviesInCollection":[],"ratingKey":1180,"key":"/library/metadata/1180","collectionTitle":"","collectionId":-1,"tmdbId":2654},{"name":"Death Warrant","year":1990,"posterUrl":"/library/metadata/674/thumb/1599308071","imdbId":"","language":"en","overview":"The Canadian policeman Louis Burke is assigned in a jail to investigate the murders of prisoners and jailors. When in jail, Louis, using his outstandings martial arts skills, is able to save his life and make himself respected in that violent world. At least, helped by two another prisoners, he succeded in finding the truth about the dreadful crimes. In a violent and corrupt prison, decorated cop Louis Burke must infiltrate the jail to find answers to a number of inside murders. What he finds is a struggle of life and death tied in to his own past.","moviesInCollection":[],"ratingKey":674,"key":"/library/metadata/674","collectionTitle":"","collectionId":-1,"tmdbId":17466},{"name":"You're Next","year":2013,"posterUrl":"/library/metadata/3191/thumb/1599309062","imdbId":"","language":"en","overview":"When the Davison family comes under attack during their wedding anniversary getaway, the gang of mysterious killers soon learns that one of their victims harbors a secret talent for fighting back.","moviesInCollection":[],"ratingKey":3191,"key":"/library/metadata/3191","collectionTitle":"","collectionId":-1,"tmdbId":83899},{"name":"The Boxer","year":1997,"posterUrl":"/library/metadata/2333/thumb/1599308736","imdbId":"","language":"en","overview":"Nineteen-year-old Danny Flynn is imprisoned for his involvement with the I.R.A. in Belfast. He leaves behind his family and his sixteen-year-old girlfriend, Maggie Hamill. Fourteen years later, Danny is released from prison and returns to his old working class neighborhood to resume his life as a boxer.","moviesInCollection":[],"ratingKey":2333,"key":"/library/metadata/2333","collectionTitle":"","collectionId":-1,"tmdbId":16992},{"name":"My Big Fat Greek Wedding 2","year":2016,"posterUrl":"/library/metadata/1573/thumb/1599308421","imdbId":"","language":"en","overview":"The continuing adventures of the Portokalos family. A follow-up to the 2002 comedy, \"My Big Fat Greek Wedding.\"","moviesInCollection":[],"ratingKey":1573,"key":"/library/metadata/1573","collectionTitle":"","collectionId":-1,"tmdbId":302688},{"name":"Teen Titans The Judas Contract","year":2017,"posterUrl":"/library/metadata/2252/thumb/1599308708","imdbId":"","language":"en","overview":"Tara Markov is a girl who has power over earth and stone; she is also more than she seems. Is the newest Teen Titan an ally or a threat? And what are the mercenary Deathstroke's plans for the Titans?","moviesInCollection":[],"ratingKey":2252,"key":"/library/metadata/2252","collectionTitle":"","collectionId":-1,"tmdbId":408647},{"name":"The Lion King","year":1994,"posterUrl":"/library/metadata/2638/thumb/1599308850","imdbId":"","language":"en","overview":"A young lion prince is cast out of his pride by his cruel uncle, who claims he killed his father. While the uncle rules with an iron paw, the prince grows up beyond the Savannah, living by a philosophy: No worries for the rest of your days. But when his past comes to haunt him, the young prince must decide his fate: Will he remain an outcast or face his demons and become what he needs to be?","moviesInCollection":[],"ratingKey":2638,"key":"/library/metadata/2638","collectionTitle":"","collectionId":-1,"tmdbId":8587},{"name":"Remember the Titans","year":2000,"posterUrl":"/library/metadata/1874/thumb/1599308551","imdbId":"","language":"en","overview":"After leading his football team to 15 winning seasons, coach Bill Yoast is demoted and replaced by Herman Boone – tough, opinionated and as different from the beloved Yoast as he could be. The two men learn to overcome their differences and turn a group of hostile young men into champions.","moviesInCollection":[],"ratingKey":1874,"key":"/library/metadata/1874","collectionTitle":"","collectionId":-1,"tmdbId":10637},{"name":"Under the Silver Lake","year":2018,"posterUrl":"/library/metadata/3040/thumb/1599309011","imdbId":"","language":"en","overview":"Young and disenchanted Sam meets a mysterious and beautiful woman who's swimming in his building's pool one night. When she suddenly vanishes the next morning, Sam embarks on a surreal quest across Los Angeles to decode the secret behind her disappearance, leading him into the murkiest depths of mystery, scandal and conspiracy.","moviesInCollection":[],"ratingKey":3040,"key":"/library/metadata/3040","collectionTitle":"","collectionId":-1,"tmdbId":396461},{"name":"The Sound Barrier","year":1952,"posterUrl":"/library/metadata/2825/thumb/1599308935","imdbId":"","language":"en","overview":"Fictionalized story of British aerospace engineers solving the problem of supersonic flight.","moviesInCollection":[],"ratingKey":2825,"key":"/library/metadata/2825","collectionTitle":"","collectionId":-1,"tmdbId":51619},{"name":"Bounty Killer","year":2013,"posterUrl":"/library/metadata/409/thumb/1599307975","imdbId":"","language":"en","overview":"It’s been 20 years since the corporations took over the world’s governments. Their thirst for power and profits led to the Corporate Wars, a fierce global battle that laid waste to society as we know it. Born from the ash, the Council of Nine rose as a new law and order for this dark age. To avenge the corporations’ reckless destruction, the Council issues death warrants for all white collar criminals. Their hunters—the bounty killer. From amateur savage to graceful assassin, the bounty killers now compete for body count, fame and a fat stack of cash. They’re ending the plague of corporate greed and providing the survivors of the apocalypse with retribution. These are the new heroes. This is the age of the BOUNTY KILLER.","moviesInCollection":[],"ratingKey":409,"key":"/library/metadata/409","collectionTitle":"","collectionId":-1,"tmdbId":209504},{"name":"Star Trek Beyond","year":2016,"posterUrl":"/library/metadata/2132/thumb/1599308663","imdbId":"","language":"en","overview":"The USS Enterprise crew explores the furthest reaches of uncharted space, where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.","moviesInCollection":[],"ratingKey":2132,"key":"/library/metadata/2132","collectionTitle":"","collectionId":-1,"tmdbId":188927},{"name":"The Nice Guys","year":2016,"posterUrl":"/library/metadata/2716/thumb/1599308885","imdbId":"","language":"en","overview":"A private eye investigates the apparent suicide of a fading porn star in 1970s Los Angeles and uncovers a conspiracy.","moviesInCollection":[],"ratingKey":2716,"key":"/library/metadata/2716","collectionTitle":"","collectionId":-1,"tmdbId":290250},{"name":"Friday the 13th The Final Chapter","year":1984,"posterUrl":"/library/metadata/953/thumb/1599308175","imdbId":"","language":"en","overview":"After the Crystal Lake Massacres, Jason is pronounced dead and taken to the hospital morgue, where he is mysteriously revived, allowing his diabolical killing spree to continue at the camp where the gruesome slaughtering began. But this time, in addition to terrified teenagers, he meets a young boy named Tommy who has a special talent for horror masks and make up, leading up to a horrifying, bloody battle! Has Jason finally met his match?","moviesInCollection":[],"ratingKey":953,"key":"/library/metadata/953","collectionTitle":"","collectionId":-1,"tmdbId":9730},{"name":"Fantasy Island","year":2020,"posterUrl":"/library/metadata/46583/thumb/1599309166","imdbId":"","language":"en","overview":"A group of contest winners arrive at an island hotel to live out their dreams, only to find themselves trapped in nightmare scenarios.","moviesInCollection":[],"ratingKey":46583,"key":"/library/metadata/46583","collectionTitle":"","collectionId":-1,"tmdbId":539537},{"name":"Masterminds","year":2016,"posterUrl":"/library/metadata/1468/thumb/1599308374","imdbId":"","language":"en","overview":"A night guard at an armored car company in the Southern U.S. organizes one of the biggest bank heists in American history.","moviesInCollection":[],"ratingKey":1468,"key":"/library/metadata/1468","collectionTitle":"","collectionId":-1,"tmdbId":213681},{"name":"Hail, Caesar!","year":2016,"posterUrl":"/library/metadata/1041/thumb/1599308209","imdbId":"","language":"en","overview":"When a Hollywood star mysteriously disappears in the middle of filming, the studio sends their \"fixer\" to get him back. Set in the 1950s, the story was inspired by the career of Eddie Mannix (1891–1963).","moviesInCollection":[],"ratingKey":1041,"key":"/library/metadata/1041","collectionTitle":"","collectionId":-1,"tmdbId":270487},{"name":"The Parts You Lose","year":2019,"posterUrl":"/library/metadata/2733/thumb/1599308893","imdbId":"","language":"en","overview":"An unlikely friendship unfolds between a young deaf boy, Wesley, and a fugitive criminal who takes refuge in an abandoned barn on the family’s rural North Dakota farm.","moviesInCollection":[],"ratingKey":2733,"key":"/library/metadata/2733","collectionTitle":"","collectionId":-1,"tmdbId":492613},{"name":"Tammy","year":2014,"posterUrl":"/library/metadata/2241/thumb/1599308703","imdbId":"","language":"en","overview":"After losing her job and learning that her husband has been unfaithful, a woman hits the road with her profane, hard-drinking grandmother.","moviesInCollection":[],"ratingKey":2241,"key":"/library/metadata/2241","collectionTitle":"","collectionId":-1,"tmdbId":226486},{"name":"Dying of the Light","year":2014,"posterUrl":"/library/metadata/799/thumb/1599308117","imdbId":"","language":"en","overview":"Evan Lake, a veteran CIA agent, has been ordered to retire. But when his protégé uncovers evidence that Lake's nemesis, the terrorist Banir, has resurfaced, Lake goes rogue, embarking on a perilous, intercontinental mission to eliminate his sworn enemy.","moviesInCollection":[],"ratingKey":799,"key":"/library/metadata/799","collectionTitle":"","collectionId":-1,"tmdbId":297596},{"name":"The Peanut Butter Falcon","year":2019,"posterUrl":"/library/metadata/2737/thumb/1599308894","imdbId":"","language":"en","overview":"A down-on-his-luck crab fisherman embarks on a journey to get a young man with Down syndrome to a professional wrestling school in rural North Carolina and away from the retirement home where he’s lived for the past two and a half years.","moviesInCollection":[],"ratingKey":2737,"key":"/library/metadata/2737","collectionTitle":"","collectionId":-1,"tmdbId":463257},{"name":"The Appearance","year":2018,"posterUrl":"/library/metadata/2296/thumb/1599308723","imdbId":"","language":"en","overview":"Mateho, an officer of the Inquisition and rational man of science, visits a remote monastery to investigate a bizarre murder of a monk. And you guessed it: something evil is afoot. But is the terror man-made or the result of witchcraft?","moviesInCollection":[],"ratingKey":2296,"key":"/library/metadata/2296","collectionTitle":"","collectionId":-1,"tmdbId":524788},{"name":"Black Swan","year":2010,"posterUrl":"/library/metadata/369/thumb/1599307962","imdbId":"","language":"en","overview":"A journey through the psyche of a young ballerina whose starring role as the duplicitous swan queen turns out to be a part for which she becomes frighteningly perfect.","moviesInCollection":[],"ratingKey":369,"key":"/library/metadata/369","collectionTitle":"","collectionId":-1,"tmdbId":44214},{"name":"Doom","year":2005,"posterUrl":"/library/metadata/737/thumb/1599308095","imdbId":"","language":"en","overview":"A team of space marines known as the Rapid Response Tactical Squad, led by Sarge, is sent to a science facility on Mars after somebody reports a security breach. There, they learn that the alert came after a test subject, a mass murderer purposefully injected with alien DNA, broke free and began killing people. Dr. Grimm, who is related to team member Reaper, informs them all that the chromosome can mutate humans into monsters -- and is highly infectious.","moviesInCollection":[],"ratingKey":737,"key":"/library/metadata/737","collectionTitle":"","collectionId":-1,"tmdbId":8814},{"name":"Escape from New York","year":1981,"posterUrl":"/library/metadata/832/thumb/1599308127","imdbId":"","language":"en","overview":"In 1997, the island of Manhattan has been walled off and turned into a giant maximum security prison within which the country's worst criminals are left to form their own anarchic society. However, when the President of the United States crash lands on the island, the authorities turn to a former soldier and current convict to rescue him.","moviesInCollection":[],"ratingKey":832,"key":"/library/metadata/832","collectionTitle":"","collectionId":-1,"tmdbId":1103},{"name":"Anna","year":2019,"posterUrl":"/library/metadata/201/thumb/1599307901","imdbId":"","language":"en","overview":"Beneath Anna Poliatova's striking beauty lies a secret that will unleash her indelible strength and skill to become one of the world's most feared government assassins.","moviesInCollection":[],"ratingKey":201,"key":"/library/metadata/201","collectionTitle":"","collectionId":-1,"tmdbId":484641},{"name":"Vice","year":2018,"posterUrl":"/library/metadata/3081/thumb/1599309025","imdbId":"","language":"en","overview":"George W. Bush picks Dick Cheney, the CEO of Halliburton Co., to be his Republican running mate in the 2000 presidential election. No stranger to politics, Cheney's impressive résumé includes stints as White House chief of staff, House Minority Whip and defense secretary. When Bush wins by a narrow margin, Cheney begins to use his newfound power to help reshape the country and the world.","moviesInCollection":[],"ratingKey":3081,"key":"/library/metadata/3081","collectionTitle":"","collectionId":-1,"tmdbId":429197},{"name":"The Delta Force","year":1986,"posterUrl":"/library/metadata/2409/thumb/1599308763","imdbId":"","language":"en","overview":"A 707 aircraft jetliner, en route from Athens to Rome and then to New York City, is hijacked by Lebanese terrorists, who demand that the pilot take them to Beirut. What the terrorists don't realize is that an elite team of commandos have been called in to eliminate all terrorists on the jetliner.","moviesInCollection":[],"ratingKey":2409,"key":"/library/metadata/2409","collectionTitle":"","collectionId":-1,"tmdbId":16113},{"name":"The Descent Part 2","year":2010,"posterUrl":"/library/metadata/2414/thumb/1599308765","imdbId":"","language":"en","overview":"Distraught, confused, and half-wild with fear, Sarah Carter emerges alone from the Appalachian cave system where she encountered unspeakable terrors. Unable to plausibly explain to the authorities what happened - or why she's covered in her friends' blood - Sarah is forced back to the subterranean depths to help locate her five missing companions.","moviesInCollection":[],"ratingKey":2414,"key":"/library/metadata/2414","collectionTitle":"","collectionId":-1,"tmdbId":34480},{"name":"Peter Pan","year":2003,"posterUrl":"/library/metadata/1730/thumb/1599308491","imdbId":"","language":"en","overview":"In stifling Edwardian London, Wendy Darling mesmerizes her brothers every night with bedtime tales of swordplay, swashbuckling and the fearsome Captain Hook. But the children become the heroes of an even greater story, when Peter Pan flies into their nursery one night and leads them over moonlit rooftops through a galaxy of stars and to the lush jungles of Neverland.","moviesInCollection":[],"ratingKey":1730,"key":"/library/metadata/1730","collectionTitle":"","collectionId":-1,"tmdbId":10601},{"name":"Ophelia","year":2018,"posterUrl":"/library/metadata/1669/thumb/1599308464","imdbId":"","language":"en","overview":"Ophelia comes of age as lady-in-waiting for Queen Gertrude, and her singular spirit captures Hamlet's affections. As lust and betrayal threaten the kingdom, Ophelia finds herself trapped between true love and controlling her own destiny.","moviesInCollection":[],"ratingKey":1669,"key":"/library/metadata/1669","collectionTitle":"","collectionId":-1,"tmdbId":428836},{"name":"The Fifth Element","year":1997,"posterUrl":"/library/metadata/2461/thumb/1599308784","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2461,"key":"/library/metadata/2461","collectionTitle":"","collectionId":-1,"tmdbId":18},{"name":"Bone Tomahawk","year":2015,"posterUrl":"/library/metadata/397/thumb/1599307972","imdbId":"","language":"en","overview":"During a shootout in a saloon, Sheriff Hunt injures a suspicious stranger. One of the villagers takes care of him in prison. One day they both disappear – only the spear of a cannibal tribe is found. Hunt and a few of his men go in search of the prisoner and his nurse.","moviesInCollection":[],"ratingKey":397,"key":"/library/metadata/397","collectionTitle":"","collectionId":-1,"tmdbId":294963},{"name":"Maya the Bee Movie","year":2015,"posterUrl":"/library/metadata/1474/thumb/1599308377","imdbId":"","language":"en","overview":"Freshly hatched bee Maya is a little whirlwind and won't follow the rules of the hive. One of these rules is not to trust the hornets that live beyond the meadow. When the Royal Jelly is stolen, the hornets are suspected and Maya is thought to be their accomplice. No one believes that she is the innocent victim and no one will stand by her except for her good-natured and best friend Willy. After a long and eventful journey to the hornets hive Maya and Willy soon discover the true culprit and the two friends finally bond with the other residents of the opulent meadow.","moviesInCollection":[],"ratingKey":1474,"key":"/library/metadata/1474","collectionTitle":"","collectionId":-1,"tmdbId":261103},{"name":"Scooby-Doo! & Batman The Brave and the Bold","year":2018,"posterUrl":"/library/metadata/1983/thumb/1599308597","imdbId":"","language":"en","overview":"Batman teams up with the Scooby gang when villains from both of their worlds unite to wreak havoc on the city. Featuring classic DC villains like the Joker, Catwoman, Harley Quinn and the Riddler alongside heroes like Aquaman, Black Canary, and Plastic Man. Also featuring classic Scooby-Doo villains like the Ghost Clown, Space Kook, and Miner 49er.","moviesInCollection":[],"ratingKey":1983,"key":"/library/metadata/1983","collectionTitle":"","collectionId":-1,"tmdbId":484862},{"name":"The Evil Dead","year":1981,"posterUrl":"/library/metadata/2440/thumb/1599308775","imdbId":"","language":"en","overview":"When a group of college students finds a mysterious book and recording in the old wilderness cabin they've rented for the weekend, they unwittingly unleash a demonic force from the surrounding forest.","moviesInCollection":[],"ratingKey":2440,"key":"/library/metadata/2440","collectionTitle":"","collectionId":-1,"tmdbId":764},{"name":"Sherlock Holmes A Game of Shadows","year":2011,"posterUrl":"/library/metadata/2019/thumb/1599308613","imdbId":"","language":"en","overview":"There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes’ intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.","moviesInCollection":[],"ratingKey":2019,"key":"/library/metadata/2019","collectionTitle":"","collectionId":-1,"tmdbId":58574},{"name":"Little Monsters","year":2019,"posterUrl":"/library/metadata/46655/thumb/1599309168","imdbId":"","language":"en","overview":"A washed-up musician teams up with a teacher and a kids show personality to protect young children from a sudden outbreak of zombies.","moviesInCollection":[],"ratingKey":46655,"key":"/library/metadata/46655","collectionTitle":"","collectionId":-1,"tmdbId":503125},{"name":"Boy Erased","year":2018,"posterUrl":"/library/metadata/410/thumb/1599307976","imdbId":"","language":"en","overview":"Jared, the son of a Baptist pastor in a small American town, is outed to his parents at age 19. Jared is faced with an ultimatum: attend a gay conversion therapy program – or be permanently exiled and shunned by his family, friends, and faith.","moviesInCollection":[],"ratingKey":410,"key":"/library/metadata/410","collectionTitle":"","collectionId":-1,"tmdbId":472451},{"name":"Commando","year":1985,"posterUrl":"/library/metadata/558/thumb/1599308031","imdbId":"","language":"en","overview":"John Matrix, the former leader of a special commando strike force that always got the toughest jobs done, is forced back into action when his young daughter is kidnapped. To find her, Matrix has to fight his way through an array of punks, killers, one of his former commandos, and a fully equipped private army. With the help of a feisty stewardess and an old friend, Matrix has only a few hours to overcome his greatest challenge: finding his daughter before she's killed.","moviesInCollection":[],"ratingKey":558,"key":"/library/metadata/558","collectionTitle":"","collectionId":-1,"tmdbId":10999},{"name":"The Starving Games","year":2013,"posterUrl":"/library/metadata/2837/thumb/1599308940","imdbId":"","language":"en","overview":"In this Hunger Games spoof, Kantmiss Evershot must fight for her life in the 75th annual Starving Games, where she could also win an old ham, a coupon for a foot-long sub, and a partially eaten pickle.","moviesInCollection":[],"ratingKey":2837,"key":"/library/metadata/2837","collectionTitle":"","collectionId":-1,"tmdbId":225703},{"name":"Toy Story 4","year":2019,"posterUrl":"/library/metadata/2970/thumb/1599308987","imdbId":"","language":"en","overview":"Woody has always been confident about his place in the world and that his priority is taking care of his kid, whether that's Andy or Bonnie. But when Bonnie adds a reluctant new toy called \"Forky\" to her room, a road trip adventure alongside old and new friends will show Woody how big the world can be for a toy.","moviesInCollection":[],"ratingKey":2970,"key":"/library/metadata/2970","collectionTitle":"","collectionId":-1,"tmdbId":301528},{"name":"Lilo & Stitch 2 Stitch Has a Glitch","year":2005,"posterUrl":"/library/metadata/1392/thumb/1599308339","imdbId":"","language":"en","overview":"Now, we find 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!","moviesInCollection":[],"ratingKey":1392,"key":"/library/metadata/1392","collectionTitle":"","collectionId":-1,"tmdbId":20760},{"name":"Unfinished Business","year":2015,"posterUrl":"/library/metadata/3050/thumb/1599309014","imdbId":"","language":"en","overview":"A hard-working small business owner and his two associates travel to Europe to close the most important deal of their lives. But what began as a routine business trip goes off the rails in every imaginable – and unimaginable – way, including unplanned stops at a massive sex fetish event and a global economic summit.","moviesInCollection":[],"ratingKey":3050,"key":"/library/metadata/3050","collectionTitle":"","collectionId":-1,"tmdbId":239573},{"name":"Flatliners","year":2017,"posterUrl":"/library/metadata/918/thumb/1599308160","imdbId":"","language":"en","overview":"Five medical students, hoping to understand the mystery of what lies beyond life, embark on a dangerous experiment. When their hearts are stopped for a short period of time, they have a near-death experience…","moviesInCollection":[],"ratingKey":918,"key":"/library/metadata/918","collectionTitle":"","collectionId":-1,"tmdbId":400710},{"name":"Stan & Ollie","year":2019,"posterUrl":"/library/metadata/2127/thumb/1599308661","imdbId":"","language":"en","overview":"With their golden era long behind them, comedy duo Stan Laurel and Oliver Hardy embark on a variety hall tour of Britain and Ireland. Despite the pressures of a hectic schedule, and with the support of their wives Lucille and Ida – a formidable double act in their own right – the pair's love of performing, as well as for each other, endures as they secure their place in the hearts of their adoring public","moviesInCollection":[],"ratingKey":2127,"key":"/library/metadata/2127","collectionTitle":"","collectionId":-1,"tmdbId":394741},{"name":"The Meaning of Life","year":1983,"posterUrl":"/library/metadata/2680/thumb/1599308869","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2680,"key":"/library/metadata/2680","collectionTitle":"","collectionId":-1,"tmdbId":4543},{"name":"Heat","year":1995,"posterUrl":"/library/metadata/1080/thumb/1599308225","imdbId":"","language":"en","overview":"Obsessive master thief, Neil McCauley leads a top-notch crew on various daring heists throughout Los Angeles while determined detective, Vincent Hanna pursues him without rest. Each man recognizes and respects the ability and the dedication of the other even though they are aware their cat-and-mouse game may end in violence.","moviesInCollection":[],"ratingKey":1080,"key":"/library/metadata/1080","collectionTitle":"","collectionId":-1,"tmdbId":949},{"name":"Star Trek V The Final Frontier","year":1989,"posterUrl":"/library/metadata/2142/thumb/1599308668","imdbId":"","language":"en","overview":"Capt. Kirk and his crew must deal with Mr. Spock's half brother who kidnaps three diplomats and hijacks the Enterprise in his obsessive search for God.","moviesInCollection":[],"ratingKey":2142,"key":"/library/metadata/2142","collectionTitle":"","collectionId":-1,"tmdbId":172},{"name":"Tooth and Nail","year":2007,"posterUrl":"/library/metadata/2957/thumb/1599308983","imdbId":"","language":"en","overview":"In a post-apocalyptic world, a small group of survivors, who call themselves Foragers, plan to rebuild civilization from their headquarters in an empty hospital based in what is left of Philadelphia. But they're soon forced into a face-off war with the Rovers, another gang of survivors whom are a brutal gang of cannibals.","moviesInCollection":[],"ratingKey":2957,"key":"/library/metadata/2957","collectionTitle":"","collectionId":-1,"tmdbId":15425},{"name":"Toy Story 3","year":2010,"posterUrl":"/library/metadata/2969/thumb/1599308986","imdbId":"","language":"en","overview":"Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.","moviesInCollection":[],"ratingKey":2969,"key":"/library/metadata/2969","collectionTitle":"","collectionId":-1,"tmdbId":10193},{"name":"Ocean's Thirteen","year":2007,"posterUrl":"/library/metadata/1633/thumb/1599308448","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1633,"key":"/library/metadata/1633","collectionTitle":"","collectionId":-1,"tmdbId":298},{"name":"Drone Wars","year":2016,"posterUrl":"/library/metadata/785/thumb/1599308111","imdbId":"","language":"en","overview":"When drones arrive in a flash, slaughtering humanity and stripping the Earth of its resources, a small team of scientists hiding in Los Angeles works to expel the drone menace once and for all.","moviesInCollection":[],"ratingKey":785,"key":"/library/metadata/785","collectionTitle":"","collectionId":-1,"tmdbId":429524},{"name":"Get Hard","year":2015,"posterUrl":"/library/metadata/981/thumb/1599308186","imdbId":"","language":"en","overview":"When obscenely rich hedge-fund manager James is convicted of fraud and sentenced to a stretch in San Quentin, the judge gives him one month to get his affairs in order. Knowing that he won't survive more than a few minutes in prison on his own, James desperately turns to Darnell-- a black businessman who's never even had a parking ticket -- for help. As Darnell puts James through the wringer, both learn that they were wrong about many things, including each other.","moviesInCollection":[],"ratingKey":981,"key":"/library/metadata/981","collectionTitle":"","collectionId":-1,"tmdbId":257091},{"name":"Her","year":2014,"posterUrl":"/library/metadata/1100/thumb/1599308232","imdbId":"","language":"en","overview":"In the not so distant future, Theodore, a lonely writer purchases a newly developed operating system designed to meet the user's every needs. To Theodore's surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.","moviesInCollection":[],"ratingKey":1100,"key":"/library/metadata/1100","collectionTitle":"","collectionId":-1,"tmdbId":152601},{"name":"Free Solo","year":2018,"posterUrl":"/library/metadata/942/thumb/1599308171","imdbId":"","language":"en","overview":"Follow Alex Honnold as he attempts to become the first person to ever free solo climb Yosemite's 3,000 foot high El Capitan wall. With no ropes or safety gear, this would arguably be the greatest feat in rock climbing history.","moviesInCollection":[],"ratingKey":942,"key":"/library/metadata/942","collectionTitle":"","collectionId":-1,"tmdbId":515042},{"name":"The Hunchback of Notre Dame","year":1996,"posterUrl":"/library/metadata/2560/thumb/1599308821","imdbId":"","language":"en","overview":"When Quasimodo defies the evil Frollo and ventures out to the Festival of Fools, the cruel crowd jeers him. Rescued by fellow outcast the gypsy Esmeralda, Quasi soon finds himself battling to save the people and the city he loves.","moviesInCollection":[],"ratingKey":2560,"key":"/library/metadata/2560","collectionTitle":"","collectionId":-1,"tmdbId":10545},{"name":"A History of Violence","year":2005,"posterUrl":"/library/metadata/68/thumb/1599307849","imdbId":"","language":"en","overview":"An average family is thrust into the spotlight after the father commits a seemingly self-defense murder at his diner.","moviesInCollection":[],"ratingKey":68,"key":"/library/metadata/68","collectionTitle":"","collectionId":-1,"tmdbId":59},{"name":"Tyrannosaur","year":2011,"posterUrl":"/library/metadata/3031/thumb/1599309007","imdbId":"","language":"en","overview":"The story of Joseph a man plagued by violence and a rage that is driving him to self-destruction. As Joseph's life spirals into turmoil a chance of redemption appears in the form of Hannah, a Christian charity shop worker. Their relationship develops to reveal that Hannah is hiding a secret of her own with devastating results on both of their lives.","moviesInCollection":[],"ratingKey":3031,"key":"/library/metadata/3031","collectionTitle":"","collectionId":-1,"tmdbId":76543},{"name":"A Scanner Darkly","year":2006,"posterUrl":"/library/metadata/91/thumb/1599307858","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":91,"key":"/library/metadata/91","collectionTitle":"","collectionId":-1,"tmdbId":3509},{"name":"LEGO DC Super Heroes - Aquaman Rage Of Atlantis","year":2018,"posterUrl":"/library/metadata/1360/thumb/1599308328","imdbId":"","language":"en","overview":"Aquaman must battle foes in the air, on land and in the depths of the Seven Seas, along with some help from The Justice League, to save the day.","moviesInCollection":[],"ratingKey":1360,"key":"/library/metadata/1360","collectionTitle":"","collectionId":-1,"tmdbId":513736},{"name":"Peter Pan","year":1953,"posterUrl":"/library/metadata/1729/thumb/1599308490","imdbId":"","language":"en","overview":"Leaving the safety of their nursery behind, Wendy, Michael and John follow Peter Pan to a magical world where childhood lasts forever. But while in Neverland, the kids must face Captain Hook and foil his attempts to get rid of Peter for good.","moviesInCollection":[],"ratingKey":1729,"key":"/library/metadata/1729","collectionTitle":"","collectionId":-1,"tmdbId":10693},{"name":"Snow White and the Huntsman","year":2012,"posterUrl":"/library/metadata/2077/thumb/1599308639","imdbId":"","language":"en","overview":"After the Evil Queen marries the King, she performs a violent coup in which the King is murdered and his daughter, Snow White, is taken captive. Almost a decade later, a grown Snow White is still in the clutches of the Queen. In order to obtain immortality, The Evil Queen needs the heart of Snow White. After Snow escapes the castle, the Queen sends the Huntsman to find her in the Dark Forest.","moviesInCollection":[],"ratingKey":2077,"key":"/library/metadata/2077","collectionTitle":"","collectionId":-1,"tmdbId":58595},{"name":"The Lion King 1½","year":2004,"posterUrl":"/library/metadata/2639/thumb/1599308851","imdbId":"","language":"en","overview":"Timon the meerkat and Pumbaa the warthog are best pals and the unsung heroes of the African savanna. This prequel to the smash Disney animated adventure takes you back -- way back -- before Simba's adventure began. You'll find out all about Timon and Pumbaa and tag along as they search for the perfect home and attempt to raise a rambunctious lion cub.","moviesInCollection":[],"ratingKey":2639,"key":"/library/metadata/2639","collectionTitle":"","collectionId":-1,"tmdbId":11430},{"name":"30 Days of Night Dark Days","year":2010,"posterUrl":"/library/metadata/32/thumb/1599307838","imdbId":"","language":"en","overview":"After surviving the incidents in Barrow, Alaska, Stella Olemaun relocates to Los Angeles, where she intentionally attracts the attention of the local vampire population in order to avenge the death of her husband, Eben.","moviesInCollection":[],"ratingKey":32,"key":"/library/metadata/32","collectionTitle":"","collectionId":-1,"tmdbId":42941},{"name":"Little Italy","year":2018,"posterUrl":"/library/metadata/27358/thumb/1599309070","imdbId":"","language":"en","overview":"Former childhood pals Leo and Nikki are attracted to each other as adults—but will their feuding parents' rival pizzerias put a chill on their sizzling romance?","moviesInCollection":[],"ratingKey":27358,"key":"/library/metadata/27358","collectionTitle":"","collectionId":-1,"tmdbId":523773},{"name":"Angel Has Fallen","year":2019,"posterUrl":"/library/metadata/198/thumb/1599307900","imdbId":"","language":"en","overview":"After a treacherous attack, Secret Service agent Mike Banning is charged with attempting to assassinate President Trumbull. Chased by his own colleagues and the FBI, Banning begins a race against the clock to clear his name.","moviesInCollection":[],"ratingKey":198,"key":"/library/metadata/198","collectionTitle":"","collectionId":-1,"tmdbId":423204},{"name":"Boo! A Madea Halloween","year":2016,"posterUrl":"/library/metadata/399/thumb/1599307972","imdbId":"","language":"en","overview":"Madea winds up in the middle of mayhem when she spends a hilarious, haunted Halloween fending off killers, paranormal poltergeists, ghosts, ghouls, and zombies while keeping a watchful eye on a group of misbehaving teens.","moviesInCollection":[],"ratingKey":399,"key":"/library/metadata/399","collectionTitle":"","collectionId":-1,"tmdbId":380124},{"name":"Action Point","year":2018,"posterUrl":"/library/metadata/117/thumb/1599307868","imdbId":"","language":"en","overview":"A daredevil designs and operates his own theme park with his friends.","moviesInCollection":[],"ratingKey":117,"key":"/library/metadata/117","collectionTitle":"","collectionId":-1,"tmdbId":454283},{"name":"The Boy Who Cried Werewolf","year":2010,"posterUrl":"/library/metadata/2335/thumb/1599308736","imdbId":"","language":"en","overview":"A Californian family inherits a castle in Romania. This is especially exciting to the son, who is obsessed with monsters. And he is not disappointed.","moviesInCollection":[],"ratingKey":2335,"key":"/library/metadata/2335","collectionTitle":"","collectionId":-1,"tmdbId":48186},{"name":"Revolt","year":2017,"posterUrl":"/library/metadata/1898/thumb/1599308561","imdbId":"","language":"en","overview":"The story of humankind's last stand against a cataclysmic alien invasion. Set in the war-ravaged African countryside, a U.S. soldier and a French foreign aid worker team up to survive the alien onslaught. Their bond will be tested as they search for refuge across a crumbling world.","moviesInCollection":[],"ratingKey":1898,"key":"/library/metadata/1898","collectionTitle":"","collectionId":-1,"tmdbId":313943},{"name":"The Huntsman Winter's War","year":2016,"posterUrl":"/library/metadata/2569/thumb/1599308824","imdbId":"","language":"en","overview":"As two evil sisters prepare to conquer the land, two renegades—Eric the Huntsman, who aided Snow White in defeating Ravenna in Snowwhite and the Huntsman, and his forbidden lover, Sara—set out to stop them.","moviesInCollection":[],"ratingKey":2569,"key":"/library/metadata/2569","collectionTitle":"","collectionId":-1,"tmdbId":290595},{"name":"El Mariachi","year":1992,"posterUrl":"/library/metadata/811/thumb/1599308120","imdbId":"","language":"en","overview":"El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor, a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake el Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case.","moviesInCollection":[],"ratingKey":811,"key":"/library/metadata/811","collectionTitle":"","collectionId":-1,"tmdbId":9367},{"name":"The Rhythm Section","year":2020,"posterUrl":"/library/metadata/39709/thumb/1599309092","imdbId":"","language":"en","overview":"After the death of her family in an airplane crash on a flight that she was meant to be on, Stephanie Patrick discovers the crash was not an accident. She then seeks to uncover the truth by adapting the identity of an assassin to track down those responsible.","moviesInCollection":[],"ratingKey":39709,"key":"/library/metadata/39709","collectionTitle":"","collectionId":-1,"tmdbId":466622},{"name":"Blockers","year":2018,"posterUrl":"/library/metadata/385/thumb/1599307968","imdbId":"","language":"en","overview":"When three parents discover their daughters’ pact to lose their virginity at prom, they launch a covert one-night operation to stop the teens from sealing the deal.","moviesInCollection":[],"ratingKey":385,"key":"/library/metadata/385","collectionTitle":"","collectionId":-1,"tmdbId":437557},{"name":"Central Intelligence","year":2016,"posterUrl":"/library/metadata/490/thumb/1599308007","imdbId":"","language":"en","overview":"After he reunites with an old pal through Facebook, a mild-mannered accountant is lured into the world of international espionage.","moviesInCollection":[],"ratingKey":490,"key":"/library/metadata/490","collectionTitle":"","collectionId":-1,"tmdbId":302699},{"name":"Dead Snow","year":2009,"posterUrl":"/library/metadata/657/thumb/1599308065","imdbId":"","language":"en","overview":"Eight medical students on a ski trip to Norway discover that Hitler's horrors live on when they come face to face with a battalion of zombie Nazi soldiers intent on devouring anyone unfortunate enough to wander into the remote mountains where they were once sent to die.","moviesInCollection":[],"ratingKey":657,"key":"/library/metadata/657","collectionTitle":"","collectionId":-1,"tmdbId":14451},{"name":"Johnny English Strikes Again","year":2019,"posterUrl":"/library/metadata/1256/thumb/1599308291","imdbId":"","language":"en","overview":"Disaster strikes when a criminal mastermind reveals the identities of all active undercover agents in Britain. The secret service can now rely on only one man - Johnny English. Currently teaching at a minor prep school, Johnny springs back into action to find the mysterious hacker. For this mission to succeed, he’ll need all of his skills - what few he has - as the man with yesterday’s analogue methods faces off against tomorrow’s digital technology.","moviesInCollection":[],"ratingKey":1256,"key":"/library/metadata/1256","collectionTitle":"","collectionId":-1,"tmdbId":463272},{"name":"Dark Waters","year":2019,"posterUrl":"/library/metadata/640/thumb/1599308059","imdbId":"","language":"en","overview":"A tenacious attorney uncovers a dark secret that connects a growing number of unexplained deaths due to one of the world's largest corporations. In the process, he risks everything — his future, his family, and his own life — to expose the truth.","moviesInCollection":[],"ratingKey":640,"key":"/library/metadata/640","collectionTitle":"","collectionId":-1,"tmdbId":552178},{"name":"Toy Story 2","year":1999,"posterUrl":"/library/metadata/2968/thumb/1599308986","imdbId":"","language":"en","overview":"Andy heads off to Cowboy Camp, leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen, owner of Al's Toy Barn kidnaps Woody. Andy's toys mount a daring rescue mission, Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.","moviesInCollection":[],"ratingKey":2968,"key":"/library/metadata/2968","collectionTitle":"","collectionId":-1,"tmdbId":863},{"name":"First Orbit","year":2011,"posterUrl":"/library/metadata/906/thumb/1599308156","imdbId":"","language":"en","overview":"A real time recreation of Yuri Gagarin's pioneering first orbit, shot entirely in space from on board the International Space Station. The film combines this new footage with Gagarin's original mission audio and a new musical score by composer Philip Sheppard.","moviesInCollection":[],"ratingKey":906,"key":"/library/metadata/906","collectionTitle":"","collectionId":-1,"tmdbId":61409},{"name":"X-Men Days of Future Past","year":2014,"posterUrl":"/library/metadata/3176/thumb/1599309057","imdbId":"","language":"en","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 – to save our future.","moviesInCollection":[],"ratingKey":3176,"key":"/library/metadata/3176","collectionTitle":"","collectionId":-1,"tmdbId":127585},{"name":"Crocodile Dundee","year":1986,"posterUrl":"/library/metadata/603/thumb/1599308048","imdbId":"","language":"en","overview":"When a New York reporter plucks crocodile hunter Dundee from the Australian Outback for a visit to the Big Apple, it's a clash of cultures and a recipe for good-natured comedy as naïve Dundee negotiates the concrete jungle. Dundee proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.","moviesInCollection":[],"ratingKey":603,"key":"/library/metadata/603","collectionTitle":"","collectionId":-1,"tmdbId":9671},{"name":"Mud","year":2013,"posterUrl":"/library/metadata/1558/thumb/1599308415","imdbId":"","language":"en","overview":"Two boys find a fugitive hiding out on an island in the Mississippi River and form a pact to help him reunite with his lover and escape.","moviesInCollection":[],"ratingKey":1558,"key":"/library/metadata/1558","collectionTitle":"","collectionId":-1,"tmdbId":103731},{"name":"Drinking Buddies","year":2013,"posterUrl":"/library/metadata/780/thumb/1599308110","imdbId":"","language":"en","overview":"Weekend trips, office parties, late night conversations, drinking on the job, marriage pressure, biological clocks, holding eye contact a second too long… you know what makes the line between “friends” and “more than friends” really blurry? Beer.","moviesInCollection":[],"ratingKey":780,"key":"/library/metadata/780","collectionTitle":"","collectionId":-1,"tmdbId":172533},{"name":"The Job","year":2004,"posterUrl":"/library/metadata/2595/thumb/1599308834","imdbId":"","language":"en","overview":"CJ is a sexy, cold-blooded assassin who wants to quit the business. She agrees to carry out one last hit, but for the first time in her career as an assassin, she is unable to finish the job.","moviesInCollection":[],"ratingKey":2595,"key":"/library/metadata/2595","collectionTitle":"","collectionId":-1,"tmdbId":99987},{"name":"The Duel","year":2016,"posterUrl":"/library/metadata/2431/thumb/1599308771","imdbId":"","language":"en","overview":"A Texas Ranger investigates a series of unexplained deaths in a town called Helena.","moviesInCollection":[],"ratingKey":2431,"key":"/library/metadata/2431","collectionTitle":"","collectionId":-1,"tmdbId":333386},{"name":"Grace of My Heart","year":1996,"posterUrl":"/library/metadata/1023/thumb/1599308202","imdbId":"","language":"en","overview":"An aspiring singer, Denise Waverly/Edna Buxton, sacrifices her own singing career to write hit songs that launch the careers of other singers. The film follows her life from her first break, through the pain of rejection from the recording industry and a bad marriage, to her final triumph in realizing her dream to record her own hit album.","moviesInCollection":[],"ratingKey":1023,"key":"/library/metadata/1023","collectionTitle":"","collectionId":-1,"tmdbId":58985},{"name":"Fearless","year":2020,"posterUrl":"/library/metadata/47274/thumb/1599309177","imdbId":"","language":"en","overview":"A teen gamer is forced to level up to full-time babysitter when his favorite video game drops three superpowered infants from space into his backyard.","moviesInCollection":[],"ratingKey":47274,"key":"/library/metadata/47274","collectionTitle":"","collectionId":-1,"tmdbId":726664},{"name":"Drift","year":2013,"posterUrl":"/library/metadata/779/thumb/1599308109","imdbId":"","language":"en","overview":"In the 70s two brothers battle killer waves, conservative society and ruthless bikers to kick-start the modern surf industry.","moviesInCollection":[],"ratingKey":779,"key":"/library/metadata/779","collectionTitle":"","collectionId":-1,"tmdbId":137968},{"name":"Bereavement","year":2010,"posterUrl":"/library/metadata/41101/thumb/1599309125","imdbId":"","language":"en","overview":"In 1989, six year old Martin Bristoll was kidnapped from his backyard swing in Minersville Pennsylvania. Graham Sutter, a psychotic recluse, kept Martin imprisoned on his derelict pig farm, forcing him to witness and participate in unspeakable horrors. Chosen at random, his victim's screams were drowned out by the rural countryside. For five years, Martin's whereabouts have remained a mystery, until 17 year old Allison Miller comes to live with her Uncle, Jonathan. While exploring her new surroundings, Allison discovers things aren't quite right at the farmhouse down the road. Her curiosity disturbs a hornet's nest of evil and despair that once torn open, can never be closed.","moviesInCollection":[],"ratingKey":41101,"key":"/library/metadata/41101","collectionTitle":"","collectionId":-1,"tmdbId":55890},{"name":"Donnie Darko","year":2001,"posterUrl":"/library/metadata/735/thumb/1599308095","imdbId":"","language":"en","overview":"After narrowly escaping a bizarre accident, a troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes.","moviesInCollection":[],"ratingKey":735,"key":"/library/metadata/735","collectionTitle":"","collectionId":-1,"tmdbId":141},{"name":"The Taking of Pelham 1 2 3","year":2009,"posterUrl":"/library/metadata/2847/thumb/1599308944","imdbId":"","language":"en","overview":"Armed men hijack a New York City subway train, holding the passengers hostage in return for a ransom, and turning an ordinary day's work for dispatcher Walter Garber into a face-off with the mastermind behind the crime.","moviesInCollection":[],"ratingKey":2847,"key":"/library/metadata/2847","collectionTitle":"","collectionId":-1,"tmdbId":18487},{"name":"The Man with the Iron Heart","year":2017,"posterUrl":"/library/metadata/2671/thumb/1599308866","imdbId":"","language":"en","overview":"With the Third Reich is at his peak in 1942, the Czech resistance in London plans the most ambitious military operation of WWII – Anthropoid. Two young recruits are sent to Prague to assassinate the most ruthless Nazi leader – Reinhardt Heydrich – head of the SS, the Gestapo and the architect of the Final Solution.","moviesInCollection":[],"ratingKey":2671,"key":"/library/metadata/2671","collectionTitle":"","collectionId":-1,"tmdbId":339259},{"name":"War Room","year":2015,"posterUrl":"/library/metadata/3108/thumb/1599309033","imdbId":"","language":"en","overview":"The family-friendly movie explores the transformational role prayer plays in the lives of the Jordan family. Tony and Elizabeth Jordan, a middle-class couple who seemingly have it all – great jobs, a beautiful daughter, their dream home. But appearances can be deceiving. In reality, the Jordan’s marriage has become a war zone and their daughter is collateral damage. With the help of Miss Clara, an older, wiser woman, Elizabeth discovers she can start fighting for her family instead of against them. Through a newly energized faith, Elizabeth and Tony’s real enemy doesn’t have a prayer.","moviesInCollection":[],"ratingKey":3108,"key":"/library/metadata/3108","collectionTitle":"","collectionId":-1,"tmdbId":323272},{"name":"Final Fantasy The Spirits Within","year":2001,"posterUrl":"/library/metadata/894/thumb/1599308151","imdbId":"","language":"en","overview":"Led by a strange dream, scientist Aki Ross struggles to collect the eight spirits in the hope of creating a force powerful enough to protect the planet. With the aid of the Deep Eyes Squadron and her mentor, Dr. Sid, Aki must save the Earth from its darkest hate and unleash the spirits within.","moviesInCollection":[],"ratingKey":894,"key":"/library/metadata/894","collectionTitle":"","collectionId":-1,"tmdbId":2114},{"name":"Upstream Color","year":2013,"posterUrl":"/library/metadata/3063/thumb/1599309018","imdbId":"","language":"en","overview":"A man and woman are drawn together, entangled in the lifecycle of an ageless organism. Identity becomes an illusion as they struggle to assemble the loose fragments of wrecked lives.","moviesInCollection":[],"ratingKey":3063,"key":"/library/metadata/3063","collectionTitle":"","collectionId":-1,"tmdbId":145197},{"name":"The Atomic Cafe","year":1982,"posterUrl":"/library/metadata/2304/thumb/1599308726","imdbId":"","language":"en","overview":"A disturbing collection of 1940s and 1950s United States government-issued propaganda films designed to reassure Americans that the atomic bomb was not a threat to their safety.","moviesInCollection":[],"ratingKey":2304,"key":"/library/metadata/2304","collectionTitle":"","collectionId":-1,"tmdbId":26851},{"name":"Halloween","year":2018,"posterUrl":"/library/metadata/1045/thumb/1599308211","imdbId":"","language":"en","overview":"Laurie Strode comes to her final confrontation with Michael Myers, the masked figure who has haunted her since she narrowly escaped his killing spree on Halloween night four decades ago.","moviesInCollection":[],"ratingKey":1045,"key":"/library/metadata/1045","collectionTitle":"","collectionId":-1,"tmdbId":424139},{"name":"Jaws 3-D","year":1983,"posterUrl":"/library/metadata/1228/thumb/1599308281","imdbId":"","language":"en","overview":"This third film in the series follows a group of marine biologists attempting to capture a young great white shark that has wandered into Florida's Sea World Park. However, later it is discovered that the shark's 35-foot mother is also a guest at Sea World. What follows is the shark wreaking havoc on the visitors in the park.","moviesInCollection":[],"ratingKey":1228,"key":"/library/metadata/1228","collectionTitle":"","collectionId":-1,"tmdbId":17692},{"name":"Apocalypse Now","year":2001,"posterUrl":"/library/metadata/210/thumb/1599307904","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":210,"key":"/library/metadata/210","collectionTitle":"","collectionId":-1,"tmdbId":28},{"name":"Hell Fest","year":2018,"posterUrl":"/library/metadata/1083/thumb/1599308226","imdbId":"","language":"en","overview":"On Halloween night at a horror theme park, a costumed killer begins slaying innocent patrons who believe that it's all part of the festivities.","moviesInCollection":[],"ratingKey":1083,"key":"/library/metadata/1083","collectionTitle":"","collectionId":-1,"tmdbId":429476},{"name":"Dolittle","year":2020,"posterUrl":"/library/metadata/42265/thumb/1599309139","imdbId":"","language":"en","overview":"After losing his wife seven years earlier, the eccentric Dr. John Dolittle, famed doctor and veterinarian of Queen Victoria’s England, hermits himself away behind the high walls of Dolittle Manor with only his menagerie of exotic animals for company. But when the young queen falls gravely ill, a reluctant Dolittle is forced to set sail on an epic adventure to a mythical island in search of a cure, regaining his wit and courage as he crosses old adversaries and discovers wondrous creatures.","moviesInCollection":[],"ratingKey":42265,"key":"/library/metadata/42265","collectionTitle":"","collectionId":-1,"tmdbId":448119},{"name":"1985","year":2018,"posterUrl":"/library/metadata/18/thumb/1599307832","imdbId":"","language":"en","overview":"Having been gone for three years, closeted advertising executive Adrian returns to his Texas hometown and struggles to reveal his dire circumstances to his conservative family.","moviesInCollection":[],"ratingKey":18,"key":"/library/metadata/18","collectionTitle":"","collectionId":-1,"tmdbId":502220},{"name":"Halloween","year":2007,"posterUrl":"/library/metadata/1044/thumb/1599308210","imdbId":"","language":"en","overview":"After being committed for 17 years, Michael Myers, now a grown man and still very dangerous, escapes from the mental institution (where he was committed as a 10 year old) and he immediately returns to Haddonfield, where he wants to find his baby sister, Laurie. Anyone who crosses his path is in mortal danger","moviesInCollection":[],"ratingKey":1044,"key":"/library/metadata/1044","collectionTitle":"","collectionId":-1,"tmdbId":2082},{"name":"Cocoon","year":1985,"posterUrl":"/library/metadata/537/thumb/1599308024","imdbId":"","language":"en","overview":"When a group of trespassing seniors swim in a pool containing alien cocoons, they find themselves energized with youthful vigor.","moviesInCollection":[],"ratingKey":537,"key":"/library/metadata/537","collectionTitle":"","collectionId":-1,"tmdbId":10328},{"name":"Saturday the 14th","year":1981,"posterUrl":"/library/metadata/1959/thumb/1599308589","imdbId":"","language":"en","overview":"After his family moves to a new house, a young boy discovers a mysterious book that details a curse hanging over the date of Saturday the 14th. Opening the book releases a band of monsters into the house and the family must join together to save themselves and their neighborhood.","moviesInCollection":[],"ratingKey":1959,"key":"/library/metadata/1959","collectionTitle":"","collectionId":-1,"tmdbId":20472},{"name":"Bad Times at the El Royale","year":2018,"posterUrl":"/library/metadata/271/thumb/1599307926","imdbId":"","language":"en","overview":"Lake Tahoe, 1969. Seven strangers, each one with a secret to bury, meet at El Royale, a decadent motel with a dark past. In the course of a fateful night, everyone will have one last shot at redemption.","moviesInCollection":[],"ratingKey":271,"key":"/library/metadata/271","collectionTitle":"","collectionId":-1,"tmdbId":446021},{"name":"Klaus","year":2019,"posterUrl":"/library/metadata/1316/thumb/1599308312","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1316,"key":"/library/metadata/1316","collectionTitle":"","collectionId":-1,"tmdbId":508965},{"name":"The Road","year":2009,"posterUrl":"/library/metadata/2784/thumb/1599308916","imdbId":"","language":"en","overview":"A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones, and, when the snow falls it is gray. The sky is dark. Their destination is the warmer south, although they don't know what, if anything, awaits them there.","moviesInCollection":[],"ratingKey":2784,"key":"/library/metadata/2784","collectionTitle":"","collectionId":-1,"tmdbId":20766},{"name":"The Lorax","year":2012,"posterUrl":"/library/metadata/2651/thumb/1599308856","imdbId":"","language":"en","overview":"A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax, the grumpy yet charming creature who fights to protect his world.","moviesInCollection":[],"ratingKey":2651,"key":"/library/metadata/2651","collectionTitle":"","collectionId":-1,"tmdbId":73723},{"name":"Toys","year":1992,"posterUrl":"/library/metadata/2972/thumb/1599308987","imdbId":"","language":"en","overview":"Leslie Zevo is a fun-loving inventor who must save his late father's toy factory from his evil uncle, Leland, a war-mongering general who rules the operation with an iron fist and builds weapons disguised as toys.","moviesInCollection":[],"ratingKey":2972,"key":"/library/metadata/2972","collectionTitle":"","collectionId":-1,"tmdbId":11597},{"name":"Collateral Damage","year":2002,"posterUrl":"/library/metadata/548/thumb/1599308028","imdbId":"","language":"en","overview":"Firefighter Gordon Brewer is plunged into the complex and dangerous world of international terrorism after he loses his wife and child in a bombing credited to Claudio 'The Wolf' Perrini.","moviesInCollection":[],"ratingKey":548,"key":"/library/metadata/548","collectionTitle":"","collectionId":-1,"tmdbId":9884},{"name":"A Bridge Too Far","year":1977,"posterUrl":"/library/metadata/48/thumb/1599307843","imdbId":"","language":"en","overview":"Operation Market Garden, September 1944. The Allies attempt to capture several strategically important bridges in the Netherlands in the hope of breaking the German lines.","moviesInCollection":[],"ratingKey":48,"key":"/library/metadata/48","collectionTitle":"","collectionId":-1,"tmdbId":5902},{"name":"Jumanji The Next Level","year":2020,"posterUrl":"/library/metadata/1268/thumb/1599308296","imdbId":"","language":"en","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’s most dangerous game.","moviesInCollection":[],"ratingKey":1268,"key":"/library/metadata/1268","collectionTitle":"","collectionId":-1,"tmdbId":512200},{"name":"Jurassic Park","year":1993,"posterUrl":"/library/metadata/40875/thumb/1599309107","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":40875,"key":"/library/metadata/40875","collectionTitle":"","collectionId":-1,"tmdbId":329},{"name":"The Babysitter","year":2017,"posterUrl":"/library/metadata/48319/thumb/1600865847","imdbId":"","language":"en","overview":"When Cole stays up past his bedtime, he discovers that his hot babysitter is part of a Satanic cult that will stop at nothing to keep him quiet.","moviesInCollection":[],"ratingKey":48319,"key":"/library/metadata/48319","collectionTitle":"","collectionId":-1,"tmdbId":419479},{"name":"Indiana Jones and the Last Crusade","year":1989,"posterUrl":"/library/metadata/1188/thumb/1599308265","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1188,"key":"/library/metadata/1188","collectionTitle":"","collectionId":-1,"tmdbId":89},{"name":"The Realm","year":2018,"posterUrl":"/library/metadata/2774/thumb/1599308912","imdbId":"","language":"en","overview":"Manuel is a crooked politician who enjoys the lifestyle that kickbacks afford. He eats at fancy restaurants, parties with his friends on yachts, and provides a very luxurious lifestyle for his family. Manuel brazenly bribes, extorts, and pays off anyone who threatens to expose the activities of his inner circle. When he is singled out to take the fall for a case of fraudulent government contracts, rather than admit to any wrongdoing, Manuel decides to sell out his whole party in an effort to avoid jail time. It's a decision that puts many lives at risk.","moviesInCollection":[],"ratingKey":2774,"key":"/library/metadata/2774","collectionTitle":"","collectionId":-1,"tmdbId":517331},{"name":"War of the Worlds","year":2005,"posterUrl":"/library/metadata/3105/thumb/1599309032","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3105,"key":"/library/metadata/3105","collectionTitle":"","collectionId":-1,"tmdbId":74},{"name":"The Vikings","year":1958,"posterUrl":"/library/metadata/2886/thumb/1599308958","imdbId":"","language":"en","overview":"Viking half-brothers fight over a throne and a beautiful captive.","moviesInCollection":[],"ratingKey":2886,"key":"/library/metadata/2886","collectionTitle":"","collectionId":-1,"tmdbId":42661},{"name":"Halloween Resurrection","year":2002,"posterUrl":"/library/metadata/1052/thumb/1599308213","imdbId":"","language":"en","overview":"Serial Killer Michael Myers is not finished with Laurie Strode, and their rivalry finally comes to an end. But is this the last we see of Myers? Freddie Harris and Nora Winston are reality programmers at DangerTainment, and are planning to send a group of 6 thrill-seeking teenagers into the childhood home of Myers. Cameras are placed all over the house and no one can get out of the house... and then Michael arrives home!","moviesInCollection":[],"ratingKey":1052,"key":"/library/metadata/1052","collectionTitle":"","collectionId":-1,"tmdbId":11442},{"name":"Kronk's New Groove","year":2005,"posterUrl":"/library/metadata/1322/thumb/1599308315","imdbId":"","language":"en","overview":"Kronk, now chef and Head Delivery Boy of Mudka's Meat Hut, is fretting over the upcoming visit of his father. Kronk's father always disapproved of young Kronk's culinary interests and wished that Kronk instead would settle down with a wife and a large house on a hill.","moviesInCollection":[],"ratingKey":1322,"key":"/library/metadata/1322","collectionTitle":"","collectionId":-1,"tmdbId":13417},{"name":"The Naked Gun 2½ The Smell of Fear","year":1991,"posterUrl":"/library/metadata/2704/thumb/1599308881","imdbId":"","language":"en","overview":"Bumbling cop Frank Drebin is out to foil the big boys in the energy industry, who intend to suppress technology that will put them out of business.","moviesInCollection":[],"ratingKey":2704,"key":"/library/metadata/2704","collectionTitle":"","collectionId":-1,"tmdbId":37137},{"name":"Driving Miss Daisy","year":1989,"posterUrl":"/library/metadata/784/thumb/1599308111","imdbId":"","language":"en","overview":"The story of an old Jewish widow named Daisy Werthan and her relationship with her black chauffeur Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters in a time when those types of relationships where shunned upon. Oscar winning tragic comedy with a star-studded cast and based on a play of the same name by Alfred Uhry.","moviesInCollection":[],"ratingKey":784,"key":"/library/metadata/784","collectionTitle":"","collectionId":-1,"tmdbId":403},{"name":"Lady and the Tramp","year":2019,"posterUrl":"/library/metadata/1335/thumb/1599308319","imdbId":"","language":"en","overview":"The love story between a pampered Cocker Spaniel named Lady and a streetwise mongrel named Tramp. Lady finds herself out on the street after her owners have a baby and is saved from a pack by Tramp, who tries to show her to live her life footloose and collar-free.","moviesInCollection":[],"ratingKey":1335,"key":"/library/metadata/1335","collectionTitle":"","collectionId":-1,"tmdbId":512895},{"name":"Star Trek III The Search for Spock","year":1984,"posterUrl":"/library/metadata/2136/thumb/1599308665","imdbId":"","language":"en","overview":"Admiral Kirk and his bridge crew risk their careers stealing the decommissioned Enterprise to return to the restricted Genesis planet to recover Spock's body.","moviesInCollection":[],"ratingKey":2136,"key":"/library/metadata/2136","collectionTitle":"","collectionId":-1,"tmdbId":157},{"name":"Muppets from Space","year":1999,"posterUrl":"/library/metadata/1568/thumb/1599308419","imdbId":"","language":"en","overview":"When Gonzo's breakfast cereal tells him that he's the descendant of aliens from another planet, his attempts at extraterrestrial communication get him kidnapped by a secret government agency, prompting the Muppets to spring into action. It's hard to believe Gonzo's story at first, but Kermit and friends soon find themselves on an epic journey into outer space filled with plenty of intergalactic misadventures.","moviesInCollection":[],"ratingKey":1568,"key":"/library/metadata/1568","collectionTitle":"","collectionId":-1,"tmdbId":10208},{"name":"The 1517 to Paris","year":2018,"posterUrl":"/library/metadata/2272/thumb/1599308715","imdbId":"","language":"en","overview":"In August 2015, an ISIS terrorist boarded train #9364 from Brussels to Paris. Armed with an AK-47 and enough ammo to kill more than 500 people, the terrorist might have succeeded except for three American friends who refused to give in to fear. One was a college student, one was a martial arts enthusiast and airman first class in the U.S. Air Force, and the other was a member of the Oregon National Guard, and all three pals proved fearless as they charged and ultimately overpowered the gunman after he emerged from a bathroom armed and ready to kill.","moviesInCollection":[],"ratingKey":2272,"key":"/library/metadata/2272","collectionTitle":"","collectionId":-1,"tmdbId":453201},{"name":"As Good as It Gets","year":1997,"posterUrl":"/library/metadata/227/thumb/1599307911","imdbId":"","language":"en","overview":"New York City. Melvin Udall, a cranky, bigoted, obsessive-compulsive writer, finds his life turned upside down when neighboring gay artist Simon is hospitalized and his dog is entrusted to Melvin. In addition, Carol, the only waitress who will tolerate him, must leave work to care for her sick son, making it impossible for Melvin to eat breakfast.","moviesInCollection":[],"ratingKey":227,"key":"/library/metadata/227","collectionTitle":"","collectionId":-1,"tmdbId":2898},{"name":"The Rock","year":1996,"posterUrl":"/library/metadata/2786/thumb/1599308917","imdbId":"","language":"en","overview":"FBI chemical warfare expert Stanley Goodspeed is sent on an urgent mission with a former British spy, John Patrick Mason, to stop Gen. Francis X. Hummel from launching chemical weapons on Alcatraz Island into San Francisco. Gen. Hummel demands $100 million in war reparations to be paid to the families of slain servicemen who died on covert operations. After their SEAL team is wiped out, Stanley and John deal with the soldiers on their own.","moviesInCollection":[],"ratingKey":2786,"key":"/library/metadata/2786","collectionTitle":"","collectionId":-1,"tmdbId":9802},{"name":"Starship Troopers Invasion","year":2012,"posterUrl":"/library/metadata/2161/thumb/1599308675","imdbId":"","language":"en","overview":"A distant Federation outpost Fort Casey comes under attack by bugs. The team on the fast attack ship Alesia is assigned to help the Starship John A. Warden stationed in Fort Casey evacuate along with the survivors and bring military intelligence safely back to Earth. Carl Jenkins, now ministry of Paranormal Warfare, takes the starship on a clandestine mission before its rendezvous with the Alesia and goes missing in the nebula. Now, the battle-hardened troopers are charged with a rescue mission that may lead to a much more sinister consequence than they ever could have imagined....","moviesInCollection":[],"ratingKey":2161,"key":"/library/metadata/2161","collectionTitle":"","collectionId":-1,"tmdbId":114478},{"name":"Road to Perdition","year":2002,"posterUrl":"/library/metadata/1914/thumb/1599308569","imdbId":"","language":"en","overview":"Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.","moviesInCollection":[],"ratingKey":1914,"key":"/library/metadata/1914","collectionTitle":"","collectionId":-1,"tmdbId":4147},{"name":"Sorry to Bother You","year":2018,"posterUrl":"/library/metadata/2092/thumb/1599308646","imdbId":"","language":"en","overview":"In an alternate present-day version of Oakland, black telemarketer Cassius Green discovers a magical key to professional success – which propels him into a macabre universe.","moviesInCollection":[],"ratingKey":2092,"key":"/library/metadata/2092","collectionTitle":"","collectionId":-1,"tmdbId":424781},{"name":"Avatar","year":2009,"posterUrl":"/library/metadata/244/thumb/1599307918","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":244,"key":"/library/metadata/244","collectionTitle":"","collectionId":-1,"tmdbId":19995},{"name":"The Gunman","year":2015,"posterUrl":"/library/metadata/2526/thumb/1599308808","imdbId":"","language":"en","overview":"Eight years after fleeing the Congo following his assassination of that country's minister of mining, former assassin Jim Terrier is back, suffering from PTSD and digging wells to atone for his violent past. After an attempt is made on his life, Terrier flies to London to find out who wants him dead -- and why. Terrier's search leads him to a reunion with Annie, a woman he once loved, who is now married to an oily businessman with dealings in Africa.","moviesInCollection":[],"ratingKey":2526,"key":"/library/metadata/2526","collectionTitle":"","collectionId":-1,"tmdbId":266396},{"name":"Stealth","year":2005,"posterUrl":"/library/metadata/2164/thumb/1599308677","imdbId":"","language":"en","overview":"Deeply ensconced in a top-secret military program, three pilots struggle to bring an artificial intelligence program under control ... before it initiates the next world war.","moviesInCollection":[],"ratingKey":2164,"key":"/library/metadata/2164","collectionTitle":"","collectionId":-1,"tmdbId":10048},{"name":"Crash","year":2005,"posterUrl":"/library/metadata/587/thumb/1599308042","imdbId":"","language":"en","overview":"In post-Sept. 11 Los Angeles, tensions erupt when the lives of a Brentwood housewife, her district attorney husband, a Persian shopkeeper, two cops, a pair of carjackers and a Korean couple converge during a 36-hour period.","moviesInCollection":[],"ratingKey":587,"key":"/library/metadata/587","collectionTitle":"","collectionId":-1,"tmdbId":1640},{"name":"The Man from U.N.C.L.E.","year":2015,"posterUrl":"/library/metadata/2664/thumb/1599308862","imdbId":"","language":"en","overview":"At the height of the Cold War, a mysterious criminal organization plans to use nuclear weapons and technology to upset the fragile balance of power between the United States and Soviet Union. CIA agent Napoleon Solo and KGB agent Illya Kuryakin are forced to put aside their hostilities and work together to stop the evildoers in their tracks. The duo's only lead is the daughter of a missing German scientist, whom they must find soon to prevent a global catastrophe.","moviesInCollection":[],"ratingKey":2664,"key":"/library/metadata/2664","collectionTitle":"","collectionId":-1,"tmdbId":203801},{"name":"Yu-Gi-Oh! The Dark Side of Dimensions","year":2017,"posterUrl":"/library/metadata/3196/thumb/1599309063","imdbId":"","language":"en","overview":"Yugi and Kaiba have a special duel that transcends dimensions.","moviesInCollection":[],"ratingKey":3196,"key":"/library/metadata/3196","collectionTitle":"","collectionId":-1,"tmdbId":366170},{"name":"The Rover","year":2014,"posterUrl":"/library/metadata/2789/thumb/1599308918","imdbId":"","language":"en","overview":"10 years after a global economic collapse, a hardened loner pursues the men who stole his car through the lawless wasteland of the Australian outback, aided by the brother of one of the thieves.","moviesInCollection":[],"ratingKey":2789,"key":"/library/metadata/2789","collectionTitle":"","collectionId":-1,"tmdbId":157845},{"name":"Inside Man","year":2006,"posterUrl":"/library/metadata/1195/thumb/1599308268","imdbId":"","language":"en","overview":"When an armed, masked gang enter a Manhattan bank, lock the doors and take hostages, the detective assigned to effect their release enters negotiations preoccupied with corruption charges he is facing.","moviesInCollection":[],"ratingKey":1195,"key":"/library/metadata/1195","collectionTitle":"","collectionId":-1,"tmdbId":388},{"name":"Batman Mask of the Phantasm","year":1993,"posterUrl":"/library/metadata/295/thumb/1599307935","imdbId":"","language":"en","overview":"Andrea Beaumont strolls back into town, rekindling an old romance with Bruce Wayne. At the same time, Batman is mistaken for a masked vigilante assassin who has begun systematically eliminating Gotham's crime bosses. Now on the run, Batman must solve the mystery, while navigating his relationship with Andrea.","moviesInCollection":[],"ratingKey":295,"key":"/library/metadata/295","collectionTitle":"","collectionId":-1,"tmdbId":14919},{"name":"Street Fighter","year":1994,"posterUrl":"/library/metadata/2176/thumb/1599308681","imdbId":"","language":"en","overview":"Col. Guile and various other martial arts heroes fight against the tyranny of Dictator M. Bison and his cohorts.","moviesInCollection":[],"ratingKey":2176,"key":"/library/metadata/2176","collectionTitle":"","collectionId":-1,"tmdbId":11667},{"name":"War of the Worlds 2 The Next Wave","year":2008,"posterUrl":"/library/metadata/3106/thumb/1599309033","imdbId":"","language":"en","overview":"Two years after the Martian invasion, George Herbert's worst fears are realized: The Aliens have returned. As a second wave of Martian walkers lay waste to what's left of Earth, an alliance of military forces prepares a daring attack on the Red Planet itself. Once again, the future of mankind hangs in the balance.","moviesInCollection":[],"ratingKey":3106,"key":"/library/metadata/3106","collectionTitle":"","collectionId":-1,"tmdbId":16268},{"name":"Stripes","year":1981,"posterUrl":"/library/metadata/2182/thumb/1599308683","imdbId":"","language":"en","overview":"John Winger, an indolent sad sack in his 30s, impulsively joins the U.S. Army after losing his job, his girlfriend and his apartment.","moviesInCollection":[],"ratingKey":2182,"key":"/library/metadata/2182","collectionTitle":"","collectionId":-1,"tmdbId":10890},{"name":"The Hurt Locker","year":2009,"posterUrl":"/library/metadata/2572/thumb/1599308825","imdbId":"","language":"en","overview":"Forced to play a dangerous game of cat-and-mouse in the chaos of war, an elite Army bomb squad unit must come together in a city where everyone is a potential enemy and every object could be a deadly bomb.","moviesInCollection":[],"ratingKey":2572,"key":"/library/metadata/2572","collectionTitle":"","collectionId":-1,"tmdbId":12162},{"name":"End of Watch","year":2012,"posterUrl":"/library/metadata/820/thumb/1599308123","imdbId":"","language":"en","overview":"Two young officers are marked for death after confiscating a small cache of money and firearms from the members of a notorious cartel during a routine traffic stop.","moviesInCollection":[],"ratingKey":820,"key":"/library/metadata/820","collectionTitle":"","collectionId":-1,"tmdbId":77016},{"name":"Lady and the Tramp","year":1955,"posterUrl":"/library/metadata/1334/thumb/1599308319","imdbId":"","language":"en","overview":"Lady, a golden cocker spaniel, meets up with a mongrel dog who calls himself the Tramp. He is obviously from the wrong side of town, but happenings at Lady's home make her decide to travel with him for a while.","moviesInCollection":[],"ratingKey":1334,"key":"/library/metadata/1334","collectionTitle":"","collectionId":-1,"tmdbId":10340},{"name":"The House with a Clock in Its Walls","year":2018,"posterUrl":"/library/metadata/2555/thumb/1599308819","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2555,"key":"/library/metadata/2555","collectionTitle":"","collectionId":-1,"tmdbId":463821},{"name":"At First Light","year":2018,"posterUrl":"/library/metadata/235/thumb/1599307913","imdbId":"","language":"en","overview":"A high school senior, Alex Lainey, has an encounter with mysterious lights that appear over her small town. She soon develops dangerous, supernatural abilities and turns to her childhood friend Sean Terrel. The authorities target them and a chase ensues as officials try to discover the truth behind Alex's transformation.","moviesInCollection":[],"ratingKey":235,"key":"/library/metadata/235","collectionTitle":"","collectionId":-1,"tmdbId":470894},{"name":"2012","year":2009,"posterUrl":"/library/metadata/23/thumb/1599307835","imdbId":"","language":"en","overview":"Dr. Adrian Helmsley, part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms, learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population, the entire race is doomed. Meanwhile, writer Jackson Curtis stumbles on the same information. While the world's leaders race to build \"arks\" to escape the impending cataclysm, Curtis struggles to find a way to save his family. Meanwhile, volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.","moviesInCollection":[],"ratingKey":23,"key":"/library/metadata/23","collectionTitle":"","collectionId":-1,"tmdbId":14161},{"name":"Exodus Gods and Kings","year":2014,"posterUrl":"/library/metadata/848/thumb/1599308134","imdbId":"","language":"en","overview":"The defiant leader Moses rises up against the Egyptian Pharaoh Ramses, setting 400,000 slaves on a monumental journey of escape from Egypt and its terrifying cycle of deadly plagues.","moviesInCollection":[],"ratingKey":848,"key":"/library/metadata/848","collectionTitle":"","collectionId":-1,"tmdbId":147441},{"name":"Sinister","year":2012,"posterUrl":"/library/metadata/2045/thumb/1599308625","imdbId":"","language":"en","overview":"Found footage helps a true-crime novelist realize how and why a family was murdered in his new home, though his discoveries put his entire family in the path of a supernatural entity.","moviesInCollection":[],"ratingKey":2045,"key":"/library/metadata/2045","collectionTitle":"","collectionId":-1,"tmdbId":82507},{"name":"Bolt","year":2008,"posterUrl":"/library/metadata/396/thumb/1599307971","imdbId":"","language":"en","overview":"Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks it's real. After he's accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt must harness all his \"super powers\" to find a way home.","moviesInCollection":[],"ratingKey":396,"key":"/library/metadata/396","collectionTitle":"","collectionId":-1,"tmdbId":13053},{"name":"Battlefield Earth","year":2000,"posterUrl":"/library/metadata/313/thumb/1599307941","imdbId":"","language":"en","overview":"In the year 3000, man is no match for the Psychlos, a greedy, manipulative race of aliens on a quest for ultimate profit. Led by the powerful Terl, the Psychlos are stripping Earth clean of its natural resources, using the broken remnants of humanity as slaves. What is left of the human race has descended into a near primitive state. After being captured, it is up to Tyler to save mankind.","moviesInCollection":[],"ratingKey":313,"key":"/library/metadata/313","collectionTitle":"","collectionId":-1,"tmdbId":5491},{"name":"The Kid Who Would Be King","year":2019,"posterUrl":"/library/metadata/2603/thumb/1599308837","imdbId":"","language":"en","overview":"Old-school magic meets the modern world when young Alex stumbles upon the mythical sword Excalibur. He soon unites his friends and enemies, and they become knights who join forces with the legendary wizard Merlin. Together, they must save mankind from the wicked enchantress Morgana and her army of supernatural warriors.","moviesInCollection":[],"ratingKey":2603,"key":"/library/metadata/2603","collectionTitle":"","collectionId":-1,"tmdbId":454294},{"name":"Boogeyman","year":2005,"posterUrl":"/library/metadata/400/thumb/1599307973","imdbId":"","language":"en","overview":"Every culture has one – the horrible monster fueling young children's nightmares. But for Tim, the Boogeyman still lives in his memories as a creature that devoured his father 16 years earlier. Is the Boogeyman real? Or did Tim make him up to explain why his father abandoned his family?","moviesInCollection":[],"ratingKey":400,"key":"/library/metadata/400","collectionTitle":"","collectionId":-1,"tmdbId":8968},{"name":"Death Race Beyond Anarchy","year":2018,"posterUrl":"/library/metadata/671/thumb/1599308070","imdbId":"","language":"en","overview":"Black Ops specialist Connor Gibson infiltrates a maximum security prison to take down legendary driver Frankenstein in a violent and brutal car race.","moviesInCollection":[],"ratingKey":671,"key":"/library/metadata/671","collectionTitle":"","collectionId":-1,"tmdbId":401478},{"name":"Jojo Rabbit","year":2020,"posterUrl":"/library/metadata/1257/thumb/1599308291","imdbId":"","language":"en","overview":"A World War II satire that follows a lonely German boy whose world view is turned upside down when he discovers his single mother is hiding a young Jewish girl in their attic. Aided only by his idiotic imaginary friend, Adolf Hitler, Jojo must confront his blind nationalism.","moviesInCollection":[],"ratingKey":1257,"key":"/library/metadata/1257","collectionTitle":"","collectionId":-1,"tmdbId":515001},{"name":"Star Trek II The Wrath of Khan","year":1982,"posterUrl":"/library/metadata/2135/thumb/1599308665","imdbId":"","language":"en","overview":"Admiral James T. Kirk is feeling old; the prospect of accompanying his old ship the Enterprise on a two week cadet cruise is not making him feel any younger. But the training cruise becomes a life or death struggle when Khan escapes from years of exile and captures the power of creation itself.","moviesInCollection":[],"ratingKey":2135,"key":"/library/metadata/2135","collectionTitle":"","collectionId":-1,"tmdbId":154},{"name":"Joy Ride 3","year":2014,"posterUrl":"/library/metadata/47273/thumb/1599309176","imdbId":"","language":"en","overview":"Rusty Nail is back on the road again looking to punish injustice at every turn - and this time it's with a group of hotheaded street racers on their way to the Road Rally 1000. As they drive through a desolate shortcut on the way to the race, an encounter with Rusty turns sour and soon he is tracking, teasing and torturing them until the end of the road.","moviesInCollection":[],"ratingKey":47273,"key":"/library/metadata/47273","collectionTitle":"","collectionId":-1,"tmdbId":259074},{"name":"How Do You Know","year":2010,"posterUrl":"/library/metadata/1140/thumb/1599308247","imdbId":"","language":"en","overview":"After being cut from the USA softball team and feeling a bit past her prime, Lisa finds herself evaluating her life and in the middle of a love triangle, as a corporate guy in crisis competes with her current, baseball-playing beau.","moviesInCollection":[],"ratingKey":1140,"key":"/library/metadata/1140","collectionTitle":"","collectionId":-1,"tmdbId":42888},{"name":"How to Train Your Dragon The Hidden World","year":2019,"posterUrl":"/library/metadata/1145/thumb/1599308249","imdbId":"","language":"en","overview":"As Hiccup fulfills his dream of creating a peaceful dragon utopia, Toothless’ discovery of an untamed, elusive mate draws the Night Fury away. When danger mounts at home and Hiccup’s reign as village chief is tested, both dragon and rider must make impossible decisions to save their kind.","moviesInCollection":[],"ratingKey":1145,"key":"/library/metadata/1145","collectionTitle":"","collectionId":-1,"tmdbId":166428},{"name":"Police Academy 6 City Under Siege","year":1989,"posterUrl":"/library/metadata/1783/thumb/1599308511","imdbId":"","language":"en","overview":"Our favourite police men are called together to deal with a gang who rob banks and jewelers. Using their various talents as well as their extraordinary luck, the crooks stand no chance against our men and women wearing blue..","moviesInCollection":[],"ratingKey":1783,"key":"/library/metadata/1783","collectionTitle":"","collectionId":-1,"tmdbId":11895},{"name":"Proud Mary","year":2018,"posterUrl":"/library/metadata/1815/thumb/1599308525","imdbId":"","language":"en","overview":"Mary is a hit woman working for an organized crime family in Boston, whose life is completely turned around when she meets a young boy whose path she crosses when a professional hit goes bad.","moviesInCollection":[],"ratingKey":1815,"key":"/library/metadata/1815","collectionTitle":"","collectionId":-1,"tmdbId":442064},{"name":"The Highwaymen","year":2019,"posterUrl":"/library/metadata/2537/thumb/1599308813","imdbId":"","language":"en","overview":"In 1934, Frank Hamer and Manny Gault, two former Texas Rangers, are commissioned to put an end to the wave of vicious crimes perpetrated by Bonnie Parker and Clyde Barrow, a notorious duo of infamous robbers and cold-blooded killers who nevertheless are worshiped by the public.","moviesInCollection":[],"ratingKey":2537,"key":"/library/metadata/2537","collectionTitle":"","collectionId":-1,"tmdbId":500682},{"name":"Primer","year":2004,"posterUrl":"/library/metadata/1808/thumb/1599308522","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1808,"key":"/library/metadata/1808","collectionTitle":"","collectionId":-1,"tmdbId":14337},{"name":"Barbershop","year":2002,"posterUrl":"/library/metadata/276/thumb/1599307928","imdbId":"","language":"en","overview":"A day in the life of a barbershop on the south side of Chicago. Calvin, who inherited the struggling business from his deceased father, views the shop as nothing but a burden and waste of his time. After selling the shop to a local loan shark, Calvin slowly begins to see his father's vision and legacy and struggles with the notion that he just sold it out.","moviesInCollection":[],"ratingKey":276,"key":"/library/metadata/276","collectionTitle":"","collectionId":-1,"tmdbId":10611},{"name":"The Insider","year":1999,"posterUrl":"/library/metadata/2584/thumb/1599308830","imdbId":"","language":"en","overview":"Tells the true story of a 60 Minutes television series exposé of the tobacco industry, as seen through the eyes of a real tobacco executive, Jeffrey Wigand.","moviesInCollection":[],"ratingKey":2584,"key":"/library/metadata/2584","collectionTitle":"","collectionId":-1,"tmdbId":9008},{"name":"Primal Fear","year":1996,"posterUrl":"/library/metadata/1807/thumb/1599308522","imdbId":"","language":"en","overview":"An arrogant, high-powered attorney takes on the case of a poor altar boy found running away from the scene of the grisly murder of the bishop who has taken him in. The case gets a lot more complex when the accused reveals that there may or may not have been a third person in the room. The intensity builds when a surprise twist alters everyone's perception of the crime.","moviesInCollection":[],"ratingKey":1807,"key":"/library/metadata/1807","collectionTitle":"","collectionId":-1,"tmdbId":1592},{"name":"Joy Ride","year":2001,"posterUrl":"/library/metadata/43702/thumb/1599309146","imdbId":"","language":"en","overview":"Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.","moviesInCollection":[],"ratingKey":43702,"key":"/library/metadata/43702","collectionTitle":"","collectionId":-1,"tmdbId":10866},{"name":"Pitch Black","year":2000,"posterUrl":"/library/metadata/1750/thumb/1599308498","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1750,"key":"/library/metadata/1750","collectionTitle":"","collectionId":-1,"tmdbId":2787},{"name":"The Scorpion King","year":2002,"posterUrl":"/library/metadata/2798/thumb/1599308923","imdbId":"","language":"en","overview":"In ancient Egypt, peasant Mathayus is hired to exact revenge on the powerful Memnon and the sorceress Cassandra, who are ready to overtake Balthazar's village. Amid betrayals, thieves, abductions and more, Mathayus strives to bring justice to his complicated world.","moviesInCollection":[],"ratingKey":2798,"key":"/library/metadata/2798","collectionTitle":"","collectionId":-1,"tmdbId":9334},{"name":"Cannonball Run II","year":1984,"posterUrl":"/library/metadata/463/thumb/1599307997","imdbId":"","language":"en","overview":"The original characters from the first Cannonball Run movie compete in an illegal race across the country once more in various cars and trucks.","moviesInCollection":[],"ratingKey":463,"key":"/library/metadata/463","collectionTitle":"","collectionId":-1,"tmdbId":11950},{"name":"The Monolith Monsters","year":1957,"posterUrl":"/library/metadata/2690/thumb/1599308873","imdbId":"","language":"en","overview":"Rocks from a meteor which grow when in contact with water threaten a sleepy Southwestern desert community.","moviesInCollection":[],"ratingKey":2690,"key":"/library/metadata/2690","collectionTitle":"","collectionId":-1,"tmdbId":52196},{"name":"Logan","year":2017,"posterUrl":"/library/metadata/1406/thumb/1599308344","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1406,"key":"/library/metadata/1406","collectionTitle":"","collectionId":-1,"tmdbId":263115},{"name":"The Sandlot","year":1993,"posterUrl":"/library/metadata/2793/thumb/1599308921","imdbId":"","language":"en","overview":"In the summer of 1962, a new kid in town is taken under the wing of a young baseball prodigy and his rowdy team, resulting in many adventures.","moviesInCollection":[],"ratingKey":2793,"key":"/library/metadata/2793","collectionTitle":"","collectionId":-1,"tmdbId":11528},{"name":"Sleepy Hollow","year":1999,"posterUrl":"/library/metadata/2058/thumb/1599308631","imdbId":"","language":"en","overview":"New York detective Ichabod Crane is sent to Sleepy Hollow to investigate a series of mysterious deaths in which the victims are found beheaded. But the locals believe the culprit to be none other than the ghost of the legendary Headless Horseman.","moviesInCollection":[],"ratingKey":2058,"key":"/library/metadata/2058","collectionTitle":"","collectionId":-1,"tmdbId":2668},{"name":"The Long Riders","year":1980,"posterUrl":"/library/metadata/2649/thumb/1599308855","imdbId":"","language":"en","overview":"The origins, exploits and the ultimate fate of the James gang is told in a sympathetic portrayal of the bank robbers made up of brothers who begin their legendary bank raids because of revenge.","moviesInCollection":[],"ratingKey":2649,"key":"/library/metadata/2649","collectionTitle":"","collectionId":-1,"tmdbId":14729},{"name":"Matilda","year":1996,"posterUrl":"/library/metadata/1470/thumb/1599308375","imdbId":"","language":"en","overview":"An extraordinarily intelligent young girl from a cruel and uncaring family discovers she possesses telekinetic powers and is sent off to a school headed by a tyrannical principal.","moviesInCollection":[],"ratingKey":1470,"key":"/library/metadata/1470","collectionTitle":"","collectionId":-1,"tmdbId":10830},{"name":"The Dirty Dozen Next Mission","year":1985,"posterUrl":"/library/metadata/2424/thumb/1599308769","imdbId":"","language":"en","overview":"Major Reisman is \"volunteered\" to lead another mission using convicted army soldiers, sentenced to either death or long prison terms. This time their mission is to kill a Nazi general who plans to assassinate Hitler.","moviesInCollection":[],"ratingKey":2424,"key":"/library/metadata/2424","collectionTitle":"","collectionId":-1,"tmdbId":36571},{"name":"2010","year":1984,"posterUrl":"/library/metadata/22/thumb/1599307834","imdbId":"","language":"en","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 it's sole known survivor, the homicidal computer HAL.","moviesInCollection":[],"ratingKey":22,"key":"/library/metadata/22","collectionTitle":"","collectionId":-1,"tmdbId":4437},{"name":"Unsubscribe","year":2020,"posterUrl":"/library/metadata/45817/thumb/1599309149","imdbId":"","language":"en","overview":"Five YouTubers join an online video call and find themselves haunted and hunted by a mysterious internet troll.","moviesInCollection":[],"ratingKey":45817,"key":"/library/metadata/45817","collectionTitle":"","collectionId":-1,"tmdbId":715762},{"name":"Kick-Ass","year":2010,"posterUrl":"/library/metadata/1293/thumb/1599308304","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1293,"key":"/library/metadata/1293","collectionTitle":"","collectionId":-1,"tmdbId":23483},{"name":"Boyz n the Hood","year":1991,"posterUrl":"/library/metadata/411/thumb/1599307976","imdbId":"","language":"en","overview":"Boyz n the Hood is the popular and successful film and social criticism from John Singleton about the conditions in South Central Los Angeles where teenagers are involved in gun fights and drug dealing on a daily basis.","moviesInCollection":[],"ratingKey":411,"key":"/library/metadata/411","collectionTitle":"","collectionId":-1,"tmdbId":650},{"name":"Edward Scissorhands","year":1990,"posterUrl":"/library/metadata/807/thumb/1599308119","imdbId":"","language":"en","overview":"A small suburban town receives a visit from a castaway unfinished science experiment named Edward.","moviesInCollection":[],"ratingKey":807,"key":"/library/metadata/807","collectionTitle":"","collectionId":-1,"tmdbId":162},{"name":"Solitary Man","year":2009,"posterUrl":"/library/metadata/2087/thumb/1599308643","imdbId":"","language":"en","overview":"A car magnate watches his personal and professional life hit the skids because of his business and romantic indiscretions.","moviesInCollection":[],"ratingKey":2087,"key":"/library/metadata/2087","collectionTitle":"","collectionId":-1,"tmdbId":36691},{"name":"The Assignment","year":2016,"posterUrl":"/library/metadata/2302/thumb/1599308725","imdbId":"","language":"en","overview":"Ace assassin Frank Kitchen is double crossed by gangsters and falls into the hands of rogue surgeon known as The Doctor who turns him into a woman. The hitman, now a hitwoman, sets out for revenge, aided by a nurse named Johnnie who also has secrets.","moviesInCollection":[],"ratingKey":2302,"key":"/library/metadata/2302","collectionTitle":"","collectionId":-1,"tmdbId":399173},{"name":"Criminal Activities","year":2016,"posterUrl":"/library/metadata/596/thumb/1599308046","imdbId":"","language":"en","overview":"Four young men make a risky investment together that gets them into trouble with the mob.","moviesInCollection":[],"ratingKey":596,"key":"/library/metadata/596","collectionTitle":"","collectionId":-1,"tmdbId":334527},{"name":"Boiler Room","year":2000,"posterUrl":"/library/metadata/395/thumb/1599307971","imdbId":"","language":"en","overview":"A college dropout gets a job as a broker for a suburban investment firm and is on the fast track to success—but the job might not be as legitimate as it sounds.","moviesInCollection":[],"ratingKey":395,"key":"/library/metadata/395","collectionTitle":"","collectionId":-1,"tmdbId":14181},{"name":"A Nightmare on Elm Street 3 Dream Warriors","year":1987,"posterUrl":"/library/metadata/82/thumb/1599307854","imdbId":"","language":"en","overview":"It's been many years since Freddy Krueger's first victim, Nancy, came face-to-face with Freddy and his sadistic, evil ways. Now, Nancy's all grown up; she's put her frightening nightmares behind her and is helping teens cope with their dreams. Too bad Freddy's decided to herald his return by invading the kids' dreams and scaring them into committing suicide.","moviesInCollection":[],"ratingKey":82,"key":"/library/metadata/82","collectionTitle":"","collectionId":-1,"tmdbId":10072},{"name":"Van Helsing","year":2004,"posterUrl":"/library/metadata/3073/thumb/1599309022","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3073,"key":"/library/metadata/3073","collectionTitle":"","collectionId":-1,"tmdbId":7131},{"name":"Crocodile Dundee II","year":1988,"posterUrl":"/library/metadata/604/thumb/1599308048","imdbId":"","language":"en","overview":"Australian outback expert protects his New York love from gangsters who've followed her down under.","moviesInCollection":[],"ratingKey":604,"key":"/library/metadata/604","collectionTitle":"","collectionId":-1,"tmdbId":9396},{"name":"Harry Potter and the Philosopher's Stone","year":2001,"posterUrl":"/library/metadata/1074/thumb/1599308223","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1074,"key":"/library/metadata/1074","collectionTitle":"","collectionId":-1,"tmdbId":671},{"name":"Lying and Stealing","year":2019,"posterUrl":"/library/metadata/1427/thumb/1599308354","imdbId":"","language":"en","overview":"Hoping to leave his criminal lifestyle behind him, a successful art thief teams up with a sexy con woman to pull off the ultimate heist and set himself free.","moviesInCollection":[],"ratingKey":1427,"key":"/library/metadata/1427","collectionTitle":"","collectionId":-1,"tmdbId":509874},{"name":"That Thing You Do!","year":1996,"posterUrl":"/library/metadata/2269/thumb/1599308714","imdbId":"","language":"en","overview":"A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.","moviesInCollection":[],"ratingKey":2269,"key":"/library/metadata/2269","collectionTitle":"","collectionId":-1,"tmdbId":9591},{"name":"10 Cloverfield Lane","year":2016,"posterUrl":"/library/metadata/3/thumb/1599307785","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3,"key":"/library/metadata/3","collectionTitle":"","collectionId":-1,"tmdbId":333371},{"name":"House of Bamboo","year":1955,"posterUrl":"/library/metadata/1136/thumb/1599308246","imdbId":"","language":"en","overview":"Eddie Kenner (Robert Stack) is given a special assignment by the Army to get the inside story on Sandy Dawson (Robert Ryan), a former GI who has formed a gang of fellow servicemen and Japanese locals.","moviesInCollection":[],"ratingKey":1136,"key":"/library/metadata/1136","collectionTitle":"","collectionId":-1,"tmdbId":20942},{"name":"Oldboy","year":2003,"posterUrl":"/library/metadata/1643/thumb/1599308452","imdbId":"","language":"en","overview":"With no clue how he came to be imprisoned, drugged and tortured for 15 years, a desperate businessman seeks revenge on his captors.","moviesInCollection":[],"ratingKey":1643,"key":"/library/metadata/1643","collectionTitle":"","collectionId":-1,"tmdbId":670},{"name":"The Man with the Iron Fists 2","year":2015,"posterUrl":"/library/metadata/2670/thumb/1599308865","imdbId":"","language":"en","overview":"When a stranger, Thaddeus, is found badly wounded near the village, miner Li Kung and his wife Ah Ni offer him refuge. As he heals, he becomes entrenched in a conflict that pits the townsfolk against the evil Master Ho, his nefarious Beetle Clan and the terrifying Lord Pi.","moviesInCollection":[],"ratingKey":2670,"key":"/library/metadata/2670","collectionTitle":"","collectionId":-1,"tmdbId":321494},{"name":"Tarzan","year":2013,"posterUrl":"/library/metadata/2246/thumb/1599308705","imdbId":"","language":"en","overview":"One of the most classic and revered stories of all time, Edgar Rice Burroughs' Tarzan returns to the big screen for a new generation. Tarzan and Jane face a mercenary army dispatched by the evil CEO of Greystoke Energies, a man who took over the company from Tarzan's parents, after they died in a plane crash in the African jungle.","moviesInCollection":[],"ratingKey":2246,"key":"/library/metadata/2246","collectionTitle":"","collectionId":-1,"tmdbId":230222},{"name":"xXx","year":2002,"posterUrl":"/library/metadata/30793/thumb/1599309081","imdbId":"","language":"en","overview":"Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government \"recruits\" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.","moviesInCollection":[],"ratingKey":30793,"key":"/library/metadata/30793","collectionTitle":"","collectionId":-1,"tmdbId":7451},{"name":"X-Men First Class","year":2011,"posterUrl":"/library/metadata/3177/thumb/1599309057","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3177,"key":"/library/metadata/3177","collectionTitle":"","collectionId":-1,"tmdbId":49538},{"name":"Love, Guaranteed","year":2020,"posterUrl":"/library/metadata/48094/thumb/1600862800","imdbId":"","language":"en","overview":"A lawyer takes on a new client that wants to sue a dating website because it guarantees love.","moviesInCollection":[],"ratingKey":48094,"key":"/library/metadata/48094","collectionTitle":"","collectionId":-1,"tmdbId":644090},{"name":"Middle Men","year":2009,"posterUrl":"/library/metadata/1505/thumb/1599308391","imdbId":"","language":"en","overview":"Chronicles Jack Harris, one of the pioneers of internet commerce, as he wrestles with his morals and struggles not to drown in a sea of conmen, mobsters, drug addicts, and pornstars.","moviesInCollection":[],"ratingKey":1505,"key":"/library/metadata/1505","collectionTitle":"","collectionId":-1,"tmdbId":38842},{"name":"Top Gun","year":1986,"posterUrl":"/library/metadata/40989/thumb/1599309115","imdbId":"","language":"en","overview":"For Lieutenant Pete 'Maverick' Mitchell and his friend and co-pilot Nick 'Goose' Bradshaw, being accepted into an elite training school for fighter pilots is a dream come true. But a tragedy, as well as personal demons, will threaten Pete's dreams of becoming an ace pilot.","moviesInCollection":[],"ratingKey":40989,"key":"/library/metadata/40989","collectionTitle":"","collectionId":-1,"tmdbId":744},{"name":"A View to a Kill","year":1985,"posterUrl":"/library/metadata/97/thumb/1599307861","imdbId":"","language":"en","overview":"A newly developed microchip designed by Zorin Industries for the British Government that can survive the electromagnetic radiation caused by a nuclear explosion has landed in the hands of the KGB. James Bond must find out how and why. His suspicions soon lead him to big industry leader Max Zorin.","moviesInCollection":[],"ratingKey":97,"key":"/library/metadata/97","collectionTitle":"","collectionId":-1,"tmdbId":707},{"name":"Avengers Infinity War","year":2018,"posterUrl":"/library/metadata/40893/thumb/1599309109","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":40893,"key":"/library/metadata/40893","collectionTitle":"","collectionId":-1,"tmdbId":299536},{"name":"The Forbidden Photos of a Lady Above Suspicion","year":1970,"posterUrl":"/library/metadata/2474/thumb/1599308789","imdbId":"","language":"en","overview":"A repressed young wife's traumatic sexual assault triggers a depraved obsession with her attacker.","moviesInCollection":[],"ratingKey":2474,"key":"/library/metadata/2474","collectionTitle":"","collectionId":-1,"tmdbId":92233},{"name":"Critters 4","year":1992,"posterUrl":"/library/metadata/27839/thumb/1599309074","imdbId":"","language":"en","overview":"Just before bounty hunter Charile triggers his gun to destroy the last two Critter-eggs, he gets a message that it would be illegal to extinguish the race from the galaxy. He's sent a transporter where he puts the eggs - unfortunately the transporter takes him with it and then gets lost in space.","moviesInCollection":[],"ratingKey":27839,"key":"/library/metadata/27839","collectionTitle":"","collectionId":-1,"tmdbId":12525},{"name":"The Last King of Scotland","year":2006,"posterUrl":"/library/metadata/2619/thumb/1599308843","imdbId":"","language":"en","overview":"Young Scottish doctor, Nicholas Garrigan decides it's time for an adventure after he finishes his formal education, so he decides to try his luck in Uganda, and arrives during the downfall of President Obote. General Idi Amin comes to power and asks Garrigan to become his personal doctor.","moviesInCollection":[],"ratingKey":2619,"key":"/library/metadata/2619","collectionTitle":"","collectionId":-1,"tmdbId":1523},{"name":"The Wolf of Wall Street","year":2013,"posterUrl":"/library/metadata/2900/thumb/1599308963","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2900,"key":"/library/metadata/2900","collectionTitle":"","collectionId":-1,"tmdbId":106646},{"name":"The Animatrix","year":2003,"posterUrl":"/library/metadata/2293/thumb/1599308722","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2293,"key":"/library/metadata/2293","collectionTitle":"","collectionId":-1,"tmdbId":55931},{"name":"Tarzan","year":1999,"posterUrl":"/library/metadata/2245/thumb/1599308705","imdbId":"","language":"en","overview":"Tarzan was a small orphan who was raised by an ape named Kala since he was a child. He believed that this was his family, but on an expedition Jane Porter is rescued by Tarzan. Tarzan fucks monkeys and they yell oh oh ah ah when he cums.","moviesInCollection":[],"ratingKey":2245,"key":"/library/metadata/2245","collectionTitle":"","collectionId":-1,"tmdbId":37135},{"name":"This Is the End","year":2013,"posterUrl":"/library/metadata/2925/thumb/1599308972","imdbId":"","language":"en","overview":"While attending a party at James Franco's house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.","moviesInCollection":[],"ratingKey":2925,"key":"/library/metadata/2925","collectionTitle":"","collectionId":-1,"tmdbId":109414},{"name":"I'll Be Home for Christmas","year":1998,"posterUrl":"/library/metadata/1163/thumb/1599308255","imdbId":"","language":"en","overview":"Estranged from his father, college student Jake is lured home to New York for Christmas with the promise of receiving a classic Porsche as a gift. When the bullying football team dumps him in the desert in a Santa suit, Jake is left without identification or money to help him make the journey. Meanwhile, his girlfriend, Allie, does not know where he is, and accepts a cross-country ride from Jake's rival, Eddie.","moviesInCollection":[],"ratingKey":1163,"key":"/library/metadata/1163","collectionTitle":"","collectionId":-1,"tmdbId":17037},{"name":"The Bourne Supremacy","year":2004,"posterUrl":"/library/metadata/2331/thumb/1599308735","imdbId":"","language":"en","overview":"When a CIA operation to purchase classified Russian documents is blown by a rival agent, who then shows up in the sleepy seaside village where Bourne and Marie have been living. The pair run for their lives and Bourne, who promised retaliation should anyone from his former life attempt contact, is forced to once again take up his life as a trained assassin to survive.","moviesInCollection":[],"ratingKey":2331,"key":"/library/metadata/2331","collectionTitle":"","collectionId":-1,"tmdbId":2502},{"name":"Indivisible","year":2018,"posterUrl":"/library/metadata/1190/thumb/1599308265","imdbId":"","language":"en","overview":"Upon returning from serving in the U.S. Army, Chaplain Darren Turner faces a crisis that shatters his Family and Faith in God but through the help of his fellow soldiers, he returns to his faith and family","moviesInCollection":[],"ratingKey":1190,"key":"/library/metadata/1190","collectionTitle":"","collectionId":-1,"tmdbId":514407},{"name":"Killer Klowns from Outer Space","year":1988,"posterUrl":"/library/metadata/1303/thumb/1599308307","imdbId":"","language":"en","overview":"Aliens who look like clowns come from outer space and terrorize a small town.","moviesInCollection":[],"ratingKey":1303,"key":"/library/metadata/1303","collectionTitle":"","collectionId":-1,"tmdbId":16296},{"name":"Meet the Robinsons","year":2007,"posterUrl":"/library/metadata/1489/thumb/1599308383","imdbId":"","language":"en","overview":"In this animated adventure, brilliant preteen inventor Lewis creates a memory scanner to retrieve his earliest recollections and find out why his mother gave him up for adoption. But when the villainous Bowler Hat Guy steals the machine, Lewis is ready to give up on his quest until the mysterious Wilbur Robinson shows up on the scene, whisking Lewis to the future to find the scanner and his mom.","moviesInCollection":[],"ratingKey":1489,"key":"/library/metadata/1489","collectionTitle":"","collectionId":-1,"tmdbId":1267},{"name":"The Mummy Returns","year":2001,"posterUrl":"/library/metadata/2697/thumb/1599308878","imdbId":"","language":"en","overview":"Rick and Evelyn O’Connell, along with their 8-year-old son Alex, discover the key to the legendary Scorpion King’s might: the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn’t above kidnapping its new bearer, Alex, to gain control of Anubis’s otherworldly army.","moviesInCollection":[],"ratingKey":2697,"key":"/library/metadata/2697","collectionTitle":"","collectionId":-1,"tmdbId":1734},{"name":"The Power of Few","year":2013,"posterUrl":"/library/metadata/2751/thumb/1599308901","imdbId":"","language":"en","overview":"Spies, cops and armed children cross paths on a day of danger, mystery and possible transformation. Five unusual characters are unknowingly connected to an extraordinary smuggling operation, as religious conspiracy collides with urban crime.","moviesInCollection":[],"ratingKey":2751,"key":"/library/metadata/2751","collectionTitle":"","collectionId":-1,"tmdbId":161321},{"name":"Superman II","year":1981,"posterUrl":"/library/metadata/2211/thumb/1599308693","imdbId":"","language":"en","overview":"Three escaped criminals from the planet Krypton test the Man of Steel's mettle. Led by General Zod, the Kryptonians take control of the White House and partner with Lex Luthor to destroy Superman and rule the world. But Superman, who attempts to make himself human in order to get closer to Lois, realizes he has a responsibility to save the planet.","moviesInCollection":[],"ratingKey":2211,"key":"/library/metadata/2211","collectionTitle":"","collectionId":-1,"tmdbId":8536},{"name":"The Lobster","year":2016,"posterUrl":"/library/metadata/2645/thumb/1599308853","imdbId":"","language":"en","overview":"In a dystopian near future, single people, according to the laws of The City, are taken to The Hotel, where they are obliged to find a romantic partner in forty-five days or are transformed into beasts and sent off into The Woods.","moviesInCollection":[],"ratingKey":2645,"key":"/library/metadata/2645","collectionTitle":"","collectionId":-1,"tmdbId":254320},{"name":"Them That Follow","year":2019,"posterUrl":"/library/metadata/2914/thumb/1599308968","imdbId":"","language":"en","overview":"A Pentecostal pastor, Lemuel Childs, and his believers handle venomous snakes to prove themselves before God. Lemuel’s daughter, Mara holds a secret that threatens to tear the church apart: her romantic past with a nonbeliever, Augie. As Mara’s wedding to a devoted follower looms, she must decide whether or not to trust the steely matriarch of their community, Hope, with her heart and life at stake.","moviesInCollection":[],"ratingKey":2914,"key":"/library/metadata/2914","collectionTitle":"","collectionId":-1,"tmdbId":486832},{"name":"Four Christmases","year":2008,"posterUrl":"/library/metadata/933/thumb/1599308165","imdbId":"","language":"en","overview":"Brad and Kate have made something of an art form out of avoiding their families during the holidays, but this year their foolproof plan is about go bust -- big time. Stuck at the city airport after all departing flights are canceled, the couple is embarrassed to see their ruse exposed to the world by an overzealous television reporter. Now, Brad and Kate are left with precious little choice other than to swallow their pride and suffer the rounds.","moviesInCollection":[],"ratingKey":933,"key":"/library/metadata/933","collectionTitle":"","collectionId":-1,"tmdbId":12193},{"name":"Guns Girls and Gangsters","year":1959,"posterUrl":"/library/metadata/1039/thumb/1599308208","imdbId":"","language":"en","overview":"A Las Vegas singer (Mamie Van Doren) plans an armored-car robbery with her husband's (Lee Van Cleef) ex-cellmate (Gerald Mohr).","moviesInCollection":[],"ratingKey":1039,"key":"/library/metadata/1039","collectionTitle":"","collectionId":-1,"tmdbId":87342},{"name":"Dark Night of the Scarecrow","year":1981,"posterUrl":"/library/metadata/48796/thumb/1601908188","imdbId":"","language":"en","overview":"Bubba, an intellectually disabled man, is falsely accused of attacking a young girl. Disguised as a scarecrow, he hides in a cornfield, only to be hunted down and shot by four vigilante men. After they are acquitted due to lack of evidence, the men find themselves being stalked by a mysterious scarecrow.","moviesInCollection":[],"ratingKey":48796,"key":"/library/metadata/48796","collectionTitle":"","collectionId":-1,"tmdbId":30931},{"name":"Octopussy","year":1983,"posterUrl":"/library/metadata/1637/thumb/1599308449","imdbId":"","language":"en","overview":"James Bond is sent to investigate after a fellow “00” agent is found dead with a priceless Fabergé egg. Bond follows the mystery and uncovers a smuggling scandal and a Russian General who wants to provoke a new World War.","moviesInCollection":[],"ratingKey":1637,"key":"/library/metadata/1637","collectionTitle":"","collectionId":-1,"tmdbId":700},{"name":"The Dead Pool","year":1988,"posterUrl":"/library/metadata/2399/thumb/1599308759","imdbId":"","language":"en","overview":"Dirty Harry Callahan returns for his final film adventure. Together with his partner Al Quan, he must investigate the systematic murder of actors and musicians. By the time Harry learns that the murders are a part of a sick game to predict the deaths of celebrities before they happen, it may be too late...","moviesInCollection":[],"ratingKey":2399,"key":"/library/metadata/2399","collectionTitle":"","collectionId":-1,"tmdbId":10651},{"name":"The Matrix Revolutions","year":2003,"posterUrl":"/library/metadata/41029/thumb/1599309118","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41029,"key":"/library/metadata/41029","collectionTitle":"","collectionId":-1,"tmdbId":605},{"name":"High Life","year":2019,"posterUrl":"/library/metadata/1108/thumb/1599308235","imdbId":"","language":"en","overview":"Monte and his baby daughter are the last survivors of a damned and dangerous mission to the outer reaches of the solar system. They must now rely on each other to survive as they hurtle toward the oblivion of a black hole.","moviesInCollection":[],"ratingKey":1108,"key":"/library/metadata/1108","collectionTitle":"","collectionId":-1,"tmdbId":376865},{"name":"Ice Cold in Alex","year":1961,"posterUrl":"/library/metadata/1173/thumb/1599308259","imdbId":"","language":"en","overview":"A group of army personnel and nurses attempt a dangerous and arduous trek across the deserts of North Africa during the second world war. The leader of the team dreams of his ice cold beer when he reaches Alexandria.","moviesInCollection":[],"ratingKey":1173,"key":"/library/metadata/1173","collectionTitle":"","collectionId":-1,"tmdbId":16284},{"name":"Field of Dreams","year":1989,"posterUrl":"/library/metadata/883/thumb/1599308147","imdbId":"","language":"en","overview":"Ray Kinsella is an Iowa farmer who hears a mysterious voice telling him to turn his cornfield into a baseball diamond. He does, but the voice's directions don't stop -- even after the spirits of deceased ballplayers turn up to play.","moviesInCollection":[],"ratingKey":883,"key":"/library/metadata/883","collectionTitle":"","collectionId":-1,"tmdbId":2323},{"name":"Brian Banks","year":2018,"posterUrl":"/library/metadata/425/thumb/1599307982","imdbId":"","language":"en","overview":"An All-American football player's dreams to play in the NFL are halted when he is falsely accused of rape and sent to prison.","moviesInCollection":[],"ratingKey":425,"key":"/library/metadata/425","collectionTitle":"","collectionId":-1,"tmdbId":535845},{"name":"The Killer Elite","year":1975,"posterUrl":"/library/metadata/2604/thumb/1599308837","imdbId":"","language":"en","overview":"Mike Locken is one of the principle members of a group of freelance spies. A significant portion of their work is for the C.I.A. and while on a case for them one of his friends turns on him and shoots him in the elbow and knee. His assignment, to protect someone, goes down in flames. He is nearly crippled, but with braces is able to again become mobile. For revenge as much as anything else, Mike goes after his ex-friend.","moviesInCollection":[],"ratingKey":2604,"key":"/library/metadata/2604","collectionTitle":"","collectionId":-1,"tmdbId":31604},{"name":"Scary Movie 2","year":2001,"posterUrl":"/library/metadata/27854/thumb/1599309080","imdbId":"","language":"en","overview":"While the original parodied slasher flicks like Scream, Keenen Ivory Wayans's sequel to Scary Movie takes comedic aim at haunted house movies. A group of students visit a mansion called \"Hell House,\" and murderous high jinks ensue.","moviesInCollection":[],"ratingKey":27854,"key":"/library/metadata/27854","collectionTitle":"","collectionId":-1,"tmdbId":4248},{"name":"The Call of the Wild","year":2020,"posterUrl":"/library/metadata/41936/thumb/1599309135","imdbId":"","language":"en","overview":"Buck is a big-hearted dog whose blissful domestic life is turned upside down when he is suddenly uprooted from his California home and transplanted to the exotic wilds of the Yukon during the Gold Rush of the 1890s. As the newest rookie on a mail delivery dog sled team—and later its leader—Buck experiences the adventure of a lifetime, ultimately finding his true place in the world and becoming his own master.","moviesInCollection":[],"ratingKey":41936,"key":"/library/metadata/41936","collectionTitle":"","collectionId":-1,"tmdbId":481848},{"name":"Ginger & Rosa","year":2013,"posterUrl":"/library/metadata/1001/thumb/1599308193","imdbId":"","language":"en","overview":"A look at the lives of two teenage girls - inseparable friends Ginger and Rosa -- growing up in 1960s London as the Cuban Missile Crisis looms, and the pivotal event the comes to redefine their relationship.","moviesInCollection":[],"ratingKey":1001,"key":"/library/metadata/1001","collectionTitle":"","collectionId":-1,"tmdbId":121872},{"name":"Star Trek First Contact","year":1996,"posterUrl":"/library/metadata/2133/thumb/1599308664","imdbId":"","language":"en","overview":"The Borg, a relentless race of cyborgs, are on a direct course for Earth. Violating orders to stay away from the battle, Captain Picard and the crew of the newly-commissioned USS Enterprise E pursue the Borg back in time to prevent the invaders from changing Federation history and assimilating the galaxy.","moviesInCollection":[],"ratingKey":2133,"key":"/library/metadata/2133","collectionTitle":"","collectionId":-1,"tmdbId":199},{"name":"Ghost in the Shell S.A.C. 2nd GIG – Individual Eleven","year":2006,"posterUrl":"/library/metadata/990/thumb/1599308189","imdbId":"","language":"en","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...","moviesInCollection":[],"ratingKey":990,"key":"/library/metadata/990","collectionTitle":"","collectionId":-1,"tmdbId":111224},{"name":"Critters 2","year":1988,"posterUrl":"/library/metadata/599/thumb/1599308047","imdbId":"","language":"en","overview":"A batch of unhatched critter eggs are mistaken for Easter eggs by the country-folk inhabitants of Grover's Bend and, before long, the ferocious furballs are on the rampage again.","moviesInCollection":[],"ratingKey":599,"key":"/library/metadata/599","collectionTitle":"","collectionId":-1,"tmdbId":10127},{"name":"Operation Dumbo Drop","year":1995,"posterUrl":"/library/metadata/1666/thumb/1599308462","imdbId":"","language":"en","overview":"Five Green Berets stationed in Vietnam in 1968 grudgingly undertake the mission of a lifetime -- to secretly transport an 8,000-pound elephant through 200 miles of rough jungle terrain. High jinks prevail when Capt. Sam Cahill promises the Montagnard villagers of Dak Nhe that he'll replace their prized elephant in time for an important ritual. But for Capt. T.C. Doyle, the mission becomes a jumbo-sized headache!","moviesInCollection":[],"ratingKey":1666,"key":"/library/metadata/1666","collectionTitle":"","collectionId":-1,"tmdbId":27281},{"name":"Spider-Man Homecoming","year":2017,"posterUrl":"/library/metadata/2113/thumb/1599308654","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2113,"key":"/library/metadata/2113","collectionTitle":"","collectionId":-1,"tmdbId":315635},{"name":"Hellraiser Hellworld","year":2005,"posterUrl":"/library/metadata/1095/thumb/1599308230","imdbId":"","language":"en","overview":"Pinhead returns to terrorize computer hackers who have opened a virtual Lament Configuration on the website Hellworld.com.","moviesInCollection":[],"ratingKey":1095,"key":"/library/metadata/1095","collectionTitle":"","collectionId":-1,"tmdbId":12699},{"name":"The Sandlot 2","year":2005,"posterUrl":"/library/metadata/47795/thumb/1599309189","imdbId":"","language":"en","overview":"A decade has passed in the small town where the original Sandlot gang banded together during the summer of ’62 to play baseball and battle the Beast. Now comes the sequel, a campy romp back to the dugout where nine new kids descend on the diamond only to discover that a descendant of the Beast lives in Mr. Mertle’s backyard--a monster of mythical proportions known as \"The Great Fear.\"","moviesInCollection":[],"ratingKey":47795,"key":"/library/metadata/47795","collectionTitle":"","collectionId":-1,"tmdbId":18500},{"name":"The Guilty","year":2018,"posterUrl":"/library/metadata/2525/thumb/1599308808","imdbId":"","language":"en","overview":"Police officer Asger Holm, demoted to desk work as an alarm dispatcher, answers a call from a panicked woman who claims to have been kidnapped. Confined to the police station and with the phone as his only tool, Asger races against time to get help and find her.","moviesInCollection":[],"ratingKey":2525,"key":"/library/metadata/2525","collectionTitle":"","collectionId":-1,"tmdbId":486947},{"name":"The Quake","year":2018,"posterUrl":"/library/metadata/2771/thumb/1599308911","imdbId":"","language":"en","overview":"A geologist races against time to save his estranged wife and two children when a devastating earthquake strikes Oslo, Norway.","moviesInCollection":[],"ratingKey":2771,"key":"/library/metadata/2771","collectionTitle":"","collectionId":-1,"tmdbId":416194},{"name":"Seventh Moon","year":2008,"posterUrl":"/library/metadata/2004/thumb/1599308606","imdbId":"","language":"en","overview":"Melissa and Yul, Americans honeymooning in China, come across the exotic 'Hungry Ghost' festival. When night falls, the couple end up in a remote village, and soon realize the legend is all too real. Plunged into an ancient custom they cannot comprehend, the couple must find a way to survive the night of the Seventh Moon.","moviesInCollection":[],"ratingKey":2004,"key":"/library/metadata/2004","collectionTitle":"","collectionId":-1,"tmdbId":24330},{"name":"Scary Movie 3","year":2003,"posterUrl":"/library/metadata/1975/thumb/1599308593","imdbId":"","language":"en","overview":"In the third installment of the Scary Movie franchise, news anchorwoman Cindy Campbell has to investigate mysterious crop circles and killing video tapes, and help the President stop an alien invasion in the process.","moviesInCollection":[],"ratingKey":1975,"key":"/library/metadata/1975","collectionTitle":"","collectionId":-1,"tmdbId":4256},{"name":"Beirut","year":2018,"posterUrl":"/library/metadata/331/thumb/1599307947","imdbId":"","language":"en","overview":"In 1980s Beirut, Mason Skiles is a former U.S. diplomat who is called back into service to save a colleague from the group that is possibly responsible for his own family's death. Meanwhile, a CIA field agent who is working under cover at the American embassy is tasked with keeping Mason alive and ensuring that the mission is a success.","moviesInCollection":[],"ratingKey":331,"key":"/library/metadata/331","collectionTitle":"","collectionId":-1,"tmdbId":399248},{"name":"Mad Max","year":1980,"posterUrl":"/library/metadata/1432/thumb/1599308356","imdbId":"","language":"en","overview":"Taking place in a dystopian Australia in the near future, Mad Max tells the story of a highway patrolman cruising the squalid back roads that have become the breeding ground of criminals foraging for gasoline and scraps. After some grisly events at the hands of a motorcycle gang, Max sets out across the barren wastelands in search of revenge.","moviesInCollection":[],"ratingKey":1432,"key":"/library/metadata/1432","collectionTitle":"","collectionId":-1,"tmdbId":9659},{"name":"Churchill","year":2017,"posterUrl":"/library/metadata/512/thumb/1599308015","imdbId":"","language":"en","overview":"A ticking-clock thriller following Winston Churchill in the 24 hours before D-Day.","moviesInCollection":[],"ratingKey":512,"key":"/library/metadata/512","collectionTitle":"","collectionId":-1,"tmdbId":399790},{"name":"Seed of Chucky","year":2004,"posterUrl":"/library/metadata/1995/thumb/1599308602","imdbId":"","language":"en","overview":"Chucky and Tiffany are resurrected by their innocent son, Glen, and hit Hollywood, where a movie depicting the killer dolls' murder spree is underway.","moviesInCollection":[],"ratingKey":1995,"key":"/library/metadata/1995","collectionTitle":"","collectionId":-1,"tmdbId":11249},{"name":"American Pie Presents The Book of Love","year":2009,"posterUrl":"/library/metadata/186/thumb/1599307895","imdbId":"","language":"en","overview":"Ten years after the first American Pie movie, three new hapless virgins discover the Bible hidden in the school library at East Great Falls High. Unfortunately for them, the book is ruined, and with incomplete advice, the Bible leads them on a hilarious journey to lose their virginity.","moviesInCollection":[],"ratingKey":186,"key":"/library/metadata/186","collectionTitle":"","collectionId":-1,"tmdbId":26123},{"name":"Emma.","year":2020,"posterUrl":"/library/metadata/40994/thumb/1599309116","imdbId":"","language":"en","overview":"In 1800s England, a well-meaning but selfish young woman meddles in the love lives of her friends.","moviesInCollection":[],"ratingKey":40994,"key":"/library/metadata/40994","collectionTitle":"","collectionId":-1,"tmdbId":556678},{"name":"Critters 3","year":1991,"posterUrl":"/library/metadata/600/thumb/1599308047","imdbId":"","language":"en","overview":"In what appears to be a cross between Critters and The Towering Inferno, the residents of a shoddy L.A. apartment block are chased up to the roof by hoards of the eponymous hairy horrors.","moviesInCollection":[],"ratingKey":600,"key":"/library/metadata/600","collectionTitle":"","collectionId":-1,"tmdbId":12702},{"name":"Journey's End","year":2018,"posterUrl":"/library/metadata/1261/thumb/1599308293","imdbId":"","language":"en","overview":"Set in a dugout in Aisne in 1918, a group of British officers, led by the mentally disintegrating young officer Stanhope, variously await their fate.","moviesInCollection":[],"ratingKey":1261,"key":"/library/metadata/1261","collectionTitle":"","collectionId":-1,"tmdbId":438259},{"name":"Intrigo Death of an Author","year":2020,"posterUrl":"/library/metadata/41949/thumb/1599309135","imdbId":"","language":"en","overview":"A young author comes into possession of a manuscript sent by critically acclaimed writer, Germund Rein, shortly before he commits suicide.","moviesInCollection":[],"ratingKey":41949,"key":"/library/metadata/41949","collectionTitle":"","collectionId":-1,"tmdbId":482564},{"name":"The Lego Ninjago Movie","year":2017,"posterUrl":"/library/metadata/2633/thumb/1599308848","imdbId":"","language":"en","overview":"Six young ninjas are tasked with defending their island home of Ninjago. By night, they’re gifted warriors using their skill and awesome fleet of vehicles to fight villains and monsters. By day, they’re ordinary teens struggling against their greatest enemy....high school.","moviesInCollection":[],"ratingKey":2633,"key":"/library/metadata/2633","collectionTitle":"","collectionId":-1,"tmdbId":274862},{"name":"A Dark Song","year":2017,"posterUrl":"/library/metadata/59/thumb/1599307846","imdbId":"","language":"en","overview":"A determined young woman and a damaged occultist risk their lives and souls to perform a dangerous ritual that will grant them what they want.","moviesInCollection":[],"ratingKey":59,"key":"/library/metadata/59","collectionTitle":"","collectionId":-1,"tmdbId":409297},{"name":"They Shall Not Grow Old","year":2018,"posterUrl":"/library/metadata/27855/thumb/1599309080","imdbId":"","language":"en","overview":"A documentary about World War I with never-before-seen footage to commemorate the centennial of Armistice Day, and the end of the war.","moviesInCollection":[],"ratingKey":27855,"key":"/library/metadata/27855","collectionTitle":"","collectionId":-1,"tmdbId":543580},{"name":"Overboard","year":1987,"posterUrl":"/library/metadata/1679/thumb/1599308467","imdbId":"","language":"en","overview":"Heiress, Joanna Stayton hires carpenter, Dean Proffitt to build a closet on her yacht -- and refuses to pay him for the project when it's done. But after Joanna accidentally falls overboard and loses her memory, Dean sees an opportunity to get even.","moviesInCollection":[],"ratingKey":1679,"key":"/library/metadata/1679","collectionTitle":"","collectionId":-1,"tmdbId":10780},{"name":"The Family Stone","year":2005,"posterUrl":"/library/metadata/2451/thumb/1599308780","imdbId":"","language":"en","overview":"An uptight, conservative, businesswoman accompanies her boyfriend to his eccentric and outgoing family's annual Christmas celebration and finds that she's a fish out of water in their free-spirited way of life.","moviesInCollection":[],"ratingKey":2451,"key":"/library/metadata/2451","collectionTitle":"","collectionId":-1,"tmdbId":9043},{"name":"Species","year":1995,"posterUrl":"/library/metadata/2103/thumb/1599308651","imdbId":"","language":"en","overview":"In 1993, the Search for Extra Terrestrial Intelligence Project receives a transmission detailing an alien DNA structure, along with instructions on how to splice it with human DNA. The result is Sil, a sensual but deadly creature who can change from a beautiful woman to an armour-plated killing machine in the blink of an eye.","moviesInCollection":[],"ratingKey":2103,"key":"/library/metadata/2103","collectionTitle":"","collectionId":-1,"tmdbId":9348},{"name":"Mars Needs Moms","year":2011,"posterUrl":"/library/metadata/1460/thumb/1599308370","imdbId":"","language":"en","overview":"When Martians suddenly abduct his mom, mischievous Milo rushes to the rescue and discovers why all moms are so special.","moviesInCollection":[],"ratingKey":1460,"key":"/library/metadata/1460","collectionTitle":"","collectionId":-1,"tmdbId":50321},{"name":"Searching","year":2018,"posterUrl":"/library/metadata/1993/thumb/1599308601","imdbId":"","language":"en","overview":"After David Kim's 16-year-old daughter goes missing, a local investigation is opened and a detective is assigned to the case. But 37 hours later and without a single lead, David decides to search the one place no one has looked yet, where all secrets are kept today: his daughter's laptop.","moviesInCollection":[],"ratingKey":1993,"key":"/library/metadata/1993","collectionTitle":"","collectionId":-1,"tmdbId":489999},{"name":"Elysium","year":2013,"posterUrl":"/library/metadata/814/thumb/1599308121","imdbId":"","language":"en","overview":"In the year 2159, two classes of people exist: the very wealthy who live on a pristine man-made space station called Elysium, and the rest, who live on an overpopulated, ruined Earth. Secretary Rhodes (Jodie Foster), a hard line government official, will stop at nothing to enforce anti-immigration laws and preserve the luxurious lifestyle of the citizens of Elysium. That doesn’t stop the people of Earth from trying to get in, by any means they can. When unlucky Max (Matt Damon) is backed into a corner, he agrees to take on a daunting mission that, if successful, will not only save his life, but could bring equality to these polarized worlds.","moviesInCollection":[],"ratingKey":814,"key":"/library/metadata/814","collectionTitle":"","collectionId":-1,"tmdbId":68724},{"name":"Little","year":2019,"posterUrl":"/library/metadata/1397/thumb/1599308341","imdbId":"","language":"en","overview":"Jordan Sanders, a take-no-prisoners tech mogul, wakes up one morning in the body of her 13-year-old self right before a do-or-die presentation. Her beleaguered assistant April is the only one in on the secret that her daily tormentor is now trapped in an awkward tween body, just as everything is on the line.","moviesInCollection":[],"ratingKey":1397,"key":"/library/metadata/1397","collectionTitle":"","collectionId":-1,"tmdbId":526050},{"name":"Escape Room","year":2019,"posterUrl":"/library/metadata/838/thumb/1599308130","imdbId":"","language":"en","overview":"Six strangers find themselves in circumstances beyond their control, and must use their wits to survive.","moviesInCollection":[],"ratingKey":838,"key":"/library/metadata/838","collectionTitle":"","collectionId":-1,"tmdbId":522681},{"name":"Unbreakable","year":2000,"posterUrl":"/library/metadata/3035/thumb/1599309009","imdbId":"","language":"en","overview":"An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead — and him unscathed. The answer to this mystery could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.","moviesInCollection":[],"ratingKey":3035,"key":"/library/metadata/3035","collectionTitle":"","collectionId":-1,"tmdbId":9741},{"name":"Rambo","year":2008,"posterUrl":"/library/metadata/1841/thumb/1599308536","imdbId":"","language":"en","overview":"When governments fail to act on behalf of captive missionaries, ex-Green Beret John James Rambo sets aside his peaceful existence along the Salween River in a war-torn region of Thailand to take action. Although he's still haunted by violent memories of his time as a U.S. soldier during the Vietnam War, Rambo can hardly turn his back on the aid workers who so desperately need his help.","moviesInCollection":[],"ratingKey":1841,"key":"/library/metadata/1841","collectionTitle":"","collectionId":-1,"tmdbId":7555},{"name":"Clerks II","year":2006,"posterUrl":"/library/metadata/524/thumb/1599308019","imdbId":"","language":"en","overview":"A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.","moviesInCollection":[],"ratingKey":524,"key":"/library/metadata/524","collectionTitle":"","collectionId":-1,"tmdbId":2295},{"name":"Cooties","year":2015,"posterUrl":"/library/metadata/572/thumb/1599308037","imdbId":"","language":"en","overview":"A mysterious virus hits an isolated elementary school, transforming the kids into a feral swarm of mass savages. An unlikely hero must lead a motley band of teachers in the fight of their lives.","moviesInCollection":[],"ratingKey":572,"key":"/library/metadata/572","collectionTitle":"","collectionId":-1,"tmdbId":241843},{"name":"Ender's Game","year":2013,"posterUrl":"/library/metadata/821/thumb/1599308124","imdbId":"","language":"en","overview":"Based on the classic novel by Orson Scott Card, Ender's Game is the story of the Earth's most gifted children training to defend their homeplanet in the space wars of the future.","moviesInCollection":[],"ratingKey":821,"key":"/library/metadata/821","collectionTitle":"","collectionId":-1,"tmdbId":80274},{"name":"Get Shorty","year":1995,"posterUrl":"/library/metadata/984/thumb/1599308187","imdbId":"","language":"en","overview":"Chili Palmer is a Miami mobster who gets sent by his boss, the psychopathic \"Bones\" Barboni, to collect a bad debt from Harry Zimm, a Hollywood producer who specializes in cheesy horror films. When Chili meets Harry's leading lady, the romantic sparks fly. After pitching his own life story as a movie idea, Chili learns that being a mobster and being a Hollywood producer really aren't all that different.","moviesInCollection":[],"ratingKey":984,"key":"/library/metadata/984","collectionTitle":"","collectionId":-1,"tmdbId":8012},{"name":"Parasite","year":1982,"posterUrl":"/library/metadata/1699/thumb/1599308477","imdbId":"","language":"en","overview":"Paul Dean has created a deadly parasite that is now attached to his stomach. He and his female companion, Patricia Welles, must find a way to destroy it while also trying to avoid Ricus, his rednecks, and an evil government agent named Merchant.","moviesInCollection":[],"ratingKey":1699,"key":"/library/metadata/1699","collectionTitle":"","collectionId":-1,"tmdbId":48311},{"name":"Sister Street Fighter Fifth Level Fist","year":1976,"posterUrl":"/library/metadata/2048/thumb/1599308626","imdbId":"","language":"en","overview":"Kiku Nakakawa, the only daughter of an old kimono shop owner in Kyoto, is enthusiastic about karate. To help her friend Michi avenge her brother, she sneaks into a movie studio in Kyoto where a drug dealing syndicate is based.","moviesInCollection":[],"ratingKey":2048,"key":"/library/metadata/2048","collectionTitle":"","collectionId":-1,"tmdbId":91847},{"name":"Vice Raid","year":1959,"posterUrl":"/library/metadata/3082/thumb/1599309025","imdbId":"","language":"en","overview":"A prostitute sets out to frame a cop.","moviesInCollection":[],"ratingKey":3082,"key":"/library/metadata/3082","collectionTitle":"","collectionId":-1,"tmdbId":27280},{"name":"Dr. No","year":1963,"posterUrl":"/library/metadata/746/thumb/1599308099","imdbId":"","language":"en","overview":"In the film that launched the James Bond saga, Agent 007 battles mysterious Dr. No, a scientific genius bent on destroying the U.S. space program. As the countdown to disaster begins, Bond must go to Jamaica, where he encounters beautiful Honey Ryder, to confront a megalomaniacal villain in his massive island headquarters.","moviesInCollection":[],"ratingKey":746,"key":"/library/metadata/746","collectionTitle":"","collectionId":-1,"tmdbId":646},{"name":"Overboard","year":2018,"posterUrl":"/library/metadata/1680/thumb/1599308468","imdbId":"","language":"en","overview":"A spoiled, wealthy yacht owner is thrown overboard and becomes the target of revenge from his mistreated employee.","moviesInCollection":[],"ratingKey":1680,"key":"/library/metadata/1680","collectionTitle":"","collectionId":-1,"tmdbId":454619},{"name":"Austin Powers International Man of Mystery","year":1997,"posterUrl":"/library/metadata/241/thumb/1599307916","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":241,"key":"/library/metadata/241","collectionTitle":"","collectionId":-1,"tmdbId":816},{"name":"A Perfect Day","year":2015,"posterUrl":"/library/metadata/86/thumb/1599307856","imdbId":"","language":"en","overview":"Somewhere in the Balkans, 1995. A team of aid workers must solve an apparently simple problem in an almost completely pacified territory that has been devastated by a cruel war, but some of the local inhabitants, the retreating combatants, the UN forces, many cows and an absurd bureaucracy will not cease to put obstacles in their way.","moviesInCollection":[],"ratingKey":86,"key":"/library/metadata/86","collectionTitle":"","collectionId":-1,"tmdbId":321751},{"name":"Snow Beast","year":2011,"posterUrl":"/library/metadata/2076/thumb/1599308638","imdbId":"","language":"en","overview":"Jim (John Schneider) and his research team study the Canadian Lynx every year. This year, he has to take his rebelling 16 year-old daughter, Emmy (Danielle Chuchran), with him. But the lynx are missing. As Jim and his team try to find why, something stalks them--a predator no prey can escape.","moviesInCollection":[],"ratingKey":2076,"key":"/library/metadata/2076","collectionTitle":"","collectionId":-1,"tmdbId":78362},{"name":"Now You See Me","year":2013,"posterUrl":"/library/metadata/1625/thumb/1599308444","imdbId":"","language":"en","overview":"An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.","moviesInCollection":[],"ratingKey":1625,"key":"/library/metadata/1625","collectionTitle":"","collectionId":-1,"tmdbId":75656},{"name":"Day of the Dead","year":1985,"posterUrl":"/library/metadata/647/thumb/1599308062","imdbId":"","language":"en","overview":"Trapped in a missile silo, a small team of scientists, civilians and trigger-happy soldiers battle desperately to ensure the survival of the human race. However, the tension inside the base is reaching a breaking point, and the zombies are gathering outside.","moviesInCollection":[],"ratingKey":647,"key":"/library/metadata/647","collectionTitle":"","collectionId":-1,"tmdbId":8408},{"name":"2 Graves in the Desert","year":2020,"posterUrl":"/library/metadata/27785/thumb/1599309071","imdbId":"","language":"en","overview":"A man and woman wake to find themselves tied and gagged in the trunk of a pick-up truck and it soon becomes clear that they have been kidnapped and taken as hostages. Their two kidnappers have their own agenda, and it's not a pleasant one.","moviesInCollection":[],"ratingKey":27785,"key":"/library/metadata/27785","collectionTitle":"","collectionId":-1,"tmdbId":654857},{"name":"Parasite","year":2019,"posterUrl":"/library/metadata/1700/thumb/1599308478","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1700,"key":"/library/metadata/1700","collectionTitle":"","collectionId":-1,"tmdbId":496243},{"name":"The Devil's Brigade","year":1968,"posterUrl":"/library/metadata/2418/thumb/1599308766","imdbId":"","language":"en","overview":"1968 American war film about the formation and first mission of the joint Canadian-American WWII special forces winter and mountain unit formally called 1st Special Service Force, but commonly known as “The Devil’s Brigade”. The film dramatises the Brigade's first mission in the Italian Campaign, the task of capturing the German mountain stronghold Monte la Difensa, in December 1943. The film is based on the 1966 book of the same name, co-written by American novelist and historian Robert H. Adleman and Col. George Walton, a member of the brigade.","moviesInCollection":[],"ratingKey":2418,"key":"/library/metadata/2418","collectionTitle":"","collectionId":-1,"tmdbId":31938},{"name":"Rudolph the Red-Nosed Reindeer","year":2005,"posterUrl":"/library/metadata/1940/thumb/1599308580","imdbId":"","language":"en","overview":"Sam the snowman tells us the story of a young red-nosed reindeer who, after being ousted from the reindeer games because of his glowing nose, teams up with Hermey, an elf who wants to be a dentist, and Yukon Cornelius, the prospector. They run into the Abominable Snowman and find a whole island of misfit toys. Rudoph vows to see if he can get Santa to help the toys, and he goes back to the North Pole on Christmas Eve. But Santa's sleigh is fogged in. But when Santa looks over Rudolph, he gets a very bright idea...","moviesInCollection":[],"ratingKey":1940,"key":"/library/metadata/1940","collectionTitle":"","collectionId":-1,"tmdbId":13382},{"name":"Money Monster","year":2016,"posterUrl":"/library/metadata/1528/thumb/1599308402","imdbId":"","language":"en","overview":"Financial TV host Lee Gates and his producer Patty are put in an extreme situation when an irate investor takes over their studio.","moviesInCollection":[],"ratingKey":1528,"key":"/library/metadata/1528","collectionTitle":"","collectionId":-1,"tmdbId":303858},{"name":"Waiting","year":2001,"posterUrl":"/library/metadata/3089/thumb/1599309027","imdbId":"","language":"en","overview":"Young Sean McNutt (Will Keenan) -- a slacker waiter who works at a Mafia-run Italian eatery with carping customers and thieving busboys -- is shaken out of his rut when his pretty girlfriend (Hannah Dalton) dumps him for a slimy yuppie. But Sean's plan to get his life back on track hits more than a few snags in this zany indie comedy featuring cameos by porn legend Ron Jeremy and Troma Studios schlockmeister Lloyd Kaufman.","moviesInCollection":[],"ratingKey":3089,"key":"/library/metadata/3089","collectionTitle":"","collectionId":-1,"tmdbId":95526},{"name":"Superman/Shazam! The Return of Black Adam","year":2010,"posterUrl":"/library/metadata/2216/thumb/1599308695","imdbId":"","language":"en","overview":"Chosen the world’s protector against the Seven Deadly Enemies of Man – pride, envy, greed, hatred, selfishness, laziness and injustice – young Billy Batson accepts his destiny as Captain Marvel. Battling alongside Superman against nefarious Black Adam, Billy soon discovers the challenge super heroes ultimately face: is it revenge or justice?","moviesInCollection":[],"ratingKey":2216,"key":"/library/metadata/2216","collectionTitle":"","collectionId":-1,"tmdbId":43641},{"name":"Transformers The Last Knight","year":2017,"posterUrl":"/library/metadata/2988/thumb/1599308993","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2988,"key":"/library/metadata/2988","collectionTitle":"","collectionId":-1,"tmdbId":335988},{"name":"Raw Deal","year":1986,"posterUrl":"/library/metadata/1853/thumb/1599308541","imdbId":"","language":"en","overview":"Mark Kaminsky is kicked out of the FBI for his rough treatment of a suspect. He winds up as the sheriff of a small town in North Carolina. FBI Chief Harry Shannon, whose son has been killed by a mobster named Patrovina, enlists Kaminsky in a personal vendetta with a promise of reinstatement into the FBI if Patrovina is taken down. To accomplish this, he must go undercover and join Patrovina's gang.","moviesInCollection":[],"ratingKey":1853,"key":"/library/metadata/1853","collectionTitle":"","collectionId":-1,"tmdbId":2099},{"name":"The Soloist","year":2009,"posterUrl":"/library/metadata/2823/thumb/1599308935","imdbId":"","language":"en","overview":"A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.","moviesInCollection":[],"ratingKey":2823,"key":"/library/metadata/2823","collectionTitle":"","collectionId":-1,"tmdbId":17332},{"name":"Sunshine","year":2007,"posterUrl":"/library/metadata/2196/thumb/1599308689","imdbId":"","language":"en","overview":"Fifty years into the future, the sun is dying, and Earth is threatened by arctic temperatures. A team of astronauts is sent to revive the Sun — but the mission fails. Seven years later, a new team is sent to finish the mission as mankind’s last hope.","moviesInCollection":[],"ratingKey":2196,"key":"/library/metadata/2196","collectionTitle":"","collectionId":-1,"tmdbId":1272},{"name":"Gloria Bell","year":2019,"posterUrl":"/library/metadata/1004/thumb/1599308194","imdbId":"","language":"en","overview":"Gloria is a free-spirited divorcée who spends her days at a straight-laced office job and her nights on the dance floor, joyfully letting loose at clubs around Los Angeles. After meeting Arnold on a night out, she finds herself thrust into an unexpected new romance, filled with both the joys of budding love and the complications of dating, identity, and family.","moviesInCollection":[],"ratingKey":1004,"key":"/library/metadata/1004","collectionTitle":"","collectionId":-1,"tmdbId":491473},{"name":"Premium Rush","year":2012,"posterUrl":"/library/metadata/1803/thumb/1599308520","imdbId":"","language":"en","overview":"In Manhattan, a bike messenger picks up an envelope that attracts the interest of a dirty cop, who pursues the cyclist throughout the city.","moviesInCollection":[],"ratingKey":1803,"key":"/library/metadata/1803","collectionTitle":"","collectionId":-1,"tmdbId":49526},{"name":"The Captain","year":2018,"posterUrl":"/library/metadata/2351/thumb/1586217089","imdbId":"","language":"en","overview":"Germany, 1945. Soldier Willi Herold, a deserter of the German army, stumbles into a uniform of Nazi captain abandoned during the last and desperate weeks of the Third Reich. Newly emboldened by the allure of a suit that he has stolen only to stay warm, Willi discovers that many Germans will follow the leader, whoever he is.","moviesInCollection":[],"ratingKey":2351,"key":"/library/metadata/2351","collectionTitle":"","collectionId":-1,"tmdbId":475094},{"name":"Spirited Away","year":2015,"posterUrl":"/library/metadata/2117/thumb/1599308656","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2117,"key":"/library/metadata/2117","collectionTitle":"","collectionId":-1,"tmdbId":129},{"name":"Young Frankenstein","year":1974,"posterUrl":"/library/metadata/3192/thumb/1599309062","imdbId":"","language":"en","overview":"A young neurosurgeon inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback, a pretty lab assistant and the elderly housekeeper. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind.","moviesInCollection":[],"ratingKey":3192,"key":"/library/metadata/3192","collectionTitle":"","collectionId":-1,"tmdbId":3034},{"name":"The Pool","year":2018,"posterUrl":"/library/metadata/2746/thumb/1599308898","imdbId":"","language":"en","overview":"Day, an insecure art director of a commercial production company is left alone to clear up a 6-meter deep deserted pool after the shooting. He falls asleep on an inflatable raft due to an unbearable fatigue. When he wakes up again the water level has sunk so low that he cannot climb out of the pool on his own. He screams for help but the only thing that hears him is some creature from a nearby crocodile farm.","moviesInCollection":[],"ratingKey":2746,"key":"/library/metadata/2746","collectionTitle":"","collectionId":-1,"tmdbId":550201},{"name":"Delta Force 2 The Colombian Connection","year":1990,"posterUrl":"/library/metadata/686/thumb/1599308076","imdbId":"","language":"en","overview":"When DEA agents are taken captive by a ruthless South American kingpin, the Delta Force is reunited to rescue them in this sequel to the 1986 film.","moviesInCollection":[],"ratingKey":686,"key":"/library/metadata/686","collectionTitle":"","collectionId":-1,"tmdbId":19086},{"name":"The Imitation Game","year":2014,"posterUrl":"/library/metadata/2578/thumb/1599308827","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2578,"key":"/library/metadata/2578","collectionTitle":"","collectionId":-1,"tmdbId":205596},{"name":"Thunder Road","year":2018,"posterUrl":"/library/metadata/2933/thumb/1599308974","imdbId":"","language":"en","overview":"A police officer faces a personal meltdown following a divorce and the death of his mother.","moviesInCollection":[],"ratingKey":2933,"key":"/library/metadata/2933","collectionTitle":"","collectionId":-1,"tmdbId":502422},{"name":"Tomb Raider","year":2018,"posterUrl":"/library/metadata/2951/thumb/1599308981","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2951,"key":"/library/metadata/2951","collectionTitle":"","collectionId":-1,"tmdbId":338970},{"name":"Trust","year":2011,"posterUrl":"/library/metadata/3013/thumb/1599309001","imdbId":"","language":"en","overview":"A suburban family is torn apart when fourteen-year-old Annie meets her first boyfriend online. After months of communicating via online chat and phone, Annie discovers her friend is not who he originally claimed to be. Shocked into disbelief, her parents are shattered by their daughter's actions and struggle to support her as she comes to terms with what has happened to her once innocent life.","moviesInCollection":[],"ratingKey":3013,"key":"/library/metadata/3013","collectionTitle":"","collectionId":-1,"tmdbId":44945},{"name":"Cold Blood","year":2019,"posterUrl":"/library/metadata/539/thumb/1599308025","imdbId":"","language":"en","overview":"A legendary but retired hit man lives in peace and isolation in the barren North American wilderness. When he rescues a woman from a snowmobiling accident, he soon discovers that she's harboring a secret that forces him to return to his lethal ways.","moviesInCollection":[],"ratingKey":539,"key":"/library/metadata/539","collectionTitle":"","collectionId":-1,"tmdbId":595985},{"name":"Assassin's Creed","year":2016,"posterUrl":"/library/metadata/229/thumb/1599307911","imdbId":"","language":"en","overview":"Through unlocked genetic memories that allow him to relive the adventures of his ancestor in 15th century Spain, Callum Lynch discovers he's a descendant of the secret 'Assassins' society. After gaining incredible knowledge and skills, he is now poised to take on the oppressive Knights Templar in the present day.","moviesInCollection":[],"ratingKey":229,"key":"/library/metadata/229","collectionTitle":"","collectionId":-1,"tmdbId":121856},{"name":"Escape Plan","year":2013,"posterUrl":"/library/metadata/835/thumb/1599308128","imdbId":"","language":"en","overview":"Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.","moviesInCollection":[],"ratingKey":835,"key":"/library/metadata/835","collectionTitle":"","collectionId":-1,"tmdbId":107846},{"name":"Lights Out","year":2016,"posterUrl":"/library/metadata/1388/thumb/1599308337","imdbId":"","language":"en","overview":"When Rebecca left home, she thought she left her childhood fears behind. Growing up, she was never really sure of what was and wasn’t real when the lights went out…and now her little brother, Martin, is experiencing the same unexplained and terrifying events that had once tested her sanity and threatened her safety. A frightening entity with a mysterious attachment to their mother, Sophie, has reemerged.","moviesInCollection":[],"ratingKey":1388,"key":"/library/metadata/1388","collectionTitle":"","collectionId":-1,"tmdbId":345911},{"name":"Saw III","year":2006,"posterUrl":"/library/metadata/41004/thumb/1599309117","imdbId":"","language":"en","overview":"Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scramble to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.","moviesInCollection":[],"ratingKey":41004,"key":"/library/metadata/41004","collectionTitle":"","collectionId":-1,"tmdbId":214},{"name":"Dog Day Afternoon","year":1975,"posterUrl":"/library/metadata/724/thumb/1599308091","imdbId":"","language":"en","overview":"Based on the true story of would-be Brooklyn bank robbers John Wojtowicz and Salvatore Naturale. Sonny and Sal attempt a bank heist which quickly turns sour and escalates into a hostage situation and stand-off with the police. As Sonny's motives for the robbery are slowly revealed and things become more complicated, the heist turns into a media circus.","moviesInCollection":[],"ratingKey":724,"key":"/library/metadata/724","collectionTitle":"","collectionId":-1,"tmdbId":968},{"name":"The Antichrist","year":1978,"posterUrl":"/library/metadata/2294/thumb/1599308723","imdbId":"","language":"en","overview":"An Italian nobleman seeks help after his paralyzed daughter becomes possessed by the spirit of a malevolent ancestress.","moviesInCollection":[],"ratingKey":2294,"key":"/library/metadata/2294","collectionTitle":"","collectionId":-1,"tmdbId":78546},{"name":"Videodrome","year":1983,"posterUrl":"/library/metadata/3085/thumb/1599309026","imdbId":"","language":"en","overview":"As the president of a trashy TV channel, Max Renn is desperate for new programming to attract viewers. When he happens upon \"Videodrome,\" a TV show dedicated to gratuitous torture and punishment, Max sees a potential hit and broadcasts the show on his channel. However, after his girlfriend auditions for the show and never returns, Max investigates the truth behind Videodrome and discovers that the graphic violence may not be as fake as he thought.","moviesInCollection":[],"ratingKey":3085,"key":"/library/metadata/3085","collectionTitle":"","collectionId":-1,"tmdbId":837},{"name":"Alien Covenant","year":2017,"posterUrl":"/library/metadata/150/thumb/1599307881","imdbId":"","language":"en","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—which has a sole inhabitant: the 'synthetic', David, survivor of the doomed Prometheus expedition.","moviesInCollection":[],"ratingKey":150,"key":"/library/metadata/150","collectionTitle":"","collectionId":-1,"tmdbId":126889},{"name":"A Wrinkle in Time","year":2018,"posterUrl":"/library/metadata/103/thumb/1599307864","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":103,"key":"/library/metadata/103","collectionTitle":"","collectionId":-1,"tmdbId":407451},{"name":"Death Proof","year":2007,"posterUrl":"/library/metadata/666/thumb/1599308069","imdbId":"","language":"en","overview":"Austin's hottest DJ, Jungle Julia, sets out into the night to unwind with her two friends Shanna and Arlene. Covertly tracking their moves is Stuntman Mike, a scarred rebel leering from behind the wheel of his muscle car, revving just feet away.","moviesInCollection":[],"ratingKey":666,"key":"/library/metadata/666","collectionTitle":"","collectionId":-1,"tmdbId":1991},{"name":"I Kill Giants","year":2018,"posterUrl":"/library/metadata/1159/thumb/1599308254","imdbId":"","language":"en","overview":"Sophia, a new high school student, tries to make friends with Barbara, who tells her that “she kills giants,” protecting this way her hometown and its inhabitants, who do not understand her strange behavior.","moviesInCollection":[],"ratingKey":1159,"key":"/library/metadata/1159","collectionTitle":"","collectionId":-1,"tmdbId":419831},{"name":"After the Ball","year":2015,"posterUrl":"/library/metadata/127/thumb/1599307873","imdbId":"","language":"en","overview":"After the Ball, a retail fairy tale set in the world of fashion. Kate's dream is to design for couturier houses. Although she is a bright new talent, Kate can't get a job. No one trusts the daughter of Lee Kassell, a retail guru who markets clothes \"inspired\" by the very designers Kate wants to work for. Who wants a spy among the sequins and stilettos? Reluctantly, Kate joins the family business where she must navigate around her duplicitous stepmother and two wicked stepsisters. But with the help of a prince of a guy in the shoe department her godmother's vintage clothes and a shocking switch of identities, Kate exposes the evil trio, saves her father's company -- and proves that everyone can wear a fabulous dress.","moviesInCollection":[],"ratingKey":127,"key":"/library/metadata/127","collectionTitle":"","collectionId":-1,"tmdbId":309924},{"name":"The Hangover","year":2009,"posterUrl":"/library/metadata/2527/thumb/1599308809","imdbId":"","language":"en","overview":"When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug – who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.","moviesInCollection":[],"ratingKey":2527,"key":"/library/metadata/2527","collectionTitle":"","collectionId":-1,"tmdbId":18785},{"name":"Scream 3","year":2000,"posterUrl":"/library/metadata/1989/thumb/1599308599","imdbId":"","language":"en","overview":"A murdering spree begins to happen again, this time its targeted toward the original Woodsboro survivors and those associated with the movie inside a movie, 'Stab 3'. Sydney must face the demons of her past to stop the killer.","moviesInCollection":[],"ratingKey":1989,"key":"/library/metadata/1989","collectionTitle":"","collectionId":-1,"tmdbId":4234},{"name":"Breaking News","year":2004,"posterUrl":"/library/metadata/423/thumb/1599307981","imdbId":"","language":"en","overview":"When an ambulatory TV news unit live broadcasts the embarrassing defeat of a police battalion by five bank robbers in a ballistic showdown, the credibility of the police force drops to a nadir. While on a separate investigation in a run-down building, detective Cheung discovers the hideout of the robbers. Cheung and his men have also entered the building, getting ready to take their foes out any minute. Meanwhile, in order to beat the media at its own game, Inspector Rebecca decides to turn the stakeout into a breaking news show.","moviesInCollection":[],"ratingKey":423,"key":"/library/metadata/423","collectionTitle":"","collectionId":-1,"tmdbId":12543},{"name":"American Sniper","year":2015,"posterUrl":"/library/metadata/190/thumb/1599307897","imdbId":"","language":"en","overview":"U.S. Navy SEAL Chris Kyle takes his sole mission—protect his comrades—to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States, Kyle serves four tours of duty in Iraq. However, when he finally returns home, he finds that he cannot leave the war behind.","moviesInCollection":[],"ratingKey":190,"key":"/library/metadata/190","collectionTitle":"","collectionId":-1,"tmdbId":190859},{"name":"I Can Only Imagine","year":2018,"posterUrl":"/library/metadata/1155/thumb/1599308252","imdbId":"","language":"en","overview":"Growing up in Texas, Bart Millard suffers physical and emotional abuse at the hands of his father. His childhood and relationship with his dad inspires him to write the hit song \"I Can Only Imagine\" as singer of the Christian band MercyMe.","moviesInCollection":[],"ratingKey":1155,"key":"/library/metadata/1155","collectionTitle":"","collectionId":-1,"tmdbId":470878},{"name":"Rear Window","year":1954,"posterUrl":"/library/metadata/1858/thumb/1599308544","imdbId":"","language":"en","overview":"Professional photographer L.B. 'Jeff' Jeffries breaks his leg while getting an action shot at an auto race. Confined to his New York apartment, he spends his time looking out of the rear window observing the neighbors. When he begins to suspect that a man across the courtyard may have murdered his wife, Jeff enlists the help of his high society fashion-consultant girlfriend and his visiting nurse to investigate.","moviesInCollection":[],"ratingKey":1858,"key":"/library/metadata/1858","collectionTitle":"","collectionId":-1,"tmdbId":567},{"name":"Batman Assault on Arkham","year":2014,"posterUrl":"/library/metadata/287/thumb/1599307932","imdbId":"","language":"en","overview":"Based on the hit video game series, Batman must find a bomb planted by the Joker while dealing with a mysterious team of villains called the Suicide Squad.","moviesInCollection":[],"ratingKey":287,"key":"/library/metadata/287","collectionTitle":"","collectionId":-1,"tmdbId":242643},{"name":"Icarus","year":2010,"posterUrl":"/library/metadata/1167/thumb/1599308257","imdbId":"","language":"en","overview":"Trained KGB assassin, EDWARD GENN (code name ICARUS), worked years ago as a sleeper agent in America. But when the Soviet Union collapsed, he quickly found himself in a foreign country with no one to trust. Determined to escape his muddled existence, EDWARD tries to start over. He assumes a new identity, starts a family and tries to start his own legitimate business that could potentially pull him out of his world of being a hitman.","moviesInCollection":[],"ratingKey":1167,"key":"/library/metadata/1167","collectionTitle":"","collectionId":-1,"tmdbId":35402},{"name":"The Vanishing","year":2019,"posterUrl":"/library/metadata/2885/thumb/1599308958","imdbId":"","language":"en","overview":"Three lighthouse keepers on an uninhabited island off the coast of Scotland discover something that isn't theirs to keep.","moviesInCollection":[],"ratingKey":2885,"key":"/library/metadata/2885","collectionTitle":"","collectionId":-1,"tmdbId":449459},{"name":"Battlestar Galactica Miniseries Part 2","year":2003,"posterUrl":"/library/metadata/316/thumb/1599307942","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":316,"key":"/library/metadata/316","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Bullets Over Broadway","year":1994,"posterUrl":"/library/metadata/440/thumb/1599307988","imdbId":"","language":"en","overview":"Set in 1920s New York City, this movie tells the story of idealistic young playwright David Shayne. Producer Julian Marx finally finds funding for the project from gangster Nick Valenti. The catch is that Nick's girl friend Olive Neal gets the part of a psychiatrist, and Olive is a bimbo who could never pass for a psychiatrist as well as being a dreadful actress. Agreeing to this first compromise is the first step to Broadway's complete seduction of David, who neglects longtime girl friend Ellen. Meanwhile David puts up with Warner Purcell, the leading man who is a compulsive eater, Helen Sinclair, the grand dame who wants her part jazzed up, and Cheech, Olive's interfering hitman / bodyguard. Eventually, the playwright must decide whether art or life is more important.","moviesInCollection":[],"ratingKey":440,"key":"/library/metadata/440","collectionTitle":"","collectionId":-1,"tmdbId":11382},{"name":"The Devil Wears Prada","year":2006,"posterUrl":"/library/metadata/2416/thumb/1599308765","imdbId":"","language":"en","overview":"Andy moves to New York to work in the fashion industry. Her boss is extremely demanding, cruel and won't let her succeed if she doesn't fit into the high class elegant look of their magazine.","moviesInCollection":[],"ratingKey":2416,"key":"/library/metadata/2416","collectionTitle":"","collectionId":-1,"tmdbId":350},{"name":"The One","year":2001,"posterUrl":"/library/metadata/2728/thumb/1599308890","imdbId":"","language":"en","overview":"A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.","moviesInCollection":[],"ratingKey":2728,"key":"/library/metadata/2728","collectionTitle":"","collectionId":-1,"tmdbId":10796},{"name":"The Shape of Water","year":2017,"posterUrl":"/library/metadata/2811/thumb/1599308928","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2811,"key":"/library/metadata/2811","collectionTitle":"","collectionId":-1,"tmdbId":399055},{"name":"Don't Breathe","year":2016,"posterUrl":"/library/metadata/731/thumb/1599308093","imdbId":"","language":"en","overview":"A group of teens break into a blind man's home thinking they'll get away with the perfect crime. They're wrong.","moviesInCollection":[],"ratingKey":731,"key":"/library/metadata/731","collectionTitle":"","collectionId":-1,"tmdbId":300669},{"name":"Scooby-Doo! The Mystery Begins","year":2009,"posterUrl":"/library/metadata/1986/thumb/1599308598","imdbId":"","language":"en","overview":"The story of how Mystery Inc. was formed.","moviesInCollection":[],"ratingKey":1986,"key":"/library/metadata/1986","collectionTitle":"","collectionId":-1,"tmdbId":22620},{"name":"1917","year":2019,"posterUrl":"/library/metadata/39412/thumb/1599309083","imdbId":"","language":"en","overview":"At the height of the First World War, two young British soldiers must cross enemy territory and deliver a message that will stop a deadly attack on hundreds of soldiers.","moviesInCollection":[],"ratingKey":39412,"key":"/library/metadata/39412","collectionTitle":"","collectionId":-1,"tmdbId":530915},{"name":"Gattaca","year":1997,"posterUrl":"/library/metadata/970/thumb/1599308182","imdbId":"","language":"en","overview":"In a future society in the era of indefinite eugenics, humans are set on a life course depending on their DNA. Young Vincent Freeman is born with a condition that would prevent him from space travel, yet is determined to infiltrate the GATTACA space program.","moviesInCollection":[],"ratingKey":970,"key":"/library/metadata/970","collectionTitle":"","collectionId":-1,"tmdbId":782},{"name":"Ride Along 2","year":2016,"posterUrl":"/library/metadata/1905/thumb/1599308564","imdbId":"","language":"en","overview":"As his wedding day approaches, Ben heads to Miami with his soon-to-be brother-in-law James to bring down a drug dealer who's supplying the dealers of Atlanta with product.","moviesInCollection":[],"ratingKey":1905,"key":"/library/metadata/1905","collectionTitle":"","collectionId":-1,"tmdbId":323675},{"name":"Last Moment of Clarity","year":2020,"posterUrl":"/library/metadata/46508/thumb/1599309161","imdbId":"","language":"en","overview":"A normal New Yorker's life is upended when his girlfriend is murdered by the Bulgarian mob. He flees to Paris to hide from her killers. But three years later, he sees a similar looking woman on the silver screen. Obsession with past love takes Sam to Los Angeles to look for answers, only to put him back into the sights of the Bulgarians. An updated Hitchcockian thriller in the vein of Vertigo and Rear Window","moviesInCollection":[],"ratingKey":46508,"key":"/library/metadata/46508","collectionTitle":"","collectionId":-1,"tmdbId":567608},{"name":"The Bourne Identity","year":2002,"posterUrl":"/library/metadata/2329/thumb/1599308734","imdbId":"","language":"en","overview":"Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. However, Bourne realizes that he has the combat and mental skills of a world-class spy—but who does he work for?","moviesInCollection":[],"ratingKey":2329,"key":"/library/metadata/2329","collectionTitle":"","collectionId":-1,"tmdbId":2501},{"name":"Step Up","year":2006,"posterUrl":"/library/metadata/46949/thumb/1599309171","imdbId":"","language":"en","overview":"Everyone deserves a chance to follow their dreams, but some people only get one shot. Tyler Gage is a rebel from the wrong side of Baltimore's tracks and the only thing that stands between him and an unfulfilled life are his dreams of one day making it out of there. Nora is a privileged ballet dancer attending Baltimore's ultra-elite Maryland School of the Arts","moviesInCollection":[],"ratingKey":46949,"key":"/library/metadata/46949","collectionTitle":"","collectionId":-1,"tmdbId":9762},{"name":"Beauty Shop","year":2005,"posterUrl":"/library/metadata/27181/thumb/1599309068","imdbId":"","language":"en","overview":"You thought you'd heard it all in the barbershop, but you haven't heard anything yet - the women get their own chance to shampoo, shine, and speak their minds in Beauty Shop.","moviesInCollection":[],"ratingKey":27181,"key":"/library/metadata/27181","collectionTitle":"","collectionId":-1,"tmdbId":14177},{"name":"The Death and Return of Superman","year":2019,"posterUrl":"/library/metadata/2404/thumb/1599308761","imdbId":"","language":"en","overview":"The Death of Superman and Reign of the Supermen now presented as an over two-hour unabridged and seamless animated feature. Witness the no-holds-barred battle between the Justice League and an unstoppable alien force known only as Doomsday, a battle that only Superman can finish and will forever change the face of Metropolis.","moviesInCollection":[],"ratingKey":2404,"key":"/library/metadata/2404","collectionTitle":"","collectionId":-1,"tmdbId":630656},{"name":"All Together Now","year":2020,"posterUrl":"/library/metadata/47799/thumb/1599309189","imdbId":"","language":"en","overview":"An optimistic, talented teen clings to a huge secret: she's homeless and living on a school bus. When tragedy strikes, can she learn to accept a helping hand?","moviesInCollection":[],"ratingKey":47799,"key":"/library/metadata/47799","collectionTitle":"","collectionId":-1,"tmdbId":615466},{"name":"Avengers Endgame","year":2019,"posterUrl":"/library/metadata/247/thumb/1599307919","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":247,"key":"/library/metadata/247","collectionTitle":"","collectionId":-1,"tmdbId":299534},{"name":"Blind Date","year":1984,"posterUrl":"/library/metadata/381/thumb/1599307967","imdbId":"","language":"en","overview":"A man goes blind when remembering his lost girlfriend, but the doctors can't find anything wrong with his eyes. They fit him with an experimental device which allows him to see with the aid of a computer interface and brain electrodes. Meanwhile, a taxi driver is taking young women up to their apartments, giving them gas, and performing a little fatal amateur surgery on them. Their paths inevitably converge, and the blind man must try to stop the psychopath.","moviesInCollection":[],"ratingKey":381,"key":"/library/metadata/381","collectionTitle":"","collectionId":-1,"tmdbId":80965},{"name":"Rob Roy","year":1995,"posterUrl":"/library/metadata/1915/thumb/1599308569","imdbId":"","language":"en","overview":"In the highlands of Scotland in the 1700s, Rob Roy tries to lead his small town to a better future, by borrowing money from the local nobility to buy cattle to herd to market. When the money is stolen, Rob is forced into a Robin Hood lifestyle to defend his family and honour.","moviesInCollection":[],"ratingKey":1915,"key":"/library/metadata/1915","collectionTitle":"","collectionId":-1,"tmdbId":11780},{"name":"Battlestar Galactica Miniseries Part 1","year":2003,"posterUrl":"/library/metadata/315/thumb/1599307942","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":315,"key":"/library/metadata/315","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Constantine","year":2005,"posterUrl":"/library/metadata/568/thumb/1599308035","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":568,"key":"/library/metadata/568","collectionTitle":"","collectionId":-1,"tmdbId":561},{"name":"Das Boot","year":2015,"posterUrl":"/library/metadata/642/thumb/1599308060","imdbId":"","language":"en","overview":"A German submarine hunts allied ships during the Second World War, but it soon becomes the hunted. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits.","moviesInCollection":[],"ratingKey":642,"key":"/library/metadata/642","collectionTitle":"","collectionId":-1,"tmdbId":387},{"name":"War","year":2007,"posterUrl":"/library/metadata/3102/thumb/1599309031","imdbId":"","language":"en","overview":"FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?","moviesInCollection":[],"ratingKey":3102,"key":"/library/metadata/3102","collectionTitle":"","collectionId":-1,"tmdbId":10431},{"name":"Max Payne","year":2008,"posterUrl":"/library/metadata/1473/thumb/1599308376","imdbId":"","language":"en","overview":"A DEA agent whose family was slain as part of a conspiracy, and an assassin out to avenge her sister's death, join forces to solve a series of murders in New York City.","moviesInCollection":[],"ratingKey":1473,"key":"/library/metadata/1473","collectionTitle":"","collectionId":-1,"tmdbId":13051},{"name":"Cyborg","year":1989,"posterUrl":"/library/metadata/618/thumb/1599308052","imdbId":"","language":"en","overview":"A martial artist hunts a killer in a plague-infested urban dump of the future.","moviesInCollection":[],"ratingKey":618,"key":"/library/metadata/618","collectionTitle":"","collectionId":-1,"tmdbId":10134},{"name":"The Grinch","year":2018,"posterUrl":"/library/metadata/2523/thumb/1599308807","imdbId":"","language":"en","overview":"The Grinch hatches a scheme to ruin Christmas when the residents of Whoville plan their annual holiday celebration.","moviesInCollection":[],"ratingKey":2523,"key":"/library/metadata/2523","collectionTitle":"","collectionId":-1,"tmdbId":360920},{"name":"Krampus","year":2015,"posterUrl":"/library/metadata/1320/thumb/1599308314","imdbId":"","language":"en","overview":"A horror comedy based on the ancient legend about a pagan creature who punishes children on Christmas.","moviesInCollection":[],"ratingKey":1320,"key":"/library/metadata/1320","collectionTitle":"","collectionId":-1,"tmdbId":287903},{"name":"Trolls World Tour","year":2020,"posterUrl":"/library/metadata/46005/thumb/1599309152","imdbId":"","language":"en","overview":"Queen Poppy and Branch make a surprising discovery — there are other Troll worlds beyond their own, and their distinct differences create big clashes between these various tribes. When a mysterious threat puts all of the Trolls across the land in danger, Poppy, Branch, and their band of friends must embark on an epic quest to create harmony among the feuding Trolls to unite them against certain doom.","moviesInCollection":[],"ratingKey":46005,"key":"/library/metadata/46005","collectionTitle":"","collectionId":-1,"tmdbId":446893},{"name":"The Internship","year":2013,"posterUrl":"/library/metadata/2587/thumb/1599308831","imdbId":"","language":"en","overview":"Two recently laid-off men in their 40s try to make it as interns at a successful Internet company where their managers are in their 20s.","moviesInCollection":[],"ratingKey":2587,"key":"/library/metadata/2587","collectionTitle":"","collectionId":-1,"tmdbId":116741},{"name":"Power Rangers","year":2017,"posterUrl":"/library/metadata/1795/thumb/1599308516","imdbId":"","language":"en","overview":"Saban's Power Rangers follows five ordinary teens who must become something extraordinary when they learn that their small town of Angel Grove — and the world — is on the verge of being obliterated by an alien threat. Chosen by destiny, our heroes quickly discover they are the only ones who can save the planet. But to do so, they will have to overcome their real-life issues and before it’s too late, band together as the Power Rangers.","moviesInCollection":[],"ratingKey":1795,"key":"/library/metadata/1795","collectionTitle":"","collectionId":-1,"tmdbId":305470},{"name":"Man Without a Star","year":1955,"posterUrl":"/library/metadata/1455/thumb/1599308368","imdbId":"","language":"en","overview":"Man Without a Star is a 1955 western film starring Kirk Douglas as a wanderer who gets dragged into a range war. It was based on the novel of the same name by Dee Linford.","moviesInCollection":[],"ratingKey":1455,"key":"/library/metadata/1455","collectionTitle":"","collectionId":-1,"tmdbId":43319},{"name":"Small Soldiers","year":1998,"posterUrl":"/library/metadata/2065/thumb/1599308634","imdbId":"","language":"en","overview":"When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.","moviesInCollection":[],"ratingKey":2065,"key":"/library/metadata/2065","collectionTitle":"","collectionId":-1,"tmdbId":11551},{"name":"The Cured","year":2018,"posterUrl":"/library/metadata/2382/thumb/1599308753","imdbId":"","language":"en","overview":"What happens when the undead return to life? In a world ravaged for years by a virus that turns the infected into zombie-like cannibals, a cure is at last found and the wrenching process of reintegrating the survivors back into society begins.","moviesInCollection":[],"ratingKey":2382,"key":"/library/metadata/2382","collectionTitle":"","collectionId":-1,"tmdbId":469721},{"name":"Gringo","year":2018,"posterUrl":"/library/metadata/1036/thumb/1599308207","imdbId":"","language":"en","overview":"An American businessman with a stake in a pharmaceutical company that's about to go public finds his life is thrown into turmoil by an incident in Mexico.","moviesInCollection":[],"ratingKey":1036,"key":"/library/metadata/1036","collectionTitle":"","collectionId":-1,"tmdbId":340022},{"name":"Thunderball","year":1965,"posterUrl":"/library/metadata/2934/thumb/1599308975","imdbId":"","language":"en","overview":"A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.","moviesInCollection":[],"ratingKey":2934,"key":"/library/metadata/2934","collectionTitle":"","collectionId":-1,"tmdbId":660},{"name":"Halloween The Curse of Michael Myers","year":1995,"posterUrl":"/library/metadata/1053/thumb/1599308214","imdbId":"","language":"en","overview":"Six years ago, Michael Myers terrorized the town of Haddonfield, Illinois. He and his niece, Jamie Lloyd, have disappeared. Jamie was kidnapped by a bunch of evil druids who protect Michael Myers. And now, six years later, Jamie has escaped after giving birth to Michael's child. She runs to Haddonfield to get Dr. Loomis to help her again.","moviesInCollection":[],"ratingKey":1053,"key":"/library/metadata/1053","collectionTitle":"","collectionId":-1,"tmdbId":10987},{"name":"Universal Soldier The Return","year":1999,"posterUrl":"/library/metadata/3056/thumb/1599309016","imdbId":"","language":"en","overview":"Luc Deveraux, the heroic former Universal Soldier, is about to be thrown into action once again. When Seth (Michael Jai White), the supercomputer controlled ultra-warrior, decides to take revenge and destroy its creators, only Luc can stop it. All hell breaks loose as Luc battles Seth and a deadly team of perfect soldiers in a struggle that pits man against machine and good against evil.","moviesInCollection":[],"ratingKey":3056,"key":"/library/metadata/3056","collectionTitle":"","collectionId":-1,"tmdbId":10366},{"name":"The Boondock Saints","year":1999,"posterUrl":"/library/metadata/2325/thumb/1599308733","imdbId":"","language":"en","overview":"With a God-inspired moral obligation to act against evil, twin brothers Conner and Murphy set out to rid Boston of criminals. However, rather than working within the system, these Irish Americans decide to take swift retribution into their own hands.","moviesInCollection":[],"ratingKey":2325,"key":"/library/metadata/2325","collectionTitle":"","collectionId":-1,"tmdbId":8374},{"name":"Equals","year":2015,"posterUrl":"/library/metadata/2438/thumb/1599308774","imdbId":"","language":"en","overview":"A futuristic love story set in a world where emotions have been eradicated.","moviesInCollection":[],"ratingKey":2438,"key":"/library/metadata/2438","collectionTitle":"","collectionId":-1,"tmdbId":301875},{"name":"Batman & Mr. Freeze SubZero","year":1998,"posterUrl":"/library/metadata/282/thumb/1599307931","imdbId":"","language":"en","overview":"When a desperate Mr. Freeze, to save his dying wife, kidnaps Barbara Gordon (Batgirl) as an involuntary organ donor, Batman and Robin must find her before the operation can begin.","moviesInCollection":[],"ratingKey":282,"key":"/library/metadata/282","collectionTitle":"","collectionId":-1,"tmdbId":15805},{"name":"Captain Marvel","year":2019,"posterUrl":"/library/metadata/468/thumb/1599308000","imdbId":"","language":"en","overview":"The story follows Carol Danvers as she becomes one of the universe’s most powerful heroes when Earth is caught in the middle of a galactic war between two alien races. Set in the 1990s, Captain Marvel is an all-new adventure from a previously unseen period in the history of the Marvel Cinematic Universe.","moviesInCollection":[],"ratingKey":468,"key":"/library/metadata/468","collectionTitle":"","collectionId":-1,"tmdbId":299537},{"name":"What Happens in Vegas","year":2008,"posterUrl":"/library/metadata/3127/thumb/1599309040","imdbId":"","language":"en","overview":"During a wild vacation in Las Vegas, career woman Joy McNally and playboy Jack Fuller come to the sober realization that they have married each other after a night of drunken abandon. They are then compelled, for legal reasons, to live life as a couple for a limited period of time. At stake is a large amount of money.","moviesInCollection":[],"ratingKey":3127,"key":"/library/metadata/3127","collectionTitle":"","collectionId":-1,"tmdbId":9029},{"name":"Poetic Justice","year":1993,"posterUrl":"/library/metadata/1764/thumb/1599308503","imdbId":"","language":"en","overview":"In this film, we see the world through the eyes of main character Justice, a young African-American poet. A mail carrier invites a few friends along for a long overnight delivery run.","moviesInCollection":[],"ratingKey":1764,"key":"/library/metadata/1764","collectionTitle":"","collectionId":-1,"tmdbId":8291},{"name":"The Hateful Eight","year":2015,"posterUrl":"/library/metadata/2534/thumb/1599308812","imdbId":"","language":"en","overview":"Bounty hunters seek shelter from a raging blizzard and get caught up in a plot of betrayal and deception.","moviesInCollection":[],"ratingKey":2534,"key":"/library/metadata/2534","collectionTitle":"","collectionId":-1,"tmdbId":273248},{"name":"The Wretched","year":2020,"posterUrl":"/library/metadata/47402/thumb/1599309180","imdbId":"","language":"en","overview":"A rebellious teenage boy, struggling with his parent's imminent divorce, encounters a terrifying evil after his next-door neighbor becomes possessed by an ancient witch that feasts on children.","moviesInCollection":[],"ratingKey":47402,"key":"/library/metadata/47402","collectionTitle":"","collectionId":-1,"tmdbId":605804},{"name":"Demonic Toys","year":1992,"posterUrl":"/library/metadata/691/thumb/1599308077","imdbId":"","language":"en","overview":"A botched bust on a pair of arms dealers inadvertantly leads to the raising of a sixty-six-year-old demon with the power to bring toys to life as his personal minions. The demon is looking for a body to inhabit so he can increase his powers, and it just so happens that one of the police officers is pregnant with the ideal host.","moviesInCollection":[],"ratingKey":691,"key":"/library/metadata/691","collectionTitle":"","collectionId":-1,"tmdbId":40649},{"name":"Red Lights","year":2012,"posterUrl":"/library/metadata/1868/thumb/1599308548","imdbId":"","language":"en","overview":"Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.","moviesInCollection":[],"ratingKey":1868,"key":"/library/metadata/1868","collectionTitle":"","collectionId":-1,"tmdbId":75638},{"name":"Coach Carter","year":2005,"posterUrl":"/library/metadata/533/thumb/1599308023","imdbId":"","language":"en","overview":"Based on a true story, in which Richmond High School head basketball coach Ken Carter made headlines in 1999 for benching his undefeated team due to poor academic results.","moviesInCollection":[],"ratingKey":533,"key":"/library/metadata/533","collectionTitle":"","collectionId":-1,"tmdbId":7214},{"name":"The Flu","year":2013,"posterUrl":"/library/metadata/921/thumb/1599308161","imdbId":"","language":"en","overview":"A case of the flu quickly morphs into a pandemic. As the death toll mounts and the living panic, the government plans extreme measures to contain it.","moviesInCollection":[],"ratingKey":921,"key":"/library/metadata/921","collectionTitle":"","collectionId":-1,"tmdbId":200085},{"name":"R.I.P.D.","year":2013,"posterUrl":"/library/metadata/1833/thumb/1599308532","imdbId":"","language":"en","overview":"A recently slain cop joins a team of undead police officers working for the Rest in Peace Department and tries to find the man who murdered him. Based on the comic by Peter M. Lenkov.","moviesInCollection":[],"ratingKey":1833,"key":"/library/metadata/1833","collectionTitle":"","collectionId":-1,"tmdbId":49524},{"name":"Rings","year":2017,"posterUrl":"/library/metadata/1907/thumb/1599308565","imdbId":"","language":"en","overview":"Julia becomes worried about her boyfriend, Holt when he explores the dark urban legend of a mysterious videotape said to kill the watcher seven days after viewing. She sacrifices herself to save her boyfriend and in doing so makes a horrifying discovery: there is a \"movie within the movie\" that no one has ever seen before.","moviesInCollection":[],"ratingKey":1907,"key":"/library/metadata/1907","collectionTitle":"","collectionId":-1,"tmdbId":14564},{"name":"Sicario","year":2015,"posterUrl":"/library/metadata/2035/thumb/1599308620","imdbId":"","language":"en","overview":"An idealistic FBI agent is enlisted by a government task force to aid in the escalating war against drugs at the border area between the U.S. and Mexico.","moviesInCollection":[],"ratingKey":2035,"key":"/library/metadata/2035","collectionTitle":"","collectionId":-1,"tmdbId":273481},{"name":"The Recruit","year":2003,"posterUrl":"/library/metadata/2776/thumb/1599308913","imdbId":"","language":"en","overview":"A brilliant CIA trainee must prove his worth at the Farm, the agency's secret training grounds, where he learns to watch his back and trust no one.","moviesInCollection":[],"ratingKey":2776,"key":"/library/metadata/2776","collectionTitle":"","collectionId":-1,"tmdbId":1647},{"name":"Seven Pounds","year":2008,"posterUrl":"/library/metadata/2002/thumb/1599308605","imdbId":"","language":"en","overview":"An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.","moviesInCollection":[],"ratingKey":2002,"key":"/library/metadata/2002","collectionTitle":"","collectionId":-1,"tmdbId":11321},{"name":"Batman Ninja","year":2018,"posterUrl":"/library/metadata/297/thumb/1599307935","imdbId":"","language":"en","overview":"Gorilla Grodd's time displacement machine transports many of Batman's worst enemies to feudal Japan, along with the Dark Knight and a few of his allies.","moviesInCollection":[],"ratingKey":297,"key":"/library/metadata/297","collectionTitle":"","collectionId":-1,"tmdbId":485942},{"name":"Hercules","year":2014,"posterUrl":"/library/metadata/1102/thumb/1599308233","imdbId":"","language":"en","overview":"Fourteen hundred years ago, a tormented soul walked the earth that was neither man nor god. Hercules was the powerful son of the god king Zeus, for this he received nothing but suffering his entire life. After twelve arduous labors and the loss of his family, this dark, world-weary soul turned his back on the gods finding his only solace in bloody battle. Over the years he warmed to the company of six similar souls, their only bond being their love of fighting and presence of death. These men and woman never question where they go to fight or why or whom, just how much they will be paid. Now the King of Thrace has hired these mercenaries to train his men to become the greatest army of all time. It is time for this bunch of lost souls to finally have their eyes opened to how far they have fallen when they must train an army to become as ruthless and blood thirsty as their reputation has become.","moviesInCollection":[],"ratingKey":1102,"key":"/library/metadata/1102","collectionTitle":"","collectionId":-1,"tmdbId":184315},{"name":"Divergent","year":2014,"posterUrl":"/library/metadata/717/thumb/1599308088","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":717,"key":"/library/metadata/717","collectionTitle":"","collectionId":-1,"tmdbId":157350},{"name":"The 6th Day","year":2000,"posterUrl":"/library/metadata/2274/thumb/1599308716","imdbId":"","language":"en","overview":"Futuristic action about a man who meets a clone of himself and stumbles into a grand conspiracy about clones taking over the world.","moviesInCollection":[],"ratingKey":2274,"key":"/library/metadata/2274","collectionTitle":"","collectionId":-1,"tmdbId":8452},{"name":"Army of Darkness","year":1993,"posterUrl":"/library/metadata/221/thumb/1599307909","imdbId":"","language":"en","overview":"A man is accidentally transported to 1300 A.D., where he must battle an army of the dead and retrieve the Necronomicon so he can return home.","moviesInCollection":[],"ratingKey":221,"key":"/library/metadata/221","collectionTitle":"","collectionId":-1,"tmdbId":766},{"name":"Planes Fire & Rescue","year":2014,"posterUrl":"/library/metadata/1752/thumb/1599308499","imdbId":"","language":"en","overview":"When world-famous air racer Dusty learns that his engine is damaged and he may never race again, he must shift gears and is launched into the world of aerial firefighting. Dusty joins forces with veteran fire and rescue helicopter Blade Ranger and his team, a bunch of all-terrain vehicles known as The Smokejumpers. Together, the fearless team battles a massive wildfire, and Dusty learns what it takes to become a true hero.","moviesInCollection":[],"ratingKey":1752,"key":"/library/metadata/1752","collectionTitle":"","collectionId":-1,"tmdbId":218836},{"name":"The Dirty Dozen The Deadly Mission","year":1987,"posterUrl":"/library/metadata/2425/thumb/1599308769","imdbId":"","language":"en","overview":"Learning of a Nazi plot to attack Washington, D.C. with a deadly nerve gas, Major Wright leads twelve convicts on a suicide mission deep into occupied France to destroy the secret factory where the poison is made.","moviesInCollection":[],"ratingKey":2425,"key":"/library/metadata/2425","collectionTitle":"","collectionId":-1,"tmdbId":36572},{"name":"National Lampoon's Vacation","year":1983,"posterUrl":"/library/metadata/1591/thumb/1599308428","imdbId":"","language":"en","overview":"Clark Griswold is on a quest to take his family on a quest to Walley World theme park for a vacation, but things don't go exactly as planned.","moviesInCollection":[],"ratingKey":1591,"key":"/library/metadata/1591","collectionTitle":"","collectionId":-1,"tmdbId":11153},{"name":"Crazy Heart","year":2009,"posterUrl":"/library/metadata/589/thumb/1599308043","imdbId":"","language":"en","overview":"When reporter, Jean Craddock interviews Bad Blake—an alcoholic, seen-better-days country music legend—they connect, and the hard-living crooner sees a possible saving grace in a life with Jean and her young son.","moviesInCollection":[],"ratingKey":589,"key":"/library/metadata/589","collectionTitle":"","collectionId":-1,"tmdbId":25196},{"name":"The Fly","year":1986,"posterUrl":"/library/metadata/2471/thumb/1599308788","imdbId":"","language":"en","overview":"When Seth Brundle makes a huge scientific and technological breakthrough in teleportation, he decides to test it on himself. Unbeknownst to him, a common housefly manages to get inside the device and the two become one.","moviesInCollection":[],"ratingKey":2471,"key":"/library/metadata/2471","collectionTitle":"","collectionId":-1,"tmdbId":9426},{"name":"Anchorman 2 The Legend Continues","year":2013,"posterUrl":"/library/metadata/195/thumb/1599307899","imdbId":"","language":"en","overview":"With the 70s behind him, San Diego's top rated newsman, Ron Burgundy, returns to take New York's first 24-hour news channel by storm.","moviesInCollection":[],"ratingKey":195,"key":"/library/metadata/195","collectionTitle":"","collectionId":-1,"tmdbId":109443},{"name":"Casino","year":1995,"posterUrl":"/library/metadata/480/thumb/1599308004","imdbId":"","language":"en","overview":"In early-1970s Las Vegas, low-level mobster Sam \"Ace\" Rothstein gets tapped by his bosses to head the Tangiers Casino. At first, he's a great success in the job, but over the years, problems with his loose-cannon enforcer Nicky Santoro, his ex-hustler wife Ginger, her con-artist ex Lester Diamond and a handful of corrupt politicians put Sam in ever-increasing danger.","moviesInCollection":[],"ratingKey":480,"key":"/library/metadata/480","collectionTitle":"","collectionId":-1,"tmdbId":524},{"name":"By the Gun","year":2014,"posterUrl":"/library/metadata/453/thumb/1599307993","imdbId":"","language":"en","overview":"A rising Boston gangster (Ben Barnes) endangers those around him when he starts to make moves without the knowledge of his boss (Harvey Keitel).","moviesInCollection":[],"ratingKey":453,"key":"/library/metadata/453","collectionTitle":"","collectionId":-1,"tmdbId":270005},{"name":"Hard Target","year":1993,"posterUrl":"/library/metadata/1063/thumb/1599308218","imdbId":"","language":"en","overview":"When a woman's father goes missing, she enlists a local to aid in her search. The pair soon discover that her father has died at the hands of a wealthy sportsman who hunts homeless men as a form of recreation.","moviesInCollection":[],"ratingKey":1063,"key":"/library/metadata/1063","collectionTitle":"","collectionId":-1,"tmdbId":2019},{"name":"The Santa Clause 3 The Escape Clause","year":2006,"posterUrl":"/library/metadata/2796/thumb/1599308922","imdbId":"","language":"en","overview":"Now that Santa and Mrs. Claus have the North Pole running smoothly, the Counsel of Legendary Figures has called an emergency meeting on Christmas Eve! The evil Jack Frost has been making trouble, looking to take over the holiday! So he launches a plan to sabotage the toy factory and compel Scott to invoke the little-known Escape Clause and wish he'd never become Santa.","moviesInCollection":[],"ratingKey":2796,"key":"/library/metadata/2796","collectionTitle":"","collectionId":-1,"tmdbId":13767},{"name":"The Lego Batman Movie","year":2017,"posterUrl":"/library/metadata/2630/thumb/1599308847","imdbId":"","language":"en","overview":"In the irreverent spirit of fun that made \"The Lego Movie\" a worldwide phenomenon, the self-described leading man of that ensemble—Lego Batman—stars in his own big-screen adventure. But there are big changes brewing in Gotham, and if he wants to save the city from The Joker’s hostile takeover, Batman may have to drop the lone vigilante thing, try to work with others and maybe, just maybe, learn to lighten up.","moviesInCollection":[],"ratingKey":2630,"key":"/library/metadata/2630","collectionTitle":"","collectionId":-1,"tmdbId":324849},{"name":"Radio","year":2003,"posterUrl":"/library/metadata/1835/thumb/1599308533","imdbId":"","language":"en","overview":"High school football coach, Harold Jones befriends Radio, a mentally-challenged man who becomes a student at T.L. Hanna High School in Anderson, South Carolina. Their friendship extends over several decades, where Radio transforms from a shy, tormented man into an inspiration to his community.","moviesInCollection":[],"ratingKey":1835,"key":"/library/metadata/1835","collectionTitle":"","collectionId":-1,"tmdbId":13920},{"name":"The Seagull","year":2018,"posterUrl":"/library/metadata/2803/thumb/1599308925","imdbId":"","language":"en","overview":"At a picturesque lakeside estate, a love triangle unfolds between the legendary diva Irina, her lover Boris, and the ingénue Nina.","moviesInCollection":[],"ratingKey":2803,"key":"/library/metadata/2803","collectionTitle":"","collectionId":-1,"tmdbId":341735},{"name":"Sudden Impact","year":1983,"posterUrl":"/library/metadata/2191/thumb/1599308687","imdbId":"","language":"en","overview":"When a young rape victim takes justice into her own hands and becomes a serial killer, it's up to Dirty Harry Callahan, on suspension from the SFPD, to bring her to justice.","moviesInCollection":[],"ratingKey":2191,"key":"/library/metadata/2191","collectionTitle":"","collectionId":-1,"tmdbId":10650},{"name":"Death Wish 4 The Crackdown","year":1987,"posterUrl":"/library/metadata/678/thumb/1599308073","imdbId":"","language":"en","overview":"After the death of his girlfriend's daughter from a drug overdose, Paul Kersey (Charles Bronson) takes on the local drug cartel.","moviesInCollection":[],"ratingKey":678,"key":"/library/metadata/678","collectionTitle":"","collectionId":-1,"tmdbId":26263},{"name":"Rio Bravo","year":1959,"posterUrl":"/library/metadata/1910/thumb/1599308567","imdbId":"","language":"en","overview":"The sheriff of a small town in southwest Texas must keep custody of a murderer whose brother, a powerful rancher, is trying to help him escape. After a friend is killed trying to muster support for him, he and his deputies - a disgraced drunk and a cantankerous old cripple - must find a way to hold out against the rancher's hired guns until the marshal arrives. In the meantime, matters are complicated by the presence of a young gunslinger - and a mysterious beauty who just came in on the last stagecoach.","moviesInCollection":[],"ratingKey":1910,"key":"/library/metadata/1910","collectionTitle":"","collectionId":-1,"tmdbId":301},{"name":"Hercules","year":1997,"posterUrl":"/library/metadata/1101/thumb/1599308232","imdbId":"","language":"en","overview":"Bestowed with superhuman strength, a young mortal named Hercules sets out to prove himself a hero in the eyes of his father, the great god Zeus. Along with his friends Pegasus, a flying horse, and Phil, a personal trainer, Hercules is tricked by the hilarious, hotheaded villain Hades, who's plotting to take over Mount Olympus!","moviesInCollection":[],"ratingKey":1101,"key":"/library/metadata/1101","collectionTitle":"","collectionId":-1,"tmdbId":11970},{"name":"Not Another Teen Movie","year":2001,"posterUrl":"/library/metadata/1621/thumb/1599308442","imdbId":"","language":"en","overview":"On a bet, a gridiron hero at John Hughes High School sets out to turn a bespectacled plain Jane into a beautiful and popular prom queen in this outrageous send-up of the teen movie genre.","moviesInCollection":[],"ratingKey":1621,"key":"/library/metadata/1621","collectionTitle":"","collectionId":-1,"tmdbId":11397},{"name":"A Walk Among the Tombstones","year":2014,"posterUrl":"/library/metadata/100/thumb/1599307862","imdbId":"","language":"en","overview":"Private investigator Matthew Scudder is hired by a drug kingpin to find out who kidnapped and murdered his wife.","moviesInCollection":[],"ratingKey":100,"key":"/library/metadata/100","collectionTitle":"","collectionId":-1,"tmdbId":169917},{"name":"9","year":2009,"posterUrl":"/library/metadata/46/thumb/1599307842","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46,"key":"/library/metadata/46","collectionTitle":"","collectionId":-1,"tmdbId":12244},{"name":"THX 1138","year":1971,"posterUrl":"/library/metadata/2936/thumb/1599308976","imdbId":"","language":"en","overview":"People in the future live in a totalitarian society. A technician named THX 1138 lives a mundane life between work and taking a controlled consumption of drugs that the government uses to make puppets out of people. As THX is without drugs for the first time he has feelings for a woman and they start a secret relationship.","moviesInCollection":[],"ratingKey":2936,"key":"/library/metadata/2936","collectionTitle":"","collectionId":-1,"tmdbId":636},{"name":"The Informant!","year":2009,"posterUrl":"/library/metadata/2583/thumb/1599308829","imdbId":"","language":"en","overview":"A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his company’s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.","moviesInCollection":[],"ratingKey":2583,"key":"/library/metadata/2583","collectionTitle":"","collectionId":-1,"tmdbId":11323},{"name":"The Living Daylights","year":1987,"posterUrl":"/library/metadata/2644/thumb/1599308853","imdbId":"","language":"en","overview":"James Bond helps a Russian General escape into the west. He soon finds out that the KGB wants to kill him for helping the General. A little while later the General is kidnapped from the Secret Service leading 007 to be suspicious.","moviesInCollection":[],"ratingKey":2644,"key":"/library/metadata/2644","collectionTitle":"","collectionId":-1,"tmdbId":708},{"name":"A Fall From Grace","year":2020,"posterUrl":"/library/metadata/61/thumb/1599307847","imdbId":"","language":"en","overview":"When a law-abiding woman gets indicted for murdering her husband, her lawyer soon realizes that a larger conspiracy may be at work.","moviesInCollection":[],"ratingKey":61,"key":"/library/metadata/61","collectionTitle":"","collectionId":-1,"tmdbId":651070},{"name":"G.I. Joe The Rise of Cobra","year":2009,"posterUrl":"/library/metadata/964/thumb/1599308180","imdbId":"","language":"en","overview":"From the Egyptian desert to deep below the polar ice caps, the elite G.I. JOE team uses the latest in next-generation spy and military equipment to fight the corrupt arms dealer Destro and the growing threat of the mysterious Cobra organization to prevent them from plunging the world into chaos.","moviesInCollection":[],"ratingKey":964,"key":"/library/metadata/964","collectionTitle":"","collectionId":-1,"tmdbId":14869},{"name":"The Neighbor","year":2018,"posterUrl":"/library/metadata/2708/thumb/1599308882","imdbId":"","language":"en","overview":"A middle-aged man in a stagnant marriage, finds his life upended when an attractive young woman and her seemingly abusive husband move in next door.","moviesInCollection":[],"ratingKey":2708,"key":"/library/metadata/2708","collectionTitle":"","collectionId":-1,"tmdbId":415311},{"name":"Alien Expedition","year":2018,"posterUrl":"/library/metadata/151/thumb/1599307881","imdbId":"","language":"en","overview":"After a deep space exploration vessel discovers a potentially habitable planet, a scouting team composed of human and biorobotic individuals is dispatched to investigate the planet's resources. Once on the ground, their reconnaissance mission soon turns into a battle for survival against the planet's hostile alien lifeforms.","moviesInCollection":[],"ratingKey":151,"key":"/library/metadata/151","collectionTitle":"","collectionId":-1,"tmdbId":550844},{"name":"The Lost City of Z","year":2016,"posterUrl":"/library/metadata/2656/thumb/1599308859","imdbId":"","language":"en","overview":"A true-life drama in the 1920s, centering on British explorer Col. Percy Fawcett, who discovered evidence of a previously unknown, advanced civilization in the Amazon and disappeared whilst searching for it.","moviesInCollection":[],"ratingKey":2656,"key":"/library/metadata/2656","collectionTitle":"","collectionId":-1,"tmdbId":314095},{"name":"Scary Movie 5","year":2013,"posterUrl":"/library/metadata/1977/thumb/1599308594","imdbId":"","language":"en","overview":"Home with their newly-formed family, happy parents Dan and Jody are haunted by sinister, paranormal activities. Determined to expel the insidious force, they install security cameras and discover their family is being stalked by an evil dead demon.","moviesInCollection":[],"ratingKey":1977,"key":"/library/metadata/1977","collectionTitle":"","collectionId":-1,"tmdbId":4258},{"name":"Finding Dory","year":2016,"posterUrl":"/library/metadata/897/thumb/1599308153","imdbId":"","language":"en","overview":"Dory is reunited with her friends Nemo and Marlin in the search for answers about her past. What can she remember? Who are her parents? And where did she learn to speak Whale?","moviesInCollection":[],"ratingKey":897,"key":"/library/metadata/897","collectionTitle":"","collectionId":-1,"tmdbId":127380},{"name":"The Scorpion King Book of Souls","year":2018,"posterUrl":"/library/metadata/2800/thumb/1599308923","imdbId":"","language":"en","overview":"The Scorpion King teams up with a female warrior named Tala, who is the sister of The Nubian King. Together they search for a legendary relic known as The Book of Souls, which will allow them to put an end to an evil warlord.","moviesInCollection":[],"ratingKey":2800,"key":"/library/metadata/2800","collectionTitle":"","collectionId":-1,"tmdbId":522417},{"name":"Magnum Force","year":1973,"posterUrl":"/library/metadata/1443/thumb/1599308362","imdbId":"","language":"en","overview":"\"Dirty\" Harry Callahan is a San Francisco Police Inspector on the trail of a group of rogue cops who have taken justice into their own hands. When shady characters are murdered one after another in grisly fashion, only Dirty Harry can stop them.","moviesInCollection":[],"ratingKey":1443,"key":"/library/metadata/1443","collectionTitle":"","collectionId":-1,"tmdbId":10648},{"name":"Country Strong","year":2010,"posterUrl":"/library/metadata/580/thumb/1599308040","imdbId":"","language":"en","overview":"Soon after the rising young singer-songwriter Beau Williams gets involved with a fallen, emotionally unstable country star Kelly Canter, the pair embark on a career resurrection tour helmed by her husband/manager James and featuring a beauty queen-turned-singer Chiles Stanton. Between concerts, romantic entanglements and old demons threaten to derail them all.","moviesInCollection":[],"ratingKey":580,"key":"/library/metadata/580","collectionTitle":"","collectionId":-1,"tmdbId":45272},{"name":"Oklahoma Crude","year":1973,"posterUrl":"/library/metadata/1640/thumb/1599308451","imdbId":"","language":"en","overview":"In 1913, in Oklahoma, oil derrick owner Lena Doyle, aided by her father and a hobo, is stubbornly drilling for oil despite the pressure from major oil companies to sell her land.","moviesInCollection":[],"ratingKey":1640,"key":"/library/metadata/1640","collectionTitle":"","collectionId":-1,"tmdbId":147106},{"name":"Touched with Fire","year":2016,"posterUrl":"/library/metadata/2964/thumb/1599308984","imdbId":"","language":"en","overview":"Carla and Marco are manic-depressive poets whose art is fueled by their emotional extremes. When they go off their meds, they end up in the same psychiatric hospital. As the chemistry between them stirs up their emotions, it intensifies their mania. Despite doctors' and parents' attempts to separate them, they pursue their beautiful but destructive romance which swings them from fantastical manic highs to suicidal depressive lows, until they have to choose between sanity and love.","moviesInCollection":[],"ratingKey":2964,"key":"/library/metadata/2964","collectionTitle":"","collectionId":-1,"tmdbId":324289},{"name":"Live Free or Die Hard","year":2007,"posterUrl":"/library/metadata/1403/thumb/1599308343","imdbId":"","language":"en","overview":"John McClane is back and badder than ever, and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.","moviesInCollection":[],"ratingKey":1403,"key":"/library/metadata/1403","collectionTitle":"","collectionId":-1,"tmdbId":1571},{"name":"*yearBreak*","year":2007,"posterUrl":"/library/metadata/48487/thumb/1601859712","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":48487,"key":"/library/metadata/48487","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Room","year":2015,"posterUrl":"/library/metadata/1934/thumb/1599308578","imdbId":"","language":"en","overview":"Jack is a young boy of 5 years old who has lived all his life in one room. He believes everything within it are the only real things in the world. But what will happen when his Ma suddenly tells him that there are other things outside of Room?","moviesInCollection":[],"ratingKey":1934,"key":"/library/metadata/1934","collectionTitle":"","collectionId":-1,"tmdbId":264644},{"name":"Thelma","year":2017,"posterUrl":"/library/metadata/2913/thumb/1599308968","imdbId":"","language":"en","overview":"A college student starts to experience extreme seizures. She soon learns that the violent episodes are a symptom of inexplicable abilities.","moviesInCollection":[],"ratingKey":2913,"key":"/library/metadata/2913","collectionTitle":"","collectionId":-1,"tmdbId":401898},{"name":"Overcomer","year":2019,"posterUrl":"/library/metadata/1681/thumb/1599308468","imdbId":"","language":"en","overview":"After reluctantly agreeing to coach cross-country, high school basketball Coach John Harrison helps the least likely runner attempt the impossible in the biggest race of the year.","moviesInCollection":[],"ratingKey":1681,"key":"/library/metadata/1681","collectionTitle":"","collectionId":-1,"tmdbId":527776},{"name":"General's Son 2","year":1991,"posterUrl":"/library/metadata/973/thumb/1599308183","imdbId":"","language":"en","overview":"The General's Son is set during the Japanese occupation of Korea, when the oppression of the imperial rulers is escalating in the streets of Seoul. Starring Park Sang Min (Tube) and Shin Hyun Jun (Face), The General's Son is a winning mixture of fast-paced action and colonial Korean realism, which helped the film become one of the biggest domestic hits of the 1990s.","moviesInCollection":[],"ratingKey":973,"key":"/library/metadata/973","collectionTitle":"","collectionId":-1,"tmdbId":265790},{"name":"The Cloverfield Paradox","year":2018,"posterUrl":"/library/metadata/2364/thumb/1599308746","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2364,"key":"/library/metadata/2364","collectionTitle":"","collectionId":-1,"tmdbId":384521},{"name":"Scary Movie 4","year":2006,"posterUrl":"/library/metadata/1976/thumb/1599308594","imdbId":"","language":"en","overview":"Cindy finds out the house she lives in is haunted by a little boy and goes on a quest to find out who killed him and why. Also, Alien \"Tr-iPods\" are invading the world and she has to uncover the secret in order to stop them.","moviesInCollection":[],"ratingKey":1976,"key":"/library/metadata/1976","collectionTitle":"","collectionId":-1,"tmdbId":4257},{"name":"Poltergeist III","year":1988,"posterUrl":"/library/metadata/1788/thumb/1599308513","imdbId":"","language":"en","overview":"Carol Anne has been sent to live with her Aunt and Uncle in an effort to hide her from the clutches of the ghostly Reverend Kane, but he tracks her down and terrorises her in her relatives' appartment in a tall glass building. Will he finally achieve his target and capture Carol Anne again, or will Tangina be able, yet again, to thwart him?","moviesInCollection":[],"ratingKey":1788,"key":"/library/metadata/1788","collectionTitle":"","collectionId":-1,"tmdbId":10306},{"name":"The Machine","year":2013,"posterUrl":"/library/metadata/2660/thumb/1599308861","imdbId":"","language":"en","overview":"Already deep into a second Cold War, Britain’s Ministry of Defense seeks a game-changing weapon. Programmer Vincent McCarthy unwittingly provides an answer in The Machine, a super-strong human cyborg. When a programming bug causes the prototype to decimate his lab, McCarthy takes his obsessive efforts underground, far away from inquisitive eyes.","moviesInCollection":[],"ratingKey":2660,"key":"/library/metadata/2660","collectionTitle":"","collectionId":-1,"tmdbId":174675},{"name":"The Rocker","year":2008,"posterUrl":"/library/metadata/2787/thumb/1599308918","imdbId":"","language":"en","overview":"Rob \"Fish\" Fishman is the drummer in '80s hair metal band Vesuvius. He's unceremoniously booted as the group signs a big record deal, is out of the music world for 20 years - and then receives a second chance with his nephew's band.","moviesInCollection":[],"ratingKey":2787,"key":"/library/metadata/2787","collectionTitle":"","collectionId":-1,"tmdbId":10186},{"name":"The Princess and the Frog","year":2009,"posterUrl":"/library/metadata/2755/thumb/1599308903","imdbId":"","language":"en","overview":"A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to face the same problem after she kisses him.","moviesInCollection":[],"ratingKey":2755,"key":"/library/metadata/2755","collectionTitle":"","collectionId":-1,"tmdbId":10198},{"name":"Christmas Break-In","year":2019,"posterUrl":"/library/metadata/510/thumb/1599308014","imdbId":"","language":"en","overview":"Izzy is an energetic 9-year-old. Overscheduled and running late, Izzy's parents can't pick her up on-time the last day of school before Christmas break. A blizzard complicates the matter, but not as much as a pair of bad guys who are freezing in an ice cream truck. The school's janitor is kidnapped by the intruders, and it's up to Izzy to save the day.","moviesInCollection":[],"ratingKey":510,"key":"/library/metadata/510","collectionTitle":"","collectionId":-1,"tmdbId":566494},{"name":"Truth or Dare","year":2018,"posterUrl":"/library/metadata/3014/thumb/1599309001","imdbId":"","language":"en","overview":"A harmless game of \"Truth or Dare\" among friends turns deadly when someone—or something—begins to punish those who tell a lie—or refuse the dare.","moviesInCollection":[],"ratingKey":3014,"key":"/library/metadata/3014","collectionTitle":"","collectionId":-1,"tmdbId":460019},{"name":"Daddy's Home 2","year":2017,"posterUrl":"/library/metadata/625/thumb/1599308054","imdbId":"","language":"en","overview":"Brad and Dusty must deal with their intrusive fathers during the holidays.","moviesInCollection":[],"ratingKey":625,"key":"/library/metadata/625","collectionTitle":"","collectionId":-1,"tmdbId":419680},{"name":"Prince of Persia The Sands of Time","year":2010,"posterUrl":"/library/metadata/1809/thumb/1599308522","imdbId":"","language":"en","overview":"A rogue prince reluctantly joins forces with a mysterious princess and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time – gift from the gods that can reverse time and allow its possessor to rule the world.","moviesInCollection":[],"ratingKey":1809,"key":"/library/metadata/1809","collectionTitle":"","collectionId":-1,"tmdbId":9543},{"name":"Young Guns","year":1988,"posterUrl":"/library/metadata/39367/thumb/1599309082","imdbId":"","language":"en","overview":"A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.","moviesInCollection":[],"ratingKey":39367,"key":"/library/metadata/39367","collectionTitle":"","collectionId":-1,"tmdbId":11967},{"name":"The Happytime Murders","year":2018,"posterUrl":"/library/metadata/2532/thumb/1599308811","imdbId":"","language":"en","overview":"In a world where human beings and puppets live together, when the members of the cast of a children's television show aired during the 1990s begin to get murdered one by one, puppet Phil Philips, a former LAPD detective who fell in disgrace and turned into a private eye, takes on the case at the request of his old boss in order to assist detective Edwards, who was his partner in the past.","moviesInCollection":[],"ratingKey":2532,"key":"/library/metadata/2532","collectionTitle":"","collectionId":-1,"tmdbId":412988},{"name":"In the Line of Fire","year":1993,"posterUrl":"/library/metadata/1179/thumb/1599308261","imdbId":"","language":"en","overview":"Veteran Secret Service agent Frank Horrigan is a man haunted by his failure to save President Kennedy while serving protection detail in Dallas. Thirty years later, a man calling himself \"Booth\" threatens the life of the current President, forcing Horrigan to come back to protection detail to confront the ghosts from his past.","moviesInCollection":[],"ratingKey":1179,"key":"/library/metadata/1179","collectionTitle":"","collectionId":-1,"tmdbId":9386},{"name":"When Marnie Was There","year":2015,"posterUrl":"/library/metadata/46113/thumb/1599309154","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46113,"key":"/library/metadata/46113","collectionTitle":"","collectionId":-1,"tmdbId":242828},{"name":"Terminator Dark Fate","year":2019,"posterUrl":"/library/metadata/2262/thumb/1599308712","imdbId":"","language":"en","overview":"Decades after Sarah Connor prevented Judgment Day, a lethal new Terminator is sent to eliminate the future leader of the resistance. In a fight to save mankind, battle-hardened Sarah Connor teams up with an unexpected ally and an enhanced super soldier to stop the deadliest Terminator yet.","moviesInCollection":[],"ratingKey":2262,"key":"/library/metadata/2262","collectionTitle":"","collectionId":-1,"tmdbId":290859},{"name":"General's Son 3","year":1992,"posterUrl":"/library/metadata/974/thumb/1599308184","imdbId":"","language":"en","overview":"The General's Son is set during the Japanese occupation of Korea, when the oppression of the imperial rulers is escalating in the streets of Seoul. Starring Park Sang Min (Tube) and Shin Hyun Jun (Face), The General's Son is a winning mixture of fast-paced action and colonial Korean realism, which helped the film become one of the biggest domestic hits of the 1990s.","moviesInCollection":[],"ratingKey":974,"key":"/library/metadata/974","collectionTitle":"","collectionId":-1,"tmdbId":265791},{"name":"Inferno","year":2016,"posterUrl":"/library/metadata/1191/thumb/1599308266","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1191,"key":"/library/metadata/1191","collectionTitle":"","collectionId":-1,"tmdbId":207932},{"name":"The Thing","year":1982,"posterUrl":"/library/metadata/2857/thumb/1599308948","imdbId":"","language":"en","overview":"In remote Antarctica, a group of American research scientists are disturbed at their base camp by a helicopter shooting at a sled dog. When they take in the dog, it brutally attacks both human beings and canines in the camp and they discover that the beast can assume the shape of its victims. A resourceful helicopter pilot and the camp doctor lead the camp crew in a desperate, gory battle against the vicious creature before it picks them all off, one by one.","moviesInCollection":[],"ratingKey":2857,"key":"/library/metadata/2857","collectionTitle":"","collectionId":-1,"tmdbId":1091},{"name":"A Christmas Wedding Date","year":2012,"posterUrl":"/library/metadata/55/thumb/1599307845","imdbId":"","language":"en","overview":"After being fired, Rebecca hours back to her old home town to attend her friends wedding on Christmas Eve and visit her mother. But when she tries to return home she finds she must relive Christmas Eve over and over until she gets it right.","moviesInCollection":[],"ratingKey":55,"key":"/library/metadata/55","collectionTitle":"","collectionId":-1,"tmdbId":150670},{"name":"East of Eden","year":1955,"posterUrl":"/library/metadata/801/thumb/1599308117","imdbId":"","language":"en","overview":"In the Salinas Valley, in and around World War I, Cal Trask feels he must compete against overwhelming odds with his brother for the love of their father. Cal is frustrated at every turn, from his reaction to the war, to how to get ahead in business and in life, to how to relate to estranged mother.","moviesInCollection":[],"ratingKey":801,"key":"/library/metadata/801","collectionTitle":"","collectionId":-1,"tmdbId":220},{"name":"Edges of Darkness","year":2009,"posterUrl":"/library/metadata/806/thumb/1599308119","imdbId":"","language":"en","overview":"Three interconnected tales of terror set against the backdrop of a zombie apocalypse.","moviesInCollection":[],"ratingKey":806,"key":"/library/metadata/806","collectionTitle":"","collectionId":-1,"tmdbId":24796},{"name":"Scott Pilgrim vs. the World","year":2010,"posterUrl":"/library/metadata/1987/thumb/1599308598","imdbId":"","language":"en","overview":"Scott Pilgrim is a 22 year old radical Canadian wannabe rockstar who falls in love with an American delivery girl, Ramona Flowers, and must defeat her seven evil exes to be able to date her.","moviesInCollection":[],"ratingKey":1987,"key":"/library/metadata/1987","collectionTitle":"","collectionId":-1,"tmdbId":22538},{"name":"The Return of Sister Street Fighter","year":1975,"posterUrl":"/library/metadata/2780/thumb/1599308914","imdbId":"","language":"en","overview":"When Koryu's childhood friend Shurei is abducted by gangsters, the desperate young woman recruits a female martial artist and a tough-as-nails stranger to join her for a dangerous rescue mission.","moviesInCollection":[],"ratingKey":2780,"key":"/library/metadata/2780","collectionTitle":"","collectionId":-1,"tmdbId":91845},{"name":"Galapagos with David Attenborough","year":2013,"posterUrl":"/library/metadata/48814/thumb/1601918758","imdbId":"","language":"en","overview":"Two hundred years after Charles Darwin set foot on the shores of the Galápagos Islands, David Attenborough travels to this wild and mysterious archipelago. Amongst the flora and fauna of these enchanted volcanic islands, Darwin formulated his groundbreaking theories on evolution. Journey with Attenborough to explore how life on the islands has continued to evolve in biological isolation, and how the ever-changing volcanic landscape has given birth to species and sub-species that exist nowhere else in the world. Encompassing treacherous journeys, life-forms that forge unlikely companionships, and survival against all odds, Galápagos tells the story of an evolutionary melting pot in which anything and everything is possible.","moviesInCollection":[],"ratingKey":48814,"key":"/library/metadata/48814","collectionTitle":"","collectionId":-1,"tmdbId":290397},{"name":"Wasp Network","year":2020,"posterUrl":"/library/metadata/46524/thumb/1599309163","imdbId":"","language":"en","overview":"Havana, Cuba, 1990. René González, an airplane pilot, unexpectedly flees the country, leaving behind his wife Olga and his daughter Irma, and begins a new life in Miami, where he becomes a member of an anti-Castro organization.","moviesInCollection":[],"ratingKey":46524,"key":"/library/metadata/46524","collectionTitle":"","collectionId":-1,"tmdbId":451184},{"name":"Ready or Not","year":2019,"posterUrl":"/library/metadata/1855/thumb/1599308542","imdbId":"","language":"en","overview":"A bride's wedding night takes a sinister turn when her eccentric new in-laws force her to take part in a terrifying game.","moviesInCollection":[],"ratingKey":1855,"key":"/library/metadata/1855","collectionTitle":"","collectionId":-1,"tmdbId":567609},{"name":"Denial","year":2017,"posterUrl":"/library/metadata/693/thumb/1599308078","imdbId":"","language":"en","overview":"Acclaimed writer and historian Deborah E. Lipstadt must battle for historical truth to prove the Holocaust actually occurred when David Irving, a renowned denier, sues her for libel.","moviesInCollection":[],"ratingKey":693,"key":"/library/metadata/693","collectionTitle":"","collectionId":-1,"tmdbId":402298},{"name":"The Thing","year":2011,"posterUrl":"/library/metadata/2858/thumb/1599308948","imdbId":"","language":"en","overview":"When paleontologist Kate Lloyd travels to an isolated outpost in Antarctica for the expedition of a lifetime, she joins an international team that unearths a remarkable discovery. Their elation quickly turns to fear as they realize that their experiment has freed a mysterious being from its frozen prison. Paranoia spreads like an epidemic as a creature that can mimic anything it touches will pit human against human as it tries to survive and flourish in this spine-tingling thriller.","moviesInCollection":[],"ratingKey":2858,"key":"/library/metadata/2858","collectionTitle":"","collectionId":-1,"tmdbId":60935},{"name":"The Endless Summer","year":1966,"posterUrl":"/library/metadata/2435/thumb/1599308773","imdbId":"","language":"en","overview":"Bruce Brown's The Endless Summer is one of the first and most influential surf movies of all time. The film documents American surfers Mike Hynson and Robert August as they travel the world during California’s winter (which, back in 1965 was off-season for surfing) in search of the perfect wave and ultimately, an endless summer.","moviesInCollection":[],"ratingKey":2435,"key":"/library/metadata/2435","collectionTitle":"","collectionId":-1,"tmdbId":21},{"name":"Get Out","year":2017,"posterUrl":"/library/metadata/983/thumb/1599308187","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":983,"key":"/library/metadata/983","collectionTitle":"","collectionId":-1,"tmdbId":419430},{"name":"The Revenant","year":2015,"posterUrl":"/library/metadata/45914/thumb/1599309151","imdbId":"","language":"en","overview":"In the 1820s, a frontiersman, Hugh Glass, sets out on a path of vengeance against those who left him for dead after a bear mauling.","moviesInCollection":[],"ratingKey":45914,"key":"/library/metadata/45914","collectionTitle":"","collectionId":-1,"tmdbId":281957},{"name":"Dead Man's Shoes","year":2004,"posterUrl":"/library/metadata/655/thumb/1599308065","imdbId":"","language":"en","overview":"A soldier returns home to his small town and exacts a deadly revenge on the thugs who tormented his dimwitted brother while he was away.","moviesInCollection":[],"ratingKey":655,"key":"/library/metadata/655","collectionTitle":"","collectionId":-1,"tmdbId":12877},{"name":"Monster Brawl","year":2011,"posterUrl":"/library/metadata/1532/thumb/1599308404","imdbId":"","language":"en","overview":"Eight of the world's most legendary monsters, along with their diabolical managers, compete in a wrestling tournament deathmatch to determine the most powerful champion of all time. Interviews, pre-fight breakdowns, trash talking, and monster origin segments round out this ultimate fight of the living dead.","moviesInCollection":[],"ratingKey":1532,"key":"/library/metadata/1532","collectionTitle":"","collectionId":-1,"tmdbId":73933},{"name":"Bill & Ted's Excellent Adventure","year":1989,"posterUrl":"/library/metadata/356/thumb/1599307957","imdbId":"","language":"en","overview":"Bill and Ted are high school buddies starting a band. They are also about to fail their history class—which means Ted would be sent to military school—but receive help from Rufus, a traveller from a future where their band is the foundation for a perfect society. With the use of Rufus' time machine, Bill and Ted travel to various points in history, returning with important figures to help them complete their final history presentation.","moviesInCollection":[],"ratingKey":356,"key":"/library/metadata/356","collectionTitle":"","collectionId":-1,"tmdbId":1648},{"name":"The Two Jakes","year":1990,"posterUrl":"/library/metadata/2880/thumb/1599308956","imdbId":"","language":"en","overview":"This sequel to the classic Chinatown finds private detective Jake Gittes still haunted from the events of the first film. Hired by a man to investigate his wife's infidelities, Jake once again finds himself involved in a complicated plot involving murder, oil, and even some ghosts from his past.","moviesInCollection":[],"ratingKey":2880,"key":"/library/metadata/2880","collectionTitle":"","collectionId":-1,"tmdbId":32669},{"name":"Stand by Me","year":1986,"posterUrl":"/library/metadata/2128/thumb/1599308661","imdbId":"","language":"en","overview":"After learning that a stranger has been accidentally killed near their rural homes, four Oregon boys decide to go see the body. On the way, Gordie Lachance, Vern Tessio, Chris Chambers and Teddy Duchamp encounter a mean junk man and a marsh full of leeches, as they also learn more about one another and their very different home lives. Just a lark at first, the boys' adventure evolves into a defining event in their lives.","moviesInCollection":[],"ratingKey":2128,"key":"/library/metadata/2128","collectionTitle":"","collectionId":-1,"tmdbId":235},{"name":"The Muppets Take Manhattan","year":1984,"posterUrl":"/library/metadata/2702/thumb/1599308879","imdbId":"","language":"en","overview":"When the Muppets graduate from Danhurst College, they take their song-filled senior revue to New York City, only to learn that it isn't easy to find a producer who's willing to back a show starring a frog and a pig. Of course, Kermit the Frog and Miss Piggy won't take no for an answer, launching a search for someone to take them to Broadway.","moviesInCollection":[],"ratingKey":2702,"key":"/library/metadata/2702","collectionTitle":"","collectionId":-1,"tmdbId":11899},{"name":"Mad Max Beyond Thunderdome","year":1985,"posterUrl":"/library/metadata/1434/thumb/1599308357","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1434,"key":"/library/metadata/1434","collectionTitle":"","collectionId":-1,"tmdbId":9355},{"name":"Pineapple Express","year":2008,"posterUrl":"/library/metadata/1739/thumb/1599308495","imdbId":"","language":"en","overview":"A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder.","moviesInCollection":[],"ratingKey":1739,"key":"/library/metadata/1739","collectionTitle":"","collectionId":-1,"tmdbId":10189},{"name":"Scarface","year":1983,"posterUrl":"/library/metadata/1972/thumb/1599308592","imdbId":"","language":"en","overview":"After getting a green card in exchange for assassinating a Cuban government official, Tony Montana stakes a claim on the drug trade in Miami. Viciously murdering anyone who stands in his way, Tony eventually becomes the biggest drug lord in the state, controlling nearly all the cocaine that comes through Miami. But increased pressure from the police, wars with Colombian drug cartels and his own drug-fueled paranoia serve to fuel the flames of his eventual downfall.","moviesInCollection":[],"ratingKey":1972,"key":"/library/metadata/1972","collectionTitle":"","collectionId":-1,"tmdbId":111},{"name":"Porco Rosso","year":1992,"posterUrl":"/library/metadata/46657/thumb/1599309168","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46657,"key":"/library/metadata/46657","collectionTitle":"","collectionId":-1,"tmdbId":11621},{"name":"The Ex-Wife","year":2017,"posterUrl":"/library/metadata/2442/thumb/1599308776","imdbId":"","language":"en","overview":"The girlfriend Klara has recently fallen in love and wants nothing more than to hang out with her boyfriend. The mother-of-two Anna clocks how long it takes for her husband to cook baby formula. The ex-wife Vera can't let go of her ex-husband. The feature-film debuting Katja Wik presents a squib right on the money about women's tendency to, both consciously and unconsciously, limit themselves in their close relationships of two. Each frame conveys the film's theme of power manipulation and Katja Wik's neologism \"victim-mentality rhetoric\" (offerrollsretorik) is used by all parties as an effective weapon. Without stagnating in bitterness, The Ex-wife serves as a funhouse mirror reflecting this disturbing trait, which most of us can recognize, but which few dare to acknowledge","moviesInCollection":[],"ratingKey":2442,"key":"/library/metadata/2442","collectionTitle":"","collectionId":-1,"tmdbId":437698},{"name":"Skyline","year":2010,"posterUrl":"/library/metadata/2052/thumb/1599308628","imdbId":"","language":"en","overview":"When strange lights descend on the city of Los Angeles, people are drawn outside like moths to a flame where an extraterrestrial force threatens to swallow the entire human population off the face of the Earth. Now the band of survivors must fight for their lives as the world unravels around them.","moviesInCollection":[],"ratingKey":2052,"key":"/library/metadata/2052","collectionTitle":"","collectionId":-1,"tmdbId":42684},{"name":"The Domestics","year":2018,"posterUrl":"/library/metadata/2428/thumb/1599308770","imdbId":"","language":"en","overview":"A young husband and wife must fight to return home in a post-apocalyptic mid-western landscape ravaged by gangs.","moviesInCollection":[],"ratingKey":2428,"key":"/library/metadata/2428","collectionTitle":"","collectionId":-1,"tmdbId":426814},{"name":"The Predator","year":2018,"posterUrl":"/library/metadata/2752/thumb/1599308901","imdbId":"","language":"en","overview":"When a kid accidentally triggers the universe's most lethal hunters' return to Earth, only a ragtag crew of ex-soldiers and a disgruntled female scientist can prevent the end of the human race.","moviesInCollection":[],"ratingKey":2752,"key":"/library/metadata/2752","collectionTitle":"","collectionId":-1,"tmdbId":346910},{"name":"Take","year":2008,"posterUrl":"/library/metadata/2233/thumb/1599308701","imdbId":"","language":"en","overview":"The lives of two strangers - a struggling mother and a gambling addict - meet in tragedy. Years pass, and they must come to terms with themselves, and one another.","moviesInCollection":[],"ratingKey":2233,"key":"/library/metadata/2233","collectionTitle":"","collectionId":-1,"tmdbId":13941},{"name":"Dragon Ball Z Broly – The Legendary Super Saiyan","year":1993,"posterUrl":"/library/metadata/762/thumb/1599308104","imdbId":"","language":"en","overview":"As Goku investigates the destruction of the Southern Galaxy, Vegeta is taken to be King of the New Planet Vegeta, and to destroy the Legendary Super Saiyan, Broly.","moviesInCollection":[],"ratingKey":762,"key":"/library/metadata/762","collectionTitle":"","collectionId":-1,"tmdbId":34433},{"name":"Friday the 13th Part VIII Jason Takes Manhattan","year":1989,"posterUrl":"/library/metadata/952/thumb/1599308175","imdbId":"","language":"en","overview":"Rennie Wickham is celebrating her graduation aboard the S.S. Lazarus, along with her strict uncle, her favorite teacher, her boyfriend, Sean Robertson, all of her classmates, and a stowaway: hockey-masked serial killer Jason Voorhees. One by one, Jason slowly murders each classmate and sinks the ship, stranding the survivors in New York. Rennie and the few survivors now must face Jason to save their lives from impending doom.","moviesInCollection":[],"ratingKey":952,"key":"/library/metadata/952","collectionTitle":"","collectionId":-1,"tmdbId":10283},{"name":"Five Feet Apart","year":2019,"posterUrl":"/library/metadata/913/thumb/1599308158","imdbId":"","language":"en","overview":"Seventeen-year-old Stella spends most of her time in the hospital as a cystic fibrosis patient. Her life is full of routines, boundaries and self-control — all of which get put to the test when she meets Will, an impossibly charming teen who has the same illness. There's an instant flirtation, though restrictions dictate that they must maintain a safe distance between them. As their connection intensifies, so does the temptation to throw the rules out the window and embrace that attraction.","moviesInCollection":[],"ratingKey":913,"key":"/library/metadata/913","collectionTitle":"","collectionId":-1,"tmdbId":527641},{"name":"Lord of War","year":2005,"posterUrl":"/library/metadata/1414/thumb/1599308348","imdbId":"","language":"en","overview":"Yuri Orlov is a globetrotting arms dealer and, through some of the deadliest war zones, he struggles to stay one step ahead of a relentless Interpol agent, his business rivals and even some of his customers who include many of the world’s most notorious dictators. Finally, he must also face his own conscience.","moviesInCollection":[],"ratingKey":1414,"key":"/library/metadata/1414","collectionTitle":"","collectionId":-1,"tmdbId":1830},{"name":"Aftershock","year":2013,"posterUrl":"/library/metadata/131/thumb/1599307874","imdbId":"","language":"en","overview":"Mayhem and death follow when an earthquake traps a group of tourists in a Chilean town.","moviesInCollection":[],"ratingKey":131,"key":"/library/metadata/131","collectionTitle":"","collectionId":-1,"tmdbId":123103},{"name":"Dragon Ball Z The World's Strongest","year":1990,"posterUrl":"/library/metadata/772/thumb/1599308107","imdbId":"","language":"en","overview":"The evil Dr. Kochin uses the dragon balls to resurrect his mentor, Dr. Wheelo, in an effort to take over the world. Dr. Wheelo, his body having been destroyed by the avalanche that killed him fifty years before, desires the body of the strongest fighter in the world as his new vessel. Believing Roshi to be the world's strongest warrior, Dr. Kochin abducts Bulma and forces Roshi to surrender himself to save her. When Goku hears of their abduction, he goes to their rescue.","moviesInCollection":[],"ratingKey":772,"key":"/library/metadata/772","collectionTitle":"","collectionId":-1,"tmdbId":39100},{"name":"The Blues Brothers","year":1998,"posterUrl":"/library/metadata/2324/thumb/1599308732","imdbId":"","language":"en","overview":"Jake Blues is just out of jail, and teams up with his brother, Elwood on a 'mission from God' to raise funds for the orphanage in which they grew up. The only thing they can do is do what they do best: play music. So they get their old band together, and set out on their way—while getting in a bit of trouble here and there.","moviesInCollection":[],"ratingKey":2324,"key":"/library/metadata/2324","collectionTitle":"","collectionId":-1,"tmdbId":525},{"name":"The Square","year":2013,"posterUrl":"/library/metadata/2835/thumb/1599308940","imdbId":"","language":"en","overview":"The Square, a new film by Jehane Noujaim (Control Room; Rafea: Solar Mama), looks at the hard realities faced day-to-day by people working to build Egypt’s new democracy. Catapulting us into the action spread across 2011 and 2012, the film provides a kaleidoscopic, visceral experience of the struggle. Cairo’s Tahrir Square is the heart and soul of the film, which follows several young activists. Armed with values, determination, music, humor, an abundance of social media, and sheer obstinacy, they know that the thorny path to democracy only began with Hosni Mubarek’s fall. The life-and-death struggle between the people and the power of the state is still playing out.","moviesInCollection":[],"ratingKey":2835,"key":"/library/metadata/2835","collectionTitle":"","collectionId":-1,"tmdbId":159037},{"name":"Fight Club","year":1999,"posterUrl":"/library/metadata/887/thumb/1599308148","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":887,"key":"/library/metadata/887","collectionTitle":"","collectionId":-1,"tmdbId":550},{"name":"X-Men Apocalypse","year":2016,"posterUrl":"/library/metadata/3175/thumb/1599309057","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3175,"key":"/library/metadata/3175","collectionTitle":"","collectionId":-1,"tmdbId":246655},{"name":"The Human Race","year":2014,"posterUrl":"/library/metadata/2558/thumb/1599308820","imdbId":"","language":"en","overview":"One moment some 80 people are walking on a big city street. Suddenly a blinding light appears that transports them to a very peculiar racing course. A voice sounds in everybody’s head : “The school, the house and the prison are safe. Follow the arrows or you will die. Stay on the path or you will die. If you’re doubled twice, you will die. Do not touch the grass or you will die. Race or die.” Whether you’re rich or poor, old or young, blind, strong, handicapped, courageous or a coward; the rules make no distinction. There can be only one winner !","moviesInCollection":[],"ratingKey":2558,"key":"/library/metadata/2558","collectionTitle":"","collectionId":-1,"tmdbId":185267},{"name":"My Cousin Rachel","year":2017,"posterUrl":"/library/metadata/1574/thumb/1599308421","imdbId":"","language":"en","overview":"A young Englishman plots revenge against his mysterious, beautiful cousin, believing that she murdered his guardian. But his feelings become complicated as he finds himself falling under the beguiling spell of her charms.","moviesInCollection":[],"ratingKey":1574,"key":"/library/metadata/1574","collectionTitle":"","collectionId":-1,"tmdbId":413998},{"name":"Hot Summer Nights","year":2018,"posterUrl":"/library/metadata/1127/thumb/1599308242","imdbId":"","language":"en","overview":"A teen winds up in over his head while dealing drugs with a rebellious partner and chasing the young man's enigmatic sister during the summer of 1991 that he spends on Cape Cod, Massachusetts.","moviesInCollection":[],"ratingKey":1127,"key":"/library/metadata/1127","collectionTitle":"","collectionId":-1,"tmdbId":347866},{"name":"The Equalizer","year":2014,"posterUrl":"/library/metadata/27843/thumb/1599309076","imdbId":"","language":"en","overview":"McCall believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when he meets Teri, a young girl under the control of ultra-violent Russian gangsters, he can’t stand idly by – he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.","moviesInCollection":[],"ratingKey":27843,"key":"/library/metadata/27843","collectionTitle":"","collectionId":-1,"tmdbId":156022},{"name":"Ruben Brandt, Collector","year":2019,"posterUrl":"/library/metadata/1936/thumb/1599308579","imdbId":"","language":"en","overview":"Psychotherapist Ruben Brandt becomes the most wanted criminal in the world when he and four of his patients steal paintings from the world's most renowned museums and art collections.","moviesInCollection":[],"ratingKey":1936,"key":"/library/metadata/1936","collectionTitle":"","collectionId":-1,"tmdbId":543033},{"name":"Iron Sky The Coming Race","year":2019,"posterUrl":"/library/metadata/1211/thumb/1599308274","imdbId":"","language":"en","overview":"Twenty years after the events of Iron Sky, the former Nazi Moonbase has become the last refuge of mankind. Earth was devastated by a nuclear war, but buried deep under the wasteland lies a power that could save the last of humanity - or destroy it once and for all. The truth behind the creation of mankind will be revealed when an old enemy leads our heroes on an adventure into the Hollow Earth. To save humanity they must fight the Vril, an ancient shapeshifting reptilian race and their army of dinosaurs.","moviesInCollection":[],"ratingKey":1211,"key":"/library/metadata/1211","collectionTitle":"","collectionId":-1,"tmdbId":302349},{"name":"Rim of the World","year":2019,"posterUrl":"/library/metadata/1906/thumb/1599308565","imdbId":"","language":"en","overview":"Stranded at a summer camp when aliens attack the planet, four teens with nothing in common embark on a perilous mission to save the world.","moviesInCollection":[],"ratingKey":1906,"key":"/library/metadata/1906","collectionTitle":"","collectionId":-1,"tmdbId":531306},{"name":"Balto","year":1995,"posterUrl":"/library/metadata/274/thumb/1599307928","imdbId":"","language":"en","overview":"An outcast half-wolf risks his life to prevent a deadly epidemic from ravaging Nome, Alaska.","moviesInCollection":[],"ratingKey":274,"key":"/library/metadata/274","collectionTitle":"","collectionId":-1,"tmdbId":21032},{"name":"Tag","year":2018,"posterUrl":"/library/metadata/2232/thumb/1599308700","imdbId":"","language":"en","overview":"For one month every year, five highly competitive friends hit the ground running in a no-holds-barred game of tag they’ve been playing since the first grade. This year, the game coincides with the wedding of their only undefeated player, which should finally make him an easy target. But he knows they’re coming...and he’s ready.","moviesInCollection":[],"ratingKey":2232,"key":"/library/metadata/2232","collectionTitle":"","collectionId":-1,"tmdbId":455980},{"name":"Meet the Parents","year":2000,"posterUrl":"/library/metadata/1488/thumb/1599308383","imdbId":"","language":"en","overview":"Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.","moviesInCollection":[],"ratingKey":1488,"key":"/library/metadata/1488","collectionTitle":"","collectionId":-1,"tmdbId":1597},{"name":"The Woman in Red","year":1984,"posterUrl":"/library/metadata/2903/thumb/1599308964","imdbId":"","language":"en","overview":"When a happily married family man, who would never consider an affair, meets a beautiful woman in red, he is totally infatuated and desperate to make her acquaintance. However, as he tries out various schemes to sneak out to meet her, he realizes that adultery is not quite as easy as it looks.","moviesInCollection":[],"ratingKey":2903,"key":"/library/metadata/2903","collectionTitle":"","collectionId":-1,"tmdbId":5968},{"name":"Adaptation.","year":2002,"posterUrl":"/library/metadata/120/thumb/1599307870","imdbId":"","language":"en","overview":"A love-lorn script writer grows increasingly desperate in his quest to adapt the book 'The Orchid Thief'.","moviesInCollection":[],"ratingKey":120,"key":"/library/metadata/120","collectionTitle":"","collectionId":-1,"tmdbId":2757},{"name":"Kung Fu Panda Holiday","year":2010,"posterUrl":"/library/metadata/39971/thumb/1599309101","imdbId":"","language":"en","overview":"The Winter Feast is Po's favorite holiday. Every year he and his father hang decorations, cook together, and serve noodle soup to the villagers. But this year Shifu informs Po that as Dragon Warrior, it is his duty to host the formal Winter Feast at the Jade Palace. Po is caught between his obligations as the Dragon Warrior and his family traditions: between Shifu and Mr. Ping.","moviesInCollection":[],"ratingKey":39971,"key":"/library/metadata/39971","collectionTitle":"","collectionId":-1,"tmdbId":50393},{"name":"Batman Gotham by Gaslight","year":2018,"posterUrl":"/library/metadata/292/thumb/1599307934","imdbId":"","language":"en","overview":"In an alternative Victorian Age Gotham City, Batman begins his war on crime while he investigates a new series of murders by Jack the Ripper.","moviesInCollection":[],"ratingKey":292,"key":"/library/metadata/292","collectionTitle":"","collectionId":-1,"tmdbId":471474},{"name":"Nebraska","year":2013,"posterUrl":"/library/metadata/1596/thumb/1599308430","imdbId":"","language":"en","overview":"An aging, booze-addled father takes a trip from Montana to Nebraska with his estranged son in order to claim what he believes to be a million-dollar sweepstakes prize.","moviesInCollection":[],"ratingKey":1596,"key":"/library/metadata/1596","collectionTitle":"","collectionId":-1,"tmdbId":129670},{"name":"The Empire Strikes Back Despecialized Edition Remastered V2 0","year":1980,"posterUrl":"/library/metadata/39466/thumb/1599309084","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":39466,"key":"/library/metadata/39466","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"John Carter","year":2012,"posterUrl":"/library/metadata/1248/thumb/1599308288","imdbId":"","language":"en","overview":"John Carter is a war-weary, former military captain who's inexplicably transported to the mysterious and exotic planet of Barsoom (Mars) and reluctantly becomes embroiled in an epic conflict. It's a world on the brink of collapse, and Carter rediscovers his humanity when he realizes the survival of Barsoom and its people rests in his hands.","moviesInCollection":[],"ratingKey":1248,"key":"/library/metadata/1248","collectionTitle":"","collectionId":-1,"tmdbId":49529},{"name":"Onward","year":2020,"posterUrl":"/library/metadata/47997/thumb/1599522279","imdbId":"","language":"en","overview":"In a suburban fantasy world, two teenage elf brothers embark on an extraordinary quest to discover if there is still a little magic left out there.","moviesInCollection":[],"ratingKey":47997,"key":"/library/metadata/47997","collectionTitle":"","collectionId":-1,"tmdbId":508439},{"name":"The Libertine","year":2004,"posterUrl":"/library/metadata/2635/thumb/1599308849","imdbId":"","language":"en","overview":"The story of John Wilmot, a.k.a. the Earl of Rochester, a 17th century poet who famously drank and debauched his way to an early grave, only to earn posthumous critical acclaim for his life's work.","moviesInCollection":[],"ratingKey":2635,"key":"/library/metadata/2635","collectionTitle":"","collectionId":-1,"tmdbId":7548},{"name":"Star Wars Clone Wars","year":2003,"posterUrl":"/library/metadata/2156/thumb/1599308674","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":2156,"key":"/library/metadata/2156","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"A Few Good Men","year":1992,"posterUrl":"/library/metadata/62/thumb/1599307847","imdbId":"","language":"en","overview":"When cocky military lawyer Lt. Daniel Kaffee and his co-counsel, Lt. Cmdr. JoAnne Galloway, are assigned to a murder case, they uncover a hazing ritual that could implicate high-ranking officials such as shady Col. Nathan Jessep.","moviesInCollection":[],"ratingKey":62,"key":"/library/metadata/62","collectionTitle":"","collectionId":-1,"tmdbId":881},{"name":"Ip Man 4 The Finale","year":2019,"posterUrl":"/library/metadata/46522/thumb/1599309162","imdbId":"","language":"en","overview":"Following the death of his wife, Ip Man travels to San Francisco to ease tensions between the local kung fu masters and his star student, Bruce Lee, while searching for a better future for his son.","moviesInCollection":[],"ratingKey":46522,"key":"/library/metadata/46522","collectionTitle":"","collectionId":-1,"tmdbId":449924},{"name":"The Possession of Hannah Grace","year":2019,"posterUrl":"/library/metadata/2747/thumb/1599308899","imdbId":"","language":"en","overview":"When a cop who is just out of rehab takes the graveyard shift in a city hospital morgue, she faces a series of bizarre, violent events caused by an evil entity in one of the corpses.","moviesInCollection":[],"ratingKey":2747,"key":"/library/metadata/2747","collectionTitle":"","collectionId":-1,"tmdbId":434555},{"name":"Caddyshack II","year":1988,"posterUrl":"/library/metadata/39685/thumb/1599309091","imdbId":"","language":"en","overview":"When a crass new-money tycoon's membership application is turned down at a snooty country club, he retaliates by buying the club and turning it into a tacky amusement park.","moviesInCollection":[],"ratingKey":39685,"key":"/library/metadata/39685","collectionTitle":"","collectionId":-1,"tmdbId":18509},{"name":"Muffin Top A Love Story","year":2014,"posterUrl":"/library/metadata/1559/thumb/1599308415","imdbId":"","language":"en","overview":"\"Muffin Top: A Love Story\" is the story of Suzanne (Cathryn Michon) a Women's Studies Pop Culture professor at Malibu University, who studies images of women in the media for a living, and yet is made insecure by the constant parade of female perfection that is our airbrushed culture. She has been going through IVF treatments to get pregnant by her network executive husband (Diedrich Bader), but discovers on her birthday, that her husband has knocked up his younger, skinnier, co-worker (Haylie Duff) and wants a divorce. Happy Birthday! She goes on to find a more authentic version of who she really is, despite the delights of being suddenly single in Los Angeles, where low self-esteem for women is our number one export to the world.","moviesInCollection":[],"ratingKey":1559,"key":"/library/metadata/1559","collectionTitle":"","collectionId":-1,"tmdbId":301229},{"name":"Slender Man","year":2018,"posterUrl":"/library/metadata/2060/thumb/1599308632","imdbId":"","language":"en","overview":"In a small town in Massachusetts, four high school girls perform a ritual in an attempt to debunk the lore of Slender Man. When one of the girls goes mysteriously missing, they begin to suspect that she is, in fact, his latest victim.","moviesInCollection":[],"ratingKey":2060,"key":"/library/metadata/2060","collectionTitle":"","collectionId":-1,"tmdbId":439015},{"name":"Cinderella","year":2015,"posterUrl":"/library/metadata/514/thumb/1599308016","imdbId":"","language":"en","overview":"When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger in the woods.","moviesInCollection":[],"ratingKey":514,"key":"/library/metadata/514","collectionTitle":"","collectionId":-1,"tmdbId":150689},{"name":"The Twilight Saga Breaking Dawn - Part 1","year":2011,"posterUrl":"/library/metadata/2875/thumb/1599308954","imdbId":"","language":"en","overview":"The new found married bliss of Bella Swan and vampire Edward Cullen is cut short when a series of betrayals and misfortunes threatens to destroy their world.","moviesInCollection":[],"ratingKey":2875,"key":"/library/metadata/2875","collectionTitle":"","collectionId":-1,"tmdbId":50619},{"name":"Four Brothers","year":2005,"posterUrl":"/library/metadata/932/thumb/1599308165","imdbId":"","language":"en","overview":"Four adopted brothers return to their Detroit hometown when their mother is murdered and vow to exact revenge on the killers.","moviesInCollection":[],"ratingKey":932,"key":"/library/metadata/932","collectionTitle":"","collectionId":-1,"tmdbId":8292},{"name":"Annabelle Comes Home","year":2019,"posterUrl":"/library/metadata/203/thumb/1599307902","imdbId":"","language":"en","overview":"Determined to keep Annabelle from wreaking more havoc, demonologists Ed and Lorraine Warren bring the possessed doll to the locked artifacts room in their home, placing her “safely” behind sacred glass and enlisting a priest’s holy blessing. But an unholy night of horror awaits as Annabelle awakens the evil spirits in the room, who all set their sights on a new target—the Warrens' ten-year-old daughter, Judy, and her friends.","moviesInCollection":[],"ratingKey":203,"key":"/library/metadata/203","collectionTitle":"","collectionId":-1,"tmdbId":521029},{"name":"The Nightingale","year":2019,"posterUrl":"/library/metadata/2718/thumb/1599308886","imdbId":"","language":"en","overview":"In 1825, Claire, a 21-year-old Irish convict, chases a British soldier through the rugged Tasmanian wilderness, bent on revenge for a terrible act of violence he committed against her family. She enlists the services of an Aboriginal tracker who is also marked by trauma from his own violence-filled past.","moviesInCollection":[],"ratingKey":2718,"key":"/library/metadata/2718","collectionTitle":"","collectionId":-1,"tmdbId":400090},{"name":"Theeb‎‎","year":2015,"posterUrl":"/library/metadata/2911/thumb/1599308967","imdbId":"","language":"en","overview":"In the Ottoman province of Hijaz during World War I, a young Bedouin boy experiences a greatly hastened coming of age as he embarks on a perilous desert journey to guide a British officer to his secret destination.","moviesInCollection":[],"ratingKey":2911,"key":"/library/metadata/2911","collectionTitle":"","collectionId":-1,"tmdbId":287628},{"name":"Gone in Sixty Seconds","year":2000,"posterUrl":"/library/metadata/1013/thumb/1599308198","imdbId":"","language":"en","overview":"Upon learning that he has to come out of retirement to steal 50 cars in one night to save his brother Kip's life, former car thief Randall \"Memphis\" Raines enlists help from a few \"boost happy\" pals to accomplish a seemingly impossible feat. From countless car chases to relentless cops, the high-octane excitement builds as Randall swerves around more than a few roadblocks to keep Kip alive.","moviesInCollection":[],"ratingKey":1013,"key":"/library/metadata/1013","collectionTitle":"","collectionId":-1,"tmdbId":9679},{"name":"World War Z","year":2013,"posterUrl":"/library/metadata/3168/thumb/1599309054","imdbId":"","language":"en","overview":"Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.","moviesInCollection":[],"ratingKey":3168,"key":"/library/metadata/3168","collectionTitle":"","collectionId":-1,"tmdbId":72190},{"name":"Murder Party","year":2007,"posterUrl":"/library/metadata/48795/thumb/1601966871","imdbId":"","language":"en","overview":"A random invitation to a Halloween party leads a man into the hands of a rogue collective intent on murdering him for the sake of their art, sparking a bloodbath of mishap, mayhem and hilarity.","moviesInCollection":[],"ratingKey":48795,"key":"/library/metadata/48795","collectionTitle":"","collectionId":-1,"tmdbId":13561},{"name":"Malcolm X","year":1992,"posterUrl":"/library/metadata/1446/thumb/1599308363","imdbId":"","language":"en","overview":"A tribute to the controversial black activist and leader of the struggle for black liberation. He hit bottom during his imprisonment in the '50s, he became a Black Muslim and then a leader in the Nation of Islam. His assassination in 1965 left a legacy of self-determination and racial pride.","moviesInCollection":[],"ratingKey":1446,"key":"/library/metadata/1446","collectionTitle":"","collectionId":-1,"tmdbId":1883},{"name":"The Edge","year":1997,"posterUrl":"/library/metadata/2432/thumb/1599308772","imdbId":"","language":"en","overview":"The plane carrying wealthy Charles Morse crashes down in the Alaskan wilderness. Together with the two other passengers, photographer Robert and assistant Stephen, Charles devises a plan to help them reach civilization. However, his biggest obstacle might not be the elements, or even the Kodiak bear stalking them -- it could be Robert, whom Charles suspects is having an affair with his wife and would not mind seeing him dead.","moviesInCollection":[],"ratingKey":2432,"key":"/library/metadata/2432","collectionTitle":"","collectionId":-1,"tmdbId":9433},{"name":"Spies Like Us","year":1985,"posterUrl":"/library/metadata/2116/thumb/1599308656","imdbId":"","language":"en","overview":"Two bumbling government employees think they are U.S. spies, only to discover that they are actually decoys for nuclear war.","moviesInCollection":[],"ratingKey":2116,"key":"/library/metadata/2116","collectionTitle":"","collectionId":-1,"tmdbId":9080},{"name":"Mythica The Darkspore","year":2015,"posterUrl":"/library/metadata/48321/thumb/1600865847","imdbId":"","language":"en","overview":"When Teela’s sister is murdered and a powerful relic stolen, Marek and her friends face a sinister new enemy – Kishkumen, a foreign mystic bent on reclaiming the Darkspore for his master Szorlok. Armed with twin maps, Marek and her team race Kishkumen and his horde through creature-infested lands, to a long abandoned underground city – all the while pursued by bounty hunters intent on returning Marek to slavery.","moviesInCollection":[],"ratingKey":48321,"key":"/library/metadata/48321","collectionTitle":"","collectionId":-1,"tmdbId":347096},{"name":"Vault","year":2019,"posterUrl":"/library/metadata/3076/thumb/1599309023","imdbId":"","language":"en","overview":"A group of small time criminals in 1975 attempt to pull off the biggest heist in American history; stealing over $30 million from the Mafia in the smallest state in the union, Rhode Island.","moviesInCollection":[],"ratingKey":3076,"key":"/library/metadata/3076","collectionTitle":"","collectionId":-1,"tmdbId":607822},{"name":"The Magnificent Seven","year":2016,"posterUrl":"/library/metadata/2662/thumb/1599308861","imdbId":"","language":"en","overview":"Looking to mine for gold, greedy industrialist Bartholomew Bogue seizes control of the Old West town of Rose Creek. With their lives in jeopardy, Emma Cullen and other desperate residents turn to bounty hunter Sam Chisolm for help. Chisolm recruits an eclectic group of gunslingers to take on Bogue and his ruthless henchmen. With a deadly showdown on the horizon, the seven mercenaries soon find themselves fighting for more than just money once the bullets start to fly.","moviesInCollection":[],"ratingKey":2662,"key":"/library/metadata/2662","collectionTitle":"","collectionId":-1,"tmdbId":333484},{"name":"The Aftermath","year":2019,"posterUrl":"/library/metadata/2284/thumb/1599308719","imdbId":"","language":"en","overview":"In the aftermath of World War II, a British colonel and his wife are assigned to live in Hamburg during the post-war reconstruction, but tensions arise with the German widower who lives with them.","moviesInCollection":[],"ratingKey":2284,"key":"/library/metadata/2284","collectionTitle":"","collectionId":-1,"tmdbId":433502},{"name":"They Live","year":1988,"posterUrl":"/library/metadata/2919/thumb/1599308970","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2919,"key":"/library/metadata/2919","collectionTitle":"","collectionId":-1,"tmdbId":8337},{"name":"Triple Threat","year":2019,"posterUrl":"/library/metadata/3002/thumb/1599308997","imdbId":"","language":"en","overview":"A crime syndicate places a hit on a billionaire's daughter, making her the target of an elite assassin squad. A small band of down-and-out mercenaries protects her, fighting tooth and nail to stop the assassins from reaching their target.","moviesInCollection":[],"ratingKey":3002,"key":"/library/metadata/3002","collectionTitle":"","collectionId":-1,"tmdbId":449985},{"name":"The Twilight Saga Breaking Dawn - Part 2","year":2012,"posterUrl":"/library/metadata/2876/thumb/1599308954","imdbId":"","language":"en","overview":"After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.","moviesInCollection":[],"ratingKey":2876,"key":"/library/metadata/2876","collectionTitle":"","collectionId":-1,"tmdbId":50620},{"name":"Come Out and Play","year":2012,"posterUrl":"/library/metadata/554/thumb/1599308030","imdbId":"","language":"en","overview":"A couple take a vacation to a remote island - their last holiday together before they become parents. Soon after their arrival, they notice that no adults seem to be present - an observation that quickly presents a nightmarish reality.","moviesInCollection":[],"ratingKey":554,"key":"/library/metadata/554","collectionTitle":"","collectionId":-1,"tmdbId":127884},{"name":"Waiting for the Barbarians","year":2020,"posterUrl":"/library/metadata/47766/thumb/1599309188","imdbId":"","language":"en","overview":"At an isolated frontier outpost, a colonial magistrate suffers a crisis of conscience when an army colonel arrives looking to interrogate the locals about an impending uprising, using cruel tactics that horrify the magistrate.","moviesInCollection":[],"ratingKey":47766,"key":"/library/metadata/47766","collectionTitle":"","collectionId":-1,"tmdbId":505707},{"name":"The Hate U Give","year":2018,"posterUrl":"/library/metadata/2533/thumb/1599308811","imdbId":"","language":"en","overview":"Raised in a poverty-stricken slum, a 16-year-old girl named Starr now attends a suburban prep school. After she witnesses a police officer shoot her unarmed best friend, she's torn between her two very different worlds as she tries to speak her truth.","moviesInCollection":[],"ratingKey":2533,"key":"/library/metadata/2533","collectionTitle":"","collectionId":-1,"tmdbId":470044},{"name":"Coherence","year":2013,"posterUrl":"/library/metadata/538/thumb/1599308024","imdbId":"","language":"en","overview":"On the night of an astronomical anomaly, eight friends at a dinner party experience a troubling chain of reality bending events.","moviesInCollection":[],"ratingKey":538,"key":"/library/metadata/538","collectionTitle":"","collectionId":-1,"tmdbId":220289},{"name":"Hellraiser Inferno","year":2000,"posterUrl":"/library/metadata/1097/thumb/1599308231","imdbId":"","language":"en","overview":"A shady police detective becomes embroiled in a strange world of murder, sadism and madness after being assigned a murder investigation against a madman known only as \"The Engineer\".","moviesInCollection":[],"ratingKey":1097,"key":"/library/metadata/1097","collectionTitle":"","collectionId":-1,"tmdbId":12597},{"name":"Speed","year":1994,"posterUrl":"/library/metadata/2105/thumb/1599308652","imdbId":"","language":"en","overview":"Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne, who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows, it will blow, bad enough any day, but a nightmare in LA traffic. And that's still not the end.","moviesInCollection":[],"ratingKey":2105,"key":"/library/metadata/2105","collectionTitle":"","collectionId":-1,"tmdbId":1637},{"name":"Dangerous Liaisons","year":1988,"posterUrl":"/library/metadata/631/thumb/1599308056","imdbId":"","language":"en","overview":"In 18th century France, Marquise de Merteuil asks her ex-lover Vicomte de Valmont to seduce the future wife of another ex-lover of hers in return for one last night with her. Yet things don’t go as planned.","moviesInCollection":[],"ratingKey":631,"key":"/library/metadata/631","collectionTitle":"","collectionId":-1,"tmdbId":859},{"name":"Candyman Day of the Dead","year":1999,"posterUrl":"/library/metadata/39671/thumb/1599309089","imdbId":"","language":"en","overview":"The Candyman returns to try to convince his female descendent, an artist, to join him as a legendary figure. To this end, he frames her for a series of hideous murders of her friends and associates so that she has nowhere else to turn to.","moviesInCollection":[],"ratingKey":39671,"key":"/library/metadata/39671","collectionTitle":"","collectionId":-1,"tmdbId":12485},{"name":"On the Inside","year":2011,"posterUrl":"/library/metadata/1648/thumb/1599308455","imdbId":"","language":"en","overview":"A decent but troubled young man is sent to a psychiatric institution for the criminally insane and soon finds himself in a fight for his life battling ghosts inside his head and very real enemies all around him.","moviesInCollection":[],"ratingKey":1648,"key":"/library/metadata/1648","collectionTitle":"","collectionId":-1,"tmdbId":51490},{"name":"Lucky Day","year":2019,"posterUrl":"/library/metadata/1424/thumb/1599308352","imdbId":"","language":"en","overview":"Red, a safe cracker who has just been released from prison, is trying to hold his family together as his past catches up with him in the form of Luc, a psychopathic contract killer who's seeking revenge for the death of his brother.","moviesInCollection":[],"ratingKey":1424,"key":"/library/metadata/1424","collectionTitle":"","collectionId":-1,"tmdbId":477508},{"name":"Lucy","year":2014,"posterUrl":"/library/metadata/1426/thumb/1599308353","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1426,"key":"/library/metadata/1426","collectionTitle":"","collectionId":-1,"tmdbId":240832},{"name":"The Magnificent Seven","year":1960,"posterUrl":"/library/metadata/2661/thumb/1599308861","imdbId":"","language":"en","overview":"An oppressed Mexican peasant village hires seven gunfighters to help defend their homes.","moviesInCollection":[],"ratingKey":2661,"key":"/library/metadata/2661","collectionTitle":"","collectionId":-1,"tmdbId":966},{"name":"Shadow","year":2019,"posterUrl":"/library/metadata/2009/thumb/1599308608","imdbId":"","language":"en","overview":"In a kingdom ruled by a young and unpredictable king, the military commander has a secret weapon: a shadow, a look-alike who can fool both his enemies and the King himself. Now he must use this weapon in an intricate plan that will lead his people to victory in a war that the King does not want.","moviesInCollection":[],"ratingKey":2009,"key":"/library/metadata/2009","collectionTitle":"","collectionId":-1,"tmdbId":463319},{"name":"Memento","year":2001,"posterUrl":"/library/metadata/1493/thumb/1599308385","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1493,"key":"/library/metadata/1493","collectionTitle":"","collectionId":-1,"tmdbId":77},{"name":"Crocodile Dundee in Los Angeles","year":2001,"posterUrl":"/library/metadata/605/thumb/1599308048","imdbId":"","language":"en","overview":"After settling in the tiny Australian town of Walkabout Creek with his significant other and his young son, Mick \"Crocodile\" Dundee is thrown for a loop when a prestigious Los Angeles newspaper offers his honey a job. The family migrates back to the United States, and Croc and son soon find themselves learning some lessons about American life -- many of them inadvertent","moviesInCollection":[],"ratingKey":605,"key":"/library/metadata/605","collectionTitle":"","collectionId":-1,"tmdbId":9290},{"name":"The Texas Chainsaw Massacre","year":2003,"posterUrl":"/library/metadata/2852/thumb/1599308946","imdbId":"","language":"en","overview":"After picking up a traumatized young hitchhiker, five friends find themselves stalked and hunted by a deformed chainsaw-wielding killer and his family of equally psychopathic killers.","moviesInCollection":[],"ratingKey":2852,"key":"/library/metadata/2852","collectionTitle":"","collectionId":-1,"tmdbId":9373},{"name":"Cinderella","year":1950,"posterUrl":"/library/metadata/513/thumb/1599308015","imdbId":"","language":"en","overview":"Cinderella has faith her dreams of a better life will come true. With help from her loyal mice friends and a wave of her Fairy Godmother's wand, Cinderella's rags are magically turned into a glorious gown and off she goes to the Royal Ball. But when the clock strikes midnight, the spell is broken, leaving a single glass slipper... the only key to the ultimate fairy-tale ending!","moviesInCollection":[],"ratingKey":513,"key":"/library/metadata/513","collectionTitle":"","collectionId":-1,"tmdbId":11224},{"name":"Monster","year":2003,"posterUrl":"/library/metadata/46532/thumb/1599309163","imdbId":"","language":"en","overview":"An emotionally scarred highway drifter shoots a sadistic trick who rapes her, and ultimately becomes America's first female serial killer.","moviesInCollection":[],"ratingKey":46532,"key":"/library/metadata/46532","collectionTitle":"","collectionId":-1,"tmdbId":504},{"name":"Thor","year":2011,"posterUrl":"/library/metadata/2926/thumb/1599308972","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2926,"key":"/library/metadata/2926","collectionTitle":"","collectionId":-1,"tmdbId":10195},{"name":"Non-Stop","year":2014,"posterUrl":"/library/metadata/1617/thumb/1599308440","imdbId":"","language":"en","overview":"Bill Marks is a burned-out veteran of the Air Marshals service. He views the assignment not as a life-saving duty, but as a desk job in the sky. However, today's flight will be no routine trip. Shortly into the transatlantic journey from New York to London, he receives a series of mysterious text messages ordering him to have the government transfer $150 million into a secret account, or a passenger will die every 20 minutes.","moviesInCollection":[],"ratingKey":1617,"key":"/library/metadata/1617","collectionTitle":"","collectionId":-1,"tmdbId":225574},{"name":"Man of Steel","year":2013,"posterUrl":"/library/metadata/1451/thumb/1599308366","imdbId":"","language":"en","overview":"A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.","moviesInCollection":[],"ratingKey":1451,"key":"/library/metadata/1451","collectionTitle":"","collectionId":-1,"tmdbId":49521},{"name":"Dark River","year":2018,"posterUrl":"/library/metadata/637/thumb/1599308058","imdbId":"","language":"en","overview":"After her father dies, a young woman returns to her Yorkshire village for the first time in 15 years to claim the family farm she believes is hers.","moviesInCollection":[],"ratingKey":637,"key":"/library/metadata/637","collectionTitle":"","collectionId":-1,"tmdbId":429195},{"name":"Broken Arrow","year":1996,"posterUrl":"/library/metadata/432/thumb/1599307985","imdbId":"","language":"en","overview":"When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.","moviesInCollection":[],"ratingKey":432,"key":"/library/metadata/432","collectionTitle":"","collectionId":-1,"tmdbId":9208},{"name":"Mysterious Island","year":1961,"posterUrl":"/library/metadata/1580/thumb/1599308424","imdbId":"","language":"en","overview":"During the US Civil War, Union POWs escape in a balloon and end up stranded on a South Pacific island, inhabited by giant plants and animals. They must use their ingenuity to survive the dangers, and to devise a way to return home. Sequel to '20,000 Leagues Under the Sea' .","moviesInCollection":[],"ratingKey":1580,"key":"/library/metadata/1580","collectionTitle":"","collectionId":-1,"tmdbId":18993},{"name":"The Muppet Christmas Carol","year":1992,"posterUrl":"/library/metadata/2699/thumb/1599308878","imdbId":"","language":"en","overview":"A retelling of the classic Dickens tale of Ebenezer Scrooge, miser extraordinaire. He is held accountable for his dastardly ways during night-time visitations by the Ghosts of Christmas Past, Present, and future.","moviesInCollection":[],"ratingKey":2699,"key":"/library/metadata/2699","collectionTitle":"","collectionId":-1,"tmdbId":10437},{"name":"The Prize","year":1963,"posterUrl":"/library/metadata/2758/thumb/1599308904","imdbId":"","language":"en","overview":"For some reason, this year's Nobel prize in literature has been awarded to the young author Andrew Craig, who seems to be more interested in women and drinking than writing. Another laureate is Dr. Max Stratman, the famous German-American physicist who comes to Stockholm with his young and beautiful niece Emily. The Foreign Department also gives him an assistant during his stay, Miss Andersson. Craig soon notices that Dr. Stratman is acting strangely. The second time they meet, Dr. Stratman does not even recognize him.","moviesInCollection":[],"ratingKey":2758,"key":"/library/metadata/2758","collectionTitle":"","collectionId":-1,"tmdbId":4025},{"name":"Defiance","year":2008,"posterUrl":"/library/metadata/683/thumb/1599308075","imdbId":"","language":"en","overview":"Based on a true story, during World War II, four Jewish brothers escape their Nazi-occupied homeland of West Belarus in Poland and join the Soviet partisans to combat the Nazis. The brothers begin the rescue of roughly 1,200 Jews still trapped in the ghettos of Poland.","moviesInCollection":[],"ratingKey":683,"key":"/library/metadata/683","collectionTitle":"","collectionId":-1,"tmdbId":13813},{"name":"The Other Side of the Door","year":2016,"posterUrl":"/library/metadata/2731/thumb/1599308892","imdbId":"","language":"en","overview":"Grieving over the loss of her son, a mother struggles with her feelings for her daughter and her husband. She seeks out a ritual that allows her say goodbye to her dead child, opening the veil between the world of the dead and the living. Her daughter becomes the focus of terror. She must now protect against the evil that was once her beloved son.","moviesInCollection":[],"ratingKey":2731,"key":"/library/metadata/2731","collectionTitle":"","collectionId":-1,"tmdbId":364116},{"name":"River Queen","year":2005,"posterUrl":"/library/metadata/1913/thumb/1599308568","imdbId":"","language":"en","overview":"An intimate story set during the 1860s in which a young Irish woman Sarah and her family find themselves on both sides of the turbulent wars between British and Maori during the British colonization of New Zealand.","moviesInCollection":[],"ratingKey":1913,"key":"/library/metadata/1913","collectionTitle":"","collectionId":-1,"tmdbId":24671},{"name":"Spaceballs","year":1987,"posterUrl":"/library/metadata/2100/thumb/1599308649","imdbId":"","language":"en","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?","moviesInCollection":[],"ratingKey":2100,"key":"/library/metadata/2100","collectionTitle":"","collectionId":-1,"tmdbId":957},{"name":"Drunken Master","year":1978,"posterUrl":"/library/metadata/788/thumb/1599308112","imdbId":"","language":"en","overview":"A mischievous young man is sent to hone his martial arts skills with an older, alcoholic kung fu master.","moviesInCollection":[],"ratingKey":788,"key":"/library/metadata/788","collectionTitle":"","collectionId":-1,"tmdbId":11230},{"name":"Reprisal","year":2018,"posterUrl":"/library/metadata/1880/thumb/1599308553","imdbId":"","language":"en","overview":"Jacob, a bank manager haunted by a violent heist that took the life of a coworker, teams up with his ex-cop neighbor, James, to bring down the assailant. While the two men work together to figure out the thief’s next move, Gabriel, the highly-trained criminal, is one step ahead. When Gabriel kidnaps Jacob’s wife and daughter, Jacob barrels down a path of bloodshed that initiates an explosive counterattack and brings all three men to the breaking point.","moviesInCollection":[],"ratingKey":1880,"key":"/library/metadata/1880","collectionTitle":"","collectionId":-1,"tmdbId":531593},{"name":"The Last Sharknado It's About Time","year":2018,"posterUrl":"/library/metadata/2623/thumb/1599308844","imdbId":"","language":"en","overview":"With much of America lying in ruins, the rest of the world braces for a global sharknado, Fin and his family must travel around the world to stop them.","moviesInCollection":[],"ratingKey":2623,"key":"/library/metadata/2623","collectionTitle":"","collectionId":-1,"tmdbId":523849},{"name":"Escape from Planet Earth","year":2013,"posterUrl":"/library/metadata/833/thumb/1599308128","imdbId":"","language":"en","overview":"Astronaut Scorch Supernova finds himself caught in a trap when he responds to an SOS from a notoriously dangerous alien planet.","moviesInCollection":[],"ratingKey":833,"key":"/library/metadata/833","collectionTitle":"","collectionId":-1,"tmdbId":68179},{"name":"The Ten","year":2007,"posterUrl":"/library/metadata/2849/thumb/1599308945","imdbId":"","language":"en","overview":"Ten stories, each inspired by one of the ten commandments.","moviesInCollection":[],"ratingKey":2849,"key":"/library/metadata/2849","collectionTitle":"","collectionId":-1,"tmdbId":13173},{"name":"Meet the Fockers","year":2004,"posterUrl":"/library/metadata/1487/thumb/1599308382","imdbId":"","language":"en","overview":"Hard-to-crack ex-CIA man, Jack Byrnes and his wife, Dina head for the warmer climes of Florida to meet son-in-law-to-be, Greg Focker's parents. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.","moviesInCollection":[],"ratingKey":1487,"key":"/library/metadata/1487","collectionTitle":"","collectionId":-1,"tmdbId":693},{"name":"John Wick Chapter 3 - Parabellum","year":2019,"posterUrl":"/library/metadata/1253/thumb/1599308289","imdbId":"","language":"en","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’s guild, the High Table, John Wick is excommunicado, but the world’s most ruthless hit men and women await his every turn.","moviesInCollection":[],"ratingKey":1253,"key":"/library/metadata/1253","collectionTitle":"","collectionId":-1,"tmdbId":458156},{"name":"The Breadwinner","year":2017,"posterUrl":"/library/metadata/2340/thumb/1599308738","imdbId":"","language":"en","overview":"A headstrong young girl in Afghanistan, ruled by the Taliban, disguises herself as a boy in order to provide for her family.","moviesInCollection":[],"ratingKey":2340,"key":"/library/metadata/2340","collectionTitle":"","collectionId":-1,"tmdbId":435129},{"name":"In the Cloud","year":2018,"posterUrl":"/library/metadata/1176/thumb/1599308260","imdbId":"","language":"en","overview":"To stop a terrorist bomber, two estranged tech geniuses (Justin Chatwin, Tomiwa Edun) reunite after the death of their mentor (Gabriel Byrne) to devise a VR technology to extract the terrorist’s memories. But the clock is ticking on the next bomb.","moviesInCollection":[],"ratingKey":1176,"key":"/library/metadata/1176","collectionTitle":"","collectionId":-1,"tmdbId":503517},{"name":"Dragon Ball Z The Tree of Might","year":2006,"posterUrl":"/library/metadata/771/thumb/1599308106","imdbId":"","language":"en","overview":"The Saiyan named Turles has come to Earth in order to plant a tree that will both destroy the planet and give him infinite strength. Son Goku and the Z Warriors cannot let this happen and duke it out with the invaders for the sake of the planet.","moviesInCollection":[],"ratingKey":771,"key":"/library/metadata/771","collectionTitle":"","collectionId":-1,"tmdbId":39101},{"name":"The Big Trip","year":2019,"posterUrl":"/library/metadata/2320/thumb/1599308731","imdbId":"","language":"en","overview":"A goofy stork mistakenly delivers a baby panda to the wrong door. A bear, a moose, a tiger and a rabbit set on an arduous but fun-filled adventure through the wilderness to return the panda to its rightful home.","moviesInCollection":[],"ratingKey":2320,"key":"/library/metadata/2320","collectionTitle":"","collectionId":-1,"tmdbId":533715},{"name":"Nobody's Fool","year":2018,"posterUrl":"/library/metadata/1616/thumb/1599308440","imdbId":"","language":"en","overview":"A woman, who gets released from prison and reunites with her sister, discovers she is in an online relationship with a man who may be \"catfishing\" her.","moviesInCollection":[],"ratingKey":1616,"key":"/library/metadata/1616","collectionTitle":"","collectionId":-1,"tmdbId":514619},{"name":"Aladdin and the Death Lamp","year":2012,"posterUrl":"/library/metadata/139/thumb/1599307877","imdbId":"","language":"en","overview":"Aladdin the adventurer and his friend Ali accidentally uncover a lamp that contains a genie. But unlike the story we know, this genie does not grant three wonderful wishes. This genie destroys everything in its way by turning the keeper’s thoughts into living nightmares. After witnessing the death of his fellow adventurers when the genie is released, Aladdin and surviving friend Ali turn to the village elder to uncover the history of the lamp, only to find the evil Shahir has been following them, hoping to take hold of the lamp and fulfill his own diabolical plans to have unlimited power. destroy their friend along with the ring.","moviesInCollection":[],"ratingKey":139,"key":"/library/metadata/139","collectionTitle":"","collectionId":-1,"tmdbId":132894},{"name":"The Big Clock","year":1948,"posterUrl":"/library/metadata/2317/thumb/1599308730","imdbId":"","language":"en","overview":"Stroud, a crime magazine's crusading editor has to post-pone a vacation with his wife, again, when a glamorous blonde is murdered and he is assigned by his publishing boss Janoth to find the killer. As the investigation proceeds to its conclusion, Stroud must try to disrupt his ordinarily brilliant investigative team as they increasingly build evidence (albeit wrong) that he is the killer.","moviesInCollection":[],"ratingKey":2317,"key":"/library/metadata/2317","collectionTitle":"","collectionId":-1,"tmdbId":19974},{"name":"Stronger","year":2017,"posterUrl":"/library/metadata/2183/thumb/1599308684","imdbId":"","language":"en","overview":"A victim of the Boston Marathon bombing in 2013 helps the police track down the killers while struggling to recover from devastating trauma.","moviesInCollection":[],"ratingKey":2183,"key":"/library/metadata/2183","collectionTitle":"","collectionId":-1,"tmdbId":395993},{"name":"Cinderella II Dreams Come True","year":2002,"posterUrl":"/library/metadata/515/thumb/1599308016","imdbId":"","language":"en","overview":"As a newly crowned princess, Cinderella quickly learns that life at the Palace - and her royal responsibilities - are more challenging than she had imagined. In three heartwarming tales, Cinderella calls on her animal friends and her Fairy Godmother to help as she brings her own grace and charm to her regal role and discovers that being true to yourself is the best way to make your dreams come true.","moviesInCollection":[],"ratingKey":515,"key":"/library/metadata/515","collectionTitle":"","collectionId":-1,"tmdbId":14128},{"name":"Dead Trigger","year":2017,"posterUrl":"/library/metadata/660/thumb/1599308066","imdbId":"","language":"en","overview":"2021 - 5 years after the outbreak of a mysterious virus that turned humans into bloodthirsty, undead beasts much of the world’s population has been decimated. When governments were unable to keep the disease at bay, the Contagion Special Unit was formed with the toughest soldiers and best specialists to fight the infected. Because of the rapidly decreasing number of soldiers, a popular online video game Dead Trigger that mirrors the terrifying events was created. The best efforts of the gamers are monitored by the CSU who recruit the highest rated zombie killers. The young recruits are called “Dead Triggers”. The movie follows a group of young recruits who must travel to the origin of the outbreak to find a missing team of scientists who were searching for a cure.","moviesInCollection":[],"ratingKey":660,"key":"/library/metadata/660","collectionTitle":"","collectionId":-1,"tmdbId":462115},{"name":"Casablanca","year":1942,"posterUrl":"/library/metadata/479/thumb/1599308004","imdbId":"","language":"en","overview":"In Casablanca, Morocco in December 1941, a cynical American expatriate meets a former lover, with unforeseen complications.","moviesInCollection":[],"ratingKey":479,"key":"/library/metadata/479","collectionTitle":"","collectionId":-1,"tmdbId":289},{"name":"Batman v Superman Dawn of Justice","year":2016,"posterUrl":"/library/metadata/305/thumb/1599307938","imdbId":"","language":"en","overview":"Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.","moviesInCollection":[],"ratingKey":305,"key":"/library/metadata/305","collectionTitle":"","collectionId":-1,"tmdbId":209112},{"name":"Paranoia","year":2013,"posterUrl":"/library/metadata/1697/thumb/1599308476","imdbId":"","language":"en","overview":"An entry-level employee at a powerful corporation finds himself occupying a corner office, but at a dangerous price—he must spy on his boss's old mentor to secure for him a multi-billion dollar advantage.","moviesInCollection":[],"ratingKey":1697,"key":"/library/metadata/1697","collectionTitle":"","collectionId":-1,"tmdbId":115348},{"name":"Night School","year":2018,"posterUrl":"/library/metadata/1611/thumb/1599308437","imdbId":"","language":"en","overview":"Teddy Walker is a successful salesman whose life takes an unexpected turn when he accidentally blows up his place of employment. Forced to attend night school to get his GED, Teddy soon finds himself dealing with a group of misfit students, his former high school nemesis and a feisty teacher who doesn't think he's too bright.","moviesInCollection":[],"ratingKey":1611,"key":"/library/metadata/1611","collectionTitle":"","collectionId":-1,"tmdbId":454293},{"name":"Jaws The Revenge","year":1999,"posterUrl":"/library/metadata/1229/thumb/1599308281","imdbId":"","language":"en","overview":"After another deadly shark attack, Ellen Brody decides she has had enough of New England's Amity Island and moves to the Caribbean to join her son, Michael, and his family. But a great white shark has followed her there, hungry for more lives.","moviesInCollection":[],"ratingKey":1229,"key":"/library/metadata/1229","collectionTitle":"","collectionId":-1,"tmdbId":580},{"name":"Rambo First Blood Part II","year":1985,"posterUrl":"/library/metadata/1842/thumb/1599308536","imdbId":"","language":"en","overview":"John Rambo is released from prison by the government for a top-secret covert mission to the last place on Earth he'd want to return - the jungles of Vietnam.","moviesInCollection":[],"ratingKey":1842,"key":"/library/metadata/1842","collectionTitle":"","collectionId":-1,"tmdbId":1369},{"name":"6 Underground","year":2019,"posterUrl":"/library/metadata/42/thumb/1599307841","imdbId":"","language":"en","overview":"After faking his death, a tech billionaire recruits a team of international operatives for a bold and bloody mission to take down a brutal dictator.","moviesInCollection":[],"ratingKey":42,"key":"/library/metadata/42","collectionTitle":"","collectionId":-1,"tmdbId":509967},{"name":"Mean Machine","year":2001,"posterUrl":"/library/metadata/1483/thumb/1599308381","imdbId":"","language":"en","overview":"Disgraced ex-England football captain, Danny 'Mean Machine' Meehan, is thrown in jail for assaulting two police officers. He keeps his head down and has the opportunity to forget everything and change the lives of the prisoners. When these prisoners have the chance to put one over the evil guards during a prison football match, Danny takes the lead.","moviesInCollection":[],"ratingKey":1483,"key":"/library/metadata/1483","collectionTitle":"","collectionId":-1,"tmdbId":9991},{"name":"The Shawshank Redemption","year":1994,"posterUrl":"/library/metadata/2812/thumb/1599308929","imdbId":"","language":"en","overview":"Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.","moviesInCollection":[],"ratingKey":2812,"key":"/library/metadata/2812","collectionTitle":"","collectionId":-1,"tmdbId":278},{"name":"Dark City","year":1998,"posterUrl":"/library/metadata/633/thumb/1599308057","imdbId":"","language":"en","overview":"A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.","moviesInCollection":[],"ratingKey":633,"key":"/library/metadata/633","collectionTitle":"","collectionId":-1,"tmdbId":2666},{"name":"The Mighty Ducks","year":1992,"posterUrl":"/library/metadata/2685/thumb/1599308871","imdbId":"","language":"en","overview":"After reckless young lawyer Gordon Bombay gets arrested for drunk driving, he must coach a kids hockey team for his community service. Gordon has experience on the ice, but isn't eager to return to hockey, a point hit home by his tense dealings with his own former coach, Jack Reilly. The reluctant Gordon eventually grows to appreciate his team, which includes promising young Charlie Conway, and leads them to take on Reilly's tough players.","moviesInCollection":[],"ratingKey":2685,"key":"/library/metadata/2685","collectionTitle":"","collectionId":-1,"tmdbId":10414},{"name":"The Professor","year":2019,"posterUrl":"/library/metadata/2760/thumb/1599308905","imdbId":"","language":"en","overview":"A world-weary college professor is given a life-changing diagnosis and decides to throw all pretense and conventions to the wind and live his life as boldly and freely as possible with a biting sense of humor, a reckless streak and a touch of madness.","moviesInCollection":[],"ratingKey":2760,"key":"/library/metadata/2760","collectionTitle":"","collectionId":-1,"tmdbId":467956},{"name":"Despicable Me 3","year":2017,"posterUrl":"/library/metadata/700/thumb/1599308081","imdbId":"","language":"en","overview":"Gru and his wife Lucy must stop former '80s child star Balthazar Bratt from achieving world domination.","moviesInCollection":[],"ratingKey":700,"key":"/library/metadata/700","collectionTitle":"","collectionId":-1,"tmdbId":324852},{"name":"Hannibal","year":2001,"posterUrl":"/library/metadata/1057/thumb/1599308216","imdbId":"","language":"en","overview":"After having successfully eluded the authorities for years, Hannibal peacefully lives in Italy in disguise as an art scholar. Trouble strikes again when he's discovered leaving a deserving few dead in the process. He returns to America to make contact with now disgraced Agent Clarice Starling, who is suffering the wrath of a malicious FBI rival as well as the media.","moviesInCollection":[],"ratingKey":1057,"key":"/library/metadata/1057","collectionTitle":"","collectionId":-1,"tmdbId":9740},{"name":"Rio 2","year":2014,"posterUrl":"/library/metadata/1909/thumb/1599308566","imdbId":"","language":"en","overview":"It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.","moviesInCollection":[],"ratingKey":1909,"key":"/library/metadata/1909","collectionTitle":"","collectionId":-1,"tmdbId":172385},{"name":"The Sting","year":1973,"posterUrl":"/library/metadata/2838/thumb/1599308941","imdbId":"","language":"en","overview":"Set in the 1930s this intricate caper deals with an ambitious small-time crook and a veteran con man who seek revenge on a vicious crime lord who murdered one of their gang.","moviesInCollection":[],"ratingKey":2838,"key":"/library/metadata/2838","collectionTitle":"","collectionId":-1,"tmdbId":9277},{"name":"Leprechaun Origins","year":2014,"posterUrl":"/library/metadata/1368/thumb/1599308329","imdbId":"","language":"en","overview":"Two young couples backpacking through Ireland discover that one of Ireland's most famous legends is a terrifying reality.","moviesInCollection":[],"ratingKey":1368,"key":"/library/metadata/1368","collectionTitle":"","collectionId":-1,"tmdbId":126172},{"name":"Frozen II","year":2019,"posterUrl":"/library/metadata/957/thumb/1599308177","imdbId":"","language":"en","overview":"Elsa, Anna, Kristoff and Olaf head far into the forest to learn the truth about an ancient mystery of their kingdom.","moviesInCollection":[],"ratingKey":957,"key":"/library/metadata/957","collectionTitle":"","collectionId":-1,"tmdbId":330457},{"name":"Bad Ass 2 Bad Asses","year":2014,"posterUrl":"/library/metadata/264/thumb/1599307924","imdbId":"","language":"en","overview":"Vietnam vet Frank Vega now runs an East L.A. community center where he trains young boxers to survive in and out of the ring. But when his prize student falls in with the wrong crowd and turns up dead, Frank teams up with his pal Bernie to take matters into their own fists and prove that justice never gets old.","moviesInCollection":[],"ratingKey":264,"key":"/library/metadata/264","collectionTitle":"","collectionId":-1,"tmdbId":255268},{"name":"My Life as a Dog","year":1987,"posterUrl":"/library/metadata/1577/thumb/1599308423","imdbId":"","language":"en","overview":"A boy, obsessed with comparing himself with those less fortunate, experiences a different life at the home of his aunt and uncle in 1959 Sweden.","moviesInCollection":[],"ratingKey":1577,"key":"/library/metadata/1577","collectionTitle":"","collectionId":-1,"tmdbId":8816},{"name":"Pokémon The Movie 2000","year":2000,"posterUrl":"/library/metadata/1773/thumb/1599308507","imdbId":"","language":"en","overview":"Satoshi must put his skill to the test when he attempts to save the world from destruction. The Greedy Pokemon collector Gelardan throws the universe into chaos after disrupting the balance of nature by capturing one of the Pokemon birds that rule the elements of fire, lightning and ice. Will Satoshi have what it takes to save the world?","moviesInCollection":[],"ratingKey":1773,"key":"/library/metadata/1773","collectionTitle":"","collectionId":-1,"tmdbId":12599},{"name":"The Goonies","year":1985,"posterUrl":"/library/metadata/2502/thumb/1599308800","imdbId":"","language":"en","overview":"A young teenager named Mikey Walsh finds an old treasure map in his father's attic. Hoping to save their homes from demolition, Mikey and his friends Data Wang, Chunk Cohen, and Mouth Devereaux run off on a big quest to find the secret stash of Pirate One-Eyed Willie.","moviesInCollection":[],"ratingKey":2502,"key":"/library/metadata/2502","collectionTitle":"","collectionId":-1,"tmdbId":9340},{"name":"Despicable Me 2","year":2013,"posterUrl":"/library/metadata/699/thumb/1599308081","imdbId":"","language":"en","overview":"Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.","moviesInCollection":[],"ratingKey":699,"key":"/library/metadata/699","collectionTitle":"","collectionId":-1,"tmdbId":93456},{"name":"The Fanatic","year":2019,"posterUrl":"/library/metadata/39681/thumb/1599309091","imdbId":"","language":"en","overview":"A rabid film fan stalks his favorite action hero and destroys the star's life.","moviesInCollection":[],"ratingKey":39681,"key":"/library/metadata/39681","collectionTitle":"","collectionId":-1,"tmdbId":509853},{"name":"Future World","year":2018,"posterUrl":"/library/metadata/962/thumb/1599308179","imdbId":"","language":"en","overview":"A young boy searches a future world wasteland for a rumored cure for his dying mother.","moviesInCollection":[],"ratingKey":962,"key":"/library/metadata/962","collectionTitle":"","collectionId":-1,"tmdbId":411135},{"name":"Back to the Future Part II","year":1989,"posterUrl":"/library/metadata/41926/thumb/1599309133","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41926,"key":"/library/metadata/41926","collectionTitle":"","collectionId":-1,"tmdbId":165},{"name":"AVP Alien vs. Predator","year":2004,"posterUrl":"/library/metadata/252/thumb/1599307920","imdbId":"","language":"en","overview":"When scientists discover something in the Arctic that appears to be a buried Pyramid, they send a research team out to investigate. Little do they know that they are about to step into a hunting ground where Aliens are grown as sport for the Predator race.","moviesInCollection":[],"ratingKey":252,"key":"/library/metadata/252","collectionTitle":"","collectionId":-1,"tmdbId":395},{"name":"Rogue Warfare","year":2019,"posterUrl":"/library/metadata/47615/thumb/1599309187","imdbId":"","language":"en","overview":"A group of military elite from the U.S., Russia, UK, China and France join forces to fight an elite underground terrorist network.","moviesInCollection":[],"ratingKey":47615,"key":"/library/metadata/47615","collectionTitle":"","collectionId":-1,"tmdbId":627879},{"name":"Concussion","year":2015,"posterUrl":"/library/metadata/563/thumb/1599308033","imdbId":"","language":"en","overview":"A dramatic thriller based on the incredible true David vs. Goliath story of American immigrant Dr. Bennet Omalu, the brilliant forensic neuropathologist who made the first discovery of CTE, a football-related brain trauma, in a pro player and fought for the truth to be known. Omalu's emotional quest puts him at dangerous odds with one of the most powerful institutions in the world.","moviesInCollection":[],"ratingKey":563,"key":"/library/metadata/563","collectionTitle":"","collectionId":-1,"tmdbId":321741},{"name":"The American","year":2010,"posterUrl":"/library/metadata/2289/thumb/1599308721","imdbId":"","language":"en","overview":"Dispatched to a small Italian town to await further orders, assassin Jack embarks on a double life that may be more relaxing than is good for him.","moviesInCollection":[],"ratingKey":2289,"key":"/library/metadata/2289","collectionTitle":"","collectionId":-1,"tmdbId":27579},{"name":"The Rescuers Down Under","year":1990,"posterUrl":"/library/metadata/2778/thumb/1599308914","imdbId":"","language":"en","overview":"A lawless poacher wants to capture a majestic and rare golden eagle, so he kidnaps the boy who knows where to find the bird. Not to worry -- the Rescue Aid Society's top agents, heroic mice Miss Bianca and Bernard, fly to Australia to save the day. Accompanying the fearless duo are bumbling albatross Wilbur and local field operative Jake the Kangaroo Rat.","moviesInCollection":[],"ratingKey":2778,"key":"/library/metadata/2778","collectionTitle":"","collectionId":-1,"tmdbId":11135},{"name":"Cry Freedom","year":1987,"posterUrl":"/library/metadata/609/thumb/1599308050","imdbId":"","language":"en","overview":"A dramatic story, based on actual events, about the friendship between two men struggling against apartheid in South Africa in the 1970s. Donald Woods is a white liberal journalist in South Africa who begins to follow the activities of Stephen Biko, a courageous and outspoken black anti-apartheid activist.","moviesInCollection":[],"ratingKey":609,"key":"/library/metadata/609","collectionTitle":"","collectionId":-1,"tmdbId":12506},{"name":"New Nightmare","year":1994,"posterUrl":"/library/metadata/1604/thumb/1599308434","imdbId":"","language":"en","overview":"In this meta horror film, a demonic entity uses the fictional character of Freddy Krueger to enter the real world and torment \"Elm Street\" heroine Heather Langenkamp and her family.","moviesInCollection":[],"ratingKey":1604,"key":"/library/metadata/1604","collectionTitle":"","collectionId":-1,"tmdbId":11596},{"name":"Neighbors","year":2014,"posterUrl":"/library/metadata/1598/thumb/1599308431","imdbId":"","language":"en","overview":"A couple with a newborn baby face unexpected difficulties after they are forced to live next to a fraternity house.","moviesInCollection":[],"ratingKey":1598,"key":"/library/metadata/1598","collectionTitle":"","collectionId":-1,"tmdbId":195589},{"name":"Showgirls 2 Penny's from Heaven","year":2011,"posterUrl":"/library/metadata/2028/thumb/1599308617","imdbId":"","language":"en","overview":"Las Vegas stripper, Penny Slot (Rena Riffel), sets out on an adventure to become the star dancer on a dance television show. With stars in her eyes, she tries to find the pot of gold at the end of the rainbow but instead finds danger in a town more wicked than Sin City. Romance then leads her down a path towards her dream of stardom, fame, and fortune. But danger lurks at every twist and turn while Penny Slot becomes lured by a dangerous love triangle full of temptation and seduction. Penny's longtime fiancé/boyfriend, James \"Jimmy\" Smith (Glenn Plummer) warns her that she needs formal technique training if she wants to be taken seriously as a real dancer, so Penny heeds his advice and sets out to take ballet classes and practices her pique turns. But, she must pay the price. And there is a price to pay for success, sacrifices to be made at every imaginable level, and it all comes down to... How bad do you want it?","moviesInCollection":[],"ratingKey":2028,"key":"/library/metadata/2028","collectionTitle":"","collectionId":-1,"tmdbId":94042},{"name":"Psycho IV The Beginning","year":1990,"posterUrl":"/library/metadata/1819/thumb/1599308527","imdbId":"","language":"en","overview":"Norman Bates is again released from the mental hospital he was placed in at the end of Psycho III after serving another few years and is apparently rehabiliated for the second time. Norman is now married to a young nurse named Connie and is expecting a child. However, Norman fears that the child will inherit his mental illness. Meanwhile, Fran Ambrose is a radio talk show host who is discussing the topic of matricide with guest Dr. Richmond, Norman's former psychologist. The radio station receives a call from Norman, who uses the alias \"Ed\" to tell his story.","moviesInCollection":[],"ratingKey":1819,"key":"/library/metadata/1819","collectionTitle":"","collectionId":-1,"tmdbId":40377},{"name":"Blinded by the Light","year":2019,"posterUrl":"/library/metadata/382/thumb/1599307967","imdbId":"","language":"en","overview":"In 1987, during the austere days of Thatcher’s Britain, a teenager learns to live life, understand his family, and find his own voice through the music of Bruce Springsteen.","moviesInCollection":[],"ratingKey":382,"key":"/library/metadata/382","collectionTitle":"","collectionId":-1,"tmdbId":534259},{"name":"Stranded","year":2013,"posterUrl":"/library/metadata/2173/thumb/1599308680","imdbId":"","language":"en","overview":"The Lunar Base Ark explores ore and unexpectedly is hit by a meteor shower and has severe damages. Colonel Gerard Brauchman sends the crewwoman Ava Cameron to repair a wing that is full of CO2. Dr. Lance Krauss warns that the gas may cause paranoia and hallucinations. Ava brings a sample of the meteor for analysis and Dr. Krauss finds that there are spores attached to the meteor. Ava accidentally cuts her finger in a sample but she hides the cut from the doctor. Soon Ava gets pregnant and delivers an alien offspring. However, neither Col. Brauchman nor Dr. Kraus believes in her words and they believe that Ava is delusional. He offspring bites the crewman Bruce Johns and the crew discovers that Bruce has been cloned by the alien. Soon they find how dangerous the clone is.","moviesInCollection":[],"ratingKey":2173,"key":"/library/metadata/2173","collectionTitle":"","collectionId":-1,"tmdbId":196830},{"name":"Captain America The First Avenger","year":2011,"posterUrl":"/library/metadata/466/thumb/1599307999","imdbId":"","language":"en","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 – 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.","moviesInCollection":[],"ratingKey":466,"key":"/library/metadata/466","collectionTitle":"","collectionId":-1,"tmdbId":1771},{"name":"Rampant","year":2019,"posterUrl":"/library/metadata/1848/thumb/1599308539","imdbId":"","language":"en","overview":"Ancient Korea, 17th century. While the paranoid King Lee Jo of Joseon, vassal of the Qing dynasty, feels surrounded by conspirators and rebels, a dark evil emerges from the bowels of a merchant ship and the exiled Prince Lee Cheung returns to the royal court, ignoring that he will have to lead the few capable of defeating the ambitious humans and the bloody monsters who threaten to destroy the kingdom.","moviesInCollection":[],"ratingKey":1848,"key":"/library/metadata/1848","collectionTitle":"","collectionId":-1,"tmdbId":537190},{"name":"Sins","year":2013,"posterUrl":"/library/metadata/2941/thumb/1587603070","imdbId":"","language":"en","overview":"David begins experiencing cloudy memories of a long-lost life amidst the violent Cortello family in Sicily ââ'¬Â¦ a family he ultimately betrayed. And the wages of sin are deadly.","moviesInCollection":[],"ratingKey":2941,"key":"/library/metadata/2941","collectionTitle":"","collectionId":-1,"tmdbId":187448},{"name":"Batman Return of the Caped Crusaders","year":2016,"posterUrl":"/library/metadata/298/thumb/1599307936","imdbId":"","language":"en","overview":"Adam West and Burt Ward returns to their iconic roles of Batman and Robin. The film sees the superheroes going up against classic villains like The Joker, The Riddler, The Penguin and Catwoman, both in Gotham City… and in space.","moviesInCollection":[],"ratingKey":298,"key":"/library/metadata/298","collectionTitle":"","collectionId":-1,"tmdbId":411736},{"name":"Iron Man 2","year":2010,"posterUrl":"/library/metadata/1208/thumb/1599308273","imdbId":"","language":"en","overview":"With the world now aware of his dual life as the armored superhero Iron Man, billionaire inventor Tony Stark faces pressure from the government, the press and the public to share his technology with the military. Unwilling to let go of his invention, Stark, with Pepper Potts and James 'Rhodey' Rhodes at his side, must forge new alliances – and confront powerful enemies.","moviesInCollection":[],"ratingKey":1208,"key":"/library/metadata/1208","collectionTitle":"","collectionId":-1,"tmdbId":10138},{"name":"The Hobbit The Battle of the Five Armies","year":2014,"posterUrl":"/library/metadata/2543/thumb/1599308815","imdbId":"","language":"en","overview":"Immediately after the events of The Desolation of Smaug, Bilbo and the dwarves try to defend Erebor's mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor, fueled by the rise of the dark lord Sauron. Dwarves, elves and men must unite, and the hope for Middle-Earth falls into Bilbo's hands.","moviesInCollection":[],"ratingKey":2543,"key":"/library/metadata/2543","collectionTitle":"","collectionId":-1,"tmdbId":122917},{"name":"The Dead Don't Die","year":2019,"posterUrl":"/library/metadata/2398/thumb/1599308758","imdbId":"","language":"en","overview":"In a small peaceful town, zombies suddenly rise to terrorize the town. Now three bespectacled police officers and a strange Scottish morgue expert must band together to defeat the undead.","moviesInCollection":[],"ratingKey":2398,"key":"/library/metadata/2398","collectionTitle":"","collectionId":-1,"tmdbId":535581},{"name":"Outpost","year":2008,"posterUrl":"/library/metadata/1676/thumb/1599308466","imdbId":"","language":"en","overview":"In a seedy bar in a town ravaged by war, scientist and businessman Hunt hires mercenary and former Royal Marine D.C. to assemble a crack team of ex-soldiers to protect him on a dangerous journey into no-man's land. Their mission is to scope out an old military bunker in Eastern Europe. It should be easy – 48 hours at the most. Lots of cash for little risk. Or so he says...","moviesInCollection":[],"ratingKey":1676,"key":"/library/metadata/1676","collectionTitle":"","collectionId":-1,"tmdbId":9017},{"name":"300","year":2007,"posterUrl":"/library/metadata/34/thumb/1599307838","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":34,"key":"/library/metadata/34","collectionTitle":"","collectionId":-1,"tmdbId":1271},{"name":"The Lonely Lady","year":1983,"posterUrl":"/library/metadata/2647/thumb/1599308854","imdbId":"","language":"en","overview":"A young screenwriter allows others to exploit her in the hopes of \"making it\" in Hollywood.","moviesInCollection":[],"ratingKey":2647,"key":"/library/metadata/2647","collectionTitle":"","collectionId":-1,"tmdbId":114394},{"name":"Machine Gun Preacher","year":2011,"posterUrl":"/library/metadata/1431/thumb/1599308356","imdbId":"","language":"en","overview":"The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who've been kidnapped and pressed into duty as soldiers.","moviesInCollection":[],"ratingKey":1431,"key":"/library/metadata/1431","collectionTitle":"","collectionId":-1,"tmdbId":45610},{"name":"The Grey","year":2011,"posterUrl":"/library/metadata/40977/thumb/1599309114","imdbId":"","language":"en","overview":"After suffering a violent plane crash, a group of oil drillers is stranded in the most remote wilderness of Alaska, far from any chance of being rescued. Exposed to the icy cold and extreme living conditions, the few survivors, led by Ottway, an experienced hunter, will endure the tireless persecution of a pack of huge wolves.","moviesInCollection":[],"ratingKey":40977,"key":"/library/metadata/40977","collectionTitle":"","collectionId":-1,"tmdbId":75174},{"name":"Gotti","year":2018,"posterUrl":"/library/metadata/1022/thumb/1599308202","imdbId":"","language":"en","overview":"John Gotti rises to the top of the New York underworld to become the boss of the Gambino crime family. His life takes a tumultuous turn as he faces tragedy, multiple trials and a prison sentence.","moviesInCollection":[],"ratingKey":1022,"key":"/library/metadata/1022","collectionTitle":"","collectionId":-1,"tmdbId":339103},{"name":"Monster Trucks","year":2017,"posterUrl":"/library/metadata/1534/thumb/1599308404","imdbId":"","language":"en","overview":"Looking for any way to get away from the life and town he was born into, Tripp, a high school senior, builds a Monster Truck from bits and pieces of scrapped cars. After an accident at a nearby oil-drilling site displaces a strange and subterranean creature with a taste and a talent for speed, Tripp may have just found the key to getting out of town and a most unlikely friend.","moviesInCollection":[],"ratingKey":1534,"key":"/library/metadata/1534","collectionTitle":"","collectionId":-1,"tmdbId":262841},{"name":"Wilson","year":2017,"posterUrl":"/library/metadata/3151/thumb/1599309048","imdbId":"","language":"en","overview":"Middle-aged and divorced, Wilson finds himself lonely, smug and obsessed with his past.","moviesInCollection":[],"ratingKey":3151,"key":"/library/metadata/3151","collectionTitle":"","collectionId":-1,"tmdbId":346681},{"name":"Death Race 2000","year":1975,"posterUrl":"/library/metadata/669/thumb/1599308070","imdbId":"","language":"en","overview":"In a boorish future, the government sponsors a popular, but bloody, cross-country race in which points are scored by mowing down pedestrians. Five teams, each comprised of a male and female, compete using cars equipped with deadly weapons. Frankenstein, the mysterious returning champion, has become America's hero, but this time he has a passenger from the underground resistance.","moviesInCollection":[],"ratingKey":669,"key":"/library/metadata/669","collectionTitle":"","collectionId":-1,"tmdbId":13282},{"name":"Brain Damage","year":1988,"posterUrl":"/library/metadata/413/thumb/1599307977","imdbId":"","language":"en","overview":"A normal, average guy who lives in New York City becomes dependent on an evil, disembodied brain.","moviesInCollection":[],"ratingKey":413,"key":"/library/metadata/413","collectionTitle":"","collectionId":-1,"tmdbId":27814},{"name":"Iron Man 3","year":2013,"posterUrl":"/library/metadata/1209/thumb/1599308273","imdbId":"","language":"en","overview":"When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.","moviesInCollection":[],"ratingKey":1209,"key":"/library/metadata/1209","collectionTitle":"","collectionId":-1,"tmdbId":68721},{"name":"Nekrotronic","year":2019,"posterUrl":"/library/metadata/1600/thumb/1599308433","imdbId":"","language":"en","overview":"A man discovers that he is part of a secret sect of magical beings who hunt down and destroy demons in the internet.","moviesInCollection":[],"ratingKey":1600,"key":"/library/metadata/1600","collectionTitle":"","collectionId":-1,"tmdbId":506775},{"name":"Between Worlds","year":2018,"posterUrl":"/library/metadata/339/thumb/1599307950","imdbId":"","language":"en","overview":"Joe—a down-on-his-luck truck driver haunted by the memory of his deceased wife and child—meets Julie, a spiritually gifted woman who enlists his help in a desperate effort to find the lost soul of her comatose daughter. But the spirit of Joe's dead wife proves stronger, possessing the young woman's body and determined to settle her unfinished business with the living.","moviesInCollection":[],"ratingKey":339,"key":"/library/metadata/339","collectionTitle":"","collectionId":-1,"tmdbId":500921},{"name":"The Natural","year":1984,"posterUrl":"/library/metadata/2707/thumb/1599308882","imdbId":"","language":"en","overview":"An unknown middle-aged batter named Roy Hobbs with a mysterious past appears out of nowhere to take a losing 1930s baseball team to the top of the league.","moviesInCollection":[],"ratingKey":2707,"key":"/library/metadata/2707","collectionTitle":"","collectionId":-1,"tmdbId":11393},{"name":"Quarantine","year":2008,"posterUrl":"/library/metadata/1829/thumb/1599308530","imdbId":"","language":"en","overview":"A television reporter and her cameraman are trapped inside a building quarantined by the CDC after the outbreak of a mysterious virus which turns humans into bloodthirsty killers.","moviesInCollection":[],"ratingKey":1829,"key":"/library/metadata/1829","collectionTitle":"","collectionId":-1,"tmdbId":13812},{"name":"Jingle All the Way","year":1996,"posterUrl":"/library/metadata/1242/thumb/1599308286","imdbId":"","language":"en","overview":"Meet Howard Langston, a salesman for a mattress company is constantly busy at his job, and he also constantly disappoints his son, after he misses his son's karate exposition, his son tells Howard that he wants for Christmas is an action figure of his son's television hero, he tries hard to to make it up to him. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man, now Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.","moviesInCollection":[],"ratingKey":1242,"key":"/library/metadata/1242","collectionTitle":"","collectionId":-1,"tmdbId":9279},{"name":"The Maze Runner","year":2014,"posterUrl":"/library/metadata/2679/thumb/1599308868","imdbId":"","language":"en","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 “runners” for a shot at escape.","moviesInCollection":[],"ratingKey":2679,"key":"/library/metadata/2679","collectionTitle":"","collectionId":-1,"tmdbId":198663},{"name":"Year One","year":2009,"posterUrl":"/library/metadata/3185/thumb/1599309059","imdbId":"","language":"en","overview":"When a couple of lazy hunter-gatherers are banished from their primitive village, they set off on an epic journey through the ancient world.","moviesInCollection":[],"ratingKey":3185,"key":"/library/metadata/3185","collectionTitle":"","collectionId":-1,"tmdbId":17610},{"name":"Master and Commander The Far Side of the World","year":2003,"posterUrl":"/library/metadata/1466/thumb/1599308373","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1466,"key":"/library/metadata/1466","collectionTitle":"","collectionId":-1,"tmdbId":8619},{"name":"Ozombie","year":2012,"posterUrl":"/library/metadata/1684/thumb/1599308470","imdbId":"","language":"en","overview":"Following the 9/11 attacks, the war on terror against Afghanistan continues. With the Taliban insurgents hiding out in the mountains however, they become increasingly difficult for the US military to engage. The solution is to try and flush them out by adding low level chemicals to the water supply. Little do the USA know however that enemy scientists have adapted the chemicals to make their own formula, one that can bring the dead back to life.","moviesInCollection":[],"ratingKey":1684,"key":"/library/metadata/1684","collectionTitle":"","collectionId":-1,"tmdbId":109867},{"name":"Marley & Me","year":2008,"posterUrl":"/library/metadata/1458/thumb/1599308369","imdbId":"","language":"en","overview":"A newly married couple who, in the process of starting a family, learn many of life's important lessons from their trouble-loving retriever, Marley. Packed with plenty of laughs to lighten the load, the film explores the highs and lows of marriage, maturity and confronting one's own mortality, as seen through the lens of family life with a dog.","moviesInCollection":[],"ratingKey":1458,"key":"/library/metadata/1458","collectionTitle":"","collectionId":-1,"tmdbId":14306},{"name":"Inheritance","year":2020,"posterUrl":"/library/metadata/46502/thumb/1599309160","imdbId":"","language":"en","overview":"A patriarch of a wealthy and powerful family suddenly passes away, leaving his wife and daughter with a shocking secret inheritance that threatens to unravel and destroy their lives.","moviesInCollection":[],"ratingKey":46502,"key":"/library/metadata/46502","collectionTitle":"","collectionId":-1,"tmdbId":602147},{"name":"Art of Darkness","year":2012,"posterUrl":"/library/metadata/224/thumb/1599307910","imdbId":"","language":"en","overview":"Ben and Liz are a married couple still coming to terms with Liz's recent miscarriage. Too distraught in the weeks after it, she quit her nursing job, and Ben is struggling to hold on to his accountancy job after a round of redundancies. Things are not that great between them right now. In a bid to make some money on the side to help out, Liz accepts a shady modeling job for Philip, an intense photographer who works from his sprawling house in the middle of nowhere. But Philip isn't what he seems...","moviesInCollection":[],"ratingKey":224,"key":"/library/metadata/224","collectionTitle":"","collectionId":-1,"tmdbId":137904},{"name":"Training Day","year":2001,"posterUrl":"/library/metadata/2980/thumb/1599308990","imdbId":"","language":"en","overview":"On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.","moviesInCollection":[],"ratingKey":2980,"key":"/library/metadata/2980","collectionTitle":"","collectionId":-1,"tmdbId":2034},{"name":"Gangs of New York","year":2002,"posterUrl":"/library/metadata/968/thumb/1599308182","imdbId":"","language":"en","overview":"It's 1863. America was born in the streets. Amsterdam Vallon returns to the Five Points of America to seek vengeance against the psychotic gangland kingpin, Bill the Butcher, who murdered his father years earlier. With an eager pickpocket by his side and a whole new army, Vallon fights his way to seek vengeance on the Butcher and restore peace in the area.","moviesInCollection":[],"ratingKey":968,"key":"/library/metadata/968","collectionTitle":"","collectionId":-1,"tmdbId":3131},{"name":"Chernobyl Diaries","year":2012,"posterUrl":"/library/metadata/498/thumb/1599308010","imdbId":"","language":"en","overview":"A group of six tourists looking to go off the beaten path, hire an 'extreme tour guide' who, ignoring warnings, takes them into the city of Pripyat, the former home to the workers of the Chernobyl nuclear reactor, but now a deserted town since the disaster more than 25 years earlier. After a brief exploration of the abandoned city, the group members find themselves stranded, only to discover that they are not alone.","moviesInCollection":[],"ratingKey":498,"key":"/library/metadata/498","collectionTitle":"","collectionId":-1,"tmdbId":93856},{"name":"A Good Man","year":2014,"posterUrl":"/library/metadata/65/thumb/1599307848","imdbId":"","language":"en","overview":"After an illustrious special ops career ends in disaster, Alexander goes off the grid and attempts to lead a quiet life as a handyman at an apartment complex. But when one of his tenants and her family fall under the thumb of a Russian gangster, Alexander is dragged into an all-out war between rival Chinese and Russian gangs; forcing him to not only defend the family, but bringing him face to face with an old foe, and giving him one more chance to reconcile his past.","moviesInCollection":[],"ratingKey":65,"key":"/library/metadata/65","collectionTitle":"","collectionId":-1,"tmdbId":286668},{"name":"Woody Woodpecker","year":2018,"posterUrl":"/library/metadata/3167/thumb/1599309054","imdbId":"","language":"en","overview":"Woody Woodpecker is back with his signature laugh, wacky antics and wisecracks in the first ever live-action/animated film. Woody must protect his forest home from Lance Walters (Timothy Omundson) who starts building his dream mansion in the forest with his son, Tommy and fiancee Vanessa (Thaila Ayala). To make matters worse, he must avoid the clutches of two grizzly poachers. With a series of crazy hijinks to sabotage their plans, Woody proves he'll stop at nothing to defend his turf. Get ready for big laughs in this hilarious comedy about everyone's favourite woodpecker!","moviesInCollection":[],"ratingKey":3167,"key":"/library/metadata/3167","collectionTitle":"","collectionId":-1,"tmdbId":462883},{"name":"The Sting II","year":1983,"posterUrl":"/library/metadata/2839/thumb/1599308941","imdbId":"","language":"en","overview":"Hooker and Gondorf pull a con on Macalinski, an especially nasty mob boss with the help of Veronica, a new grifter. They convince this new victim that Hooker is a somewhat dull boxer who is tired of taking dives for Gondorf. There is a ringer. Lonigan, their victim from the first movie, is setting them up to take the fall.","moviesInCollection":[],"ratingKey":2839,"key":"/library/metadata/2839","collectionTitle":"","collectionId":-1,"tmdbId":36912},{"name":"Battleship","year":2012,"posterUrl":"/library/metadata/314/thumb/1599307941","imdbId":"","language":"en","overview":"When mankind beams a radio signal into space, a reply comes from ‘Planet G’, in the form of several alien crafts that splash down in the waters off Hawaii. Lieutenant Alex Hopper is a weapons officer assigned to the USS John Paul Jones, part of an international naval coalition which becomes the world's last hope for survival as they engage the hostile alien force of unimaginable strength. While taking on the invaders, Hopper must also try to live up to the potential that his brother, and his fiancée's father, Admiral Shane, expect of him.","moviesInCollection":[],"ratingKey":314,"key":"/library/metadata/314","collectionTitle":"","collectionId":-1,"tmdbId":44833},{"name":"You Only Live Twice","year":1967,"posterUrl":"/library/metadata/3189/thumb/1599309061","imdbId":"","language":"en","overview":"A mysterious spacecraft captures Russian and American space capsules and brings the two superpowers to the brink of war. James Bond investigates the case in Japan and comes face to face with his archenemy Blofeld.","moviesInCollection":[],"ratingKey":3189,"key":"/library/metadata/3189","collectionTitle":"","collectionId":-1,"tmdbId":667},{"name":"Cloudy with a Chance of Meatballs","year":2009,"posterUrl":"/library/metadata/529/thumb/1599308021","imdbId":"","language":"en","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?","moviesInCollection":[],"ratingKey":529,"key":"/library/metadata/529","collectionTitle":"","collectionId":-1,"tmdbId":22794},{"name":"The Jungle Book","year":1967,"posterUrl":"/library/metadata/2597/thumb/1599308835","imdbId":"","language":"en","overview":"The boy Mowgli makes his way to the man-village with Bagheera, the wise panther. Along the way he meets jazzy King Louie, the hypnotic snake Kaa and the lovable, happy-go-lucky bear Baloo, who teaches Mowgli \"The Bare Necessities\" of life and the true meaning of friendship.","moviesInCollection":[],"ratingKey":2597,"key":"/library/metadata/2597","collectionTitle":"","collectionId":-1,"tmdbId":9325},{"name":"Target Number One","year":2020,"posterUrl":"/library/metadata/48333/thumb/1600865848","imdbId":"","language":"en","overview":"Ex heroin junkie, Daniel Léger, gets involved in a drug deal with the wrong people for the wrong reasons. When the deal goes sour, Daniel gets thrown into a Thai prison and slapped with a 100-year sentence. While he tries to survive his Bangkok incarceration, the news of his conviction captures the attention of Globe and Mail journalist Victor Malarek, who decides to go after the shady undercover cops responsible for wrongly accusing Daniel.","moviesInCollection":[],"ratingKey":48333,"key":"/library/metadata/48333","collectionTitle":"","collectionId":-1,"tmdbId":526973},{"name":"The Man with the Golden Gun","year":1974,"posterUrl":"/library/metadata/2668/thumb/1599308864","imdbId":"","language":"en","overview":"Cool government operative James Bond searches for a stolen invention that can turn the sun's heat into a destructive weapon. He soon crosses paths with the menacing Francisco Scaramanga, a hit man so skilled he has a seven-figure working fee. Bond then joins forces with the swimsuit-clad Mary Goodnight, and together they track Scaramanga to a tropical isle hideout where the killer-for-hire lures the slick spy into a deadly maze for a final duel.","moviesInCollection":[],"ratingKey":2668,"key":"/library/metadata/2668","collectionTitle":"","collectionId":-1,"tmdbId":682},{"name":"Big Hero 6","year":2014,"posterUrl":"/library/metadata/350/thumb/1599307954","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":350,"key":"/library/metadata/350","collectionTitle":"","collectionId":-1,"tmdbId":177572},{"name":"Mythica The Necromancer","year":2015,"posterUrl":"/library/metadata/1584/thumb/1599308425","imdbId":"","language":"en","overview":"Mallister takes Thane prisoner and forces Marek and her team on a quest. Marek tracks down the Necromancer for a final showdown for the Darkspore.","moviesInCollection":[],"ratingKey":1584,"key":"/library/metadata/1584","collectionTitle":"","collectionId":-1,"tmdbId":370687},{"name":"Star Trek Insurrection","year":1998,"posterUrl":"/library/metadata/2137/thumb/1599308666","imdbId":"","language":"en","overview":"When an alien race and factions within Starfleet attempt to take over a planet that has \"regenerative\" properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet's people as well as the very ideals upon which the Federation itself was founded.","moviesInCollection":[],"ratingKey":2137,"key":"/library/metadata/2137","collectionTitle":"","collectionId":-1,"tmdbId":200},{"name":"Dead Poets Society","year":1989,"posterUrl":"/library/metadata/656/thumb/1599308065","imdbId":"","language":"en","overview":"At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.","moviesInCollection":[],"ratingKey":656,"key":"/library/metadata/656","collectionTitle":"","collectionId":-1,"tmdbId":207},{"name":"Indiana Jones and the Kingdom of the Crystal Skull","year":2008,"posterUrl":"/library/metadata/1187/thumb/1599308264","imdbId":"","language":"en","overview":"Set during the Cold War, the Soviets – led by sword-wielding Irina Spalko – are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. After being captured and then escaping from them, Indy is coerced to head to Peru at the behest of a young man whose friend – and Indy's colleague – Professor Oxley has been captured for his knowledge of the skull's whereabouts.","moviesInCollection":[],"ratingKey":1187,"key":"/library/metadata/1187","collectionTitle":"","collectionId":-1,"tmdbId":217},{"name":"Den of Thieves","year":2018,"posterUrl":"/library/metadata/692/thumb/1599308078","imdbId":"","language":"en","overview":"A gritty crime saga which follows the lives of an elite unit of the LA County Sheriff's Dept. and the state's most successful bank robbery crew as the outlaws plan a seemingly impossible heist on the Federal Reserve Bank.","moviesInCollection":[],"ratingKey":692,"key":"/library/metadata/692","collectionTitle":"","collectionId":-1,"tmdbId":449443},{"name":"Arizona","year":2018,"posterUrl":"/library/metadata/218/thumb/1599307907","imdbId":"","language":"en","overview":"Set in the midst of the 2009 housing crisis, the life of Cassie Fowler, a single mother and struggling realtor, goes off the rails when she witnesses a murder.","moviesInCollection":[],"ratingKey":218,"key":"/library/metadata/218","collectionTitle":"","collectionId":-1,"tmdbId":490004},{"name":"WarGames","year":1983,"posterUrl":"/library/metadata/3110/thumb/1599309034","imdbId":"","language":"en","overview":"High School student David Lightman (Matthew Broderick) 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 (Ally Sheedy) and a wizardly computer genius (John Wood), David must race against time to outwit his opponent...and prevent a nuclear Armageddon.","moviesInCollection":[],"ratingKey":3110,"key":"/library/metadata/3110","collectionTitle":"","collectionId":-1,"tmdbId":860},{"name":"The Goldfinch","year":2019,"posterUrl":"/library/metadata/2499/thumb/1599308799","imdbId":"","language":"en","overview":"A boy in New York is taken in by a wealthy family after his mother is killed in a bombing at the Metropolitan Museum of Art. In a rush of panic, he steals 'The Goldfinch', a painting that eventually draws him into a world of crime.","moviesInCollection":[],"ratingKey":2499,"key":"/library/metadata/2499","collectionTitle":"","collectionId":-1,"tmdbId":472674},{"name":"Cabin Fever Patient Zero","year":2014,"posterUrl":"/library/metadata/457/thumb/1599307994","imdbId":"","language":"en","overview":"A group of friends head to a deserted Caribbean island for a surprise overnight bachelor party only to discover that the island isn't deserted. It's actually the home to a secret medical facility. Not only that, there's something wrong with the water surrounding the island...","moviesInCollection":[],"ratingKey":457,"key":"/library/metadata/457","collectionTitle":"","collectionId":-1,"tmdbId":157424},{"name":"Sully","year":2016,"posterUrl":"/library/metadata/2194/thumb/1599308688","imdbId":"","language":"en","overview":"On 15 January 2009, the world witnessed the 'Miracle on the Hudson' when Captain 'Sully' Sullenberger glided his disabled plane onto the frigid waters of the Hudson River, saving the lives of all 155 aboard. However, even as Sully was being heralded by the public and the media for his unprecedented feat of aviation skill, an investigation was unfolding that threatened to destroy his reputation and career.","moviesInCollection":[],"ratingKey":2194,"key":"/library/metadata/2194","collectionTitle":"","collectionId":-1,"tmdbId":363676},{"name":"Pirates of the Caribbean Dead Man's Chest","year":2006,"posterUrl":"/library/metadata/45887/thumb/1599309150","imdbId":"","language":"en","overview":"Captain Jack Sparrow works his way out of a blood debt with the ghostly Davey Jones, he also attempts to avoid eternal damnation.","moviesInCollection":[],"ratingKey":45887,"key":"/library/metadata/45887","collectionTitle":"","collectionId":-1,"tmdbId":58},{"name":"The Nut Job 2 Nutty by Nature","year":2017,"posterUrl":"/library/metadata/2723/thumb/1599308888","imdbId":"","language":"en","overview":"When the evil mayor of Oakton decides to bulldoze Liberty Park and build a dangerous amusement park in its place, Surly Squirrel and his ragtag group of animal friends need to band together to save their home, defeat the mayor, and take back the park.","moviesInCollection":[],"ratingKey":2723,"key":"/library/metadata/2723","collectionTitle":"","collectionId":-1,"tmdbId":335777},{"name":"Wallander - The Troubled Man","year":2013,"posterUrl":"/library/metadata/3100/thumb/1586236191","imdbId":"","language":"en","overview":"Wallander has become a grandfather and is trying to seize the role as good as it goes, because he wants to be closer to his daughter Linda and her family. When Linda's father in law mysteriously disappears, Wallander is drawn into the case that takes him back in time to the Cold War and the submarine violations in the Stockholm archipelago. At the same time he's starting to suspect that something is not right with him...","moviesInCollection":[],"ratingKey":3100,"key":"/library/metadata/3100","collectionTitle":"","collectionId":-1,"tmdbId":218939},{"name":"Damsel","year":2018,"posterUrl":"/library/metadata/627/thumb/1599308055","imdbId":"","language":"en","overview":"Oregon, a small town near the sea, around 1870. Henry, a grieving man who aspires to preach as a way to overcome his unfortunate past, reunites with eccentric pioneer Samuel Alabaster, who has hired him to officiate at his marriage to the precious Penelope. What Henry ignores is that both must embark on a dangerous journey through the inhospitable wilderness to meet her.","moviesInCollection":[],"ratingKey":627,"key":"/library/metadata/627","collectionTitle":"","collectionId":-1,"tmdbId":414018},{"name":"Shoot 'Em Up","year":2007,"posterUrl":"/library/metadata/2021/thumb/1599308613","imdbId":"","language":"en","overview":"A man named Mr. Smith delivers a woman's baby during a shootout, and is then called upon to protect the newborn from the army of gunmen.","moviesInCollection":[],"ratingKey":2021,"key":"/library/metadata/2021","collectionTitle":"","collectionId":-1,"tmdbId":4141},{"name":"To All the Boys P.S. I Still Love You","year":2020,"posterUrl":"/library/metadata/2945/thumb/1599308978","imdbId":"","language":"en","overview":"Lara Jean and Peter have just taken their romance from pretend to officially real when another recipient of one of her love letters enters the picture.","moviesInCollection":[],"ratingKey":2945,"key":"/library/metadata/2945","collectionTitle":"","collectionId":-1,"tmdbId":565426},{"name":"Liar Liar","year":1997,"posterUrl":"/library/metadata/1382/thumb/1599308335","imdbId":"","language":"en","overview":"Fletcher Reede is a fast-talking attorney and habitual liar. When his son Max blows out the candles on his fifth birthday he has just one wish - that his dad will stop lying for 24 hours. When Max's wish comes true, Fletcher discovers that his mouth has suddenly become his biggest liability.","moviesInCollection":[],"ratingKey":1382,"key":"/library/metadata/1382","collectionTitle":"","collectionId":-1,"tmdbId":1624},{"name":"From Russia with Love","year":1964,"posterUrl":"/library/metadata/955/thumb/1599308176","imdbId":"","language":"en","overview":"Agent 007 is back in the second installment of the James Bond series, this time battling a secret crime organization known as SPECTRE. Russians Rosa Klebb and Kronsteen are out to snatch a decoding device known as the Lektor, using the ravishing Tatiana to lure Bond into helping them. Bond willingly travels to meet Tatiana in Istanbul, where he must rely on his wits to escape with his life in a series of deadly encounters with the enemy","moviesInCollection":[],"ratingKey":955,"key":"/library/metadata/955","collectionTitle":"","collectionId":-1,"tmdbId":657},{"name":"Mad Max Fury Road","year":2015,"posterUrl":"/library/metadata/1435/thumb/1599308358","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1435,"key":"/library/metadata/1435","collectionTitle":"","collectionId":-1,"tmdbId":76341},{"name":"Superman Red Son","year":2020,"posterUrl":"/library/metadata/2214/thumb/1599308694","imdbId":"","language":"en","overview":"Set in the thick of the Cold War, Red Son introduces us to a Superman who landed in the USSR during the 1950s and grows up to become a Soviet symbol that fights for the preservation of Stalin’s brand of communism.","moviesInCollection":[],"ratingKey":2214,"key":"/library/metadata/2214","collectionTitle":"","collectionId":-1,"tmdbId":618355},{"name":"16 Blocks","year":2006,"posterUrl":"/library/metadata/15/thumb/1599307832","imdbId":"","language":"en","overview":"An aging cop is assigned the ordinary task of escorting a fast-talking witness from police custody to a courthouse, but they find themselves running the gauntlet as other forces try to prevent them from getting there.","moviesInCollection":[],"ratingKey":15,"key":"/library/metadata/15","collectionTitle":"","collectionId":-1,"tmdbId":2207},{"name":"Robinson Crusoe The Wild Life","year":2016,"posterUrl":"/library/metadata/1920/thumb/1599308572","imdbId":"","language":"en","overview":"On a tiny exotic island, Tuesday, an outgoing parrot lives with his quirky animal friends in paradise. However, Tuesday can't stop dreaming about discovering the world. After a violent storm, Tuesday and his friends wake up to find a strange creature on the beach: Robinson Crusoe. Tuesday immediately views Crusoe as his ticket off the island to explore new lands. Likewise, Crusoe soon realizes that the key to surviving on the island is through the help of Tuesday and the other animals. It isn't always easy at first, as the animals don't speak \"human.\" Slowly but surely, they all start living together in harmony, until one day, when their comfortable life is overturned by two savage cats, who wish to take control of the island. A battle ensues between the cats and the group of friends but Crusoe and the animals soon discover the true power of friendship up against all odds (even savage cats).","moviesInCollection":[],"ratingKey":1920,"key":"/library/metadata/1920","collectionTitle":"","collectionId":-1,"tmdbId":368940},{"name":"Chinatown","year":1974,"posterUrl":"/library/metadata/505/thumb/1599308013","imdbId":"","language":"en","overview":"Private eye Jake Gittes lives off of the murky moral climate of sunbaked, pre-World War II Southern California. Hired by a beautiful socialite to investigate her husband's extra-marital affair, Gittes is swept into a maelstrom of double dealings and deadly deceits, uncovering a web of personal and political scandals that come crashing together.","moviesInCollection":[],"ratingKey":505,"key":"/library/metadata/505","collectionTitle":"","collectionId":-1,"tmdbId":829},{"name":"Spider-Man Into the Spider-Verse","year":2018,"posterUrl":"/library/metadata/2114/thumb/1599308655","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2114,"key":"/library/metadata/2114","collectionTitle":"","collectionId":-1,"tmdbId":324857},{"name":"Harry Potter and the Prisoner of Azkaban","year":2004,"posterUrl":"/library/metadata/1075/thumb/1599308223","imdbId":"","language":"en","overview":"Harry, Ron and Hermione return to Hogwarts for another magic-filled year. Harry comes face to face with danger yet again, this time in the form of escaped convict, Sirius Black—and turns to sympathetic Professor Lupin for help.","moviesInCollection":[],"ratingKey":1075,"key":"/library/metadata/1075","collectionTitle":"","collectionId":-1,"tmdbId":673},{"name":"Eternal Sunshine of the Spotless Mind","year":2004,"posterUrl":"/library/metadata/839/thumb/1599308130","imdbId":"","language":"en","overview":"Joel Barish, heartbroken that his girlfriend underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realises that he still loves her, and may be too late to correct his mistake.","moviesInCollection":[],"ratingKey":839,"key":"/library/metadata/839","collectionTitle":"","collectionId":-1,"tmdbId":38},{"name":"Undercover Brother 2","year":2019,"posterUrl":"/library/metadata/3044/thumb/1599309012","imdbId":"","language":"en","overview":"Sixteen years ago, Undercover Brother and his younger brother were hot on the heels of the leader of a racist, worldwide syndicate, but accidentally got caught in an avalanche of white snow. After they were discovered and thawed out, Undercover Brother remained in a coma. Now, it is up to his little brother to finish the job they started.","moviesInCollection":[],"ratingKey":3044,"key":"/library/metadata/3044","collectionTitle":"","collectionId":-1,"tmdbId":639832},{"name":"The Princess Bride","year":1987,"posterUrl":"/library/metadata/2756/thumb/1599308904","imdbId":"","language":"en","overview":"In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.","moviesInCollection":[],"ratingKey":2756,"key":"/library/metadata/2756","collectionTitle":"","collectionId":-1,"tmdbId":2493},{"name":"Justice League Crisis on Two Earths","year":2010,"posterUrl":"/library/metadata/1280/thumb/1599308300","imdbId":"","language":"en","overview":"A heroic version of Lex Luthor from an alternate universe appears to recruit the Justice League to help save his Earth from the Crime Syndicate, an evil version of the League. What ensues is the ultimate battle of good versus evil in a war that threatens both planets and, through a devious plan launched by Batman's counterpart Owlman, puts the balance of all existence in peril.","moviesInCollection":[],"ratingKey":1280,"key":"/library/metadata/1280","collectionTitle":"","collectionId":-1,"tmdbId":30061},{"name":"Miracle on 34th Street","year":1947,"posterUrl":"/library/metadata/1513/thumb/1599308395","imdbId":"","language":"en","overview":"Kris Kringle, seemingly the embodiment of Santa Claus, is asked to portray the jolly old fellow at Macy's following his performance in the Thanksgiving Day parade. His portrayal is so complete that many begin to question if he truly is Santa Claus, while others question his sanity.","moviesInCollection":[],"ratingKey":1513,"key":"/library/metadata/1513","collectionTitle":"","collectionId":-1,"tmdbId":11881},{"name":"The Hangover Part III","year":2013,"posterUrl":"/library/metadata/2529/thumb/1599308810","imdbId":"","language":"en","overview":"This time, there's no wedding. No bachelor party. What could go wrong, right? But when the Wolfpack hits the road, all bets are off.","moviesInCollection":[],"ratingKey":2529,"key":"/library/metadata/2529","collectionTitle":"","collectionId":-1,"tmdbId":109439},{"name":"The Hunger Games Mockingjay - Part 2","year":2015,"posterUrl":"/library/metadata/27845/thumb/1599309077","imdbId":"","language":"en","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 – including Gale, Finnick, and Peeta – 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.","moviesInCollection":[],"ratingKey":27845,"key":"/library/metadata/27845","collectionTitle":"","collectionId":-1,"tmdbId":131634},{"name":"Summer of Sam","year":1999,"posterUrl":"/library/metadata/2195/thumb/1599308688","imdbId":"","language":"en","overview":"Spike Lee's take on the \"Son of Sam\" murders in New York City during the summer of 1977 centering on the residents of an Italian-American South Bronx neighborhood who live in fear and distrust of one another.","moviesInCollection":[],"ratingKey":2195,"key":"/library/metadata/2195","collectionTitle":"","collectionId":-1,"tmdbId":10279},{"name":"Dragon Ball Super Broly","year":2018,"posterUrl":"/library/metadata/754/thumb/1599308102","imdbId":"","language":"en","overview":"Earth is peaceful following the Tournament of Power. Realizing that the universes still hold many more strong people yet to see, Goku spends all his days training to reach even greater heights. Then one day, Goku and Vegeta are faced by a Saiyan called 'Broly' who they've never seen before. The Saiyans were supposed to have been almost completely wiped out in the destruction of Planet Vegeta, so what's this one doing on Earth? This encounter between the three Saiyans who have followed completely different destinies turns into a stupendous battle, with even Frieza (back from Hell) getting caught up in the mix.","moviesInCollection":[],"ratingKey":754,"key":"/library/metadata/754","collectionTitle":"","collectionId":-1,"tmdbId":503314},{"name":"Ride","year":2018,"posterUrl":"/library/metadata/1903/thumb/1599308563","imdbId":"","language":"en","overview":"A night in Los Angeles becomes a psychological war for survival when an Uber driver, James, and his passenger, Jessica, pick up Bruno, who is charismatic but manipulative.","moviesInCollection":[],"ratingKey":1903,"key":"/library/metadata/1903","collectionTitle":"","collectionId":-1,"tmdbId":542905},{"name":"Get the Gringo","year":2012,"posterUrl":"/library/metadata/985/thumb/1599308188","imdbId":"","language":"en","overview":"A career criminal (Gibson) nabbed by Mexican authorities is placed in a tough prison where he learns to survive with the help of a 9-year-old boy.","moviesInCollection":[],"ratingKey":985,"key":"/library/metadata/985","collectionTitle":"","collectionId":-1,"tmdbId":80389},{"name":"American Renegades","year":2018,"posterUrl":"/library/metadata/1876/thumb/1599308552","imdbId":"","language":"en","overview":"In the midst of the Balkan wars, a squad of Navy SEALs attempts to unravel a long-forgotten mystery after discovering an enormous treasure trove hidden at the bottom of a lake in Serbia.","moviesInCollection":[],"ratingKey":1876,"key":"/library/metadata/1876","collectionTitle":"","collectionId":-1,"tmdbId":335788},{"name":"Rogue One A Star Wars Story","year":2016,"posterUrl":"/library/metadata/1929/thumb/1599308576","imdbId":"","language":"en","overview":"A rogue band of resistance fighters unite for a mission to steal the Death Star plans and bring a new hope to the galaxy.","moviesInCollection":[],"ratingKey":1929,"key":"/library/metadata/1929","collectionTitle":"","collectionId":-1,"tmdbId":330459},{"name":"Swordfish","year":2001,"posterUrl":"/library/metadata/2227/thumb/1599308699","imdbId":"","language":"en","overview":"Rogue agent Gabriel Shear is determined to get his mitts on $9 billion stashed in a secret Drug Enforcement Administration account. He wants the cash to fight terrorism, but lacks the computer skills necessary to hack into the government mainframe. Enter Stanley Jobson, a n'er-do-well encryption expert who can log into anything.","moviesInCollection":[],"ratingKey":2227,"key":"/library/metadata/2227","collectionTitle":"","collectionId":-1,"tmdbId":9705},{"name":"Men in Black","year":1997,"posterUrl":"/library/metadata/1495/thumb/1599308386","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1495,"key":"/library/metadata/1495","collectionTitle":"","collectionId":-1,"tmdbId":607},{"name":"Unstoppable","year":2010,"posterUrl":"/library/metadata/3059/thumb/1599309017","imdbId":"","language":"en","overview":"A runaway train, transporting deadly, toxic chemicals, is barreling down on Stanton, Pennsylvania, and proves to be unstoppable until a veteran engineer and young conductor risk their lives to try and stop it with a switch engine.","moviesInCollection":[],"ratingKey":3059,"key":"/library/metadata/3059","collectionTitle":"","collectionId":-1,"tmdbId":44048},{"name":"Fist of the North Star","year":1996,"posterUrl":"/library/metadata/912/thumb/1599308158","imdbId":"","language":"en","overview":"From the immensely popular FIST OF THE NORTH STAR comic book series, comes a new hero. The fate of mankind rests with superhuman warrior Kenshiro who roams the wastelands of the future waging a battle against overwhelming evil. With the spiritual guidance of his dead father, Kenshiro fights to free his stolen love from the brutal tyrant Lord Shin. Through his struggle he must confront his destiny.","moviesInCollection":[],"ratingKey":912,"key":"/library/metadata/912","collectionTitle":"","collectionId":-1,"tmdbId":26300},{"name":"Classic Albums Pink Floyd - The Dark Side of the Moon","year":2003,"posterUrl":"/library/metadata/1741/thumb/1599308495","imdbId":"","language":"en","overview":"Released to coincide with the 30th anniversary of this classic album, learn how Pink Floyd assembled \"Dark Side of the Moon\" with the aid of original engineer Alan Parsons. All four band members--Roger Waters, David Gilmour, Nick Mason, and Richard Wright--are interviewed at length, giving valuable insights into the recording process. The themes of the album are discussed at length, and the band take you back to the original multi track tapes to illustrate how they pieced together the songs. With individual performances of certain tracks from Roger, David, and Richard included, this is an essential purchase for any Pink Floyd fans, and a fascinating artefact for rock historians everywhere.","moviesInCollection":[],"ratingKey":1741,"key":"/library/metadata/1741","collectionTitle":"","collectionId":-1,"tmdbId":24972},{"name":"The Hunger Games Mockingjay - Part 1","year":2014,"posterUrl":"/library/metadata/2565/thumb/1599308823","imdbId":"","language":"en","overview":"Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.","moviesInCollection":[],"ratingKey":2565,"key":"/library/metadata/2565","collectionTitle":"","collectionId":-1,"tmdbId":131631},{"name":"Cocoon The Return","year":1988,"posterUrl":"/library/metadata/39674/thumb/1599309089","imdbId":"","language":"en","overview":"The reinvigorated elderly group that left Earth comes back to visit their relatives. Will they all decide to go back to the planet where no one grows old, or will they be tempted to remain on Earth?","moviesInCollection":[],"ratingKey":39674,"key":"/library/metadata/39674","collectionTitle":"","collectionId":-1,"tmdbId":11285},{"name":"City Slickers II The Legend of Curly's Gold","year":1994,"posterUrl":"/library/metadata/39837/thumb/1599309098","imdbId":"","language":"en","overview":"Mitch Robbins 40th birthday begins quite well until he returns home and finds his brother Glen, the black sheep of the family, in his sofa. Nevertheless he is about to have a wonderful birthday-night with his wife when he discovers a treasure map of Curly by chance. Together with Phil and unfortunately Glen he tries to find the hidden gold of Curly's father in the desert of Arizona.","moviesInCollection":[],"ratingKey":39837,"key":"/library/metadata/39837","collectionTitle":"","collectionId":-1,"tmdbId":11310},{"name":"Beyond a Reasonable Doubt","year":2009,"posterUrl":"/library/metadata/343/thumb/1599307952","imdbId":"","language":"en","overview":"Remake of a 1956 Fritz Lang film in which a novelist's investigation of a dirty district attorney leads to a setup within the courtroom.","moviesInCollection":[],"ratingKey":343,"key":"/library/metadata/343","collectionTitle":"","collectionId":-1,"tmdbId":25137},{"name":"Becoming","year":2020,"posterUrl":"/library/metadata/40721/thumb/1599309104","imdbId":"","language":"en","overview":"A couple on a road trip through America encounter a terrifying dark force older than the country itself. An evil that transforms loved ones into someone terrifying, the entity has left a trail of murdered families going back hundreds of years.","moviesInCollection":[],"ratingKey":40721,"key":"/library/metadata/40721","collectionTitle":"","collectionId":-1,"tmdbId":526052},{"name":"The Green Hornet","year":2011,"posterUrl":"/library/metadata/2519/thumb/1599308806","imdbId":"","language":"en","overview":"Britt Reid (Seth Rogen), the heir to the largest newspaper fortune in Los Angeles, is a spoiled playboy who has been, thus far, happy to lead an aimless life. After his father (Tom Wilkinson) dies, Britt meets Kato (Jay Chou), a resourceful company employee. Realizing that they have the talent and resources to make something of their lives, Britt and Kato join forces as costumed crime-fighters to bring down the city's most-powerful criminal, Chudnofsky (Christoph Waltz).","moviesInCollection":[],"ratingKey":2519,"key":"/library/metadata/2519","collectionTitle":"","collectionId":-1,"tmdbId":40805},{"name":"Mechanic Resurrection","year":2016,"posterUrl":"/library/metadata/1485/thumb/1599308381","imdbId":"","language":"en","overview":"Arthur Bishop thought he had put his murderous past behind him when his most formidable foe kidnaps the love of his life. Now he is forced to travel the globe to complete three impossible assassinations, and do what he does best, make them look like accidents.","moviesInCollection":[],"ratingKey":1485,"key":"/library/metadata/1485","collectionTitle":"","collectionId":-1,"tmdbId":278924},{"name":"21 & Over","year":2013,"posterUrl":"/library/metadata/24/thumb/1599307835","imdbId":"","language":"en","overview":"Brilliant student Jeff Chang has the most important interview of his life tomorrow. But today is still his birthday, what starts off as a casual celebration with friends evolves into a night of debauchery that risks to derail his life plan.","moviesInCollection":[],"ratingKey":24,"key":"/library/metadata/24","collectionTitle":"","collectionId":-1,"tmdbId":107811},{"name":"Max Reload and the Nether Blasters","year":2020,"posterUrl":"/library/metadata/47211/thumb/1599309172","imdbId":"","language":"en","overview":"A small town video game store clerk must go from zero to hero after accidentally unleashing the forces of evil from a cursed Colecovision game.","moviesInCollection":[],"ratingKey":47211,"key":"/library/metadata/47211","collectionTitle":"","collectionId":-1,"tmdbId":680267},{"name":"Wrath of the Titans","year":2012,"posterUrl":"/library/metadata/3169/thumb/1599309055","imdbId":"","language":"en","overview":"A decade after his heroic defeat of the monstrous Kraken, Perseus-the demigod son of Zeus-is attempting to live a quieter life as a village fisherman and the sole parent to his 10-year old son, Helius. Meanwhile, a struggle for supremacy rages between the gods and the Titans. Dangerously weakened by humanity's lack of devotion, the gods are losing control of the imprisoned Titans and their ferocious leader, Kronos, father of the long-ruling brothers Zeus, Hades and Poseidon.","moviesInCollection":[],"ratingKey":3169,"key":"/library/metadata/3169","collectionTitle":"","collectionId":-1,"tmdbId":57165},{"name":"Foxfire","year":1955,"posterUrl":"/library/metadata/934/thumb/1599308165","imdbId":"","language":"en","overview":"A part-Indian mining engineer looks for gold in an Arizona ghost town with his socialite bride.","moviesInCollection":[],"ratingKey":934,"key":"/library/metadata/934","collectionTitle":"","collectionId":-1,"tmdbId":10231},{"name":"Tomorrow Never Dies","year":1997,"posterUrl":"/library/metadata/2954/thumb/1599308982","imdbId":"","language":"en","overview":"A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now 007 must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.","moviesInCollection":[],"ratingKey":2954,"key":"/library/metadata/2954","collectionTitle":"","collectionId":-1,"tmdbId":714},{"name":"Olympus Has Fallen","year":2013,"posterUrl":"/library/metadata/1644/thumb/1599308453","imdbId":"","language":"en","overview":"When the White House (Secret Service Code: \"Olympus\") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning's inside knowledge to help retake the White House, save the President and avert an even bigger disaster.","moviesInCollection":[],"ratingKey":1644,"key":"/library/metadata/1644","collectionTitle":"","collectionId":-1,"tmdbId":117263},{"name":"Colossus The Forbin Project","year":1970,"posterUrl":"/library/metadata/552/thumb/1599308029","imdbId":"","language":"en","overview":"Forbin is the designer of an incredibly sophisticated computer that will run all of America's nuclear defenses. Shortly after being turned on, it detects the existence of Guardian, the Soviet counterpart, previously unknown to US Planners. Both computers insist that they be linked, and after taking safeguards to preserve confidential material, each side agrees to allow it. As soon as the link is established the two become a new Super computer and threaten the world with the immediate launch of nuclear weapons if they are detached. Colossus begins to give its plans for the management of the world under its guidance. Forbin and the other scientists form a technological resistance to Colossus which must operate underground.","moviesInCollection":[],"ratingKey":552,"key":"/library/metadata/552","collectionTitle":"","collectionId":-1,"tmdbId":14801},{"name":"Gardens of Stone","year":1987,"posterUrl":"/library/metadata/969/thumb/1599308182","imdbId":"","language":"en","overview":"A sergeant must deal with his desires to save the lives of young soldiers being sent to Vietnam. Continuously denied the chance to teach the soldiers about his experiences, he settles for trying to help the son of an old army buddy.","moviesInCollection":[],"ratingKey":969,"key":"/library/metadata/969","collectionTitle":"","collectionId":-1,"tmdbId":28368},{"name":"The Front Runner","year":2018,"posterUrl":"/library/metadata/2479/thumb/1599308791","imdbId":"","language":"en","overview":"Gary Hart, former Senator of Colorado, becomes the front-runner for the Democratic presidential nomination in 1987. Hart's intelligence, charisma and idealism makes him popular with young voters, leaving him with a seemingly clear path to the White House. All that comes crashing down when allegations of an extramarital affair surface in the media, forcing the candidate to address a scandal that threatens to derail his campaign and personal life.","moviesInCollection":[],"ratingKey":2479,"key":"/library/metadata/2479","collectionTitle":"","collectionId":-1,"tmdbId":476764},{"name":"Wheels on Meals","year":1984,"posterUrl":"/library/metadata/3130/thumb/1599309041","imdbId":"","language":"en","overview":"Cousins Thomas and David, owners of a mobile restaurant, team up with their friend Moby, a bumbling private detective, to save the beautiful Sylvia, a pickpocket.","moviesInCollection":[],"ratingKey":3130,"key":"/library/metadata/3130","collectionTitle":"","collectionId":-1,"tmdbId":11205},{"name":"127 Hours","year":2010,"posterUrl":"/library/metadata/11/thumb/1599307830","imdbId":"","language":"en","overview":"The true story of mountain climber Aron Ralston's remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah.","moviesInCollection":[],"ratingKey":11,"key":"/library/metadata/11","collectionTitle":"","collectionId":-1,"tmdbId":44115},{"name":"Krampus The Reckoning","year":2015,"posterUrl":"/library/metadata/1321/thumb/1599308314","imdbId":"","language":"en","overview":"Zoe, a strange child has a not so imaginary friend the Krampus who is the dark companion of St. Nicholas.","moviesInCollection":[],"ratingKey":1321,"key":"/library/metadata/1321","collectionTitle":"","collectionId":-1,"tmdbId":366551},{"name":"Showgirls","year":1995,"posterUrl":"/library/metadata/2027/thumb/1599308616","imdbId":"","language":"en","overview":"A young drifter named Nomi arrives in Las Vegas to become a dancer and soon sets about clawing and pushing her way to become a top showgirl.","moviesInCollection":[],"ratingKey":2027,"key":"/library/metadata/2027","collectionTitle":"","collectionId":-1,"tmdbId":10802},{"name":"The Heat","year":2013,"posterUrl":"/library/metadata/2535/thumb/1599308812","imdbId":"","language":"en","overview":"Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence--and hyper-arrogance. Shannon Mullins, one of Boston P.D.'s \"finest,\" is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: Buddies.","moviesInCollection":[],"ratingKey":2535,"key":"/library/metadata/2535","collectionTitle":"","collectionId":-1,"tmdbId":136795},{"name":"The Last Stand","year":2013,"posterUrl":"/library/metadata/2624/thumb/1599308845","imdbId":"","language":"en","overview":"Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts","moviesInCollection":[],"ratingKey":2624,"key":"/library/metadata/2624","collectionTitle":"","collectionId":-1,"tmdbId":76640},{"name":"Little Nicky","year":2000,"posterUrl":"/library/metadata/1400/thumb/1599308342","imdbId":"","language":"en","overview":"After the lord of darkness decides he will not cede his throne to any of his three sons, the two most powerful of them escape to Earth to create a kingdom for themselves. This action closes the portal filtering sinful souls to Hell and causes Satan to wither away. He must send his most weak but beloved son, Little Nicky, to Earth to return his brothers to Hell.","moviesInCollection":[],"ratingKey":1400,"key":"/library/metadata/1400","collectionTitle":"","collectionId":-1,"tmdbId":9678},{"name":"Sniper Reloaded","year":2011,"posterUrl":"/library/metadata/47276/thumb/1599309177","imdbId":"","language":"en","overview":"Brandon Beckett (Collins), the son of the previous Sniper film's star Thomas Beckett (Tom Berenger), takes up the mantle set by his father and goes on a mission of his own.","moviesInCollection":[],"ratingKey":47276,"key":"/library/metadata/47276","collectionTitle":"","collectionId":-1,"tmdbId":58767},{"name":"47 Meters Down Uncaged","year":2019,"posterUrl":"/library/metadata/39/thumb/1599307840","imdbId":"","language":"en","overview":"Four teenage girls go on a diving adventure to explore a submerged Mayan city. Once inside, their rush of excitement turns into a jolt of terror as they discover the sunken ruins are a hunting ground for deadly great white sharks. With their air supply steadily dwindling, the friends must navigate the underwater labyrinth of claustrophobic caves and eerie tunnels in search of a way out of their watery hell.","moviesInCollection":[],"ratingKey":39,"key":"/library/metadata/39","collectionTitle":"","collectionId":-1,"tmdbId":480105},{"name":"The Bridge on the River Kwai","year":1957,"posterUrl":"/library/metadata/2342/thumb/1599308739","imdbId":"","language":"en","overview":"The classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson , the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.","moviesInCollection":[],"ratingKey":2342,"key":"/library/metadata/2342","collectionTitle":"","collectionId":-1,"tmdbId":826},{"name":"Superman Unbound","year":2013,"posterUrl":"/library/metadata/2217/thumb/1599308695","imdbId":"","language":"en","overview":"Based on the Geoff Johns/Gary Frank 2008 release \"Superman: Brainiac,\" Superman: Unbound finds the horrific force responsible for the destruction of Krypton (Brainiac) descending upon Earth. Brainiac has crossed the universe, collecting cities from interesting planets, Kandor included, and now the all-knowing, ever-evolving android has his sights fixed on Metropolis. Superman must summon all of his physical and intellectual resources to protect his city, the love of his life, and his newly-arrived cousin, Supergirl.","moviesInCollection":[],"ratingKey":2217,"key":"/library/metadata/2217","collectionTitle":"","collectionId":-1,"tmdbId":166076},{"name":"Conspirators","year":2013,"posterUrl":"/library/metadata/567/thumb/1599308035","imdbId":"","language":"en","overview":"Chen Tan (Aaron Kwok), a private detective in Thailand, travels to Malaysia following a series of clues found in a photo. There he searches for a man called Chai, who might help reveal the truths behind the murder of his parents 30 years ago. Chen finds Zheng (Nick Cheung), a Malaysian detective born in China. Together they meet Chai's daughter, Zi-Wei (Jiang Yi Yan) who could hold the key to cracking the case.","moviesInCollection":[],"ratingKey":567,"key":"/library/metadata/567","collectionTitle":"","collectionId":-1,"tmdbId":205575},{"name":"The Evil of Frankenstein","year":1964,"posterUrl":"/library/metadata/46498/thumb/1599309160","imdbId":"","language":"en","overview":"Once hounded from his castle by outraged villagers for creating a monstrous living being, Baron Frankenstein returns to Karlstaad. High in the mountains they stumble on the body of the creature, perfectly preserved in the ice. He is brought back to life with the help of the hypnotist Zoltan who now controls the creature. Can Frankenstein break Zoltan's hypnotic spell that incites the monster to commit these horrific murders or will Zoltan induce the creature to destroy its creator?","moviesInCollection":[],"ratingKey":46498,"key":"/library/metadata/46498","collectionTitle":"","collectionId":-1,"tmdbId":3124},{"name":"Street Kings","year":2008,"posterUrl":"/library/metadata/2179/thumb/1599308682","imdbId":"","language":"en","overview":"Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.","moviesInCollection":[],"ratingKey":2179,"key":"/library/metadata/2179","collectionTitle":"","collectionId":-1,"tmdbId":1266},{"name":"The Culpepper Cattle Co.","year":1972,"posterUrl":"/library/metadata/2381/thumb/1599308752","imdbId":"","language":"en","overview":"Teenager Ben Mockridge feels life in a Wild West farm town has nothing better to offer then horse-cart racing with other hicks, so he naively begs cattle company owner Frank Culpepper to engage him as youngest cowboy for a long cattle trail to a fort, his mother barely notices. Ben doesn't even seem to get it when he's told to report as 'little Mary' to the old cook, whose words cowboy is something you do only if you have nothing better gradually become clear. Instead of an exciting heroic macho life, it's endless hard work, dumb chores and embarrassment, even getting literally caught with his pants down, robbed of his horse, witnessing unpunished crimes...","moviesInCollection":[],"ratingKey":2381,"key":"/library/metadata/2381","collectionTitle":"","collectionId":-1,"tmdbId":42490},{"name":"Tumbledown","year":2016,"posterUrl":"/library/metadata/3018/thumb/1599309003","imdbId":"","language":"en","overview":"A young woman struggles to move on with her life after the death of her husband, an acclaimed folk singer, when a brash New York writer forces her to confront her loss and the ambiguous circumstances of his death.","moviesInCollection":[],"ratingKey":3018,"key":"/library/metadata/3018","collectionTitle":"","collectionId":-1,"tmdbId":207936},{"name":"The SpongeBob SquarePants Movie","year":2004,"posterUrl":"/library/metadata/2832/thumb/1599308938","imdbId":"","language":"en","overview":"There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.","moviesInCollection":[],"ratingKey":2832,"key":"/library/metadata/2832","collectionTitle":"","collectionId":-1,"tmdbId":11836},{"name":"The Shining","year":1980,"posterUrl":"/library/metadata/2814/thumb/1599308930","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2814,"key":"/library/metadata/2814","collectionTitle":"","collectionId":-1,"tmdbId":694},{"name":"Justice League Throne of Atlantis","year":2015,"posterUrl":"/library/metadata/1286/thumb/1599308301","imdbId":"","language":"en","overview":"After the events of Justice League: War, Ocean Master and Black Manta have declared a war against the surface in retaliation of the aftermath of Apokoliptian-tyrant Darkseid's planetary invasion. Queen Atlanna seeks out her other son, Ocean Master’s half-brother Arthur Curry, a half-human with aquatic powers with no knowledge of his Atlantean heritage, to restore balance. Living with powers he doesn’t understand and seeing the danger around him, Curry takes steps to embrace his destiny, joining the Justice League, and with his new teammates he battles to save Earth from total destruction.","moviesInCollection":[],"ratingKey":1286,"key":"/library/metadata/1286","collectionTitle":"","collectionId":-1,"tmdbId":297556},{"name":"The Fast and the Furious Tokyo Drift","year":2006,"posterUrl":"/library/metadata/2455/thumb/1599308781","imdbId":"","language":"en","overview":"In order to avoid a jail sentence, Sean Boswell heads to Tokyo to live with his military father. In a low-rent section of the city, Shaun gets caught up in the underground world of drift racing","moviesInCollection":[],"ratingKey":2455,"key":"/library/metadata/2455","collectionTitle":"","collectionId":-1,"tmdbId":9615},{"name":"Michael","year":1996,"posterUrl":"/library/metadata/1502/thumb/1599308390","imdbId":"","language":"en","overview":"Tabloid reporters are sent by their editor to investigate after the paper recieves a letter from a woman claiming an angel is living with her.","moviesInCollection":[],"ratingKey":1502,"key":"/library/metadata/1502","collectionTitle":"","collectionId":-1,"tmdbId":2928},{"name":"Bambi II","year":2006,"posterUrl":"/library/metadata/39772/thumb/1599309095","imdbId":"","language":"en","overview":"Return to the forest and join Bambi as he reunites with his father, The Great Prince, who must now raise the young fawn on his own. But in the adventure of a lifetime, the proud parent discovers there is much he can learn from his spirited young son.","moviesInCollection":[],"ratingKey":39772,"key":"/library/metadata/39772","collectionTitle":"","collectionId":-1,"tmdbId":13205},{"name":"Labor Day","year":2013,"posterUrl":"/library/metadata/1332/thumb/1599308318","imdbId":"","language":"en","overview":"Depressed single mom Adele and her son Henry offer a wounded, fearsome man a ride. As police search town for the escaped convict, the mother and son gradually learn his true story as their options become increasingly limited.","moviesInCollection":[],"ratingKey":1332,"key":"/library/metadata/1332","collectionTitle":"","collectionId":-1,"tmdbId":130150},{"name":"Payback","year":1999,"posterUrl":"/library/metadata/1717/thumb/1599308485","imdbId":"","language":"en","overview":"With friends like these, who needs enemies? That's the question bad guy Porter is left asking after his wife and partner steal his heist money and leave him for dead -- or so they think. Five months and an endless reservoir of bitterness later, Porter's partners and the crooked cops on his tail learn how bad payback can be.","moviesInCollection":[],"ratingKey":1717,"key":"/library/metadata/1717","collectionTitle":"","collectionId":-1,"tmdbId":2112},{"name":"Queen of the Damned","year":2002,"posterUrl":"/library/metadata/1832/thumb/1599308531","imdbId":"","language":"en","overview":"Lestat de Lioncourt is awakened from his slumber. Bored with his existence, he has now become this generation's new Rock God. While in the course of time, another has arisen, Akasha, the Queen of the Vampires and the Dammed. He wants immortal fame, his fellow vampires want him eternally dead for his betrayal, and the Queen wants him for her King. Who will be the first to reach him? Who shall win?","moviesInCollection":[],"ratingKey":1832,"key":"/library/metadata/1832","collectionTitle":"","collectionId":-1,"tmdbId":11979},{"name":"Saving Mr. Banks","year":2013,"posterUrl":"/library/metadata/1963/thumb/1599308591","imdbId":"","language":"en","overview":"Author P.L. Travers travels from London to Hollywood as Walt Disney Pictures adapts her novel Mary Poppins for the big screen.","moviesInCollection":[],"ratingKey":1963,"key":"/library/metadata/1963","collectionTitle":"","collectionId":-1,"tmdbId":140823},{"name":"Deep Impact","year":1998,"posterUrl":"/library/metadata/47619/thumb/1599309188","imdbId":"","language":"en","overview":"A seven-mile-wide space rock is hurtling toward Earth, threatening to obliterate the planet. Now, it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile, an enterprising reporter uses her smarts to uncover the scoop of the century.","moviesInCollection":[],"ratingKey":47619,"key":"/library/metadata/47619","collectionTitle":"","collectionId":-1,"tmdbId":8656},{"name":"Dirty Dancing","year":1987,"posterUrl":"/library/metadata/710/thumb/1599308085","imdbId":"","language":"en","overview":"Expecting the usual tedium that accompanies a summer in the Catskills with her family, 17-year-old Frances 'Baby' Houseman is surprised to find herself stepping into the shoes of a professional hoofer—and unexpectedly falling in love.","moviesInCollection":[],"ratingKey":710,"key":"/library/metadata/710","collectionTitle":"","collectionId":-1,"tmdbId":88},{"name":"Battle Los Angeles","year":2011,"posterUrl":"/library/metadata/310/thumb/1599307940","imdbId":"","language":"en","overview":"The Earth is attacked by unknown forces. As people everywhere watch the world's great cities fall, Los Angeles becomes the last stand for mankind in a battle no one expected. It's up to a Marine staff sergeant and his new platoon to draw a line in the sand as they take on an enemy unlike any they've ever encountered before.","moviesInCollection":[],"ratingKey":310,"key":"/library/metadata/310","collectionTitle":"","collectionId":-1,"tmdbId":44943},{"name":"Suburbicon","year":2017,"posterUrl":"/library/metadata/2189/thumb/1599308686","imdbId":"","language":"en","overview":"In the quiet family town of Suburbicon during the 1950s, the best and worst of humanity is hilariously reflected through the deeds of seemingly ordinary people. When a home invasion turns deadly, a picture-perfect family turns to blackmail, revenge and murder.","moviesInCollection":[],"ratingKey":2189,"key":"/library/metadata/2189","collectionTitle":"","collectionId":-1,"tmdbId":395458},{"name":"Life of Brian","year":1979,"posterUrl":"/library/metadata/1385/thumb/1599308336","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1385,"key":"/library/metadata/1385","collectionTitle":"","collectionId":-1,"tmdbId":583},{"name":"Wild Wild West","year":1999,"posterUrl":"/library/metadata/3149/thumb/1599309048","imdbId":"","language":"en","overview":"Legless Southern inventor Dr. Arliss Loveless plans to rekindle the Civil War by assassinating President U.S. Grant. Only two men can stop him: gunfighter James West and master-of-disguise and inventor Artemus Gordon. The two must team up to thwart Loveless' plans.","moviesInCollection":[],"ratingKey":3149,"key":"/library/metadata/3149","collectionTitle":"","collectionId":-1,"tmdbId":8487},{"name":"John and Mary","year":1969,"posterUrl":"/library/metadata/1247/thumb/1599308287","imdbId":"","language":"en","overview":"John and Mary meet in a singles bar, sleep together, and spend the next day getting to know each other.","moviesInCollection":[],"ratingKey":1247,"key":"/library/metadata/1247","collectionTitle":"","collectionId":-1,"tmdbId":61742},{"name":"Minority Report","year":2002,"posterUrl":"/library/metadata/1512/thumb/1599308394","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1512,"key":"/library/metadata/1512","collectionTitle":"","collectionId":-1,"tmdbId":180},{"name":"Dragonball Evolution","year":2009,"posterUrl":"/library/metadata/774/thumb/1599308107","imdbId":"","language":"en","overview":"The young warrior Son Goku sets out on a quest, racing against time and the vengeful King Piccolo, to collect a set of seven magical orbs that will grant their wielder unlimited power.","moviesInCollection":[],"ratingKey":774,"key":"/library/metadata/774","collectionTitle":"","collectionId":-1,"tmdbId":14164},{"name":"TMNT","year":2007,"posterUrl":"/library/metadata/2944/thumb/1599308978","imdbId":"","language":"en","overview":"After the defeat of their old arch nemesis, The Shredder, the Turtles have grown apart as a family. Struggling to keep them together, their rat sensei, Splinter, becomes worried when strange things begin to brew in New York City.","moviesInCollection":[],"ratingKey":2944,"key":"/library/metadata/2944","collectionTitle":"","collectionId":-1,"tmdbId":1273},{"name":"Incredibles 2","year":2018,"posterUrl":"/library/metadata/39376/thumb/1599309083","imdbId":"","language":"en","overview":"Elastigirl springs into action to save the day, while Mr. Incredible faces his greatest challenge yet – taking care of the problems of his three children.","moviesInCollection":[],"ratingKey":39376,"key":"/library/metadata/39376","collectionTitle":"","collectionId":-1,"tmdbId":260513},{"name":"Waterworld","year":1995,"posterUrl":"/library/metadata/3113/thumb/1599309035","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3113,"key":"/library/metadata/3113","collectionTitle":"","collectionId":-1,"tmdbId":9804},{"name":"Wonderstruck","year":2017,"posterUrl":"/library/metadata/3166/thumb/1599309053","imdbId":"","language":"en","overview":"The story of a young boy in the Midwest is told simultaneously with a tale about a young girl in New York from fifty years ago as they both seek the same mysterious connection.","moviesInCollection":[],"ratingKey":3166,"key":"/library/metadata/3166","collectionTitle":"","collectionId":-1,"tmdbId":383709},{"name":"T2 Trainspotting","year":2017,"posterUrl":"/library/metadata/2231/thumb/1599308700","imdbId":"","language":"en","overview":"After 20 years abroad, Mark Renton returns to Scotland and reunites with his old friends Sick Boy, Spud and Begbie.","moviesInCollection":[],"ratingKey":2231,"key":"/library/metadata/2231","collectionTitle":"","collectionId":-1,"tmdbId":180863},{"name":"The War of the Roses","year":1989,"posterUrl":"/library/metadata/2888/thumb/1599308959","imdbId":"","language":"en","overview":"The Roses, Barbara and Oliver, live happily as a married couple. Then she starts to wonder what life would be like without Oliver, and likes what she sees. Both want to stay in the house, and so they begin a campaign to force each other to leave. In the middle of the fighting is D'Amato, the divorce lawyer. He gets to see how far both will go to get rid of the other, and boy do they go far.","moviesInCollection":[],"ratingKey":2888,"key":"/library/metadata/2888","collectionTitle":"","collectionId":-1,"tmdbId":249},{"name":"Drive Angry","year":2011,"posterUrl":"/library/metadata/782/thumb/1599308110","imdbId":"","language":"en","overview":"Milton is a hardened felon who has broken out of Hell, intent on finding the vicious cult who brutally murdered his daughter and kidnapped her baby. He joins forces with a sexy, tough-as-nails waitress, who's also seeking redemption of her own. Caught in a deadly race against time, Milton has three days to avoid capture, avenge his daughter's death, and save her baby before she's mercilessly sacrificed by the cult.","moviesInCollection":[],"ratingKey":782,"key":"/library/metadata/782","collectionTitle":"","collectionId":-1,"tmdbId":47327},{"name":"Talk Radio","year":1988,"posterUrl":"/library/metadata/2239/thumb/1599308703","imdbId":"","language":"en","overview":"A rude, contemptuous talk show host becomes overwhelmed by the hatred that surrounds his program just before it goes national.","moviesInCollection":[],"ratingKey":2239,"key":"/library/metadata/2239","collectionTitle":"","collectionId":-1,"tmdbId":10132},{"name":"13 Hours The Secret Soldiers of Benghazi","year":2016,"posterUrl":"/library/metadata/14/thumb/1599307831","imdbId":"","language":"en","overview":"An American Ambassador is killed during an attack at a U.S. compound in Libya as a security team struggles to make sense out of the chaos.","moviesInCollection":[],"ratingKey":14,"key":"/library/metadata/14","collectionTitle":"","collectionId":-1,"tmdbId":300671},{"name":"The Apparition","year":2012,"posterUrl":"/library/metadata/2295/thumb/1599308723","imdbId":"","language":"en","overview":"Plagued by frightening occurrences in their home, Kelly and Ben learn that a university's parapsychology experiment produced an entity that is now haunting them. The malevolent spirit feeds on fear and torments the couple no matter where they run. Desperate, Kelly and Ben turn to a paranormal researcher, but even with his aid, it may already be too late to save themselves from the terrifying presence.","moviesInCollection":[],"ratingKey":2295,"key":"/library/metadata/2295","collectionTitle":"","collectionId":-1,"tmdbId":79694},{"name":"A Haunted House","year":2013,"posterUrl":"/library/metadata/66/thumb/1599307849","imdbId":"","language":"en","overview":"A spoof of all the \"found-footage/documentary style\" films released in recent years.","moviesInCollection":[],"ratingKey":66,"key":"/library/metadata/66","collectionTitle":"","collectionId":-1,"tmdbId":139038},{"name":"Interview with the Vampire","year":1994,"posterUrl":"/library/metadata/1203/thumb/1599308270","imdbId":"","language":"en","overview":"A vampire relates his epic life story of love, betrayal, loneliness, and dark hunger to an over-curious reporter.","moviesInCollection":[],"ratingKey":1203,"key":"/library/metadata/1203","collectionTitle":"","collectionId":-1,"tmdbId":628},{"name":"The Ring Two","year":2005,"posterUrl":"/library/metadata/2782/thumb/1599308915","imdbId":"","language":"en","overview":"Rachel Keller must prevent evil Samara from taking possession of her son's soul.","moviesInCollection":[],"ratingKey":2782,"key":"/library/metadata/2782","collectionTitle":"","collectionId":-1,"tmdbId":10320},{"name":"Ringu","year":1998,"posterUrl":"/library/metadata/1908/thumb/1599308566","imdbId":"","language":"en","overview":"A mysterious video has been linked to a number of deaths, and when an inquisitive journalist finds the tape and views it herself, she sets in motion a chain of events that puts her own life in danger.","moviesInCollection":[],"ratingKey":1908,"key":"/library/metadata/1908","collectionTitle":"","collectionId":-1,"tmdbId":2671},{"name":"Goldfinger","year":1964,"posterUrl":"/library/metadata/1010/thumb/1599308197","imdbId":"","language":"en","overview":"Special agent 007 comes face to face with one of the most notorious villains of all time, and now he must outwit and outgun the powerful tycoon to prevent him from cashing in on a devious scheme to raid Fort Knox -- and obliterate the world's economy.","moviesInCollection":[],"ratingKey":1010,"key":"/library/metadata/1010","collectionTitle":"","collectionId":-1,"tmdbId":658},{"name":"Pawn Sacrifice","year":2015,"posterUrl":"/library/metadata/1715/thumb/1599308484","imdbId":"","language":"en","overview":"American chess champion Bobby Fischer prepares for a legendary match-up against Russian Boris Spassky.","moviesInCollection":[],"ratingKey":1715,"key":"/library/metadata/1715","collectionTitle":"","collectionId":-1,"tmdbId":245698},{"name":"The Amazing Spider-Man 2","year":2014,"posterUrl":"/library/metadata/2288/thumb/1599308720","imdbId":"","language":"en","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’s 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.","moviesInCollection":[],"ratingKey":2288,"key":"/library/metadata/2288","collectionTitle":"","collectionId":-1,"tmdbId":102382},{"name":"You Should Have Left","year":2020,"posterUrl":"/library/metadata/48441/thumb/1601783644","imdbId":"","language":"en","overview":"In an effort to repair their relationship, a couple books a vacation in the countryside for themselves and their daughter. What starts as a perfect retreat begins to fall apart as one loses their grip on reality, and a sinister force tries to tear them apart.","moviesInCollection":[],"ratingKey":48441,"key":"/library/metadata/48441","collectionTitle":"","collectionId":-1,"tmdbId":514593},{"name":"Sisters","year":2015,"posterUrl":"/library/metadata/2050/thumb/1599308627","imdbId":"","language":"en","overview":"Two disconnected sisters are summoned to clean out their childhood bedrooms before their parents sell their family home.","moviesInCollection":[],"ratingKey":2050,"key":"/library/metadata/2050","collectionTitle":"","collectionId":-1,"tmdbId":266294},{"name":"Drive","year":2011,"posterUrl":"/library/metadata/781/thumb/1599308110","imdbId":"","language":"en","overview":"Driver is a skilled Hollywood stuntman who moonlights as a getaway driver for criminals. Though he projects an icy exterior, lately he's been warming up to a pretty neighbor named Irene and her young son, Benicio. When Irene's husband gets out of jail, he enlists Driver's help in a million-dollar heist. The job goes horribly wrong, and Driver must risk his life to protect Irene and Benicio from the vengeful masterminds behind the robbery.","moviesInCollection":[],"ratingKey":781,"key":"/library/metadata/781","collectionTitle":"","collectionId":-1,"tmdbId":64690},{"name":"The Adventures of Buckaroo Banzai Across the 8th Dimension","year":1984,"posterUrl":"/library/metadata/2283/thumb/1599308719","imdbId":"","language":"en","overview":"Adventurer/surgeon/rock musician Buckaroo Banzai and his band of men, the Hong Kong Cavaliers, take on evil alien invaders from the 8th dimension.","moviesInCollection":[],"ratingKey":2283,"key":"/library/metadata/2283","collectionTitle":"","collectionId":-1,"tmdbId":11379},{"name":"Clear and Present Danger","year":1994,"posterUrl":"/library/metadata/39672/thumb/1599309089","imdbId":"","language":"en","overview":"CIA Analyst Jack Ryan is drawn into an illegal war fought by the US government against a Colombian drug cartel.","moviesInCollection":[],"ratingKey":39672,"key":"/library/metadata/39672","collectionTitle":"","collectionId":-1,"tmdbId":9331},{"name":"Brazil","year":1985,"posterUrl":"/library/metadata/419/thumb/1599307979","imdbId":"","language":"en","overview":"Low-level bureaucrat Sam Lowry escapes the monotony of his day-to-day life through a recurring daydream of himself as a virtuous hero saving a beautiful damsel. Investigating a case that led to the wrongful arrest and eventual death of an innocent man instead of wanted terrorist Harry Tuttle, he meets the woman from his daydream, and in trying to help her gets caught in a web of mistaken identities, mindless bureaucracy and lies.","moviesInCollection":[],"ratingKey":419,"key":"/library/metadata/419","collectionTitle":"","collectionId":-1,"tmdbId":68},{"name":"Lazer Team","year":2015,"posterUrl":"/library/metadata/1346/thumb/1599308324","imdbId":"","language":"en","overview":"In the late 1970's, the SETI project received a one time signal from outer space. It looked exactly as theorists thought a communication from an alien civilization would -- unfortunately it has never been decoded. Or so we were told. Unbeknownst to the general public the signal was translated and told us two things: 1) We are not alone. 2) The galaxy is a dangerous place.","moviesInCollection":[],"ratingKey":1346,"key":"/library/metadata/1346","collectionTitle":"","collectionId":-1,"tmdbId":279096},{"name":"Mercury Rising","year":1998,"posterUrl":"/library/metadata/1500/thumb/1599308389","imdbId":"","language":"en","overview":"Renegade FBI agent Art Jeffries protects a nine-year-old autistic boy who has cracked the government's new \"unbreakable\" code.","moviesInCollection":[],"ratingKey":1500,"key":"/library/metadata/1500","collectionTitle":"","collectionId":-1,"tmdbId":8838},{"name":"Muppet Treasure Island","year":1996,"posterUrl":"/library/metadata/1567/thumb/1599308418","imdbId":"","language":"en","overview":"After telling the story of Flint's last journey to young Jim Hawkins, Billy Bones has a heart attack and dies just as Jim and his friends are attacked by pirates. The gang escapes into the town where they hire out a boat and crew to find the hidden treasure, which was revealed by Bones before he died. On their voyage across the seas, they soon find out that not everyone on board can be trusted.","moviesInCollection":[],"ratingKey":1567,"key":"/library/metadata/1567","collectionTitle":"","collectionId":-1,"tmdbId":10874},{"name":"Itsy Bitsy","year":2019,"posterUrl":"/library/metadata/1217/thumb/1599308276","imdbId":"","language":"en","overview":"A family moves into a secluded mansion where they soon find themselves being targeted by an entity taking the form of a giant spider.","moviesInCollection":[],"ratingKey":1217,"key":"/library/metadata/1217","collectionTitle":"","collectionId":-1,"tmdbId":513208},{"name":"Sniper 2","year":2002,"posterUrl":"/library/metadata/47272/thumb/1599309176","imdbId":"","language":"en","overview":"Sergeant Thomas Beckett is back - and this time he has teamed up with death row inmate B.J. Cole on a suicide mission to the Balkans. Their target: a rogue general accused of running ethnic cleansing missions. But when Becket discovers that the government is using him as a pawn in a bigger mission, the body count grows and bullets really start to fly.","moviesInCollection":[],"ratingKey":47272,"key":"/library/metadata/47272","collectionTitle":"","collectionId":-1,"tmdbId":14245},{"name":"Spotlight","year":2015,"posterUrl":"/library/metadata/2120/thumb/1599308658","imdbId":"","language":"en","overview":"The true story of how the Boston Globe uncovered the massive scandal of child molestation and cover-up within the local Catholic Archdiocese, shaking the entire Catholic Church to its core.","moviesInCollection":[],"ratingKey":2120,"key":"/library/metadata/2120","collectionTitle":"","collectionId":-1,"tmdbId":314365},{"name":"Starship Troopers Traitor of Mars","year":2017,"posterUrl":"/library/metadata/2162/thumb/1599308676","imdbId":"","language":"en","overview":"Federation trooper Johnny Rico is ordered to work with a group of new recruits on a satellite station on Mars, where giant bugs have decided to target their next attack.","moviesInCollection":[],"ratingKey":2162,"key":"/library/metadata/2162","collectionTitle":"","collectionId":-1,"tmdbId":460790},{"name":"Hotel Transylvania 3 Summer Vacation","year":2018,"posterUrl":"/library/metadata/1134/thumb/1599308245","imdbId":"","language":"en","overview":"Dracula, Mavis, Johnny and the rest of the Drac Pack take a vacation on a luxury Monster Cruise Ship, where Dracula falls in love with the ship’s captain, Ericka, who’s secretly a descendant of Abraham Van Helsing, the notorious monster slayer.","moviesInCollection":[],"ratingKey":1134,"key":"/library/metadata/1134","collectionTitle":"","collectionId":-1,"tmdbId":400155},{"name":"Kill Bill Vol. 1","year":2003,"posterUrl":"/library/metadata/1299/thumb/1599308306","imdbId":"","language":"en","overview":"An assassin is shot by her ruthless employer, Bill, and other members of their assassination circle – but she lives to plot her vengeance.","moviesInCollection":[],"ratingKey":1299,"key":"/library/metadata/1299","collectionTitle":"","collectionId":-1,"tmdbId":24},{"name":"Aftermath","year":2017,"posterUrl":"/library/metadata/130/thumb/1599307874","imdbId":"","language":"en","overview":"A fatal plane crash changes the lives of Roman and Jake forever. Roman loses his wife and daughter in the accident, while Jake loses his mind—as he happens to be the air traffic controller who failed to avert the nightmare. Rage and revenge engulfs Roman and Jake finds himself swamped with guilt and regret.","moviesInCollection":[],"ratingKey":130,"key":"/library/metadata/130","collectionTitle":"","collectionId":-1,"tmdbId":390051},{"name":"Trailer Park Boys Don't Legalize It","year":2014,"posterUrl":"/library/metadata/2978/thumb/1599308989","imdbId":"","language":"en","overview":"Trailer Park Boys: Don't Legalize It is the third film in the Trailer Park Boys franchise, and a sequel to Trailer Park Boys: Countdown to Liquor Day (2009). In the film, Ricky (Robb Wells), Julian (John Paul Tremblay) and Bubbles (Mike Smith) attempt a series of get-rich-quick schemes after being released from prison, but are again pursued by former Sunnyvale Trailer Park supervisor Jim Lahey (John Dunsworth).","moviesInCollection":[],"ratingKey":2978,"key":"/library/metadata/2978","collectionTitle":"","collectionId":-1,"tmdbId":257451},{"name":"The Bank Job","year":2008,"posterUrl":"/library/metadata/41073/thumb/1599309121","imdbId":"","language":"en","overview":"Terry is a small-time car dealer trying to leave his shady past behind and start a family. Martine is a beautiful model from Terry's old neighbourhood who knows that Terry is no angel. When Martine proposes a foolproof plan to rob a bank, Terry recognises the danger but realises this may be the opportunity of a lifetime. As the resourceful band of thieves burrows its way into a safe-deposit vault at a Lloyds Bank, they quickly realise that, besides millions in riches, the boxes also contain secrets that implicate everyone from London's most notorious underworld gangsters to powerful government figures, and even the Royal Family. Although the heist makes headlines throughout Britain for several days, a government gag order eventually brings all reporting of the case to an immediate halt.","moviesInCollection":[],"ratingKey":41073,"key":"/library/metadata/41073","collectionTitle":"","collectionId":-1,"tmdbId":8848},{"name":"Braven","year":2018,"posterUrl":"/library/metadata/417/thumb/1599307979","imdbId":"","language":"en","overview":"A logger defends his family from a group of dangerous drug runners.","moviesInCollection":[],"ratingKey":417,"key":"/library/metadata/417","collectionTitle":"","collectionId":-1,"tmdbId":459910},{"name":"The Nun","year":2018,"posterUrl":"/library/metadata/2721/thumb/1599308888","imdbId":"","language":"en","overview":"When a young nun at a cloistered abbey in Romania takes her own life, a priest with a haunted past and a novitiate on the threshold of her final vows are sent by the Vatican to investigate. Together they uncover the order’s unholy secret. Risking not only their lives but their faith and their very souls, they confront a malevolent force in the form of the same demonic nun that first terrorized audiences in “The Conjuring 2” as the abbey becomes a horrific battleground between the living and the damned.","moviesInCollection":[],"ratingKey":2721,"key":"/library/metadata/2721","collectionTitle":"","collectionId":-1,"tmdbId":439079},{"name":"Ghost in the Shell 2.0","year":2008,"posterUrl":"/library/metadata/989/thumb/1599308189","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":989,"key":"/library/metadata/989","collectionTitle":"","collectionId":-1,"tmdbId":14092},{"name":"Stand Up Guys","year":2012,"posterUrl":"/library/metadata/2129/thumb/1599308662","imdbId":"","language":"en","overview":"After serving 28 years in prison for accidentally killing the son of a crime boss, newly paroled gangster Val reunites with his former partners in crime, Doc and Hirsch, for a night on the town. As the three men revisit old haunts, reflect on their glory days and try to make up for lost time, one wrestles with a terrible quandary: Doc has orders to kill Val, and time is running out for him to figure out a way out of his dilemma.","moviesInCollection":[],"ratingKey":2129,"key":"/library/metadata/2129","collectionTitle":"","collectionId":-1,"tmdbId":121824},{"name":"The Bucket List","year":2007,"posterUrl":"/library/metadata/2343/thumb/1599308739","imdbId":"","language":"en","overview":"Corporate billionaire Edward Cole and working class mechanic Carter Chambers are worlds apart. At a crossroads in their lives, they share a hospital room and discover they have two things in common: a desire to spend the time they have left doing everything they ever wanted to do and an unrealized need to come to terms with who they are. Together they embark on the road trip of a lifetime, becoming friends along the way and learning to live life to the fullest, with insight and humor.","moviesInCollection":[],"ratingKey":2343,"key":"/library/metadata/2343","collectionTitle":"","collectionId":-1,"tmdbId":7350},{"name":"Felicity","year":1978,"posterUrl":"/library/metadata/880/thumb/1599308146","imdbId":"","language":"en","overview":"Young Felicity lives in a monastic school. The only way to live out her sexual fantasies is together with her girlfriend Jenny. But then she receives an invitation to her sister in Hong-Kong and can't wait to finally do the real thing.","moviesInCollection":[],"ratingKey":880,"key":"/library/metadata/880","collectionTitle":"","collectionId":-1,"tmdbId":45048},{"name":"Logan's Run","year":1976,"posterUrl":"/library/metadata/1408/thumb/1599308345","imdbId":"","language":"en","overview":"In the 23rd century, inhabitants of a domed city freely experience all of life's pleasures- but no one is allowed to live past 30. Citizens can try for a chance at being 'renewed' in a civic ceremony on their 30th birthday. Escape is the only other option.","moviesInCollection":[],"ratingKey":1408,"key":"/library/metadata/1408","collectionTitle":"","collectionId":-1,"tmdbId":10803},{"name":"Flushed Away","year":2006,"posterUrl":"/library/metadata/922/thumb/1599308161","imdbId":"","language":"en","overview":"London high-society mouse, Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs, Spike and Whitey.","moviesInCollection":[],"ratingKey":922,"key":"/library/metadata/922","collectionTitle":"","collectionId":-1,"tmdbId":11619},{"name":"The Art of the Steal","year":2013,"posterUrl":"/library/metadata/2300/thumb/1599308724","imdbId":"","language":"en","overview":"Crunch Calhoun, a third-rate motorcycle daredevil and part-time art thief, teams up with his snaky brother to steal one of the most valuable books in the world. But it's not just about the book for Crunch — he's keen to rewrite some chapters of his own past as well.","moviesInCollection":[],"ratingKey":2300,"key":"/library/metadata/2300","collectionTitle":"","collectionId":-1,"tmdbId":209247},{"name":"The Godfather Part II","year":1974,"posterUrl":"/library/metadata/2497/thumb/1599308798","imdbId":"","language":"en","overview":"In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.","moviesInCollection":[],"ratingKey":2497,"key":"/library/metadata/2497","collectionTitle":"","collectionId":-1,"tmdbId":240},{"name":"The Hunchback of Notre Dame II","year":2002,"posterUrl":"/library/metadata/2561/thumb/1599308821","imdbId":"","language":"en","overview":"Now that Frollo is gone, Quasimodo rings the bell with the help of his new friend and Esmeralda's and Phoebus' little son, Zephyr. But when Quasi stops by a traveling circus owned by evil magician Sarousch, he falls for Madellaine, Sarouch's assistant.","moviesInCollection":[],"ratingKey":2561,"key":"/library/metadata/2561","collectionTitle":"","collectionId":-1,"tmdbId":12448},{"name":"Kill Bill Vol. 2","year":2004,"posterUrl":"/library/metadata/27848/thumb/1599309078","imdbId":"","language":"en","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 … but kill Bill.","moviesInCollection":[],"ratingKey":27848,"key":"/library/metadata/27848","collectionTitle":"","collectionId":-1,"tmdbId":393},{"name":"The Kitchen","year":2019,"posterUrl":"/library/metadata/2611/thumb/1599308840","imdbId":"","language":"en","overview":"The mobster husbands of three 1978 Hell's Kitchen housewives are sent to prison by the FBI. Left with little but a sharp ax to grind, the ladies take the Irish mafia's matters into their own hands—proving unexpectedly adept at everything from running the rackets to taking out the competition…literally.","moviesInCollection":[],"ratingKey":2611,"key":"/library/metadata/2611","collectionTitle":"","collectionId":-1,"tmdbId":487680},{"name":"The Cook, the Thief, His Wife & Her Lover","year":1989,"posterUrl":"/library/metadata/2375/thumb/1599308750","imdbId":"","language":"en","overview":"The wife of an abusive criminal finds solace in the arms of a kind regular guest in her husband's restaurant.","moviesInCollection":[],"ratingKey":2375,"key":"/library/metadata/2375","collectionTitle":"","collectionId":-1,"tmdbId":7452},{"name":"Julius Caesar","year":2002,"posterUrl":"/library/metadata/1266/thumb/1599308295","imdbId":"","language":"en","overview":"Twenty year-old Julius Caesar flees Rome for his life during the reign of Sulla but through skill and ambition rises four decades later to become Rome's supreme dictator.","moviesInCollection":[],"ratingKey":1266,"key":"/library/metadata/1266","collectionTitle":"","collectionId":-1,"tmdbId":34469},{"name":"Son of Batman","year":2014,"posterUrl":"/library/metadata/2090/thumb/1599308645","imdbId":"","language":"en","overview":"Batman learns that he has a violent, unruly pre-teen son with Talia al Ghul named Damian Wayne who is secretly being raised by Ra's al Ghul and the League of Assassins. When Ra's al Ghul apparently dies after a battle with Deathstroke, Batman must work to stop his long-lost son from taking revenge and guiding him to a righteous path, in addition to the chance for the pair to truly acknowledging each other as family.","moviesInCollection":[],"ratingKey":2090,"key":"/library/metadata/2090","collectionTitle":"","collectionId":-1,"tmdbId":251519},{"name":"Ice Age Dawn of the Dinosaurs","year":2009,"posterUrl":"/library/metadata/1171/thumb/1599308259","imdbId":"","language":"en","overview":"Times are changing for Manny the moody mammoth, Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors – the mighty dinosaurs.","moviesInCollection":[],"ratingKey":1171,"key":"/library/metadata/1171","collectionTitle":"","collectionId":-1,"tmdbId":8355},{"name":"The Water Diviner","year":2015,"posterUrl":"/library/metadata/2891/thumb/1599308960","imdbId":"","language":"en","overview":"In 1919, Australian farmer Joshua Connor travels to Turkey to discover the fate of his three sons, reported missing in action. Holding on to hope, Joshua must travel across the war-torn landscape to find the truth and his own peace.","moviesInCollection":[],"ratingKey":2891,"key":"/library/metadata/2891","collectionTitle":"","collectionId":-1,"tmdbId":256917},{"name":"Invincible","year":2006,"posterUrl":"/library/metadata/1206/thumb/1599308272","imdbId":"","language":"en","overview":"Inspired by the true story of Vince Papale, a man with nothing to lose who ignored the staggering odds and made his dream come true. When the coach of Papale's beloved hometown football team hosted an unprecedented open tryout, the public consensus was that it was a waste of time – no one good enough to play professional football was going to be found this way.","moviesInCollection":[],"ratingKey":1206,"key":"/library/metadata/1206","collectionTitle":"","collectionId":-1,"tmdbId":11652},{"name":"Son of the Mask","year":2005,"posterUrl":"/library/metadata/2091/thumb/1599308645","imdbId":"","language":"en","overview":"Tim Avery, an aspiring cartoonist, finds himself in a predicament when his dog stumbles upon the mask of Loki. Then after conceiving an infant son \"born of the mask\", he discovers just how looney child raising can be.","moviesInCollection":[],"ratingKey":2091,"key":"/library/metadata/2091","collectionTitle":"","collectionId":-1,"tmdbId":10214},{"name":"The Transporter","year":2002,"posterUrl":"/library/metadata/2869/thumb/1599308952","imdbId":"","language":"en","overview":"Former Special Forces officer, Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.","moviesInCollection":[],"ratingKey":2869,"key":"/library/metadata/2869","collectionTitle":"","collectionId":-1,"tmdbId":4108},{"name":"Final Fantasy VII Advent Children","year":2006,"posterUrl":"/library/metadata/895/thumb/1599308152","imdbId":"","language":"en","overview":"Two years have passed since the final battle with Sephiroth. Though Midgar, city of mako, city of prosperity, has been reduced to ruins, its people slowly but steadily walk the road to reconstruction. However, a mysterious illness called Geostigma torments them. With no cure in sight, it brings death to the afflicted, one after another, robbing the people of their fledgling hope.","moviesInCollection":[],"ratingKey":895,"key":"/library/metadata/895","collectionTitle":"","collectionId":-1,"tmdbId":647},{"name":"Kumiko, the Treasure Hunter","year":2015,"posterUrl":"/library/metadata/1324/thumb/1599308315","imdbId":"","language":"en","overview":"Frustrated with her mundane life, a Tokyo office worker becomes obsessed with a fictional movie that she mistakes for a documentary. Fixating on a scene where stolen cash is buried in North Dakota, she travels to America to find it.","moviesInCollection":[],"ratingKey":1324,"key":"/library/metadata/1324","collectionTitle":"","collectionId":-1,"tmdbId":244563},{"name":"Memoirs of a Geisha","year":2005,"posterUrl":"/library/metadata/1494/thumb/1599308386","imdbId":"","language":"en","overview":"A sweeping romantic epic set in Japan in the years before World War II, a penniless Japanese child is torn from her family to work as a maid in a geisha house.","moviesInCollection":[],"ratingKey":1494,"key":"/library/metadata/1494","collectionTitle":"","collectionId":-1,"tmdbId":1904},{"name":"Pet Sematary II","year":1992,"posterUrl":"/library/metadata/1727/thumb/1599308489","imdbId":"","language":"en","overview":"The \"sematary\" is up to its old zombie-raising tricks again. This time, the protagonists are Jeff Matthews, whose mother died in a Hollywood stage accident, and Drew Gilbert, a boy coping with an abusive stepfather.","moviesInCollection":[],"ratingKey":1727,"key":"/library/metadata/1727","collectionTitle":"","collectionId":-1,"tmdbId":10906},{"name":"Armored","year":2009,"posterUrl":"/library/metadata/220/thumb/1599307908","imdbId":"","language":"en","overview":"A crew of officers at an armored transport security firm risk their lives when they embark on the ultimate heist against their own company. Armed with a seemingly fool-proof plan, the men plan on making off with a fortune with harm to none. But when an unexpected witness interferes, the plan quickly unravels and all bets are off.","moviesInCollection":[],"ratingKey":220,"key":"/library/metadata/220","collectionTitle":"","collectionId":-1,"tmdbId":4597},{"name":"The Angry Birds Movie","year":2016,"posterUrl":"/library/metadata/2291/thumb/1599308722","imdbId":"","language":"en","overview":"An island populated entirely by happy, flightless birds or almost entirely. In this paradise, Red, a bird with a temper problem, speedy Chuck, and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies, it’s up to these unlikely outcasts to figure out what the pigs are up to.","moviesInCollection":[],"ratingKey":2291,"key":"/library/metadata/2291","collectionTitle":"","collectionId":-1,"tmdbId":153518},{"name":"Basic Instinct","year":2007,"posterUrl":"/library/metadata/281/thumb/1599307930","imdbId":"","language":"en","overview":"A police detective is in charge of the investigation of a brutal murder, in which a beautiful and seductive woman could be involved.","moviesInCollection":[],"ratingKey":281,"key":"/library/metadata/281","collectionTitle":"","collectionId":-1,"tmdbId":402},{"name":"Bite","year":2015,"posterUrl":"/library/metadata/361/thumb/1599307959","imdbId":"","language":"en","overview":"While on her bachelorette party getaway, Casey, the bride to be, gets a seemingly harmless bite from an unknown insect. After returning home with cold feet, Casey tries to call off her wedding but before she's able to, she starts exhibiting insect like traits. Between her physical transformation and her wedding anxiety, Casey succumbs to her new instincts and begins creating a hive that not only houses her translucent eggs, but feeds on the flesh of others. As her transformation becomes complete, Casey discovers that everything can change with a single bite.","moviesInCollection":[],"ratingKey":361,"key":"/library/metadata/361","collectionTitle":"","collectionId":-1,"tmdbId":347642},{"name":"Miles Ahead","year":2015,"posterUrl":"/library/metadata/1507/thumb/1599308392","imdbId":"","language":"en","overview":"An exploration of the life and music of Miles Davis.","moviesInCollection":[],"ratingKey":1507,"key":"/library/metadata/1507","collectionTitle":"","collectionId":-1,"tmdbId":316000},{"name":"Point Blank","year":2011,"posterUrl":"/library/metadata/1765/thumb/1599308504","imdbId":"","language":"en","overview":"Samuel Pierret is a nurse who saves the wrong guy – a thief whose henchmen take Samuel's pregnant wife hostage to force him to spring their boss from the hospital. A race through the subways and streets of Paris ensues, and the body count rises. Can Samuel evade the cops and the criminal underground and deliver his beloved to safety?","moviesInCollection":[],"ratingKey":1765,"key":"/library/metadata/1765","collectionTitle":"","collectionId":-1,"tmdbId":61404},{"name":"Diary of a Mad Black Woman","year":2005,"posterUrl":"/library/metadata/705/thumb/1599308083","imdbId":"","language":"en","overview":"Charles McCarter and his wife Helen are about to celebrate their 18th-wedding anniversary when Helen comes home to find her clothes packed up in a U-Haul van parked in the driveway. Charles is divorcing Her. Helen moves in with her grandmother Madea, an old woman who doesn't take any lip from anyone. Madea helps Helen through these tough times by showing her what is really important in life.","moviesInCollection":[],"ratingKey":705,"key":"/library/metadata/705","collectionTitle":"","collectionId":-1,"tmdbId":16186},{"name":"From Up on Poppy Hill","year":2012,"posterUrl":"/library/metadata/46392/thumb/1599309156","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46392,"key":"/library/metadata/46392","collectionTitle":"","collectionId":-1,"tmdbId":83389},{"name":"Mr. Right","year":2016,"posterUrl":"/library/metadata/1554/thumb/1599308413","imdbId":"","language":"en","overview":"A girl falls for the \"perfect\" guy, who happens to have a very fatal flaw: he's a hitman on the run from the crime cartels who employ him.","moviesInCollection":[],"ratingKey":1554,"key":"/library/metadata/1554","collectionTitle":"","collectionId":-1,"tmdbId":333385},{"name":"Trouble with the Curve","year":2012,"posterUrl":"/library/metadata/3009/thumb/1599309000","imdbId":"","language":"en","overview":"Slowed by age and failing eyesight, crack baseball scout Gus Lobel takes his grown daughter along as he checks out the final prospect of his career. Along the way, the two renew their bond, and she catches the eye of a young player-turned-scout.","moviesInCollection":[],"ratingKey":3009,"key":"/library/metadata/3009","collectionTitle":"","collectionId":-1,"tmdbId":87825},{"name":"Twelve O'Clock High","year":1949,"posterUrl":"/library/metadata/3024/thumb/1599309005","imdbId":"","language":"en","overview":"In this story of the early days of daylight bombing raids over Germany, General Frank Savage must take command of a \"hard luck\" bomber group. Much of the story deals with his struggle to whip his group into a disciplined fighting unit in spite of heavy losses, and withering attacks by German fighters over their targets.","moviesInCollection":[],"ratingKey":3024,"key":"/library/metadata/3024","collectionTitle":"","collectionId":-1,"tmdbId":15497},{"name":"Dude, Where's My Car?","year":2000,"posterUrl":"/library/metadata/789/thumb/1599308113","imdbId":"","language":"en","overview":"Jesse and Chester, two bumbling stoners, wake up one morning from a night of partying and cannot remember where they parked their car. They encounter a variety of people while looking for it, including their angry girlfriends, an angry street gang, a transexual stripper, a cult of alien seeking fanatics, and aliens in human form looking for a mystical device that could save or destroy the world.","moviesInCollection":[],"ratingKey":789,"key":"/library/metadata/789","collectionTitle":"","collectionId":-1,"tmdbId":8859},{"name":"12 Strong","year":2018,"posterUrl":"/library/metadata/9/thumb/1599307829","imdbId":"","language":"en","overview":"A team of CIA agents and special forces head into Afghanistan in the aftermath of the September 11th attacks in an attempt to dismantle the Taliban.","moviesInCollection":[],"ratingKey":9,"key":"/library/metadata/9","collectionTitle":"","collectionId":-1,"tmdbId":429351},{"name":"Heist","year":2015,"posterUrl":"/library/metadata/1082/thumb/1599308226","imdbId":"","language":"en","overview":"A father is without the means to pay for his daughter's medical treatment. As a last resort, he partners with a greedy co-worker to rob a casino. When things go awry they're forced to hijack a city bus.","moviesInCollection":[],"ratingKey":1082,"key":"/library/metadata/1082","collectionTitle":"","collectionId":-1,"tmdbId":336004},{"name":"The Rental","year":2020,"posterUrl":"/library/metadata/47472/thumb/1599309184","imdbId":"","language":"en","overview":"Two couples on an oceanside getaway grow suspicious that the host of their seemingly perfect rental house may be spying on them. Before long, what should have been a celebratory weekend trip turns into something far more sinister.","moviesInCollection":[],"ratingKey":47472,"key":"/library/metadata/47472","collectionTitle":"","collectionId":-1,"tmdbId":587496},{"name":"The Great Beauty","year":2013,"posterUrl":"/library/metadata/2507/thumb/1599308802","imdbId":"","language":"en","overview":"Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.","moviesInCollection":[],"ratingKey":2507,"key":"/library/metadata/2507","collectionTitle":"","collectionId":-1,"tmdbId":179144},{"name":"Like Water for Chocolate","year":1993,"posterUrl":"/library/metadata/1390/thumb/1599308338","imdbId":"","language":"en","overview":"Tita is passionately in love with Pedro, but her controlling mother forbids her from marrying him. When Pedro marries her sister, Tita throws herself into her cooking and discovers she can transfer her emotions through the food she prepares, infecting all who eat it with her intense heartbreak.","moviesInCollection":[],"ratingKey":1390,"key":"/library/metadata/1390","collectionTitle":"","collectionId":-1,"tmdbId":18183},{"name":"The Specialist","year":1994,"posterUrl":"/library/metadata/2828/thumb/1599308937","imdbId":"","language":"en","overview":"May Munro is a woman obsessed with getting revenge on the people who murdered her parents when she was still a girl. She hires Ray Quick, a retired explosives expert to kill her parent's killers. When Ned Trent, embittered ex-partner of Quick's is assigned to protect one of Quick's potential victims, a deadly game of cat and mouse ensues.","moviesInCollection":[],"ratingKey":2828,"key":"/library/metadata/2828","collectionTitle":"","collectionId":-1,"tmdbId":2636},{"name":"A Nightmare on Elm Street","year":1984,"posterUrl":"/library/metadata/80/thumb/1599307853","imdbId":"","language":"en","overview":"Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson, traces the cause to child molester Fred Krueger, who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen, must devise a plan to lure the monster out of the realm of nightmares and into the real world...","moviesInCollection":[],"ratingKey":80,"key":"/library/metadata/80","collectionTitle":"","collectionId":-1,"tmdbId":377},{"name":"A Dog's Journey","year":2019,"posterUrl":"/library/metadata/60/thumb/1599307847","imdbId":"","language":"en","overview":"A dog finds the meaning of his own existence through the lives of the humans he meets.","moviesInCollection":[],"ratingKey":60,"key":"/library/metadata/60","collectionTitle":"","collectionId":-1,"tmdbId":522518},{"name":"Don Verdean","year":2015,"posterUrl":"/library/metadata/730/thumb/1599308093","imdbId":"","language":"en","overview":"Biblical archaeologist Don Verdean is hired by a local church pastor to find faith-promoting relics in the Holy Land. But after a fruitless expedition he is forced to get creative in this comedy of faith and fraud.","moviesInCollection":[],"ratingKey":730,"key":"/library/metadata/730","collectionTitle":"","collectionId":-1,"tmdbId":309298},{"name":"Jurassic Park III","year":2001,"posterUrl":"/library/metadata/41080/thumb/1599309123","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41080,"key":"/library/metadata/41080","collectionTitle":"","collectionId":-1,"tmdbId":331},{"name":"My Neighbors the Yamadas","year":2005,"posterUrl":"/library/metadata/46405/thumb/1599309159","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46405,"key":"/library/metadata/46405","collectionTitle":"","collectionId":-1,"tmdbId":16198},{"name":"The Sixth Sense","year":1999,"posterUrl":"/library/metadata/2821/thumb/1599308934","imdbId":"","language":"en","overview":"A psychological thriller about an eight year old boy named Cole Sear who believes he can see into the world of the dead. A child psychologist named Malcolm Crowe comes to Cole to help him deal with his problem, learning that he really can see the ghosts of dead people.","moviesInCollection":[],"ratingKey":2821,"key":"/library/metadata/2821","collectionTitle":"","collectionId":-1,"tmdbId":745},{"name":"Zootopia","year":2016,"posterUrl":"/library/metadata/3207/thumb/1599309067","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3207,"key":"/library/metadata/3207","collectionTitle":"","collectionId":-1,"tmdbId":269149},{"name":"They","year":2017,"posterUrl":"/library/metadata/2917/thumb/1599308969","imdbId":"","language":"en","overview":"J is in their early teens and lives in the countryside. J has been diagnosed with Gender Identity Disorder, goes by the selected pronoun “they”, and takes hormone blockers to suspend puberty. While J’s parents are away, their older sister and her Iranian boyfriend are assigned the duties of house-sitting and looking after J.","moviesInCollection":[],"ratingKey":2917,"key":"/library/metadata/2917","collectionTitle":"","collectionId":-1,"tmdbId":350050},{"name":"Freak Show","year":2018,"posterUrl":"/library/metadata/938/thumb/1599308170","imdbId":"","language":"en","overview":"The story of teenager Billy Bloom who, despite attending an ultra conservative high school, makes the decision to run for homecoming queen.","moviesInCollection":[],"ratingKey":938,"key":"/library/metadata/938","collectionTitle":"","collectionId":-1,"tmdbId":440424},{"name":"The Last Face","year":2016,"posterUrl":"/library/metadata/2617/thumb/1599308842","imdbId":"","language":"en","overview":"Miguel, a heroic Spanish doctor, puts himself in harm's way to deliver medical treatment to the victims of military uprisings in Africa.","moviesInCollection":[],"ratingKey":2617,"key":"/library/metadata/2617","collectionTitle":"","collectionId":-1,"tmdbId":287904},{"name":"Plastic","year":2014,"posterUrl":"/library/metadata/1755/thumb/1599308500","imdbId":"","language":"en","overview":"Sam & Fordy run a credit card fraud scheme, but when they steal from the wrong man, they find themselves threatened by sadistic gangster. They need to raise £5m and pull off a daring diamond heist to clear their debt.","moviesInCollection":[],"ratingKey":1755,"key":"/library/metadata/1755","collectionTitle":"","collectionId":-1,"tmdbId":208869},{"name":"Batman vs. Two-Face","year":2017,"posterUrl":"/library/metadata/308/thumb/1599307939","imdbId":"","language":"en","overview":"Former Gotham City District Attorney Harvey Dent, one side of his face scarred by acid, goes on a crime spree based on the number '2'. All of his actions are decided by the flip of a defaced, two-headed silver dollar.","moviesInCollection":[],"ratingKey":308,"key":"/library/metadata/308","collectionTitle":"","collectionId":-1,"tmdbId":464882},{"name":"A Nightmare on Elm Street","year":2010,"posterUrl":"/library/metadata/81/thumb/1599307854","imdbId":"","language":"en","overview":"The film that brings back horror icon Freddy Krueger as a darker and more sinister character than ever before. While Freddy is on the prowl a group of teenagers being stalked soon learn they all have a common factor making them targets for this twisted killer.","moviesInCollection":[],"ratingKey":81,"key":"/library/metadata/81","collectionTitle":"","collectionId":-1,"tmdbId":23437},{"name":"The Grand Budapest Hotel","year":2014,"posterUrl":"/library/metadata/2503/thumb/1599308800","imdbId":"","language":"en","overview":"The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted protégé. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.","moviesInCollection":[],"ratingKey":2503,"key":"/library/metadata/2503","collectionTitle":"","collectionId":-1,"tmdbId":120467},{"name":"12 Years a Slave","year":2013,"posterUrl":"/library/metadata/10/thumb/1599307830","imdbId":"","language":"en","overview":"In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon’s chance meeting with a Canadian abolitionist will forever alter his life.","moviesInCollection":[],"ratingKey":10,"key":"/library/metadata/10","collectionTitle":"","collectionId":-1,"tmdbId":76203},{"name":"Alien³","year":1992,"posterUrl":"/library/metadata/148/thumb/1599307880","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":148,"key":"/library/metadata/148","collectionTitle":"","collectionId":-1,"tmdbId":8077},{"name":"The Women","year":1939,"posterUrl":"/library/metadata/2904/thumb/1599308964","imdbId":"","language":"en","overview":"A happily married woman lets her catty friends talk her into divorce when her husband strays.","moviesInCollection":[],"ratingKey":2904,"key":"/library/metadata/2904","collectionTitle":"","collectionId":-1,"tmdbId":22490},{"name":"I Am Heath Ledger","year":2017,"posterUrl":"/library/metadata/1153/thumb/1599308251","imdbId":"","language":"en","overview":"The life and career of an actor, artist, and icon. His own journey through his own camera.","moviesInCollection":[],"ratingKey":1153,"key":"/library/metadata/1153","collectionTitle":"","collectionId":-1,"tmdbId":450945},{"name":"The Drop","year":2014,"posterUrl":"/library/metadata/2430/thumb/1599308771","imdbId":"","language":"en","overview":"Bob Saginowski finds himself at the center of a robbery gone awry and entwined in an investigation that digs deep into the neighborhood's past where friends, families, and foes all work together to make a living - no matter the cost.","moviesInCollection":[],"ratingKey":2430,"key":"/library/metadata/2430","collectionTitle":"","collectionId":-1,"tmdbId":154400},{"name":"Fist of the North Star","year":1991,"posterUrl":"/library/metadata/911/thumb/1599308158","imdbId":"","language":"en","overview":"After a nuclear holocaust tears the world apart, mankind is forced to the harshness of not only the oppression of others who are much more powerful, but the dead earth which seems to be getting worse with every passing moment. But a savior has risen from the ashes, a man who will defeat those who would torment the weak and make the world a livable place once more. A man named Kenshiro...","moviesInCollection":[],"ratingKey":911,"key":"/library/metadata/911","collectionTitle":"","collectionId":-1,"tmdbId":19877},{"name":"Ghost in the Shell","year":2017,"posterUrl":"/library/metadata/987/thumb/1599308188","imdbId":"","language":"en","overview":"In the near future, Major (Scarlett Johansson) is the first of her kind: A human saved from a terrible crash, who is cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals. When terrorism reaches a new level that includes the ability to hack into people's minds and control them, Major is uniquely qualified to stop it. As she prepares to face a new enemy, Major discovers that she has been lied to: her life was not saved, it was stolen. She will stop at nothing to recover her past, find out who did this to her and stop them before they do it to others. Based on the internationally acclaimed Japanese Manga, \"The Ghost in the Shell.\"","moviesInCollection":[],"ratingKey":987,"key":"/library/metadata/987","collectionTitle":"","collectionId":-1,"tmdbId":315837},{"name":"Popstar Never Stop Never Stopping","year":2016,"posterUrl":"/library/metadata/1790/thumb/1599308514","imdbId":"","language":"en","overview":"When his new album fails to sell records, pop/rap superstar Conner4real goes into a major tailspin and watches his celebrity high life begin to collapse. He'll try anything to bounce back, anything except reuniting with his old rap group The Style Boyz.","moviesInCollection":[],"ratingKey":1790,"key":"/library/metadata/1790","collectionTitle":"","collectionId":-1,"tmdbId":341012},{"name":"Acceleration","year":2019,"posterUrl":"/library/metadata/110/thumb/1599307866","imdbId":"","language":"en","overview":"Vladik Zorich (Dolph Lundgren), crime lord whose tentacles permeate the underbelly of a seedy Los Angeles as he deals in guns, gambling, drugs and skin trafficking, finds himself double-crossed by his most trusted operative Rhona Zyocki (Natalie Burn). Vladik's propensity for power, control, and violence drives him to kidnap Rhona's young son, forcing Rhona to participate in a planned elimination of Vladik's enemies and identities. As her son's life hangs in the balance, Rhona struggles to find and kill Vladik's most violent and twisted foes and regain valuable goods and information, all in one fateful night.","moviesInCollection":[],"ratingKey":110,"key":"/library/metadata/110","collectionTitle":"","collectionId":-1,"tmdbId":646150},{"name":"One Flew Over the Cuckoo's Nest","year":1975,"posterUrl":"/library/metadata/1655/thumb/1599308458","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1655,"key":"/library/metadata/1655","collectionTitle":"","collectionId":-1,"tmdbId":510},{"name":"Demon City Shinjuku","year":1993,"posterUrl":"/library/metadata/689/thumb/1599308077","imdbId":"","language":"en","overview":"Kyoya's father was a great warrior, killed at the hands of the diabolical psychic, Rebi Ra, who has now opened a portal to hell in the city of Shinjuku. It falls to Kyoya to finish what his father started and battle his way through demons, while protecting a young woman from harm. The only problem is that he's not exactly your classic hero type, and his powers are still latent.","moviesInCollection":[],"ratingKey":689,"key":"/library/metadata/689","collectionTitle":"","collectionId":-1,"tmdbId":44179},{"name":"Finding Forrester","year":2000,"posterUrl":"/library/metadata/898/thumb/1599308153","imdbId":"","language":"en","overview":"Gus Van Sant tells the story of a young African American man named Jamal who confronts his talents while living on the streets of the Bronx. He accidentally runs into an old writer named Forrester who discovers his passion for writing. With help from his new mentor Jamal receives a scholarship to a private school.","moviesInCollection":[],"ratingKey":898,"key":"/library/metadata/898","collectionTitle":"","collectionId":-1,"tmdbId":711},{"name":"Midsommar","year":2019,"posterUrl":"/library/metadata/46947/thumb/1599309171","imdbId":"","language":"en","overview":"Several friends travel to Sweden to study as anthropologists a summer festival that is held every ninety years in the remote hometown of one of them. What begins as a dream vacation in a place where the sun never sets, gradually turns into a dark nightmare as the mysterious inhabitants invite them to participate in their disturbing festive activities.","moviesInCollection":[],"ratingKey":46947,"key":"/library/metadata/46947","collectionTitle":"","collectionId":-1,"tmdbId":530385},{"name":"Ladies in Black","year":2018,"posterUrl":"/library/metadata/1333/thumb/1599308319","imdbId":"","language":"en","overview":"Adapted from the bestselling novel by Madeleine St John, Ladies in Black is an alluring and tender-hearted comedy drama about the lives of a group of department store employees in 1959 Sydney.","moviesInCollection":[],"ratingKey":1333,"key":"/library/metadata/1333","collectionTitle":"","collectionId":-1,"tmdbId":483411},{"name":"Dreamcatcher","year":2003,"posterUrl":"/library/metadata/777/thumb/1599308108","imdbId":"","language":"en","overview":"Four boyhood pals perform a heroic act and are changed by the powers they gain in return. Years later, on a hunting trip in the Maine woods, they're overtaken by a vicious blizzard that harbors an ominous presence. Challenged to stop an alien force, the friends must first prevent the slaughter of innocent civilians by a military vigilante ... and then overcome a threat to the bond that unites the four of them.","moviesInCollection":[],"ratingKey":777,"key":"/library/metadata/777","collectionTitle":"","collectionId":-1,"tmdbId":6171},{"name":"Rasputin The Mad Monk","year":1966,"posterUrl":"/library/metadata/1849/thumb/1599308539","imdbId":"","language":"en","overview":"Rasputin, a crazed and debauched monk wreaks havoc at the local inn one night, chopping off the hand of one of the drinkers. As the bitter locals plan their revenge, the evil Rasputin works his satanic power over the beautiful women who serve at the Tsar's palace. Even the Tsarina herself is seduced by his evil ways and, as his influence begins to dominate government policy, there is only one course of action left... to destroy him before he destroys them all.","moviesInCollection":[],"ratingKey":1849,"key":"/library/metadata/1849","collectionTitle":"","collectionId":-1,"tmdbId":28669},{"name":"The Color of Money","year":1986,"posterUrl":"/library/metadata/2367/thumb/1599308747","imdbId":"","language":"en","overview":"Former pool hustler \"Fast Eddie\" Felson decides he wants to return to the game by taking a pupil. He meets talented but green Vincent Lauria and proposes a partnership. As they tour pool halls, Eddie teaches Vincent the tricks of scamming, but he eventually grows frustrated with Vincent's showboat antics, leading to an argument and a falling-out. Eddie takes up playing again and soon crosses paths with Vincent as an opponent.","moviesInCollection":[],"ratingKey":2367,"key":"/library/metadata/2367","collectionTitle":"","collectionId":-1,"tmdbId":11873},{"name":"Cherry Tree Lane","year":2010,"posterUrl":"/library/metadata/499/thumb/1599308011","imdbId":"","language":"en","overview":"Prosperous professional couple Mike and Christine are settling in for a standard evening of wine, TV and low-level marital hostility when a ring on their doorbell changes everything. Turns out their son Sebastian is in a little trouble with some local boys, who are quite prepared to camp out and wait for him to get home ... the resulting culture-clash chamber drama is raw, revealing and nerve-splittingly tense.","moviesInCollection":[],"ratingKey":499,"key":"/library/metadata/499","collectionTitle":"","collectionId":-1,"tmdbId":47259},{"name":"Collateral Beauty","year":2016,"posterUrl":"/library/metadata/547/thumb/1599308027","imdbId":"","language":"en","overview":"Retreating from life after a tragedy, a man questions the universe by writing to Love, Time and Death. Receiving unexpected answers, he begins to see how these things interlock and how even loss can reveal moments of meaning and beauty.","moviesInCollection":[],"ratingKey":547,"key":"/library/metadata/547","collectionTitle":"","collectionId":-1,"tmdbId":345920},{"name":"Miracle on 34th Street","year":1994,"posterUrl":"/library/metadata/1514/thumb/1599308395","imdbId":"","language":"en","overview":"Six-year-old Susan Walker has doubts about childhood's most enduring miracle—Santa Claus. Her mother told her the secret about Santa a long time ago, but, after meeting a special department store Santa who's convinced he's the real thing, Susan is given the most precious gift of all—something to believe in.","moviesInCollection":[],"ratingKey":1514,"key":"/library/metadata/1514","collectionTitle":"","collectionId":-1,"tmdbId":10510},{"name":"Hotel Hell Vacation","year":2010,"posterUrl":"/library/metadata/47247/thumb/1599309174","imdbId":"","language":"en","overview":"Clark and Ellen Griswold embark on a trip to visit their son Rusty and his family, but along the way Clark has planned a romantic getaway where everything turns to disaster.","moviesInCollection":[],"ratingKey":47247,"key":"/library/metadata/47247","collectionTitle":"","collectionId":-1,"tmdbId":158382},{"name":"Chloe","year":2010,"posterUrl":"/library/metadata/507/thumb/1599308013","imdbId":"","language":"en","overview":"A doctor hires an escort to seduce her husband, whom she suspects of cheating, though unforeseen events put the family in danger.","moviesInCollection":[],"ratingKey":507,"key":"/library/metadata/507","collectionTitle":"","collectionId":-1,"tmdbId":28211},{"name":"Army of One","year":2016,"posterUrl":"/library/metadata/222/thumb/1599307909","imdbId":"","language":"en","overview":"Gary Faulkner is an ex-con, unemployed handyman, and modern day Don Quixote who receives a vision from God telling him to capture Osama Bin Laden. Armed with only a single sword purchased from a home-shopping network, Gary travels to Pakistan to complete his mission. While on his quest, Gary encounters old friends back home in Colorado, the new friends he makes in Pakistan, the enemies he makes at the CIA - and even God and Osama themselves.","moviesInCollection":[],"ratingKey":222,"key":"/library/metadata/222","collectionTitle":"","collectionId":-1,"tmdbId":336445},{"name":"Superman Brainiac Attacks","year":2006,"posterUrl":"/library/metadata/2209/thumb/1599308692","imdbId":"","language":"en","overview":"Embittered by Superman's heroic successes and soaring popularity, Lex Luthor forms a dangerous alliance with the powerful computer/villain Brainiac. Using advanced weaponry and a special strain of Kryptonite harvested from the far reaches of outer space, Luthor specifically redesigns Brainiac to defeat the Man of Steel.","moviesInCollection":[],"ratingKey":2209,"key":"/library/metadata/2209","collectionTitle":"","collectionId":-1,"tmdbId":19323},{"name":"Kick-Ass 2","year":2013,"posterUrl":"/library/metadata/1294/thumb/1599308304","imdbId":"","language":"en","overview":"After Kick-Ass’ insane bravery inspires a new wave of self-made masked crusaders, he joins a patrol led by the Colonel Stars and Stripes. When these amateur superheroes are hunted down by Red Mist — reborn as The Mother Fucker — only the blade-wielding Hit-Girl can prevent their annihilation.","moviesInCollection":[],"ratingKey":1294,"key":"/library/metadata/1294","collectionTitle":"","collectionId":-1,"tmdbId":59859},{"name":"The Texas Chainsaw Massacre The Beginning","year":2006,"posterUrl":"/library/metadata/2854/thumb/1599308947","imdbId":"","language":"en","overview":"Chrissie and her friends set out on a road trip for a final fling before one is shipped off to Vietnam. Along the way, bikers harass the foursome and cause an accident that throws Chrissie from the vehicle. The lawman who arrives on the scene kills one of the bikers and brings Chrissie's friends to the Hewitt homestead, where young Leatherface is learning the tools of terror.","moviesInCollection":[],"ratingKey":2854,"key":"/library/metadata/2854","collectionTitle":"","collectionId":-1,"tmdbId":10781},{"name":"Timber Falls","year":2007,"posterUrl":"/library/metadata/2937/thumb/1599308976","imdbId":"","language":"en","overview":"A weekend of camping in the mountains becomes an excursion into hell for a young couple, who become pawns in a grotesque plot hatched by deranged locals.","moviesInCollection":[],"ratingKey":2937,"key":"/library/metadata/2937","collectionTitle":"","collectionId":-1,"tmdbId":8875},{"name":"The Waterboy","year":1998,"posterUrl":"/library/metadata/2892/thumb/1599308960","imdbId":"","language":"en","overview":"Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.","moviesInCollection":[],"ratingKey":2892,"key":"/library/metadata/2892","collectionTitle":"","collectionId":-1,"tmdbId":10663},{"name":"47 Meters Down","year":2017,"posterUrl":"/library/metadata/38/thumb/1599307839","imdbId":"","language":"en","overview":"Two sisters on Mexican vacation are trapped in a shark observation cage at the bottom of the ocean, with oxygen running low and great whites circling nearby, they have less than an hour of air left to figure out how to get to the surface.","moviesInCollection":[],"ratingKey":38,"key":"/library/metadata/38","collectionTitle":"","collectionId":-1,"tmdbId":403119},{"name":"The Monkey King","year":2014,"posterUrl":"/library/metadata/2688/thumb/1599308873","imdbId":"","language":"en","overview":"Sun Wukong is a monkey born from a heavenly stone who acquires supernatural powers. After rebelling against heaven and being imprisoned under a mountain for 500 years, he later accompanies the monk Xuanzang on a journey to India. Thus, according to legend, Buddhism is brought to ancient China.","moviesInCollection":[],"ratingKey":2688,"key":"/library/metadata/2688","collectionTitle":"","collectionId":-1,"tmdbId":119892},{"name":"BuyBust","year":2018,"posterUrl":"/library/metadata/452/thumb/1599307993","imdbId":"","language":"en","overview":"A special forces team is sent to snuff out a drug den, but find themselves trapped inside it after being set-up and betrayed.","moviesInCollection":[],"ratingKey":452,"key":"/library/metadata/452","collectionTitle":"","collectionId":-1,"tmdbId":496283},{"name":"Sucker Punch","year":2011,"posterUrl":"/library/metadata/2190/thumb/1599308687","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2190,"key":"/library/metadata/2190","collectionTitle":"","collectionId":-1,"tmdbId":23629},{"name":"Speed Kills","year":2018,"posterUrl":"/library/metadata/2106/thumb/1599308652","imdbId":"","language":"en","overview":"Speedboat racing champion and multimillionaire, Ben Aronoff (Don Aronow), leads a double life that lands him in trouble with the law and drug lords.","moviesInCollection":[],"ratingKey":2106,"key":"/library/metadata/2106","collectionTitle":"","collectionId":-1,"tmdbId":466411},{"name":"Screams of a Winter Night","year":1979,"posterUrl":"/library/metadata/1991/thumb/1599308600","imdbId":"","language":"en","overview":"Ten college students go camping, when they get there, they tell scary stories to each other.","moviesInCollection":[],"ratingKey":1991,"key":"/library/metadata/1991","collectionTitle":"","collectionId":-1,"tmdbId":83820},{"name":"On the Basis of Sex","year":2019,"posterUrl":"/library/metadata/1647/thumb/1599308455","imdbId":"","language":"en","overview":"Young lawyer Ruth Bader Ginsburg teams with her husband Marty to bring a groundbreaking case before the U.S. Court of Appeals and overturn a century of sex discrimination.","moviesInCollection":[],"ratingKey":1647,"key":"/library/metadata/1647","collectionTitle":"","collectionId":-1,"tmdbId":339380},{"name":"American Reunion","year":2012,"posterUrl":"/library/metadata/188/thumb/1599307896","imdbId":"","language":"en","overview":"The characters we met a little more than a decade ago return to East Great Falls for their high-school reunion. In one long-overdue weekend, they will discover what has changed, who hasn’t, and that time and distance can’t break the bonds of friendship.","moviesInCollection":[],"ratingKey":188,"key":"/library/metadata/188","collectionTitle":"","collectionId":-1,"tmdbId":71552},{"name":"The Alphabet Killer","year":2008,"posterUrl":"/library/metadata/2286/thumb/1586214329","imdbId":"tt0818165","language":"en","overview":"Based on the true story of double killings occurring in Rochester, NY during the 80’s and the troubled police officer determined to solve them, with or without the help of her department","moviesInCollection":[],"ratingKey":2286,"key":"/library/metadata/2286","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Tomorrowland","year":2015,"posterUrl":"/library/metadata/2955/thumb/1599308982","imdbId":"","language":"en","overview":"Bound by a shared destiny, a bright, optimistic teen bursting with scientific curiosity and a former boy-genius inventor jaded by disillusionment embark on a danger-filled mission to unearth the secrets of an enigmatic place somewhere in time and space that exists in their collective memory as \"Tomorrowland.\"","moviesInCollection":[],"ratingKey":2955,"key":"/library/metadata/2955","collectionTitle":"","collectionId":-1,"tmdbId":158852},{"name":"Ocean's Eight","year":2018,"posterUrl":"/library/metadata/1631/thumb/1599308447","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1631,"key":"/library/metadata/1631","collectionTitle":"","collectionId":-1,"tmdbId":402900},{"name":"Ghost in the Shell Stand Alone Complex - The Laughing Man","year":2007,"posterUrl":"/library/metadata/992/thumb/1599308190","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":992,"key":"/library/metadata/992","collectionTitle":"","collectionId":-1,"tmdbId":18839},{"name":"Resident Evil","year":2002,"posterUrl":"/library/metadata/1884/thumb/1599308556","imdbId":"","language":"en","overview":"When a virus leaks from a top-secret facility, turning all resident researchers into ravenous zombies and their lab animals into mutated hounds from hell, the government sends in an elite military task force to contain the outbreak. Alice and Rain are charged with leading the mission. But they only have three hours before the pathogen becomes airborne and infects the world.","moviesInCollection":[],"ratingKey":1884,"key":"/library/metadata/1884","collectionTitle":"","collectionId":-1,"tmdbId":1576},{"name":"Flyboys","year":2006,"posterUrl":"/library/metadata/923/thumb/1599308162","imdbId":"","language":"en","overview":"The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.","moviesInCollection":[],"ratingKey":923,"key":"/library/metadata/923","collectionTitle":"","collectionId":-1,"tmdbId":9664},{"name":"The Chronicles of Riddick","year":2004,"posterUrl":"/library/metadata/2362/thumb/1599308745","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2362,"key":"/library/metadata/2362","collectionTitle":"","collectionId":-1,"tmdbId":2789},{"name":"The Darkest Minds","year":2018,"posterUrl":"/library/metadata/2393/thumb/1599308756","imdbId":"","language":"en","overview":"After a disease kills 98% of America's children, the surviving 2% develop superpowers and are placed in internment camps. A 16-year-old girl escapes her camp and joins a group of other teens on the run from the government.","moviesInCollection":[],"ratingKey":2393,"key":"/library/metadata/2393","collectionTitle":"","collectionId":-1,"tmdbId":445651},{"name":"Borat Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan","year":2006,"posterUrl":"/library/metadata/405/thumb/1599307974","imdbId":"","language":"en","overview":"Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.","moviesInCollection":[],"ratingKey":405,"key":"/library/metadata/405","collectionTitle":"","collectionId":-1,"tmdbId":496},{"name":"The Gambler","year":2014,"posterUrl":"/library/metadata/2482/thumb/1599308792","imdbId":"","language":"en","overview":"Literature professor Jim Bennett leads a secret life as a high-stakes gambler. Always a risk-taker, Bennett bets it all when he borrows from a gangster and offers his own life as collateral. Staying one step ahead, he pits his creditor against the operator of an illicit gambling ring while garnering the attention of Frank, a paternalistic loan shark. As his relationship with a student deepens, Bennett must risk everything for a second chance.","moviesInCollection":[],"ratingKey":2482,"key":"/library/metadata/2482","collectionTitle":"","collectionId":-1,"tmdbId":284536},{"name":"Ghost Warrior","year":1986,"posterUrl":"/library/metadata/994/thumb/1599308190","imdbId":"","language":"en","overview":"When skiers in Japan come across the frozen body of centuries-old samurai warrior Yoshimita, scientists secretly whisk the corpse to a high-tech laboratory in California, where they bring him back to life. But when Yoshimita escapes onto the mean streets of 1980s Los Angeles, his ancient and strict code of honor gets him both into and out of trouble. J. Larry Carroll directs this low-budget action fantasy.","moviesInCollection":[],"ratingKey":994,"key":"/library/metadata/994","collectionTitle":"","collectionId":-1,"tmdbId":40837},{"name":"Weird Science","year":1985,"posterUrl":"/library/metadata/3121/thumb/1599309038","imdbId":"","language":"en","overview":"Two unpopular teenagers, Gary and Wyatt, fail at all attempts to be accepted by their peers. Their desperation to be liked leads them to \"create\" a woman via their computer. Their living and breathing creation is a gorgeous woman, Lisa, whose purpose is to boost their confidence level by putting them into situations which require Gary and Wyatt to act like men.","moviesInCollection":[],"ratingKey":3121,"key":"/library/metadata/3121","collectionTitle":"","collectionId":-1,"tmdbId":11814},{"name":"Terminator 3 Rise of the Machines","year":2003,"posterUrl":"/library/metadata/41933/thumb/1599309134","imdbId":"","language":"en","overview":"It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor … just like he promised.","moviesInCollection":[],"ratingKey":41933,"key":"/library/metadata/41933","collectionTitle":"","collectionId":-1,"tmdbId":296},{"name":"The Way of the Dragon","year":1974,"posterUrl":"/library/metadata/2893/thumb/1599308961","imdbId":"","language":"en","overview":"Tang Lung arrives in Rome to help his cousins in the restaurant business. They are being pressured to sell their property to the syndicate, who will stop at nothing to get what they want. When Tang arrives he poses a new threat to the syndicate, and they are unable to defeat him. The syndicate boss hires the best Japanese and European martial artists to fight Tang, but he easily finishes them off.","moviesInCollection":[],"ratingKey":2893,"key":"/library/metadata/2893","collectionTitle":"","collectionId":-1,"tmdbId":9462},{"name":"Ace Ventura When Nature Calls","year":1995,"posterUrl":"/library/metadata/114/thumb/1599307867","imdbId":"","language":"en","overview":"Summoned from an ashram in Tibet, Ace finds himself on a perilous journey into the jungles of Africa to find Shikaka, the missing sacred animal of the friendly Wachati tribe. He must accomplish this before the wedding of the Wachati's Princess to the prince of the warrior Wachootoos. If Ace fails, the result will be a vicious tribal war.","moviesInCollection":[],"ratingKey":114,"key":"/library/metadata/114","collectionTitle":"","collectionId":-1,"tmdbId":9273},{"name":"Valerian and the City of a Thousand Planets","year":2017,"posterUrl":"/library/metadata/3070/thumb/1599309021","imdbId":"","language":"en","overview":"In the 28th century, Valerian and Laureline are special operatives charged with keeping order throughout the human territories. On assignment from the Minister of Defense, the two undertake a mission to Alpha, an ever-expanding metropolis where species from across the universe have converged over centuries to share knowledge, intelligence, and cultures. At the center of Alpha is a mysterious dark force which threatens the peaceful existence of the City of a Thousand Planets, and Valerian and Laureline must race to identify the menace and safeguard not just Alpha, but the future of the universe.","moviesInCollection":[],"ratingKey":3070,"key":"/library/metadata/3070","collectionTitle":"","collectionId":-1,"tmdbId":339964},{"name":"Rise of the Planet of the Apes","year":2011,"posterUrl":"/library/metadata/1911/thumb/1599308567","imdbId":"","language":"en","overview":"Scientist Will Rodman is determined to find a cure for Alzheimer's, the disease which has slowly consumed his father. Will feels certain he is close to a breakthrough and tests his latest serum on apes, noticing dramatic increases in intelligence and brain activity in the primate subjects – especially Caesar, his pet chimpanzee.","moviesInCollection":[],"ratingKey":1911,"key":"/library/metadata/1911","collectionTitle":"","collectionId":-1,"tmdbId":61791},{"name":"Warcraft","year":2016,"posterUrl":"/library/metadata/3109/thumb/1599309034","imdbId":"","language":"en","overview":"The peaceful realm of Azeroth stands on the brink of war as its civilization faces a fearsome race of invaders: orc warriors fleeing their dying home to colonize another. As a portal opens to connect the two worlds, one army faces destruction and the other faces extinction. From opposing sides, two heroes are set on a collision course that will decide the fate of their family, their people, and their home.","moviesInCollection":[],"ratingKey":3109,"key":"/library/metadata/3109","collectionTitle":"","collectionId":-1,"tmdbId":68735},{"name":"Hard Boiled Sweets","year":2012,"posterUrl":"/library/metadata/1062/thumb/1599308217","imdbId":"","language":"en","overview":"Ex-con Johnny is forced into pulling a heist he wants nothing to do with. Mob boss ‘Shrewd’ Eddie has one million is dirty cash stashed at his home, just waiting to be stolen. But what Johnny doesn’t know is that seven other very dangerous criminals also have plans to steal the money...","moviesInCollection":[],"ratingKey":1062,"key":"/library/metadata/1062","collectionTitle":"","collectionId":-1,"tmdbId":89260},{"name":"Dragon Ball Z Cooler's Revenge","year":1991,"posterUrl":"/library/metadata/763/thumb/1599308104","imdbId":"","language":"en","overview":"After defeating Frieza, Goku returns to Earth and goes on a camping trip with Gohan and Krillin. Everything is normal until Cooler - Frieza's brother - sends three henchmen after Goku. A long fight ensues between our heroes and Cooler, in which he transforms into the fourth stage of his evolution and has the edge in the fight... until Goku transforms into a Super Saiyan.","moviesInCollection":[],"ratingKey":763,"key":"/library/metadata/763","collectionTitle":"","collectionId":-1,"tmdbId":24752},{"name":"The Dirty Dozen","year":1998,"posterUrl":"/library/metadata/2423/thumb/1599308768","imdbId":"","language":"en","overview":"12 American military prisoners in World War II are ordered to infiltrate a well-guarded enemy château and kill the Nazi officers vacationing there. The soldiers, most of whom are facing death sentences for a variety of violent crimes, agree to the mission and the possible commuting of their sentences.","moviesInCollection":[],"ratingKey":2423,"key":"/library/metadata/2423","collectionTitle":"","collectionId":-1,"tmdbId":1654},{"name":"No Strings Attached","year":2011,"posterUrl":"/library/metadata/1615/thumb/1599308439","imdbId":"","language":"en","overview":"Emma is a busy doctor who sets up a seemingly perfect arrangement when she offers her best friend Adam a relationship with one rule: No strings attached. But when a fling becomes a thing, can sex friends stay best friends?","moviesInCollection":[],"ratingKey":1615,"key":"/library/metadata/1615","collectionTitle":"","collectionId":-1,"tmdbId":41630},{"name":"Spider-Man 2","year":2004,"posterUrl":"/library/metadata/41132/thumb/1599309128","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41132,"key":"/library/metadata/41132","collectionTitle":"","collectionId":-1,"tmdbId":558},{"name":"Gifted","year":2017,"posterUrl":"/library/metadata/999/thumb/1599308192","imdbId":"","language":"en","overview":"Frank, a single man raising his child prodigy niece Mary, is drawn into a custody battle with his mother.","moviesInCollection":[],"ratingKey":999,"key":"/library/metadata/999","collectionTitle":"","collectionId":-1,"tmdbId":400928},{"name":"Cold War","year":2018,"posterUrl":"/library/metadata/545/thumb/1599308027","imdbId":"","language":"en","overview":"A man and a woman meet in the ruins of post-war Poland. With vastly different backgrounds and temperaments, they are fatally mismatched and yet drawn to each other.","moviesInCollection":[],"ratingKey":545,"key":"/library/metadata/545","collectionTitle":"","collectionId":-1,"tmdbId":440298},{"name":"Dark Harvest","year":2004,"posterUrl":"/library/metadata/634/thumb/1599308057","imdbId":"","language":"en","overview":"A group of teenagers go to the family farm of one of them only to be attacked by a killer scarecrow.","moviesInCollection":[],"ratingKey":634,"key":"/library/metadata/634","collectionTitle":"","collectionId":-1,"tmdbId":74101},{"name":"Cold War","year":2012,"posterUrl":"/library/metadata/544/thumb/1599308026","imdbId":"","language":"en","overview":"They say Hong Kong is the safest city in Asia. But tonight, a police van has been hijacked along with the arms, equipment and the five officers aboard, one of the hostages being the only son of police deputy commissioner M.B. Lee! With the chief commissioner away on a conference overseas, the fiery Lee immediately takes command of the rescue operation – codenamed \"Cold War\" – but the mysterious kidnappers clearly know the police procedures and are therefore in an advantageous position. Objecting to Lee's aggressive but futile methods, the other deputy commissioner Sean Lau steps in at this time of crisis to lead the operation. But even Lau's careful plan to negotiate with the kidnappers ends up a failure, losing the $50 million cash ransom and the life of his lieutenant in the process. Meanwhile, the ICAC (Independent Commission Against Corruption) begins to investigate Lau and Lee on suspicion of having hidden ties to the kidnappers...","moviesInCollection":[],"ratingKey":544,"key":"/library/metadata/544","collectionTitle":"","collectionId":-1,"tmdbId":137409},{"name":"Monsters University","year":2013,"posterUrl":"/library/metadata/1537/thumb/1599308406","imdbId":"","language":"en","overview":"A look at the relationship between Mike and Sulley during their days at Monsters University — when they weren't necessarily the best of friends.","moviesInCollection":[],"ratingKey":1537,"key":"/library/metadata/1537","collectionTitle":"","collectionId":-1,"tmdbId":62211},{"name":"A Beautiful Mind","year":2001,"posterUrl":"/library/metadata/39825/thumb/1599309097","imdbId":"","language":"en","overview":"John Nash is a brilliant but asocial mathematician fighting schizophrenia. After he accepts secret work in cryptography, his life takes a turn for the nightmarish.","moviesInCollection":[],"ratingKey":39825,"key":"/library/metadata/39825","collectionTitle":"","collectionId":-1,"tmdbId":453},{"name":"Dragonheart 3 The Sorcerer's Curse","year":2015,"posterUrl":"/library/metadata/39704/thumb/1599309091","imdbId":"","language":"en","overview":"When aspiring knight Gareth goes in search of a fallen comet rumored to contain gold, he is shocked to instead find the dragon Drago. After Drago saves Gareth's life the two become intricately bonded, and must work together to defeat an evil sorcerer and stop his reign of terror. Along the way, Gareth learns the true meaning of being a knight in this fantasy action-adventure for the ages.","moviesInCollection":[],"ratingKey":39704,"key":"/library/metadata/39704","collectionTitle":"","collectionId":-1,"tmdbId":300803},{"name":"Pale Rider","year":1985,"posterUrl":"/library/metadata/1692/thumb/1599308474","imdbId":"","language":"en","overview":"A small gold mining camp is terrorised by a ruthless land owner wanting to take their land. Clint Eastwood arrives riding a pale horse just as a young girl is praying to God to help the miners. He is revealed to be a preacher with mysterious and possible otherworldly origins who teams up with the miners to defeat the land owner and the corrupt sheriff.","moviesInCollection":[],"ratingKey":1692,"key":"/library/metadata/1692","collectionTitle":"","collectionId":-1,"tmdbId":8879},{"name":"Scream","year":1996,"posterUrl":"/library/metadata/1988/thumb/1599308599","imdbId":"","language":"en","overview":"A killer known as Ghostface begins killing off teenagers, and as the body count begins rising, one girl and her friends find themselves contemplating the 'rules' of horror films as they find themselves living in a real-life one.","moviesInCollection":[],"ratingKey":1988,"key":"/library/metadata/1988","collectionTitle":"","collectionId":-1,"tmdbId":4232},{"name":"Friday the 13th","year":1980,"posterUrl":"/library/metadata/945/thumb/1599308172","imdbId":"","language":"en","overview":"Camp counselors are stalked and murdered by an unknown assailant while trying to reopen a summer camp that was the site of a child's drowning.","moviesInCollection":[],"ratingKey":945,"key":"/library/metadata/945","collectionTitle":"","collectionId":-1,"tmdbId":4488},{"name":"Lilo & Stitch","year":2002,"posterUrl":"/library/metadata/1391/thumb/1599308339","imdbId":"","language":"en","overview":"As Stitch, a runaway genetic experiment from a faraway planet, wreaks havoc on the Hawaiian Islands, he becomes the mischievous adopted alien \"puppy\" of an independent little girl named Lilo and learns about loyalty, friendship, and 'ohana, the Hawaiian tradition of family.","moviesInCollection":[],"ratingKey":1391,"key":"/library/metadata/1391","collectionTitle":"","collectionId":-1,"tmdbId":11544},{"name":"Star Trek Into Darkness","year":2013,"posterUrl":"/library/metadata/2138/thumb/1599308666","imdbId":"","language":"en","overview":"When the crew of the Enterprise is called back home, they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for, leaving our world in a state of crisis. With a personal score to settle, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death, love will be challenged, friendships will be torn apart, and sacrifices must be made for the only family Kirk has left: his crew.","moviesInCollection":[],"ratingKey":2138,"key":"/library/metadata/2138","collectionTitle":"","collectionId":-1,"tmdbId":54138},{"name":"Resident Evil Vendetta","year":2017,"posterUrl":"/library/metadata/1890/thumb/1599308558","imdbId":"","language":"en","overview":"BSAA Chris Redfield enlists the help of government agent Leon S. Kennedy and Professor Rebecca Chambers from Alexander Institute of Biotechnology to stop a death merchant with a vengeance from spreading a deadly virus in New York.","moviesInCollection":[],"ratingKey":1890,"key":"/library/metadata/1890","collectionTitle":"","collectionId":-1,"tmdbId":400136},{"name":"Pocahontas","year":1995,"posterUrl":"/library/metadata/1763/thumb/1599308503","imdbId":"","language":"en","overview":"Pocahontas, daughter of a Native American tribe chief, falls in love with an English soldier as colonists invade 17th century Virginia.","moviesInCollection":[],"ratingKey":1763,"key":"/library/metadata/1763","collectionTitle":"","collectionId":-1,"tmdbId":10530},{"name":"The Descendants","year":2011,"posterUrl":"/library/metadata/39578/thumb/1599309086","imdbId":"","language":"en","overview":"With his wife Elizabeth on life support after a boating accident, Hawaiian land baron, Matt King takes his daughters on a trip from Oahu to Kauai to confront the young real estate broker, who was having an affair with Elizabeth before her misfortune.","moviesInCollection":[],"ratingKey":39578,"key":"/library/metadata/39578","collectionTitle":"","collectionId":-1,"tmdbId":65057},{"name":"Westworld","year":1973,"posterUrl":"/library/metadata/3125/thumb/1599309039","imdbId":"","language":"en","overview":"In a futuristic resort, wealthy patrons can visit recreations of different time periods and experience their wildest fantasies with life-like robots. But when Richard Benjamin opts for the wild west, he gets more than he bargained for when a gunslinger robot goes berserk.","moviesInCollection":[],"ratingKey":3125,"key":"/library/metadata/3125","collectionTitle":"","collectionId":-1,"tmdbId":2362},{"name":"Tucker and Dale vs. Evil","year":2010,"posterUrl":"/library/metadata/3015/thumb/1599309002","imdbId":"","language":"en","overview":"Two hillbillies are suspected of being killers by a group of paranoid college kids camping near the duo's West Virginian cabin. As the body count climbs, so does the fear and confusion as the college kids try to seek revenge against the pair.","moviesInCollection":[],"ratingKey":3015,"key":"/library/metadata/3015","collectionTitle":"","collectionId":-1,"tmdbId":46838},{"name":"D3 The Mighty Ducks","year":1996,"posterUrl":"/library/metadata/622/thumb/1599308053","imdbId":"","language":"en","overview":"The Ducks are offered scholarships at Eden Hall Academy but struggle with their new coach's methods and come under pressure from the board to retain their scholarships before their big game against the Varsity team.","moviesInCollection":[],"ratingKey":622,"key":"/library/metadata/622","collectionTitle":"","collectionId":-1,"tmdbId":10680},{"name":"Birdman","year":2014,"posterUrl":"/library/metadata/359/thumb/1599307958","imdbId":"","language":"en","overview":"A portrait of Robert, a troubled but poetic soul struggling with his purgatorial existence in a hackney scrapyard.","moviesInCollection":[],"ratingKey":359,"key":"/library/metadata/359","collectionTitle":"","collectionId":-1,"tmdbId":435092},{"name":"Red Dawn","year":1984,"posterUrl":"/library/metadata/1865/thumb/1599308547","imdbId":"","language":"en","overview":"It is the dawn of World War III. In mid-western America, a group of teenagers band together to defend their town—and their country—from invading Soviet forces.","moviesInCollection":[],"ratingKey":1865,"key":"/library/metadata/1865","collectionTitle":"","collectionId":-1,"tmdbId":1880},{"name":"Bad Ass","year":2012,"posterUrl":"/library/metadata/263/thumb/1599307924","imdbId":"","language":"en","overview":"Decorated Vietnam hero, Frank Vega returns home only to get shunned by society leaving him without a job or his high school sweetheart. It's not until forty years later when an incident on a commuter bus makes him a local hero where he's suddenly celebrated once again. But his good fortune suddenly turns for the worse when his best friend is murdered and the police aren't doing anything about it.","moviesInCollection":[],"ratingKey":263,"key":"/library/metadata/263","collectionTitle":"","collectionId":-1,"tmdbId":94380},{"name":"All I See Is You","year":2017,"posterUrl":"/library/metadata/160/thumb/1599307885","imdbId":"","language":"en","overview":"A blind woman's relationship with her husband changes when she regains her sight and discovers disturbing details about themselves.","moviesInCollection":[],"ratingKey":160,"key":"/library/metadata/160","collectionTitle":"","collectionId":-1,"tmdbId":345923},{"name":"BlacKkKlansman","year":2018,"posterUrl":"/library/metadata/370/thumb/1599307962","imdbId":"","language":"en","overview":"Colorado Springs, late 1970s. Ron Stallworth, an African American police officer, and Flip Zimmerman, his Jewish colleague, run an undercover operation to infiltrate the Ku Klux Klan.","moviesInCollection":[],"ratingKey":370,"key":"/library/metadata/370","collectionTitle":"","collectionId":-1,"tmdbId":487558},{"name":"Generation Iron 3","year":2018,"posterUrl":"/library/metadata/41155/thumb/1599309129","imdbId":"","language":"en","overview":"Traveling across the world including India, Brazil, Europe, Africa, Canada, and the USA - Generation Iron 3 will interview and follow bodybuilders, trainers, experts, and fans to determine what the universal ideal physique should look like. With so many divisions appearing within the bodybuilding leagues - what body type should be championed as the absolute best in the world?","moviesInCollection":[],"ratingKey":41155,"key":"/library/metadata/41155","collectionTitle":"","collectionId":-1,"tmdbId":561417},{"name":"Wallace & Gromit The Curse of the Were-Rabbit","year":2005,"posterUrl":"/library/metadata/3099/thumb/1599309030","imdbId":"","language":"en","overview":"Cheese-loving eccentric Wallace and his cunning canine pal, Gromit, investigate a mystery in Nick Park's animated adventure, in which the lovable inventor and his intrepid pup run a business ridding the town of garden pests. Using only humane methods that turn their home into a halfway house for evicted vermin, the pair stumble upon a mystery involving a voracious vegetarian monster that threatens to ruin the annual veggie-growing contest.","moviesInCollection":[],"ratingKey":3099,"key":"/library/metadata/3099","collectionTitle":"","collectionId":-1,"tmdbId":533},{"name":"The Devil All the Time","year":2020,"posterUrl":"/library/metadata/48350/thumb/1600865849","imdbId":"","language":"en","overview":"In Knockemstiff, Ohio and its neighboring backwoods, sinister characters converge around young Arvin Russell as he fights the evil forces that threaten him and his family.","moviesInCollection":[],"ratingKey":48350,"key":"/library/metadata/48350","collectionTitle":"","collectionId":-1,"tmdbId":499932},{"name":"Jack Ryan Shadow Recruit","year":2014,"posterUrl":"/library/metadata/1220/thumb/1599308278","imdbId":"","language":"en","overview":"Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack.","moviesInCollection":[],"ratingKey":1220,"key":"/library/metadata/1220","collectionTitle":"","collectionId":-1,"tmdbId":137094},{"name":"The Toybox","year":2018,"posterUrl":"/library/metadata/2867/thumb/1599308951","imdbId":"","language":"en","overview":"An estranged family take a trip to the desert in their used RV and become stranded and isolated in the scorching terrain. They soon learn their RV holds terrible, haunting secrets, and it starts killing them off one by one.","moviesInCollection":[],"ratingKey":2867,"key":"/library/metadata/2867","collectionTitle":"","collectionId":-1,"tmdbId":516784},{"name":"Friday the 13th","year":2009,"posterUrl":"/library/metadata/946/thumb/1599308173","imdbId":"","language":"en","overview":"Ignoring the warnings of the locals, a group of teenage camp counselors takes on the job of reopening Camp Crystal Lake — on Friday the 13th no less, and raise the ire of Jason Voorhees, a masked, homicidal maniac.","moviesInCollection":[],"ratingKey":946,"key":"/library/metadata/946","collectionTitle":"","collectionId":-1,"tmdbId":13207},{"name":"Warrior","year":2011,"posterUrl":"/library/metadata/41062/thumb/1599309119","imdbId":"","language":"en","overview":"The youngest son of an alcoholic former boxer returns home, where he's trained by his father for competition in a mixed martial arts tournament – a path that puts the fighter on a collision course with his estranged, older brother.","moviesInCollection":[],"ratingKey":41062,"key":"/library/metadata/41062","collectionTitle":"","collectionId":-1,"tmdbId":59440},{"name":"End of Days","year":1999,"posterUrl":"/library/metadata/818/thumb/1599308123","imdbId":"","language":"en","overview":"On 28 December 1999, the citizens of New York City are getting ready for the turn of the millennium. However, the Devil decides to crash the party by coming to the city, inhabiting a man's body, and searching for his chosen bride—a 20-year-old woman named Christine York. The world will end, and the only hope lies within an atheist named Jericho Cane.","moviesInCollection":[],"ratingKey":818,"key":"/library/metadata/818","collectionTitle":"","collectionId":-1,"tmdbId":9946},{"name":"Spider-Man 3","year":2007,"posterUrl":"/library/metadata/41160/thumb/1599309129","imdbId":"","language":"en","overview":"The seemingly invincible Spider-Man goes up against an all-new crop of villains—including the shape-shifting Sandman. While Spider-Man’s 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.","moviesInCollection":[],"ratingKey":41160,"key":"/library/metadata/41160","collectionTitle":"","collectionId":-1,"tmdbId":559},{"name":"Death Race","year":2008,"posterUrl":"/library/metadata/667/thumb/1599308069","imdbId":"","language":"en","overview":"Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.","moviesInCollection":[],"ratingKey":667,"key":"/library/metadata/667","collectionTitle":"","collectionId":-1,"tmdbId":10483},{"name":"The Addams Family","year":1991,"posterUrl":"/library/metadata/2280/thumb/1599308718","imdbId":"","language":"en","overview":"When an evil doctor finds out Uncle Fester has been missing for 25 years, he introduces a fake Fester in an attempt to get the Addams family's money. Wednesday has some doubts about the new uncle Fester, but the fake uncle adapts very well to the strange family.","moviesInCollection":[],"ratingKey":2280,"key":"/library/metadata/2280","collectionTitle":"","collectionId":-1,"tmdbId":2907},{"name":"All Nighter","year":2017,"posterUrl":"/library/metadata/161/thumb/1599307885","imdbId":"","language":"en","overview":"When a globe-trotting, workaholic father trying to visit his daughter on a last minute layover in Los Angeles discovers that she’s disappeared, he forces her awkward, nervous ex-boyfriend, still nursing a broken heart, to help him find her over the course of one increasingly crazy night.","moviesInCollection":[],"ratingKey":161,"key":"/library/metadata/161","collectionTitle":"","collectionId":-1,"tmdbId":352501},{"name":"The Chronicles of Narnia The Voyage of the Dawn Treader","year":2010,"posterUrl":"/library/metadata/2361/thumb/1599308745","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2361,"key":"/library/metadata/2361","collectionTitle":"","collectionId":-1,"tmdbId":10140},{"name":"D2 The Mighty Ducks","year":1994,"posterUrl":"/library/metadata/39742/thumb/1599309093","imdbId":"","language":"en","overview":"After Gordon Bombay's hockey comeback is cut short he is named coach of Team USA Hockey for the Junior Goodwill Games. Bombay reunites the Mighty Ducks and introduces a few new players, however, he finds himself distracted by his newfound fame and must regather if the Ducks are to defeat tournament favourites Iceland.","moviesInCollection":[],"ratingKey":39742,"key":"/library/metadata/39742","collectionTitle":"","collectionId":-1,"tmdbId":11164},{"name":"Eye in the Sky","year":2016,"posterUrl":"/library/metadata/852/thumb/1599308135","imdbId":"","language":"en","overview":"A UK-based military officer in command of a top secret drone operation to capture terrorists in Kenya discovers the targets are planning a suicide bombing and the mission escalates from “capture” to “kill.” As American pilot Steve Watts is about to engage, a nine-year old girl enters the kill zone, triggering an international dispute reaching the highest levels of US and British government over the moral, political, and personal implications of modern warfare.","moviesInCollection":[],"ratingKey":852,"key":"/library/metadata/852","collectionTitle":"","collectionId":-1,"tmdbId":333352},{"name":"Ouija Seance The Final Game","year":2018,"posterUrl":"/library/metadata/1672/thumb/1599308465","imdbId":"","language":"en","overview":"Sarah and her friends decide to spend the weekend at an old villa Sarah mysteriously inherited. After finding a Ouija Board in the attic, Sarah and her friends unknowingly awaken an evil force connected to the villa’s hidden secrets. To fight the unimaginable horror they will have to face their darkest fears and worst nightmares.","moviesInCollection":[],"ratingKey":1672,"key":"/library/metadata/1672","collectionTitle":"","collectionId":-1,"tmdbId":533527},{"name":"Robin Hood","year":2018,"posterUrl":"/library/metadata/1918/thumb/1599308571","imdbId":"","language":"en","overview":"A war-hardened Crusader and his Moorish commander mount an audacious revolt against the corrupt English crown.","moviesInCollection":[],"ratingKey":1918,"key":"/library/metadata/1918","collectionTitle":"","collectionId":-1,"tmdbId":375588},{"name":"Idiocracy","year":2006,"posterUrl":"/library/metadata/1174/thumb/1599308259","imdbId":"","language":"en","overview":"To test its top-secret Human Hibernation Project, the Pentagon picks the most average Americans it can find - an Army private and a prostitute - and sends them to the year 2505 after a series of freak events. But when they arrive, they find a civilization so dumbed-down that they're the smartest people around.","moviesInCollection":[],"ratingKey":1174,"key":"/library/metadata/1174","collectionTitle":"","collectionId":-1,"tmdbId":7512},{"name":"Pandora","year":2017,"posterUrl":"/library/metadata/1694/thumb/1599308475","imdbId":"","language":"en","overview":"When an earthquake hits a Korean village housing a run-down nuclear power plant, a man risks his life to save the country from imminent disaster.","moviesInCollection":[],"ratingKey":1694,"key":"/library/metadata/1694","collectionTitle":"","collectionId":-1,"tmdbId":429450},{"name":"The Zero Theorem","year":2014,"posterUrl":"/library/metadata/2909/thumb/1599308967","imdbId":"","language":"en","overview":"A computer hacker's goal to discover the reason for human existence continually finds his work interrupted thanks to the Management; this time, they send a teenager and lusty love interest to distract him.","moviesInCollection":[],"ratingKey":2909,"key":"/library/metadata/2909","collectionTitle":"","collectionId":-1,"tmdbId":157834},{"name":"Men in Black II","year":2002,"posterUrl":"/library/metadata/1497/thumb/1599308387","imdbId":"","language":"en","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 – 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 – 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 – to reunite with the MIB before the earth submits to ultimate destruction.","moviesInCollection":[],"ratingKey":1497,"key":"/library/metadata/1497","collectionTitle":"","collectionId":-1,"tmdbId":608},{"name":"Junior","year":1994,"posterUrl":"/library/metadata/1271/thumb/1599308298","imdbId":"","language":"en","overview":"As part of a fertility research project, a male scientist agrees to carry a pregnancy in his own body.","moviesInCollection":[],"ratingKey":1271,"key":"/library/metadata/1271","collectionTitle":"","collectionId":-1,"tmdbId":6280},{"name":"Robin Hood","year":2010,"posterUrl":"/library/metadata/1917/thumb/1599308570","imdbId":"","language":"en","overview":"When soldier Robin happens upon the dying Robert of Loxley, he promises to return the man's sword to his family in Nottingham. There, he assumes Robert's identity; romances his widow, Marion; and draws the ire of the town's sheriff and King John's henchman, Godfrey.","moviesInCollection":[],"ratingKey":1917,"key":"/library/metadata/1917","collectionTitle":"","collectionId":-1,"tmdbId":20662},{"name":"ParaNorman","year":2012,"posterUrl":"/library/metadata/1698/thumb/1599308477","imdbId":"","language":"en","overview":"In the town of Blithe Hollow, Norman Babcock can speak to the dead, but no one other than his eccentric new friend believes his ability is real. One day, Norman's eccentric uncle tells him of a ritual he must perform to protect the town from a curse cast by a witch centuries ago.","moviesInCollection":[],"ratingKey":1698,"key":"/library/metadata/1698","collectionTitle":"","collectionId":-1,"tmdbId":77174},{"name":"Anchorman The Legend of Ron Burgundy","year":2004,"posterUrl":"/library/metadata/196/thumb/1599307899","imdbId":"","language":"en","overview":"It's the 1970s, and San Diego super-sexist anchorman Ron Burgundy is the top dog in local TV, but that's all about to change when ambitious reporter Veronica Corningstone arrives as a new employee at his station.","moviesInCollection":[],"ratingKey":196,"key":"/library/metadata/196","collectionTitle":"","collectionId":-1,"tmdbId":8699},{"name":"Hot Tub Time Machine","year":2010,"posterUrl":"/library/metadata/1128/thumb/1599308243","imdbId":"","language":"en","overview":"A malfunctioning time machine at a ski resort takes a man back to 1986 with his two friends and nephew, where they must relive a fateful night and not change anything to make sure the nephew is born.","moviesInCollection":[],"ratingKey":1128,"key":"/library/metadata/1128","collectionTitle":"","collectionId":-1,"tmdbId":23048},{"name":"Ben-Hur","year":2016,"posterUrl":"/library/metadata/334/thumb/1599307948","imdbId":"","language":"en","overview":"A falsely accused nobleman survives years of slavery to take vengeance on his best friend who betrayed him.","moviesInCollection":[],"ratingKey":334,"key":"/library/metadata/334","collectionTitle":"","collectionId":-1,"tmdbId":271969},{"name":"The Intruder","year":2019,"posterUrl":"/library/metadata/2589/thumb/1599308832","imdbId":"","language":"en","overview":"A psychological thriller about a young married couple who buys a beautiful Napa Valley house on several acres of land only to find that the man they bought it from refuses to let go of the property.","moviesInCollection":[],"ratingKey":2589,"key":"/library/metadata/2589","collectionTitle":"","collectionId":-1,"tmdbId":524247},{"name":"To Sleep with Anger","year":1990,"posterUrl":"/library/metadata/2947/thumb/1599308979","imdbId":"","language":"en","overview":"An enigmatic drifter from the South comes to visit an old acquaintance who now lives in South-Central LA.","moviesInCollection":[],"ratingKey":2947,"key":"/library/metadata/2947","collectionTitle":"","collectionId":-1,"tmdbId":94725},{"name":"V/H/S/2","year":2013,"posterUrl":"/library/metadata/3068/thumb/1599309020","imdbId":"","language":"en","overview":"Inside a darkened house looms a column of TVs littered with VHS tapes, a pagan shrine to forgotten analog gods. The screens crackle and pop endlessly with monochrome vistas of static white noise permeating the brain and fogging concentration. But you must fight the urge to relax: this is no mere movie night. Those obsolete spools contain more than just magnetic tape. They are imprinted with the very soul of evil.","moviesInCollection":[],"ratingKey":3068,"key":"/library/metadata/3068","collectionTitle":"","collectionId":-1,"tmdbId":159117},{"name":"Yoga Hosers","year":2016,"posterUrl":"/library/metadata/3188/thumb/1599309060","imdbId":"","language":"en","overview":"Two teenage yoga enthusiasts team up with a legendary man-hunter to battle with an ancient evil presence that is threatening their major party plans.","moviesInCollection":[],"ratingKey":3188,"key":"/library/metadata/3188","collectionTitle":"","collectionId":-1,"tmdbId":290825},{"name":"Free State of Jones","year":2016,"posterUrl":"/library/metadata/943/thumb/1599308172","imdbId":"","language":"en","overview":"In 1863, Mississippi farmer Newt Knight serves as a medic for the Confederate Army. Opposed to slavery, Knight would rather help the wounded than fight the Union. After his nephew dies in battle, Newt returns home to Jones County to safeguard his family but is soon branded an outlaw deserter. Forced to flee, he finds refuge with a group of runaway slaves hiding out in the swamps. Forging an alliance with the slaves and other farmers, Knight leads a rebellion that would forever change history.","moviesInCollection":[],"ratingKey":943,"key":"/library/metadata/943","collectionTitle":"","collectionId":-1,"tmdbId":316152},{"name":"High Voltage","year":2018,"posterUrl":"/library/metadata/1109/thumb/1599308236","imdbId":"","language":"en","overview":"An emerging rock band, managed by industry vet Jimmy Kleen, strike a deal with record executive Rick Roland. Things take a sinister turn when the band's lead singer, Rachel, and her mother Barb are struck by lightning and killed. Rachel is brought back to life, but she is different than before. Lightning courses through her veins and she uses her new strange electrical powers to drain the life from men, turning it into electrifying stage performances, but just how far are the band willing to go to make it.","moviesInCollection":[],"ratingKey":1109,"key":"/library/metadata/1109","collectionTitle":"","collectionId":-1,"tmdbId":550172},{"name":"Mission Impossible - Ghost Protocol","year":2011,"posterUrl":"/library/metadata/1521/thumb/1599308398","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1521,"key":"/library/metadata/1521","collectionTitle":"","collectionId":-1,"tmdbId":56292},{"name":"Pokémon the Movie The Power of Us","year":2018,"posterUrl":"/library/metadata/1775/thumb/1599308508","imdbId":"","language":"en","overview":"A young athlete whose running days might be behind her, a compulsive liar, a shy researcher, a bitter old woman, and a little girl with a big secret—the only thing they have in common is the annual Wind Festival in Fula City. The festival celebrates the Legendary Pokémon Lugia, who brings the wind that powers this seaside city. When a series of threats endangers not just the festival, but all the people and Pokémon of Fula City, it’ll take more than just Satoshi and Pikachu to save the day! Can everyone put aside their differences and work together—or will it all end in destruction?","moviesInCollection":[],"ratingKey":1775,"key":"/library/metadata/1775","collectionTitle":"","collectionId":-1,"tmdbId":494407},{"name":"The Death & Life of John F. Donovan","year":2019,"posterUrl":"/library/metadata/2402/thumb/1599308760","imdbId":"","language":"en","overview":"A decade after the death of an American TV star, a young actor reminisces about the written correspondence he once shared with the former, as well as the impact those letters had on both their lives.","moviesInCollection":[],"ratingKey":2402,"key":"/library/metadata/2402","collectionTitle":"","collectionId":-1,"tmdbId":291984},{"name":"Spanglish","year":2004,"posterUrl":"/library/metadata/2101/thumb/1599308650","imdbId":"","language":"en","overview":"Mexican immigrant and single mother Flor Moreno finds housekeeping work with Deborah and John Clasky, a well-off couple with two children of their own. When Flor admits she can't handle the schedule because of her daughter, Cristina, Deborah decides they should move into the Clasky home. Cultures clash and tensions run high as Flor and the Claskys struggle to share space while raising their children on their own, and very different, terms.","moviesInCollection":[],"ratingKey":2101,"key":"/library/metadata/2101","collectionTitle":"","collectionId":-1,"tmdbId":2539},{"name":"Death Race 2","year":2011,"posterUrl":"/library/metadata/668/thumb/1599308069","imdbId":"","language":"en","overview":"In the world's most dangerous prison, a new game is born: Death Race. The rules of this adrenaline-fueled blood sport are simple, drive or die. When repentant convict Carl Lucas discovers there's a price on his head, his only hope is to survive a twisted race against an army of hardened criminals and tricked-out cars.","moviesInCollection":[],"ratingKey":668,"key":"/library/metadata/668","collectionTitle":"","collectionId":-1,"tmdbId":51620},{"name":"My Big Fat Greek Wedding","year":2002,"posterUrl":"/library/metadata/1572/thumb/1599308421","imdbId":"","language":"en","overview":"A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.","moviesInCollection":[],"ratingKey":1572,"key":"/library/metadata/1572","collectionTitle":"","collectionId":-1,"tmdbId":8346},{"name":"Batman Gotham Knight","year":2008,"posterUrl":"/library/metadata/293/thumb/1599307934","imdbId":"","language":"en","overview":"Explore Bruce Wayne's transition from his beginning as a tormented vigilantee to The Dark Knight of a crumbling metropolis with six distinct chapters but intended to be viewed as a whole.","moviesInCollection":[],"ratingKey":293,"key":"/library/metadata/293","collectionTitle":"","collectionId":-1,"tmdbId":13851},{"name":"Goosebumps 2 Haunted Halloween","year":2018,"posterUrl":"/library/metadata/1021/thumb/1599308201","imdbId":"","language":"en","overview":"Two boys face an onslaught from witches, monsters, ghouls and a talking dummy after they discover a mysterious book by author R. L. Stine.","moviesInCollection":[],"ratingKey":1021,"key":"/library/metadata/1021","collectionTitle":"","collectionId":-1,"tmdbId":442062},{"name":"Spider-Man","year":2002,"posterUrl":"/library/metadata/41104/thumb/1599309126","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41104,"key":"/library/metadata/41104","collectionTitle":"","collectionId":-1,"tmdbId":557},{"name":"The Devil's Advocate","year":1997,"posterUrl":"/library/metadata/2417/thumb/1599308766","imdbId":"","language":"en","overview":"A hotshot lawyer gets more than he bargained for when he learns his new boss is Lucifer himself.","moviesInCollection":[],"ratingKey":2417,"key":"/library/metadata/2417","collectionTitle":"","collectionId":-1,"tmdbId":1813},{"name":"Vanilla Sky","year":2001,"posterUrl":"/library/metadata/3074/thumb/1599309023","imdbId":"","language":"en","overview":"David Aames has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia, his face is horribly disfigured in a car accident. That's just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.","moviesInCollection":[],"ratingKey":3074,"key":"/library/metadata/3074","collectionTitle":"","collectionId":-1,"tmdbId":1903},{"name":"Brutal","year":2007,"posterUrl":"/library/metadata/437/thumb/1599307987","imdbId":"","language":"en","overview":"In a small town, a serial killer mutilates the bodies of his victims and leaves a flower on the corpses. The sheriff and his wife/deputy investigate the murders while trying to keep from alarming the citizens. They team up with an autistic hound dog trainer to try to track the killer.","moviesInCollection":[],"ratingKey":437,"key":"/library/metadata/437","collectionTitle":"","collectionId":-1,"tmdbId":28791},{"name":"Friday the 13th A New Beginning","year":1985,"posterUrl":"/library/metadata/947/thumb/1599308173","imdbId":"","language":"en","overview":"Homicidal maniac Jason returns from the grave to cause more bloody mayhem. Young Tommy may have escaped from Crystal Lake, but he’s still haunted by the gruesome events that happened there. When gory murders start happening at the secluded halfway house for troubled teens where he now lives, it seems like his nightmarish nemesis, Jason, is back for more sadistic slaughters. But as things spiral out of control and the body count rises, Tommy begins to wonder if he’s become the killer he fears most.","moviesInCollection":[],"ratingKey":947,"key":"/library/metadata/947","collectionTitle":"","collectionId":-1,"tmdbId":9731},{"name":"Stargate Continuum","year":2008,"posterUrl":"/library/metadata/2154/thumb/1599308673","imdbId":"","language":"en","overview":"Ba'al travels back in time and prevents the Stargate program from being started. SG-1 must somehow restore history.","moviesInCollection":[],"ratingKey":2154,"key":"/library/metadata/2154","collectionTitle":"","collectionId":-1,"tmdbId":12914},{"name":"Prefontaine","year":1997,"posterUrl":"/library/metadata/1802/thumb/1599308519","imdbId":"","language":"en","overview":"It's the true-life story of legendary track star Steve Prefontaine, the exciting and sometimes controversial \"James Dean of Track,\" whose spirit captured the heart of the nation! Cocky, charismatic, and tough, \"Pre\" was a running rebel who defied rules, pushed limits ... and smashed records ...","moviesInCollection":[],"ratingKey":1802,"key":"/library/metadata/1802","collectionTitle":"","collectionId":-1,"tmdbId":26306},{"name":"Unbroken","year":2014,"posterUrl":"/library/metadata/3036/thumb/1599309009","imdbId":"","language":"en","overview":"A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.","moviesInCollection":[],"ratingKey":3036,"key":"/library/metadata/3036","collectionTitle":"","collectionId":-1,"tmdbId":227306},{"name":"Killers Anonymous","year":2019,"posterUrl":"/library/metadata/1305/thumb/1599308308","imdbId":"","language":"en","overview":"A failed attempt to murder a Senator is connected to a group meeting secretly to discuss their darkest urges—to take lives.","moviesInCollection":[],"ratingKey":1305,"key":"/library/metadata/1305","collectionTitle":"","collectionId":-1,"tmdbId":535265},{"name":"Two-Lane Blacktop","year":1971,"posterUrl":"/library/metadata/3030/thumb/1599309007","imdbId":"","language":"en","overview":"A driver and a mechanic travel around the United States hopping from drag strip to drag strip in a 1955 Chevy Bel-Air coupe. They race for money, betting with their competitors. The pair gain a young and talkative female stowaway. Along the way they unintentionally attract a well-to-do drifter driving a new Pontiac GTO. This older man, looking for attention, antagonizes their efforts.","moviesInCollection":[],"ratingKey":3030,"key":"/library/metadata/3030","collectionTitle":"","collectionId":-1,"tmdbId":27236},{"name":"For a Few Dollars More","year":1967,"posterUrl":"/library/metadata/926/thumb/1599308163","imdbId":"","language":"en","overview":"Two bounty hunters are in pursuit of \"El Indio,\" one of the most wanted fugitives in the western territories, and his gang.","moviesInCollection":[],"ratingKey":926,"key":"/library/metadata/926","collectionTitle":"","collectionId":-1,"tmdbId":938},{"name":"Ben-Hur","year":1959,"posterUrl":"/library/metadata/333/thumb/1599307948","imdbId":"","language":"en","overview":"Judah Ben-Hur, a Palestinian Jew, is battling the Roman empire at the time of Christ. His actions send him and his family into slavery, but an inspirational encounter with Jesus changes everything. He finally meets his rival in a justly famous chariot race and rescues his suffering family.","moviesInCollection":[],"ratingKey":333,"key":"/library/metadata/333","collectionTitle":"","collectionId":-1,"tmdbId":665},{"name":"Cockneys vs Zombies","year":2013,"posterUrl":"/library/metadata/535/thumb/1599308023","imdbId":"","language":"en","overview":"A gang of bank robbers team up with the residents of an old people's home to try to survive a zombie outbreak.","moviesInCollection":[],"ratingKey":535,"key":"/library/metadata/535","collectionTitle":"","collectionId":-1,"tmdbId":114606},{"name":"The Addams Family","year":2019,"posterUrl":"/library/metadata/39774/thumb/1599309095","imdbId":"","language":"en","overview":"The Addams family's lives begin to unravel when they face-off against a treacherous, greedy crafty reality-TV host while also preparing for their extended family to arrive for a major celebration.","moviesInCollection":[],"ratingKey":39774,"key":"/library/metadata/39774","collectionTitle":"","collectionId":-1,"tmdbId":481084},{"name":"Charlie St. Cloud","year":2010,"posterUrl":"/library/metadata/495/thumb/1599308009","imdbId":"","language":"en","overview":"Accomplished sailor Charlie St. Cloud has the adoration of his mother Claire and his little brother Sam, as well as a college scholarship that will lead him far from his sleepy Pacific Northwest hometown. But his bright future is cut short when a tragedy strikes and takes his dreams with it. After his high-school classmate Tess returns home unexpectedly, Charlie grows torn between honoring a promise he made four years earlier and moving forward with newfound love. And as he finds the courage to let go of the past for good, Charlie discovers the soul most worth saving is his own.","moviesInCollection":[],"ratingKey":495,"key":"/library/metadata/495","collectionTitle":"","collectionId":-1,"tmdbId":37950},{"name":"Final Destination","year":2000,"posterUrl":"/library/metadata/890/thumb/1599308150","imdbId":"","language":"en","overview":"After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.","moviesInCollection":[],"ratingKey":890,"key":"/library/metadata/890","collectionTitle":"","collectionId":-1,"tmdbId":9532},{"name":"The Swing of Things","year":2020,"posterUrl":"/library/metadata/47468/thumb/1599309184","imdbId":"","language":"en","overview":"Bad weather diverts Tom and Laura Jane from their Bahamas dream wedding. So, with friends, parents, and Laura's protective big brother, they land at a mystery hotel in Jamaica—which turns out to be a swinger's resort! Can the innocent couple avoid the nonstop booze, weed, naked bodies, and lusty dolphins long enough to make it to the altar?","moviesInCollection":[],"ratingKey":47468,"key":"/library/metadata/47468","collectionTitle":"","collectionId":-1,"tmdbId":716706},{"name":"Safety Not Guaranteed","year":2012,"posterUrl":"/library/metadata/1954/thumb/1599308587","imdbId":"","language":"en","overview":"Three magazine employees head out on an assignment to interview a guy who placed a classified ad seeking a companion for time travel.","moviesInCollection":[],"ratingKey":1954,"key":"/library/metadata/1954","collectionTitle":"","collectionId":-1,"tmdbId":84332},{"name":"The Last Ride","year":2012,"posterUrl":"/library/metadata/2621/thumb/1599308844","imdbId":"","language":"en","overview":"The final days of Hank Williams.","moviesInCollection":[],"ratingKey":2621,"key":"/library/metadata/2621","collectionTitle":"","collectionId":-1,"tmdbId":75300},{"name":"The Osiris Child","year":2016,"posterUrl":"/library/metadata/1980/thumb/1599308596","imdbId":"","language":"en","overview":"Set in the future in a time of interplanetary colonization, an unlikely pair race against an impending global crisis and are confronted by the monsters that live inside us all.","moviesInCollection":[],"ratingKey":1980,"key":"/library/metadata/1980","collectionTitle":"","collectionId":-1,"tmdbId":354282},{"name":"Honor Up","year":2018,"posterUrl":"/library/metadata/1123/thumb/1599308241","imdbId":"","language":"en","overview":"The film -- executive produced by rapper Kanye West -- follows character OG, played by Damon Dash, in a saga that flips between his dedication to his family and honoring his street code all at the same time.","moviesInCollection":[],"ratingKey":1123,"key":"/library/metadata/1123","collectionTitle":"","collectionId":-1,"tmdbId":492684},{"name":"Robin Hood","year":1973,"posterUrl":"/library/metadata/1916/thumb/1599308570","imdbId":"","language":"en","overview":"With King Richard off to the Crusades, Prince John and his slithering minion, Sir Hiss, set about taxing Nottingham's citizens with support from the corrupt sheriff - and staunch opposition by the wily Robin Hood and his band of merry men.","moviesInCollection":[],"ratingKey":1916,"key":"/library/metadata/1916","collectionTitle":"","collectionId":-1,"tmdbId":11886},{"name":"Spies in Disguise","year":2019,"posterUrl":"/library/metadata/2115/thumb/1599308655","imdbId":"","language":"en","overview":"Super spy Lance Sterling and scientist Walter Beckett are almost exact opposites. Lance is smooth, suave and debonair. Walter is… not. But what Walter lacks in social skills he makes up for in smarts and invention, creating the awesome gadgets Lance uses on his epic missions. But when events take an unexpected turn, Walter and Lance suddenly have to rely on each other in a whole new way.","moviesInCollection":[],"ratingKey":2115,"key":"/library/metadata/2115","collectionTitle":"","collectionId":-1,"tmdbId":431693},{"name":"Apollo 11","year":2019,"posterUrl":"/library/metadata/211/thumb/1599307905","imdbId":"","language":"en","overview":"A look at the Apollo 11 mission to land on the moon led by commander Neil Armstrong and pilot Buzz Aldrin.","moviesInCollection":[],"ratingKey":211,"key":"/library/metadata/211","collectionTitle":"","collectionId":-1,"tmdbId":549559},{"name":"Rampage","year":2018,"posterUrl":"/library/metadata/1846/thumb/1599308538","imdbId":"","language":"en","overview":"Primatologist Davis Okoye shares an unshakable bond with George, the extraordinarily intelligent, silverback gorilla who has been in his care since birth. But a rogue genetic experiment gone awry mutates this gentle ape into a raging creature of enormous size. To make matters worse, it’s soon discovered there are other similarly altered animals. As these newly created alpha predators tear across North America, destroying everything in their path, Okoye teams with a discredited genetic engineer to secure an antidote, fighting his way through an ever-changing battlefield, not only to halt a global catastrophe but to save the fearsome creature that was once his friend.","moviesInCollection":[],"ratingKey":1846,"key":"/library/metadata/1846","collectionTitle":"","collectionId":-1,"tmdbId":427641},{"name":"The King's Speech","year":2010,"posterUrl":"/library/metadata/2610/thumb/1599308839","imdbId":"","language":"en","overview":"The King's Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.","moviesInCollection":[],"ratingKey":2610,"key":"/library/metadata/2610","collectionTitle":"","collectionId":-1,"tmdbId":45269},{"name":"Street Fighter The Legend of Chun-Li","year":2009,"posterUrl":"/library/metadata/2178/thumb/1599308682","imdbId":"","language":"en","overview":"When a teenager, Chun-Li witnesses the kidnapping of her father by wealthy crime lord M. Bison. When she grows up, she goes into a quest for vengeance and becomes the famous crime-fighter of the Street Fighter universe.","moviesInCollection":[],"ratingKey":2178,"key":"/library/metadata/2178","collectionTitle":"","collectionId":-1,"tmdbId":15268},{"name":"The Face of an Angel","year":2015,"posterUrl":"/library/metadata/2449/thumb/1599308779","imdbId":"","language":"en","overview":"Both a journalist and a documentary filmmaker chase the story of a murder and its prime suspect.","moviesInCollection":[],"ratingKey":2449,"key":"/library/metadata/2449","collectionTitle":"","collectionId":-1,"tmdbId":254024},{"name":"The Descent","year":2006,"posterUrl":"/library/metadata/2413/thumb/1599308764","imdbId":"","language":"en","overview":"After a tragic accident, six friends reunite for a caving expedition. Their adventure soon goes horribly wrong when a collapse traps them deep underground and they find themselves pursued by bloodthirsty creatures. As their friendships deteriorate, they find themselves in a desperate struggle to survive the creatures and each other.","moviesInCollection":[],"ratingKey":2413,"key":"/library/metadata/2413","collectionTitle":"","collectionId":-1,"tmdbId":9392},{"name":"Gran Torino","year":2008,"posterUrl":"/library/metadata/1026/thumb/1599308203","imdbId":"","language":"en","overview":"Widower Walt Kowalski is a grumpy, prejudiced, tough-minded, unhappy, old, Korean War veteran who can't get along with either his kids or his neighbours. His prize possession is a 1972 Gran Torino he keeps in mint condition. When his neighbour, Thao—a young Hmong teenager under pressure from his gang member cousin—tries to steal his Gran Torino, Walt sets out to reform the youth and takes steps to protect Thao and his family from the gangs that infest their neighborhood.","moviesInCollection":[],"ratingKey":1026,"key":"/library/metadata/1026","collectionTitle":"","collectionId":-1,"tmdbId":13223},{"name":"Billy Madison","year":1995,"posterUrl":"/library/metadata/358/thumb/1599307958","imdbId":"","language":"en","overview":"Billy Madison is the 27 year-old son of Bryan Madison, a very rich man who has made his living in the hotel industry. Billy stands to inherit his father's empire but only if he can make it through all 12 grades, 2 weeks per grade, to prove that he has what it takes to run the family business.","moviesInCollection":[],"ratingKey":358,"key":"/library/metadata/358","collectionTitle":"","collectionId":-1,"tmdbId":11017},{"name":"Dark Phoenix","year":2019,"posterUrl":"/library/metadata/636/thumb/1599308058","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":636,"key":"/library/metadata/636","collectionTitle":"","collectionId":-1,"tmdbId":320288},{"name":"Rampage","year":2009,"posterUrl":"/library/metadata/1845/thumb/1599308538","imdbId":"","language":"en","overview":"The boredom of small town life is eating Bill Williamson alive. Feeling constrained and claustrophobic in the meaningless drudgery of everyday life and helpless against overwhelming global dissolution, Bill begins a descent into madness. His shockingly violent plan will shake the very foundations of society by painting the streets red with blood.","moviesInCollection":[],"ratingKey":1845,"key":"/library/metadata/1845","collectionTitle":"","collectionId":-1,"tmdbId":38780},{"name":"Hell or High Water","year":2016,"posterUrl":"/library/metadata/1085/thumb/1599308227","imdbId":"","language":"en","overview":"A divorced dad and his ex-con brother resort to a desperate scheme in order to save their family's farm in West Texas.","moviesInCollection":[],"ratingKey":1085,"key":"/library/metadata/1085","collectionTitle":"","collectionId":-1,"tmdbId":338766},{"name":"SuperFly","year":2018,"posterUrl":"/library/metadata/2205/thumb/1599308691","imdbId":"","language":"en","overview":"Career criminal Youngblood Priest wants out of the Atlanta drug scene, but as he ramps up sales, one little slip up threatens to bring the whole operation down before he can make his exit.","moviesInCollection":[],"ratingKey":2205,"key":"/library/metadata/2205","collectionTitle":"","collectionId":-1,"tmdbId":500475},{"name":"The Campaign","year":2012,"posterUrl":"/library/metadata/2349/thumb/1599308741","imdbId":"","language":"en","overview":"Two rival politicians compete to win an election to represent their small North Carolina congressional district in the United States House of Representatives.","moviesInCollection":[],"ratingKey":2349,"key":"/library/metadata/2349","collectionTitle":"","collectionId":-1,"tmdbId":77953},{"name":"The Enforcer","year":1976,"posterUrl":"/library/metadata/2436/thumb/1599308773","imdbId":"","language":"en","overview":"Dirty Harry Callahan returns again, this time saddled with a rookie female partner. Together, they must stop a terrorist group consisting of angry Vietnam veterans.","moviesInCollection":[],"ratingKey":2436,"key":"/library/metadata/2436","collectionTitle":"","collectionId":-1,"tmdbId":10649},{"name":"The Passion of the Christ","year":2004,"posterUrl":"/library/metadata/39459/thumb/1599309084","imdbId":"","language":"en","overview":"A graphic portrayal of the last twelve hours of Jesus of Nazareth's life.","moviesInCollection":[],"ratingKey":39459,"key":"/library/metadata/39459","collectionTitle":"","collectionId":-1,"tmdbId":615},{"name":"LEGO DC Super Hero Girls Brain Drain","year":2017,"posterUrl":"/library/metadata/1359/thumb/1599308328","imdbId":"","language":"en","overview":"When Supergirl, Wonder Woman, Batgirl, Bumblebee and Katana suddenly realize they cannot remember a single moment from their Monday at Super Hero High, the young DC Super Heroes spring into sleuthing action! Suspecting foul-play, they band together to retrace their steps and uncover the mystery of who exactly stole their memories – and what nefarious plan might be afoot?","moviesInCollection":[],"ratingKey":1359,"key":"/library/metadata/1359","collectionTitle":"","collectionId":-1,"tmdbId":460135},{"name":"The Evil Within","year":2017,"posterUrl":"/library/metadata/2441/thumb/1599308775","imdbId":"","language":"en","overview":"The sadistic tale of a lonely, mentally handicapped boy who befriends his reflection in an antique mirror. This demonic creature orders him to go on a murderous rampage to kill the people he loves most.","moviesInCollection":[],"ratingKey":2441,"key":"/library/metadata/2441","collectionTitle":"","collectionId":-1,"tmdbId":444193},{"name":"The Man Who Killed Hitler and Then the Bigfoot","year":2018,"posterUrl":"/library/metadata/2667/thumb/1599308864","imdbId":"","language":"en","overview":"Decades after serving in WWII and assassinating Adolf Hitler, a legendary American war veteran must now hunt down the fabled Bigfoot.","moviesInCollection":[],"ratingKey":2667,"key":"/library/metadata/2667","collectionTitle":"","collectionId":-1,"tmdbId":530081},{"name":"Flight","year":2012,"posterUrl":"/library/metadata/919/thumb/1599308160","imdbId":"","language":"en","overview":"Commercial airline pilot Whip Whitaker has a problem with drugs and alcohol, though so far he's managed to complete his flights safely. His luck runs out when a disastrous mechanical malfunction sends his plane hurtling toward the ground. Whip pulls off a miraculous crash-landing that results in only six lives lost. Shaken to the core, Whip vows to get sober -- but when the crash investigation exposes his addiction, he finds himself in an even worse situation.","moviesInCollection":[],"ratingKey":919,"key":"/library/metadata/919","collectionTitle":"","collectionId":-1,"tmdbId":87502},{"name":"A Madea Family Funeral","year":2019,"posterUrl":"/library/metadata/71/thumb/1599307850","imdbId":"","language":"en","overview":"A joyous family reunion becomes a hilarious nightmare as Madea and the crew travel to backwoods Georgia, where they find themselves unexpectedly planning a funeral that might unveil unpleasant family secrets.","moviesInCollection":[],"ratingKey":71,"key":"/library/metadata/71","collectionTitle":"","collectionId":-1,"tmdbId":464504},{"name":"The Lord of the Rings The Two Towers","year":2002,"posterUrl":"/library/metadata/2654/thumb/1599308858","imdbId":"","language":"en","overview":"Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.","moviesInCollection":[],"ratingKey":2654,"key":"/library/metadata/2654","collectionTitle":"","collectionId":-1,"tmdbId":121},{"name":"Up","year":2009,"posterUrl":"/library/metadata/3060/thumb/1599309017","imdbId":"","language":"en","overview":"Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78, life seems to have passed him by, until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.","moviesInCollection":[],"ratingKey":3060,"key":"/library/metadata/3060","collectionTitle":"","collectionId":-1,"tmdbId":14160},{"name":"Why Him?","year":2017,"posterUrl":"/library/metadata/3143/thumb/1599309046","imdbId":"","language":"en","overview":"A dad forms a bitter rivalry with his daughter's young rich boyfriend.","moviesInCollection":[],"ratingKey":3143,"key":"/library/metadata/3143","collectionTitle":"","collectionId":-1,"tmdbId":356305},{"name":"Eraser","year":1996,"posterUrl":"/library/metadata/829/thumb/1599308126","imdbId":"","language":"en","overview":"U.S. Marshall John Kruger erases the identities of people enrolled in the Witness Protection Program. His current assignment is to protect Lee Cullen, who's uncovered evidence that the weapons manufacturer she works for has been selling to terrorist groups. When Kruger discovers that there's a corrupt agent within the program, he must guard his own life while trying to protect Lee's.","moviesInCollection":[],"ratingKey":829,"key":"/library/metadata/829","collectionTitle":"","collectionId":-1,"tmdbId":9268},{"name":"Citizen Kane","year":1941,"posterUrl":"/library/metadata/518/thumb/1599308017","imdbId":"","language":"en","overview":"Newspaper magnate, Charles Foster Kane is taken from his mother as a boy and made the ward of a rich industrialist. As a result, every well-meaning, tyrannical or self-destructive move he makes for the rest of his life appears in some way to be a reaction to that deeply wounding event.","moviesInCollection":[],"ratingKey":518,"key":"/library/metadata/518","collectionTitle":"","collectionId":-1,"tmdbId":15},{"name":"Dolls","year":1987,"posterUrl":"/library/metadata/727/thumb/1599308092","imdbId":"","language":"en","overview":"A group of people stop by a mansion during a storm and discover two magical toy makers, and their haunted collection of dolls.","moviesInCollection":[],"ratingKey":727,"key":"/library/metadata/727","collectionTitle":"","collectionId":-1,"tmdbId":24341},{"name":"Life of the Party","year":2018,"posterUrl":"/library/metadata/1387/thumb/1599308337","imdbId":"","language":"en","overview":"Dumped by her husband, longtime housewife Deanna turns regret into reset by going back to college. Winding up at the same school as her daughter, Deanna plunges headlong into the campus experience – embracing fun, freedom and frat boys.","moviesInCollection":[],"ratingKey":1387,"key":"/library/metadata/1387","collectionTitle":"","collectionId":-1,"tmdbId":399796},{"name":"Sleepless","year":2017,"posterUrl":"/library/metadata/2056/thumb/1599308630","imdbId":"","language":"en","overview":"Undercover Las Vegas police officer Vincent Downs, who has got a lot of enemies, is caught in a high stakes web of corrupt cops and the mob-controlled casino underground. When a heist goes wrong, a crew of homicidal gangsters gets T, Downs’ teenage son. In one sleepless night, he will have to rescue his son T (who they got), evade an internal affairs investigation and bring the kidnappers to justice.","moviesInCollection":[],"ratingKey":2056,"key":"/library/metadata/2056","collectionTitle":"","collectionId":-1,"tmdbId":324542},{"name":"Good People","year":2014,"posterUrl":"/library/metadata/1015/thumb/1599308199","imdbId":"","language":"en","overview":"Tom and Anna Wright, a young American couple, fall into severe debt while renovating Anna's family home in London. As the couple faces the loss of their dream to have a house and start a family, they discover that the tenant in the apartment below them is dead, and he's left behind a stash of cash—$400,000 worth. Though initially hesitant, Tom and Anna decide that the plan is simple: all they have to do is quietly take the money and use only what's necessary to get them out of debt. But when they start spending the money and can't seem to stop, they find themselves the target of a deadly adversary—the thief who stole it—and that's when very bad things start happening to good people.","moviesInCollection":[],"ratingKey":1015,"key":"/library/metadata/1015","collectionTitle":"","collectionId":-1,"tmdbId":262338},{"name":"The Third Secret","year":1964,"posterUrl":"/library/metadata/2859/thumb/1599308948","imdbId":"","language":"en","overview":"A prominent London Psychologist seems to have taken his own life, causing stunned disbelief amongst his colleagues and patients. His teenage daughter refuses to believe it was suicide as this would go against all of the principles her father stood for, therefore she is convinced it was murder. She enlists the help of a former patient to try to get to the truth. However, the truth turns out to be both surprising and disturbing.","moviesInCollection":[],"ratingKey":2859,"key":"/library/metadata/2859","collectionTitle":"","collectionId":-1,"tmdbId":101651},{"name":"Death Wish V The Face of Death","year":1994,"posterUrl":"/library/metadata/679/thumb/1599308073","imdbId":"","language":"en","overview":"Paul Kersey is back at working vigilante justice when when his fiancée, Olivia, has her business threatened by mobsters","moviesInCollection":[],"ratingKey":679,"key":"/library/metadata/679","collectionTitle":"","collectionId":-1,"tmdbId":34746},{"name":"Too Late","year":2016,"posterUrl":"/library/metadata/2956/thumb/1599308982","imdbId":"","language":"en","overview":"Explores the tangled relationship between a troubled private investigator and the missing woman he's hired to help find.","moviesInCollection":[],"ratingKey":2956,"key":"/library/metadata/2956","collectionTitle":"","collectionId":-1,"tmdbId":342165},{"name":"The Wizard of Oz","year":1939,"posterUrl":"/library/metadata/2899/thumb/1599308963","imdbId":"","language":"en","overview":"Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.","moviesInCollection":[],"ratingKey":2899,"key":"/library/metadata/2899","collectionTitle":"","collectionId":-1,"tmdbId":630},{"name":"Moonraker","year":1979,"posterUrl":"/library/metadata/1543/thumb/1599308408","imdbId":"","language":"en","overview":"After Drax Industries' Moonraker space shuttle is hijacked, secret agent James Bond is assigned to investigate, traveling to California to meet the company's owner, the mysterious Hugo Drax. With the help of scientist Dr. Holly Goodhead, Bond soon uncovers Drax's nefarious plans for humanity, all the while fending off an old nemesis, Jaws, and venturing to Venice, Rio, the Amazon...and outer space.","moviesInCollection":[],"ratingKey":1543,"key":"/library/metadata/1543","collectionTitle":"","collectionId":-1,"tmdbId":698},{"name":"Batman Begins","year":2005,"posterUrl":"/library/metadata/40927/thumb/1599309110","imdbId":"","language":"en","overview":"Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld - The Batman.","moviesInCollection":[],"ratingKey":40927,"key":"/library/metadata/40927","collectionTitle":"","collectionId":-1,"tmdbId":272},{"name":"Jerry Maguire","year":1996,"posterUrl":"/library/metadata/1236/thumb/1599308284","imdbId":"","language":"en","overview":"Jerry Maguire used to be a typical sports agent: willing to do just about anything he could to get the biggest possible contracts for his clients, plus a nice commission for himself. Then, one day, he suddenly has second thoughts about what he's really doing. When he voices these doubts, he ends up losing his job and all of his clients, save Rod Tidwell, an egomaniacal football player.","moviesInCollection":[],"ratingKey":1236,"key":"/library/metadata/1236","collectionTitle":"","collectionId":-1,"tmdbId":9390},{"name":"Ocean's Twelve","year":2004,"posterUrl":"/library/metadata/1634/thumb/1599308448","imdbId":"","language":"en","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 – but a Europol agent is hot on their heels.","moviesInCollection":[],"ratingKey":1634,"key":"/library/metadata/1634","collectionTitle":"","collectionId":-1,"tmdbId":163},{"name":"The Conversation","year":2020,"posterUrl":"/library/metadata/2374/thumb/1599308750","imdbId":"","language":"en","overview":"Surveillance expert Harry Caul is hired by a mysterious client's brusque aide to tail a young couple. Tracking the pair through San Francisco's Union Square, Caul and his associate Stan manage to record a cryptic conversation between them. Tormented by memories of a previous case that ended badly, Caul becomes obsessed with the resulting tape, trying to determine if the couple are in danger.","moviesInCollection":[],"ratingKey":2374,"key":"/library/metadata/2374","collectionTitle":"","collectionId":-1,"tmdbId":592},{"name":"Final Destination 5","year":2011,"posterUrl":"/library/metadata/893/thumb/1599308151","imdbId":"","language":"en","overview":"In this fifth installment, Death is just as omnipresent as ever, and is unleashed after one man’s premonition saves a group of coworkers from a terrifying suspension bridge collapse. But this group of unsuspecting souls was never supposed to survive, and, in a terrifying race against time, the ill-fated group frantically tries to discover a way to escape Death’s sinister agenda.","moviesInCollection":[],"ratingKey":893,"key":"/library/metadata/893","collectionTitle":"","collectionId":-1,"tmdbId":55779},{"name":"Jigsaw","year":2017,"posterUrl":"/library/metadata/40967/thumb/1599309113","imdbId":"","language":"en","overview":"Dead bodies begin to turn up all over the city, each meeting their demise in a variety of grisly ways. All investigations begin to point the finger at deceased killer John Kramer.","moviesInCollection":[],"ratingKey":40967,"key":"/library/metadata/40967","collectionTitle":"","collectionId":-1,"tmdbId":298250},{"name":"Twelve","year":2010,"posterUrl":"/library/metadata/3022/thumb/1599309004","imdbId":"","language":"en","overview":"A young drug dealer watches as his high-rolling life is dismantled in the wake of his cousin's murder, which sees his best friend arrested for the crime.","moviesInCollection":[],"ratingKey":3022,"key":"/library/metadata/3022","collectionTitle":"","collectionId":-1,"tmdbId":40720},{"name":"The Maltese Falcon","year":1941,"posterUrl":"/library/metadata/2663/thumb/1599308862","imdbId":"","language":"en","overview":"A private detective takes on a case that involves him with three eccentric criminals, a beautiful liar, and their quest for a priceless statuette.","moviesInCollection":[],"ratingKey":2663,"key":"/library/metadata/2663","collectionTitle":"","collectionId":-1,"tmdbId":963},{"name":"Alex Strangelove","year":2018,"posterUrl":"/library/metadata/143/thumb/1599307878","imdbId":"","language":"en","overview":"Alex Truelove is on a quest to lose his virginity, an event eagerly awaited by his patient girlfriend and cheered on with welcome advice by his rowdy friends. But Alex, a super gregarious dude, is oddly unmotivated. A magical house party throws Alex into the presence of Elliot, a hunky college guy, who pegs Alex as gay and flirts hard. Alex is taken aback but after a series of setbacks on the girlfriend front he takes the plunge and learns some interesting new facts about himself.","moviesInCollection":[],"ratingKey":143,"key":"/library/metadata/143","collectionTitle":"","collectionId":-1,"tmdbId":511785},{"name":"Nancy Drew and the Hidden Staircase","year":2019,"posterUrl":"/library/metadata/1585/thumb/1599308425","imdbId":"","language":"en","overview":"Nancy Drew, a smart high schooler with a penchant for keen observation and deduction, stumbles upon the haunting of a local home. A bit of an outsider struggling to fit into her new surroundings, Nancy and her pals set out to solve the mystery, make new friends, and establish their place in the community","moviesInCollection":[],"ratingKey":1585,"key":"/library/metadata/1585","collectionTitle":"","collectionId":-1,"tmdbId":519473},{"name":"Along Came the Devil 2","year":2019,"posterUrl":"/library/metadata/27833/thumb/1599309072","imdbId":"","language":"en","overview":"After receiving an unsettling voicemail, Jordan (Wiggins) returns home, looking for answers, only to find her estranged father and even more questions. A demonic force has attached itself to the town and no one is safe. The only one who seems to know anything is the small town's Reverend.","moviesInCollection":[],"ratingKey":27833,"key":"/library/metadata/27833","collectionTitle":"","collectionId":-1,"tmdbId":610743},{"name":"Sister Street Fighter Hanging by a Thread","year":1974,"posterUrl":"/library/metadata/2049/thumb/1599308627","imdbId":"","language":"en","overview":"Koryu heads to Yokohama in search of a woman named Birei, kidnapped by diamond smugglers who move their hot rocks by surgically implanting them into the nubile buttocks of Chinese prostitutes. Koryu's older sister, working as a jewelry designer, is secretly, if unhappily, involved with the gangsters.","moviesInCollection":[],"ratingKey":2049,"key":"/library/metadata/2049","collectionTitle":"","collectionId":-1,"tmdbId":50632},{"name":"Space Pirate Captain Harlock","year":2014,"posterUrl":"/library/metadata/2097/thumb/1599308648","imdbId":"","language":"en","overview":"Space Pirate Captain Harlock and his fearless crew face off against the space invaders who seek to conquer the planet Earth.","moviesInCollection":[],"ratingKey":2097,"key":"/library/metadata/2097","collectionTitle":"","collectionId":-1,"tmdbId":192577},{"name":"Vox Lux","year":2018,"posterUrl":"/library/metadata/3088/thumb/1599309027","imdbId":"","language":"en","overview":"In 1999, teenage sisters Celeste and Eleanor survive a seismic, violent tragedy. The sisters compose and perform a song about their experience, making something lovely and cathartic out of a catastrophe - while also catapulting Celeste to stardom. By 2017, Celeste is a mother to a teenage daughter of her own and is struggling to navigate a career fraught with scandals when another act of terrifying violence demands her attention.","moviesInCollection":[],"ratingKey":3088,"key":"/library/metadata/3088","collectionTitle":"","collectionId":-1,"tmdbId":429202},{"name":"Ma","year":2019,"posterUrl":"/library/metadata/1428/thumb/1599308354","imdbId":"","language":"en","overview":"Sue Ann is a loner who keeps to herself in her quiet Ohio town. One day, she is asked by Maggie, a new teenager in town, to buy some booze for her and her friends, and Sue Ann sees the chance to make some unsuspecting, if younger, friends of her own.","moviesInCollection":[],"ratingKey":1428,"key":"/library/metadata/1428","collectionTitle":"","collectionId":-1,"tmdbId":502416},{"name":"The Tournament","year":2009,"posterUrl":"/library/metadata/2865/thumb/1599308950","imdbId":"","language":"en","overview":"Every ten or seven years in an unsuspecting town, The Tournament takes place. A battle royale between 30 of the world's deadliest assassins. The last man standing receiving the $10,000,000 cash prize and the title of Worlds No 1, which itself carries the legendary million dollar a bullet price tag.","moviesInCollection":[],"ratingKey":2865,"key":"/library/metadata/2865","collectionTitle":"","collectionId":-1,"tmdbId":24056},{"name":"Evil Dead","year":2013,"posterUrl":"/library/metadata/844/thumb/1599308132","imdbId":"","language":"en","overview":"Mia, a young woman struggling with sobriety, heads to a remote cabin with a group of friends where the discovery of a Book of the Dead unwittingly summon up dormant demons which possess the youngsters one-by-one.","moviesInCollection":[],"ratingKey":844,"key":"/library/metadata/844","collectionTitle":"","collectionId":-1,"tmdbId":109428},{"name":"The Timber","year":2015,"posterUrl":"/library/metadata/2863/thumb/1599308950","imdbId":"","language":"en","overview":"In the wild west, two brothers embark on a journey to collect a bounty in a desperate attempt to save their home: but what they find along the way is more than they bargained for.","moviesInCollection":[],"ratingKey":2863,"key":"/library/metadata/2863","collectionTitle":"","collectionId":-1,"tmdbId":322443},{"name":"Aladdin and the King of Thieves","year":1996,"posterUrl":"/library/metadata/140/thumb/1599307877","imdbId":"","language":"en","overview":"Legendary secrets are revealed as Aladdin and his friends—Jasmine, Abu, Carpet and, of course, the always entertaining Genie—face all sorts of terrifying threats and make some exciting last-minute escapes pursuing the King Of Thieves and his villainous crew.","moviesInCollection":[],"ratingKey":140,"key":"/library/metadata/140","collectionTitle":"","collectionId":-1,"tmdbId":11238},{"name":"Practical Magic","year":1998,"posterUrl":"/library/metadata/1796/thumb/1599308516","imdbId":"","language":"en","overview":"Sally and Gillian Owens, born into a magical family, have mostly avoided witchcraft themselves. But when Gillian's vicious boyfriend, Jimmy Angelov, dies unexpectedly, the Owens sisters give themselves a crash course in hard magic. With policeman Gary Hallet growing suspicious, the girls struggle to resurrect Angelov -- and unwittingly inject his corpse with an evil spirit that threatens to end their family line.","moviesInCollection":[],"ratingKey":1796,"key":"/library/metadata/1796","collectionTitle":"","collectionId":-1,"tmdbId":6435},{"name":"Burning","year":2019,"posterUrl":"/library/metadata/447/thumb/1599307991","imdbId":"","language":"en","overview":"Deliveryman Jongsu is out on a job when he runs into Haemi, a girl who once lived in his neighborhood. She asks if he'd mind looking after her cat while she's away on a trip to Africa. On her return she introduces to Jongsu an enigmatic young man named Ben, who she met during her trip. And one day Ben tells Jongsu about his most unusual hobby...","moviesInCollection":[],"ratingKey":447,"key":"/library/metadata/447","collectionTitle":"","collectionId":-1,"tmdbId":491584},{"name":"The Ugly Truth","year":2009,"posterUrl":"/library/metadata/2881/thumb/1599308956","imdbId":"","language":"en","overview":"A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys, however, lead to an unexpected result.","moviesInCollection":[],"ratingKey":2881,"key":"/library/metadata/2881","collectionTitle":"","collectionId":-1,"tmdbId":20943},{"name":"Snow White and the Seven Dwarfs","year":1937,"posterUrl":"/library/metadata/2078/thumb/1599308640","imdbId":"","language":"en","overview":"A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as \"the fairest in the land,\" and Snow White's beauty surpasses her own.","moviesInCollection":[],"ratingKey":2078,"key":"/library/metadata/2078","collectionTitle":"","collectionId":-1,"tmdbId":408},{"name":"Trailer Park Boys Countdown to Liquor Day","year":2009,"posterUrl":"/library/metadata/2977/thumb/1599308989","imdbId":"","language":"en","overview":"Ricky, Julian and Bubbles are about to get out of jail, and this time, Julian vows to go straight, even open a legit business. Soon the Boys will all be rich. At least that's what they've told the parole board. But when they arrive back at the park, they find it's not the same old Sunnyvale - and it's not the same old Jim Lahey, Trailer Park Supervisor.","moviesInCollection":[],"ratingKey":2977,"key":"/library/metadata/2977","collectionTitle":"","collectionId":-1,"tmdbId":27561},{"name":"Kindergarten Cop","year":1990,"posterUrl":"/library/metadata/1307/thumb/1599308309","imdbId":"","language":"en","overview":"Hard-edged cop John Kimble gets more than he bargained for when he goes undercover as a kindergarten teacher to get the goods on a brutal drug lord while at the same time protecting the man's young son. Pitted against a class of boisterous moppets whose antics try his patience and test his mettle, Kimble may have met his match … in more ways than one.","moviesInCollection":[],"ratingKey":1307,"key":"/library/metadata/1307","collectionTitle":"","collectionId":-1,"tmdbId":951},{"name":"The Homesman","year":2014,"posterUrl":"/library/metadata/2547/thumb/1599308816","imdbId":"","language":"en","overview":"When three women living on the edge of the American frontier are driven mad by harsh pioneer life, the task of saving them falls to the pious, independent-minded Mary Bee Cuddy. Transporting the women by covered wagon to Iowa, she soon realizes just how daunting the journey will be, and employs a low-life drifter, George Briggs, to join her. The unlikely pair and the three women head east, where a waiting minister and his wife have offered to take the women in. But the group first must traverse the harsh Nebraska Territories marked by stark beauty, psychological peril and constant threat.","moviesInCollection":[],"ratingKey":2547,"key":"/library/metadata/2547","collectionTitle":"","collectionId":-1,"tmdbId":264656},{"name":"Big Fish","year":2003,"posterUrl":"/library/metadata/349/thumb/1599307954","imdbId":"","language":"en","overview":"Throughout his life Edward Bloom has always been a man of big appetites, enormous passions and tall tales. In his later years, he remains a huge mystery to his son, William. Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures.","moviesInCollection":[],"ratingKey":349,"key":"/library/metadata/349","collectionTitle":"","collectionId":-1,"tmdbId":587},{"name":"Manchester by the Sea","year":2016,"posterUrl":"/library/metadata/1456/thumb/1599308368","imdbId":"","language":"en","overview":"After his older brother passes away, Lee Chandler is forced to return home to care for his 16-year-old nephew. There he is compelled to deal with a tragic past that separated him from his family and the community where he was born and raised.","moviesInCollection":[],"ratingKey":1456,"key":"/library/metadata/1456","collectionTitle":"","collectionId":-1,"tmdbId":334541},{"name":"Final Destination 3","year":2006,"posterUrl":"/library/metadata/892/thumb/1599308150","imdbId":"","language":"en","overview":"A student's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself – which seeks out those who escaped their fate.","moviesInCollection":[],"ratingKey":892,"key":"/library/metadata/892","collectionTitle":"","collectionId":-1,"tmdbId":9286},{"name":"Snakes on a Plane","year":2006,"posterUrl":"/library/metadata/2072/thumb/1599308637","imdbId":"","language":"en","overview":"America is on the search for the murderer Eddie Kim. Sean Jones must fly to L.A. to testify in a hearing against Kim. Accompanied by FBI agent Neville Flynn, the flight receives some unexpected visitors.","moviesInCollection":[],"ratingKey":2072,"key":"/library/metadata/2072","collectionTitle":"","collectionId":-1,"tmdbId":326},{"name":"Maleficent","year":2014,"posterUrl":"/library/metadata/1447/thumb/1599308364","imdbId":"","language":"en","overview":"A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land's fiercest protector, but she ultimately suffers a ruthless betrayal – an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King's successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom – and to Maleficent's true happiness as well.","moviesInCollection":[],"ratingKey":1447,"key":"/library/metadata/1447","collectionTitle":"","collectionId":-1,"tmdbId":102651},{"name":"The Shallows","year":2016,"posterUrl":"/library/metadata/2810/thumb/1599308928","imdbId":"","language":"en","overview":"When Nancy is surfing on a secluded beach, she finds herself on the feeding ground of a great white shark. Though she is stranded only 200 yards from shore, survival proves to be the ultimate test of wills, requiring all of Nancy's ingenuity, resourcefulness, and fortitude.","moviesInCollection":[],"ratingKey":2810,"key":"/library/metadata/2810","collectionTitle":"","collectionId":-1,"tmdbId":332567},{"name":"Turbo","year":2013,"posterUrl":"/library/metadata/3019/thumb/1599309003","imdbId":"","language":"en","overview":"The tale of an ordinary garden snail who dreams of winning the Indy 500.","moviesInCollection":[],"ratingKey":3019,"key":"/library/metadata/3019","collectionTitle":"","collectionId":-1,"tmdbId":77950},{"name":"Wyatt Earp","year":1994,"posterUrl":"/library/metadata/3172/thumb/1599309056","imdbId":"","language":"en","overview":"Covering the life and times of one of the West's most iconic heroes Wyatt Earp weaves an intricate tale of Earp and his friends and family. With a star studded cast, sweeping cinematography and authentic costumes Wyatt Earp led the way during the Western revival in the 90's.","moviesInCollection":[],"ratingKey":3172,"key":"/library/metadata/3172","collectionTitle":"","collectionId":-1,"tmdbId":12160},{"name":"Waiting for Guffman","year":1996,"posterUrl":"/library/metadata/3090/thumb/1599309028","imdbId":"","language":"en","overview":"Corky St. Clair is a director, actor and dancer in Blaine, Missouri. When it comes time to celebrate Blaine's 150th anniversary, Corky resolves to bring down the house in Broadway style.","moviesInCollection":[],"ratingKey":3090,"key":"/library/metadata/3090","collectionTitle":"","collectionId":-1,"tmdbId":16448},{"name":"Wall Street","year":1987,"posterUrl":"/library/metadata/3097/thumb/1599309030","imdbId":"","language":"en","overview":"A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider whom takes the youth under his wing.","moviesInCollection":[],"ratingKey":3097,"key":"/library/metadata/3097","collectionTitle":"","collectionId":-1,"tmdbId":10673},{"name":"310 to Yuma","year":2007,"posterUrl":"/library/metadata/41070/thumb/1599309121","imdbId":"","language":"en","overview":"In Arizona in the late 1800s, infamous outlaw Ben Wade and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans, struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the \"3:10 to Yuma\", a train that will take the killer to trial.","moviesInCollection":[],"ratingKey":41070,"key":"/library/metadata/41070","collectionTitle":"","collectionId":-1,"tmdbId":5176},{"name":"A Bad Moms Christmas","year":2017,"posterUrl":"/library/metadata/39947/thumb/1599309101","imdbId":"","language":"en","overview":"Amy, Kiki and Carla – three under-appreciated and over-burdened women – rebel against the challenges and expectations of the Super Bowl for mothers: Christmas. And if creating a more perfect holiday for their families wasn’t hard enough, they have to do all of that while hosting and entertaining their own mothers.","moviesInCollection":[],"ratingKey":39947,"key":"/library/metadata/39947","collectionTitle":"","collectionId":-1,"tmdbId":431530},{"name":"Fear and Loathing in Las Vegas","year":1998,"posterUrl":"/library/metadata/878/thumb/1599308145","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":878,"key":"/library/metadata/878","collectionTitle":"","collectionId":-1,"tmdbId":1878},{"name":"The Spy Who Loved Me","year":1977,"posterUrl":"/library/metadata/2834/thumb/1599308939","imdbId":"","language":"en","overview":"Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case.","moviesInCollection":[],"ratingKey":2834,"key":"/library/metadata/2834","collectionTitle":"","collectionId":-1,"tmdbId":691},{"name":"Wanted","year":2008,"posterUrl":"/library/metadata/3101/thumb/1599309031","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3101,"key":"/library/metadata/3101","collectionTitle":"","collectionId":-1,"tmdbId":8909},{"name":"The Giver","year":2014,"posterUrl":"/library/metadata/2494/thumb/1599308797","imdbId":"","language":"en","overview":"In a seemingly perfect community, without war, pain, suffering, differences or choice, a young boy is chosen to learn from an elderly man about the true pain and pleasure of the \"real\" world.","moviesInCollection":[],"ratingKey":2494,"key":"/library/metadata/2494","collectionTitle":"","collectionId":-1,"tmdbId":227156},{"name":"Us","year":2019,"posterUrl":"/library/metadata/3064/thumb/1599309019","imdbId":"","language":"en","overview":"Husband and wife Gabe and Adelaide Wilson take their kids to their beach house expecting to unplug and unwind with friends. But as night descends, their serenity turns to tension and chaos when some shocking visitors arrive uninvited.","moviesInCollection":[],"ratingKey":3064,"key":"/library/metadata/3064","collectionTitle":"","collectionId":-1,"tmdbId":458723},{"name":"Terminator Genisys","year":2015,"posterUrl":"/library/metadata/2263/thumb/1599308712","imdbId":"","language":"en","overview":"The year is 2029. John Connor, leader of the resistance continues the war against the machines. At the Los Angeles offensive, John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future, and will ultimately change warfare forever.","moviesInCollection":[],"ratingKey":2263,"key":"/library/metadata/2263","collectionTitle":"","collectionId":-1,"tmdbId":87101},{"name":"Cosmos","year":2019,"posterUrl":"/library/metadata/579/thumb/1599308039","imdbId":"","language":"en","overview":"Three astronomers accidentally intercept what they believe to be a signal from a distant alien civilization, but the truth is even more incredible than any of them could have imagined.","moviesInCollection":[],"ratingKey":579,"key":"/library/metadata/579","collectionTitle":"","collectionId":-1,"tmdbId":639771},{"name":"Disobedience","year":2018,"posterUrl":"/library/metadata/714/thumb/1599308086","imdbId":"","language":"en","overview":"A woman learns about the death of her Orthodox Jewish father, a rabbi. She returns home and has romantic feelings rekindled for her best childhood friend, who is now married to her cousin.","moviesInCollection":[],"ratingKey":714,"key":"/library/metadata/714","collectionTitle":"","collectionId":-1,"tmdbId":419743},{"name":"Red Tails","year":2012,"posterUrl":"/library/metadata/1871/thumb/1599308550","imdbId":"","language":"en","overview":"The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.","moviesInCollection":[],"ratingKey":1871,"key":"/library/metadata/1871","collectionTitle":"","collectionId":-1,"tmdbId":72431},{"name":"LBJ","year":2017,"posterUrl":"/library/metadata/1348/thumb/1599308324","imdbId":"","language":"en","overview":"The story of U.S. President Lyndon Baines Johnson from his young days in West Texas to the White House.","moviesInCollection":[],"ratingKey":1348,"key":"/library/metadata/1348","collectionTitle":"","collectionId":-1,"tmdbId":353575},{"name":"Black and Blue","year":2019,"posterUrl":"/library/metadata/362/thumb/1599307959","imdbId":"","language":"en","overview":"A fast-paced action thriller about a rookie cop who inadvertently captures the murder of a young drug dealer on her body cam. After realizing that the murder was committed by corrupt cops, she teams up with the one person from her community who is willing to help her as she tries to escape both the criminals out for revenge and the police who are desperate to destroy the incriminating footage.","moviesInCollection":[],"ratingKey":362,"key":"/library/metadata/362","collectionTitle":"","collectionId":-1,"tmdbId":578189},{"name":"Biggles","year":1988,"posterUrl":"/library/metadata/354/thumb/1599307956","imdbId":"","language":"en","overview":"Unassuming catering salesmen Jim Ferguson falls through a time hole to 1917 where he saves the life of dashing Royal Flying Corps pilot James \"Biggles\" Bigglesworth after his photo recon mission is shot down. Before he can work out what has happened, Jim is zapped back to the 1980s......","moviesInCollection":[],"ratingKey":354,"key":"/library/metadata/354","collectionTitle":"","collectionId":-1,"tmdbId":22976},{"name":"UglyDolls","year":2019,"posterUrl":"/library/metadata/3033/thumb/1599309008","imdbId":"","language":"en","overview":"In the adorably different town of Uglyville, weirdness is celebrated, strangeness is special and beauty is embraced as more than meets the eye. After traveling to the other side of a mountain, Moxy and her UglyDoll friends discover Perfection -- a town where more conventional dolls receive training before entering the real world to find the love of a child.","moviesInCollection":[],"ratingKey":3033,"key":"/library/metadata/3033","collectionTitle":"","collectionId":-1,"tmdbId":454458},{"name":"Star Trek Generations","year":1994,"posterUrl":"/library/metadata/2134/thumb/1599308664","imdbId":"","language":"en","overview":"Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran's scheme...and he's been dead for seventy-eight years.","moviesInCollection":[],"ratingKey":2134,"key":"/library/metadata/2134","collectionTitle":"","collectionId":-1,"tmdbId":193},{"name":"Tangled Ever After","year":2012,"posterUrl":"/library/metadata/40012/thumb/1599309102","imdbId":"","language":"en","overview":"The kingdom is in a festive mood as everyone gathers for the royal wedding of Rapunzel and Flynn. However, when Pascal and Maximus, as flower chameleon and ring bearer, respectively, lose the gold bands, a frenzied search and recovery mission gets underway. As the desperate duo tries to find the rings before anyone discovers that they’re missing, they leave behind a trail of comical chaos that includes flying lanterns, a flock of doves, a wine barrel barricade and a very sticky finale. Will Maximus and Pascal save the day and make it to the church in time? And will they ever get Flynn’s nose right?","moviesInCollection":[],"ratingKey":40012,"key":"/library/metadata/40012","collectionTitle":"","collectionId":-1,"tmdbId":82881},{"name":"F/X","year":1986,"posterUrl":"/library/metadata/853/thumb/1599308136","imdbId":"","language":"en","overview":"A movies special effects man is hired by a government agency to help stage the assassination of a well known gangster. When the agency double cross him, he uses his special effects to trap the gangster and the corrupt agents.","moviesInCollection":[],"ratingKey":853,"key":"/library/metadata/853","collectionTitle":"","collectionId":-1,"tmdbId":9873},{"name":"Incident at Phantom Hill","year":1966,"posterUrl":"/library/metadata/1182/thumb/1599308262","imdbId":"","language":"en","overview":"At the end of the Civil War, a major shipment of gold has been stolen and buried in the desert. Only one man knows the whereabouts of gold and the army sends captain Matt Martin to arrest him and come back with the gold. Martin, his prisoner and a handful of men enter Indian territory in search of the precious cargo. The Apaches, outlaws and storms will make it not too easy.","moviesInCollection":[],"ratingKey":1182,"key":"/library/metadata/1182","collectionTitle":"","collectionId":-1,"tmdbId":145966},{"name":"Gridiron Gang","year":2006,"posterUrl":"/library/metadata/1035/thumb/1599308206","imdbId":"","language":"en","overview":"Teenagers at a juvenile detention center, under the leadership of their counselor, gain self-esteem by playing football together.","moviesInCollection":[],"ratingKey":1035,"key":"/library/metadata/1035","collectionTitle":"","collectionId":-1,"tmdbId":9766},{"name":"Prometheus","year":2012,"posterUrl":"/library/metadata/1813/thumb/1599308524","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1813,"key":"/library/metadata/1813","collectionTitle":"","collectionId":-1,"tmdbId":70981},{"name":"Cold Skin","year":2018,"posterUrl":"/library/metadata/543/thumb/1599308026","imdbId":"","language":"en","overview":"A young man who arrives at a remote island finds himself trapped in a battle for his life.","moviesInCollection":[],"ratingKey":543,"key":"/library/metadata/543","collectionTitle":"","collectionId":-1,"tmdbId":428399},{"name":"The Way Back","year":2020,"posterUrl":"/library/metadata/40871/thumb/1599309107","imdbId":"","language":"en","overview":"A former basketball all-star, who has lost his wife and family foundation in a struggle with addiction attempts to regain his soul and salvation by becoming the coach of a disparate ethnically mixed high school basketball team at his alma mater.","moviesInCollection":[],"ratingKey":40871,"key":"/library/metadata/40871","collectionTitle":"","collectionId":-1,"tmdbId":529485},{"name":"Supercollider","year":2013,"posterUrl":"/library/metadata/2204/thumb/1599308691","imdbId":"","language":"en","overview":"A scientist working on an energy project discovers his family have undergone strange changes in their personalities, while a series of natural disasters are happening across the globe. He realises that his work has accidentally pushed the planet forward in time seven seconds - and the loss of those few moments has had devastating effects on the world and the human race.","moviesInCollection":[],"ratingKey":2204,"key":"/library/metadata/2204","collectionTitle":"","collectionId":-1,"tmdbId":241188},{"name":"Air Strike","year":2018,"posterUrl":"/library/metadata/135/thumb/1599307875","imdbId":"","language":"en","overview":"An American pilot is sent to a Chinese province to teach a crew of would-be pilots how to fly war planes against the Japanese during World War II.","moviesInCollection":[],"ratingKey":135,"key":"/library/metadata/135","collectionTitle":"","collectionId":-1,"tmdbId":345934},{"name":"The Bourne Ultimatum","year":2007,"posterUrl":"/library/metadata/2332/thumb/1599308735","imdbId":"","language":"en","overview":"Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.","moviesInCollection":[],"ratingKey":2332,"key":"/library/metadata/2332","collectionTitle":"","collectionId":-1,"tmdbId":2503},{"name":"Final Destination 2","year":2003,"posterUrl":"/library/metadata/891/thumb/1599308150","imdbId":"","language":"en","overview":"When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.","moviesInCollection":[],"ratingKey":891,"key":"/library/metadata/891","collectionTitle":"","collectionId":-1,"tmdbId":9358},{"name":"Don Jon","year":2013,"posterUrl":"/library/metadata/729/thumb/1599308093","imdbId":"","language":"en","overview":"A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.","moviesInCollection":[],"ratingKey":729,"key":"/library/metadata/729","collectionTitle":"","collectionId":-1,"tmdbId":138697},{"name":"Plastic Galaxy The Story of Star Wars Toys","year":2014,"posterUrl":"/library/metadata/1756/thumb/1599308500","imdbId":"","language":"en","overview":"Plastic Galaxy explores the ground breaking and breathtaking world of 'Star Wars' toys. Through interviews with former Kenner employees, experts, authors, and collectors, the documentary looks at the toys' history, influence, and the passions they elicit today.","moviesInCollection":[],"ratingKey":1756,"key":"/library/metadata/1756","collectionTitle":"","collectionId":-1,"tmdbId":253150},{"name":"We Were Soldiers","year":2002,"posterUrl":"/library/metadata/3118/thumb/1599309037","imdbId":"","language":"en","overview":"The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.","moviesInCollection":[],"ratingKey":3118,"key":"/library/metadata/3118","collectionTitle":"","collectionId":-1,"tmdbId":10590},{"name":"What About Bob?","year":1991,"posterUrl":"/library/metadata/3126/thumb/1599309040","imdbId":"","language":"en","overview":"Before going on vacation, self-involved psychiatrist Dr. Leo Marvin has the misfortune of taking on a new patient: Bob Wiley. An exemplar of neediness and a compendium of phobias, Bob follows Marvin to his family's country house. Dr. Marvin tries to get him to leave; the trouble is, everyone loves Bob. As his oblivious patient makes himself at home, Dr. Marvin loses his professional composure and, before long, may be ready for the loony bin himself.","moviesInCollection":[],"ratingKey":3126,"key":"/library/metadata/3126","collectionTitle":"","collectionId":-1,"tmdbId":10276},{"name":"All About Steve","year":2009,"posterUrl":"/library/metadata/158/thumb/1599307884","imdbId":"","language":"en","overview":"After one short date, a brilliant crossword constructor decides that a CNN cameraman is her true love. Because the cameraman's job takes him hither and yon, she crisscrosses the country, turning up at media events as she tries to convince him they are perfect for each other.","moviesInCollection":[],"ratingKey":158,"key":"/library/metadata/158","collectionTitle":"","collectionId":-1,"tmdbId":23706},{"name":"At Eternity's Gate","year":2018,"posterUrl":"/library/metadata/234/thumb/1599307913","imdbId":"","language":"en","overview":"Famed but tormented artist Vincent van Gogh spends his final years in Arles, France, painting masterworks of the natural world that surrounds him.","moviesInCollection":[],"ratingKey":234,"key":"/library/metadata/234","collectionTitle":"","collectionId":-1,"tmdbId":491472},{"name":"The Gentlemen","year":2020,"posterUrl":"/library/metadata/42255/thumb/1599309137","imdbId":"","language":"en","overview":"American expat Mickey Pearson has built a highly profitable marijuana empire in London. When word gets out that he’s looking to cash out of the business forever it triggers plots, schemes, bribery and blackmail in an attempt to steal his domain out from under him.","moviesInCollection":[],"ratingKey":42255,"key":"/library/metadata/42255","collectionTitle":"","collectionId":-1,"tmdbId":522627},{"name":"Super Troopers","year":2001,"posterUrl":"/library/metadata/2201/thumb/1599308690","imdbId":"","language":"en","overview":"Five bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.","moviesInCollection":[],"ratingKey":2201,"key":"/library/metadata/2201","collectionTitle":"","collectionId":-1,"tmdbId":39939},{"name":"Fate/Stay Night Unlimited Blade Works","year":2010,"posterUrl":"/library/metadata/875/thumb/1599308144","imdbId":"","language":"en","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. Shiro 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.","moviesInCollection":[],"ratingKey":875,"key":"/library/metadata/875","collectionTitle":"","collectionId":-1,"tmdbId":46304},{"name":"Bill & Ted's Bogus Journey","year":1991,"posterUrl":"/library/metadata/355/thumb/1599307956","imdbId":"","language":"en","overview":"Amiable slackers Bill and Ted are once again roped into a fantastical adventure when De Nomolos, a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined to escape the afterlife, challenging the Grim Reaper to a series of games in order to return to the land of the living.","moviesInCollection":[],"ratingKey":355,"key":"/library/metadata/355","collectionTitle":"","collectionId":-1,"tmdbId":1649},{"name":"Burn After Reading","year":2008,"posterUrl":"/library/metadata/446/thumb/1599307990","imdbId":"","language":"en","overview":"When a disc containing memoirs of a former CIA analyst falls into the hands of gym employees, Linda and Chad, they see a chance to make enough money for Linda to have life-changing cosmetic surgery. Predictably, events whirl out of control for the duo, and those in their orbit.","moviesInCollection":[],"ratingKey":446,"key":"/library/metadata/446","collectionTitle":"","collectionId":-1,"tmdbId":4944},{"name":"We Summon the Darkness","year":2020,"posterUrl":"/library/metadata/48316/thumb/1600865846","imdbId":"","language":"en","overview":"Three best friends attending a heavy-metal show cross paths with sadistic killers after they travel to a secluded country home for an after party.","moviesInCollection":[],"ratingKey":48316,"key":"/library/metadata/48316","collectionTitle":"","collectionId":-1,"tmdbId":546724},{"name":"Dark Shadows","year":2012,"posterUrl":"/library/metadata/638/thumb/1599308059","imdbId":"","language":"en","overview":"Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.","moviesInCollection":[],"ratingKey":638,"key":"/library/metadata/638","collectionTitle":"","collectionId":-1,"tmdbId":62213},{"name":"Just Getting Started","year":2017,"posterUrl":"/library/metadata/1278/thumb/1599308299","imdbId":"","language":"en","overview":"Duke Diver is living the high life as the freewheeling manager of a luxurious resort in Palm Springs, Calif. He soon faces competition from Leo, a former military man who likes the same woman that Duke is interested in. When Diver's past suddenly catches up with him, he must put aside his differences and reluctantly team up with Leo to stop whoever is trying to kill him.","moviesInCollection":[],"ratingKey":1278,"key":"/library/metadata/1278","collectionTitle":"","collectionId":-1,"tmdbId":398177},{"name":"The Empire Strikes Back","year":1980,"posterUrl":"/library/metadata/2434/thumb/1599308773","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2434,"key":"/library/metadata/2434","collectionTitle":"","collectionId":-1,"tmdbId":1891},{"name":"The Best of Enemies","year":2019,"posterUrl":"/library/metadata/2316/thumb/1599308729","imdbId":"","language":"en","overview":"Centers on the unlikely relationship between Ann Atwater, an outspoken civil rights activist, and C.P. Ellis, a local Ku Klux Klan leader who reluctantly co-chaired a community summit, battling over the desegregation of schools in Durham, North Carolina during the racially-charged summer of 1971. The incredible events that unfolded would change Durham and the lives of Atwater and Ellis forever.","moviesInCollection":[],"ratingKey":2316,"key":"/library/metadata/2316","collectionTitle":"","collectionId":-1,"tmdbId":458131},{"name":"Foxcatcher","year":2015,"posterUrl":"/library/metadata/935/thumb/1599308166","imdbId":"","language":"en","overview":"The greatest Olympic Wrestling Champion brother team joins Team Foxcatcher led by multimillionaire sponsor John E. du Pont as they train for the 1988 games in Seoul - a union that leads to unlikely circumstances.","moviesInCollection":[],"ratingKey":935,"key":"/library/metadata/935","collectionTitle":"","collectionId":-1,"tmdbId":87492},{"name":"Queen & Slim","year":2019,"posterUrl":"/library/metadata/1830/thumb/1599308530","imdbId":"","language":"en","overview":"While on a forgettable first date together in Ohio, a black man and a black woman are pulled over for a minor traffic infraction. The situation escalates, with sudden and tragic results, when the man kills the police officer in self-defense. Terrified and in fear for their lives, the man, a retail employee, and the woman, a criminal defense lawyer, are forced to go on the run. But the incident is captured on video and goes viral, and the couple unwittingly become a symbol of trauma, terror, grief and pain for people across the country.","moviesInCollection":[],"ratingKey":1830,"key":"/library/metadata/1830","collectionTitle":"","collectionId":-1,"tmdbId":536743},{"name":"Cinderella Man","year":2005,"posterUrl":"/library/metadata/517/thumb/1599308017","imdbId":"","language":"en","overview":"The true story of boxer, Jim Braddock who, in the 1920’s after his retirement, has a surprise comeback in order to get him and his family out of a socially poor state.","moviesInCollection":[],"ratingKey":517,"key":"/library/metadata/517","collectionTitle":"","collectionId":-1,"tmdbId":921},{"name":"Pusher","year":2012,"posterUrl":"/library/metadata/1825/thumb/1599308529","imdbId":"","language":"en","overview":"In London, a drug dealer grows increasingly desperate over the course of a week after a botched deal lands him in the merciless clutches of a ruthless crime lord. The more desperate his behavior, the more isolated he becomes until there is nothing left standing between him and the bullet his debtors intend to fire his way.","moviesInCollection":[],"ratingKey":1825,"key":"/library/metadata/1825","collectionTitle":"","collectionId":-1,"tmdbId":115276},{"name":"Howl's Moving Castle","year":2005,"posterUrl":"/library/metadata/46403/thumb/1599309158","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46403,"key":"/library/metadata/46403","collectionTitle":"","collectionId":-1,"tmdbId":4935},{"name":"Finding Your Feet","year":2017,"posterUrl":"/library/metadata/901/thumb/1599308154","imdbId":"","language":"en","overview":"A lady has her prim and proper life turned upside down after discovering her husband's affair.","moviesInCollection":[],"ratingKey":901,"key":"/library/metadata/901","collectionTitle":"","collectionId":-1,"tmdbId":426030},{"name":"The Banana Splits Movie","year":2019,"posterUrl":"/library/metadata/2310/thumb/1599308728","imdbId":"","language":"en","overview":"A boy named Harley and his family attend a taping of The Banana Splits TV show, which is supposed to be a fun-filled birthday for young Harley and business as usual for Rebecca, the producer of the series. But things take an unexpected turn - and the body count quickly rises. Can Harley, his mom and their new pals safely escape?","moviesInCollection":[],"ratingKey":2310,"key":"/library/metadata/2310","collectionTitle":"","collectionId":-1,"tmdbId":608654},{"name":"Hell on the Border","year":2019,"posterUrl":"/library/metadata/1084/thumb/1599308226","imdbId":"","language":"en","overview":"This epic, action-packed Western tells the incredible true story of Bass Reeves, the first black marshal in the Wild West. Having escaped from slavery after the Civil War, he arrives in Arkansas seeking a job with the law. To prove himself, he must hunt down a deadly outlaw with the help of a grizzled journeyman. As he chases the criminal deeper into the Cherokee Nation, Reeves must not only dodge bullets, but severe discrimination in hopes of earning his star--and cement his place as a cowboy legend.","moviesInCollection":[],"ratingKey":1084,"key":"/library/metadata/1084","collectionTitle":"","collectionId":-1,"tmdbId":576379},{"name":"Jumper","year":2008,"posterUrl":"/library/metadata/1270/thumb/1599308297","imdbId":"","language":"en","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’s extraordinary gift may be his only hope for survival!","moviesInCollection":[],"ratingKey":1270,"key":"/library/metadata/1270","collectionTitle":"","collectionId":-1,"tmdbId":8247},{"name":"North by Northwest","year":1959,"posterUrl":"/library/metadata/1618/thumb/1599308441","imdbId":"","language":"en","overview":"Advertising man Roger Thornhill is mistaken for a spy, triggering a deadly cross-country chase.","moviesInCollection":[],"ratingKey":1618,"key":"/library/metadata/1618","collectionTitle":"","collectionId":-1,"tmdbId":213},{"name":"Pledge","year":2019,"posterUrl":"/library/metadata/1762/thumb/1599308502","imdbId":"","language":"en","overview":"Three friends pledge a fraternity that's deadly serious about its secret rituals, turning their rush into a race for survival.","moviesInCollection":[],"ratingKey":1762,"key":"/library/metadata/1762","collectionTitle":"","collectionId":-1,"tmdbId":530157},{"name":"The Butterfly Effect 2","year":2006,"posterUrl":"/library/metadata/2345/thumb/1599308740","imdbId":"","language":"en","overview":"After his girlfriend, Julie and two best friends are killed in a tragic auto accident, Nick struggles to cope with his loss and grief. Suffering from migraine-like seizures, Nick soon discovers that he has the power to change the past via his memories. However, his time-traveling attempts to alter the past and save his one true love have unexpected and dire consequences.","moviesInCollection":[],"ratingKey":2345,"key":"/library/metadata/2345","collectionTitle":"","collectionId":-1,"tmdbId":14620},{"name":"Despicable Me","year":2010,"posterUrl":"/library/metadata/698/thumb/1599308080","imdbId":"","language":"en","overview":"Villainous Gru lives up to his reputation as a despicable, deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.","moviesInCollection":[],"ratingKey":698,"key":"/library/metadata/698","collectionTitle":"","collectionId":-1,"tmdbId":20352},{"name":"Whiskey Tango Foxtrot","year":2016,"posterUrl":"/library/metadata/3134/thumb/1599309042","imdbId":"","language":"en","overview":"In 2002, cable news producer Kim Barker decides to shake up her routine by taking a daring new assignment in Kabul, Afghanistan. Dislodged from her comfortable American lifestyle, Barker finds herself in the middle of an out-of-control war zone. Luckily, she meets Tanya Vanderpoel, a fellow journalist who takes the shell-shocked reporter under her wing. Amid the militants, warlords and nighttime partying, Barker discovers the key to becoming a successful correspondent.","moviesInCollection":[],"ratingKey":3134,"key":"/library/metadata/3134","collectionTitle":"","collectionId":-1,"tmdbId":279641},{"name":"The Ring Virus","year":1999,"posterUrl":"/library/metadata/47400/thumb/1599309180","imdbId":"","language":"en","overview":"Sun-ju is a reporter who uncovers a series of inexplicable deaths that occurred simultaneously. Her investigation leads her to a resort, where she finds a videotape filled with mysterious images. After viewing it, a message appears on the screen that she has just been cursed, and that in order to save herself she must - end of tape. Somebody has erased the rest, leaving her horrified and uncertain of her next move.","moviesInCollection":[],"ratingKey":47400,"key":"/library/metadata/47400","collectionTitle":"","collectionId":-1,"tmdbId":37576},{"name":"Green Lantern","year":2011,"posterUrl":"/library/metadata/1030/thumb/1599308205","imdbId":"","language":"en","overview":"For centuries, a small but powerful force of warriors called the Green Lantern Corps has sworn to keep intergalactic order. Each Green Lantern wears a ring that grants him superpowers. But when a new enemy called Parallax threatens to destroy the balance of power in the Universe, their fate and the fate of Earth lie in the hands of the first human ever recruited.","moviesInCollection":[],"ratingKey":1030,"key":"/library/metadata/1030","collectionTitle":"","collectionId":-1,"tmdbId":44912},{"name":"Patient Seven","year":2016,"posterUrl":"/library/metadata/1708/thumb/1599308481","imdbId":"","language":"en","overview":"The film centers on Dr. Marcus, a renowned psychiatrist who has selected 6 severe mentally ill and dangerous patients from the Spring Valley Mental Hospital to interview as part of research for his new book. As Dr. Marcus interviews each patient, one by one the horrors they have committed begin to unfold. However, Dr. Marcus soon learns that there is one patient who ties them all together - Patient Seven.","moviesInCollection":[],"ratingKey":1708,"key":"/library/metadata/1708","collectionTitle":"","collectionId":-1,"tmdbId":410126},{"name":"Sherlock Gnomes","year":2018,"posterUrl":"/library/metadata/2017/thumb/1599308612","imdbId":"","language":"en","overview":"Garden gnomes, Gnomeo & Juliet, recruit renown detective, Sherlock Gnomes, to investigate the mysterious disappearance of other garden ornaments.","moviesInCollection":[],"ratingKey":2017,"key":"/library/metadata/2017","collectionTitle":"","collectionId":-1,"tmdbId":370567},{"name":"Following","year":1999,"posterUrl":"/library/metadata/925/thumb/1599308162","imdbId":"","language":"en","overview":"A struggling, unemployed young writer takes to following strangers around the streets of London, ostensibly to find inspiration for his new novel.","moviesInCollection":[],"ratingKey":925,"key":"/library/metadata/925","collectionTitle":"","collectionId":-1,"tmdbId":11660},{"name":"Rock of Ages","year":2012,"posterUrl":"/library/metadata/1925/thumb/1599308574","imdbId":"","language":"en","overview":"A small town girl and a city boy meet on the Sunset Strip, while pursuing their Hollywood dreams.","moviesInCollection":[],"ratingKey":1925,"key":"/library/metadata/1925","collectionTitle":"","collectionId":-1,"tmdbId":80585},{"name":"Unknown","year":2011,"posterUrl":"/library/metadata/3057/thumb/1599309016","imdbId":"","language":"en","overview":"A man awakens from a coma, only to discover that someone has taken on his identity and that no one, (not even his wife), believes him. With the help of a young woman, he sets out to prove who he is.","moviesInCollection":[],"ratingKey":3057,"key":"/library/metadata/3057","collectionTitle":"","collectionId":-1,"tmdbId":48138},{"name":"Curse of Chucky","year":2013,"posterUrl":"/library/metadata/616/thumb/1599308052","imdbId":"","language":"en","overview":"After the passing of her mother, a young woman in a wheelchair since birth, is forced to deal with her sister, brother-in-law, niece and their nanny as they say their goodbyes to mother. When people start turning up dead, Nica discovers the culprit might be a strange doll she received a few days earlier.","moviesInCollection":[],"ratingKey":616,"key":"/library/metadata/616","collectionTitle":"","collectionId":-1,"tmdbId":167032},{"name":"Poltergeist II The Other Side","year":1986,"posterUrl":"/library/metadata/1787/thumb/1599308513","imdbId":"","language":"en","overview":"The Freeling family move in with Diane's mother in an effort to escape the trauma and aftermath of Carol Anne's abduction by the Beast. But the Beast is not to be put off so easily and appears in a ghostly apparition as the Reverend Kane, a religeous zealot responsible for the deaths of his many followers. His goal is simple - he wants the angelic Carol Anne.","moviesInCollection":[],"ratingKey":1787,"key":"/library/metadata/1787","collectionTitle":"","collectionId":-1,"tmdbId":11133},{"name":"Unhinged","year":2017,"posterUrl":"/library/metadata/3053/thumb/1599309015","imdbId":"","language":"en","overview":"Four American best friends decide to take the back roads travelling to a wedding in England, on their way a deadly secret forces the girls to be...","moviesInCollection":[],"ratingKey":3053,"key":"/library/metadata/3053","collectionTitle":"","collectionId":-1,"tmdbId":454417},{"name":"Welcome to the Jungle","year":2013,"posterUrl":"/library/metadata/3123/thumb/1599309039","imdbId":"","language":"en","overview":"A company retreat on a tropical island goes terribly awry.","moviesInCollection":[],"ratingKey":3123,"key":"/library/metadata/3123","collectionTitle":"","collectionId":-1,"tmdbId":205724},{"name":"Superman Returns","year":2006,"posterUrl":"/library/metadata/2215/thumb/1599308695","imdbId":"","language":"en","overview":"Superman returns to discover his 5-year absence has allowed Lex Luthor to walk free, and that those he was closest to felt abandoned and have moved on. Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever, as well as ridding himself of the Man of Steel.","moviesInCollection":[],"ratingKey":2215,"key":"/library/metadata/2215","collectionTitle":"","collectionId":-1,"tmdbId":1452},{"name":"Pulp Fiction","year":1994,"posterUrl":"/library/metadata/41931/thumb/1599309134","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":41931,"key":"/library/metadata/41931","collectionTitle":"","collectionId":-1,"tmdbId":680},{"name":"Fast Five","year":2011,"posterUrl":"/library/metadata/872/thumb/1599308143","imdbId":"","language":"en","overview":"Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody, they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro, they must pull one last job in order to gain their freedom.","moviesInCollection":[],"ratingKey":872,"key":"/library/metadata/872","collectionTitle":"","collectionId":-1,"tmdbId":51497},{"name":"Malibu Rescue The Next Wave","year":2020,"posterUrl":"/library/metadata/46711/thumb/1599309170","imdbId":"","language":"en","overview":"It’s summer again, and everyone’s favorite Junior Rescuers, The Flounders, are back at Tower 2. With the International Junior Rescue Championships headed to Southern California, the eyes of the entire planet are on Malibu Beach. But when Team USA falls victim to a bout of food poisoning, it’s up to Tyler, Dylan, Eric, Lizzie and Gina to represent their country in the world's most extreme lifeguard challenge!","moviesInCollection":[],"ratingKey":46711,"key":"/library/metadata/46711","collectionTitle":"","collectionId":-1,"tmdbId":695596},{"name":"Ghost in the Shell","year":1996,"posterUrl":"/library/metadata/986/thumb/1599308188","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":986,"key":"/library/metadata/986","collectionTitle":"","collectionId":-1,"tmdbId":9323},{"name":"Alice Through the Looking Glass","year":2016,"posterUrl":"/library/metadata/147/thumb/1599307880","imdbId":"","language":"en","overview":"In the sequel to Tim Burton's \"Alice in Wonderland\", Alice Kingsleigh returns to Underland and faces a new adventure in saving the Mad Hatter.","moviesInCollection":[],"ratingKey":147,"key":"/library/metadata/147","collectionTitle":"","collectionId":-1,"tmdbId":241259},{"name":"Hunter Killer","year":2018,"posterUrl":"/library/metadata/1150/thumb/1599308251","imdbId":"","language":"en","overview":"Captain Glass of the USS Arkansas discovers that a coup d'état is taking place in Russia, so he and his crew join an elite group working on the ground to prevent a war.","moviesInCollection":[],"ratingKey":1150,"key":"/library/metadata/1150","collectionTitle":"","collectionId":-1,"tmdbId":399402},{"name":"Bohemian Rhapsody","year":2018,"posterUrl":"/library/metadata/394/thumb/1599307971","imdbId":"","language":"en","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 – finding a way to keep the band together amid the success and excess.","moviesInCollection":[],"ratingKey":394,"key":"/library/metadata/394","collectionTitle":"","collectionId":-1,"tmdbId":424694},{"name":"Courage Under Fire","year":1996,"posterUrl":"/library/metadata/582/thumb/1599308041","imdbId":"","language":"en","overview":"A US Army officer had made a \"friendly fire\" mistake that was covered up and he was reassigned to a desk job. Later he was tasked to investigate a female chopper commander's worthiness to be awarded the Medal of Honor posthumously. At first all seemed in order. But then he begins to notice inconsistencies between the testimonies of the witnesses....","moviesInCollection":[],"ratingKey":582,"key":"/library/metadata/582","collectionTitle":"","collectionId":-1,"tmdbId":10684},{"name":"Enter the Void","year":2010,"posterUrl":"/library/metadata/826/thumb/1599308125","imdbId":"","language":"en","overview":"This psychedelic tour of life after death is seen entirely from the point of view of Oscar, a young American drug dealer and addict living in Tokyo with his prostitute sister, Linda. When Oscar is killed by police during a bust gone bad, his spirit journeys from the past -- where he sees his parents before their deaths -- to the present -- where he witnesses his own autopsy -- and then to the future, where he looks out for his sister from beyond the grave.","moviesInCollection":[],"ratingKey":826,"key":"/library/metadata/826","collectionTitle":"","collectionId":-1,"tmdbId":34647},{"name":"Paul Blart Mall Cop","year":2009,"posterUrl":"/library/metadata/1713/thumb/1599308483","imdbId":"","language":"en","overview":"Mild-mannered Paul Blart (Kevin James) has always had huge dreams of becoming a State Trooper. Until then, he patrols the local mall as a security guard. With his closely cropped moustache, personal transporter and gung-ho attitude, only Blart seems to take his job seriously. All that changes when a team of thugs raids the mall and takes hostages. Untrained, unarmed and a super-size target, Blart has to become a real cop to save the day.","moviesInCollection":[],"ratingKey":1713,"key":"/library/metadata/1713","collectionTitle":"","collectionId":-1,"tmdbId":14560},{"name":"Hot Tub Time Machine 2","year":2015,"posterUrl":"/library/metadata/1129/thumb/1599308243","imdbId":"","language":"en","overview":"When Lou, who has become the \"father of the Internet,\" is shot by an unknown assailant, Jacob and Nick fire up the time machine again to save their friend.","moviesInCollection":[],"ratingKey":1129,"key":"/library/metadata/1129","collectionTitle":"","collectionId":-1,"tmdbId":243938},{"name":"102 Dalmatians","year":2000,"posterUrl":"/library/metadata/7/thumb/1599307829","imdbId":"","language":"en","overview":"Get ready for a howling good time as an all new assortment of irresistible animal heroes are unleashed in this great family tail! In an unlikely alliance, the outrageous Waddlesworth... a parrot who thinks he's a Rottweiler... teams up with Oddball... an un-marked Dalmation puppy eager to earn her spots! Together they embark on a laugh-packed quest to outwit the ever-scheming Cruella De Vil","moviesInCollection":[],"ratingKey":7,"key":"/library/metadata/7","collectionTitle":"","collectionId":-1,"tmdbId":10481},{"name":"To Kill a Mockingbird","year":1962,"posterUrl":"/library/metadata/2946/thumb/1599308979","imdbId":"","language":"en","overview":"Scout Finch, 6, and her older brother Jem live in sleepy Maycomb, Alabama, spending much of their time with their friend Dill and spying on their reclusive and mysterious neighbor, Boo Radley. When Atticus, their widowed father and a respected lawyer, defends a black man named Tom Robinson against fabricated rape charges, the trial and tangent events expose the children to evils of racism and stereotyping.","moviesInCollection":[],"ratingKey":2946,"key":"/library/metadata/2946","collectionTitle":"","collectionId":-1,"tmdbId":595},{"name":"New Year's Eve","year":2011,"posterUrl":"/library/metadata/1606/thumb/1599308435","imdbId":"","language":"en","overview":"The lives of several couples and singles in New York intertwine over the course of New Year's Eve.","moviesInCollection":[],"ratingKey":1606,"key":"/library/metadata/1606","collectionTitle":"","collectionId":-1,"tmdbId":62838},{"name":"The Prestige","year":2006,"posterUrl":"/library/metadata/2753/thumb/1599308902","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2753,"key":"/library/metadata/2753","collectionTitle":"","collectionId":-1,"tmdbId":1124},{"name":"Prospect","year":2018,"posterUrl":"/library/metadata/1814/thumb/1599308525","imdbId":"","language":"en","overview":"A teenage girl and her father travel to a remote alien moon, aiming to strike it rich. They've secured a contract to harvest a large deposit of the elusive gems hidden in the depths of the moon's toxic forest. But there are others roving the wilderness and the job quickly devolves into a fight to survive.","moviesInCollection":[],"ratingKey":1814,"key":"/library/metadata/1814","collectionTitle":"","collectionId":-1,"tmdbId":506072},{"name":"Cool Hand Luke","year":1967,"posterUrl":"/library/metadata/571/thumb/1599308037","imdbId":"","language":"en","overview":"When petty criminal Luke Jackson is sentenced to two years in a Florida prison farm, he doesn't play by the rules of either the sadistic warden or the yard's resident heavy, Dragline, who ends up admiring the new guy's unbreakable will. Luke's bravado, even in the face of repeated stints in the prison's dreaded solitary confinement cell, \"the box,\" make him a rebel hero to his fellow convicts and a thorn in the side of the prison officers.","moviesInCollection":[],"ratingKey":571,"key":"/library/metadata/571","collectionTitle":"","collectionId":-1,"tmdbId":903},{"name":"Zack and Miri Make a Porno","year":2008,"posterUrl":"/library/metadata/3197/thumb/1599309063","imdbId":"","language":"en","overview":"Lifelong platonic friends Zack and Miri look to solve their respective cash-flow problems by making an adult film together. As the cameras roll, however, the duo begin to sense that they may have more feelings for each other than they previously thought.","moviesInCollection":[],"ratingKey":3197,"key":"/library/metadata/3197","collectionTitle":"","collectionId":-1,"tmdbId":10358},{"name":"The Godfather","year":1972,"posterUrl":"/library/metadata/2496/thumb/1599308797","imdbId":"","language":"en","overview":"Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.","moviesInCollection":[],"ratingKey":2496,"key":"/library/metadata/2496","collectionTitle":"","collectionId":-1,"tmdbId":238},{"name":"A Simple Favor","year":2018,"posterUrl":"/library/metadata/93/thumb/1599307859","imdbId":"","language":"en","overview":"Stephanie, a dedicated mother and popular vlogger, befriends Emily, a mysterious upper-class woman whose son Nicky attends the same school as Miles, Stephanie's son. When Emily asks her to pick Nicky up from school and then disappears, Stephanie undertakes an investigation that will dive deep into Emily's cloudy past.","moviesInCollection":[],"ratingKey":93,"key":"/library/metadata/93","collectionTitle":"","collectionId":-1,"tmdbId":484247},{"name":"Apollo 18","year":2011,"posterUrl":"/library/metadata/213/thumb/1599307905","imdbId":"","language":"en","overview":"Officially, Apollo 17 was the last manned mission to the moon. But a year later in 1973, three American astronauts were sent on a secret mission to the moon funded by the US Department of Defense. What you are about to see is the actual footage which the astronauts captured on that mission. While NASA denies it's authenticity, others say it's the real reason we've never gone back to the moon.","moviesInCollection":[],"ratingKey":213,"key":"/library/metadata/213","collectionTitle":"","collectionId":-1,"tmdbId":50357},{"name":"Red Heat","year":1988,"posterUrl":"/library/metadata/1867/thumb/1599308548","imdbId":"","language":"en","overview":"A tough Russian policeman is forced to partner up with a cocky Chicago police detective when he is sent to Chicago to apprehend a Georgian drug lord who killed his partner and fled the country.","moviesInCollection":[],"ratingKey":1867,"key":"/library/metadata/1867","collectionTitle":"","collectionId":-1,"tmdbId":9604},{"name":"Selma","year":2014,"posterUrl":"/library/metadata/1996/thumb/1599308602","imdbId":"","language":"en","overview":"\"Selma,\" as in Alabama, the place where segregation in the South was at its worst, leading to a march that ended in violence, forcing a famous statement by President Lyndon B. Johnson that ultimately led to the signing of the Civil Rights Act.","moviesInCollection":[],"ratingKey":1996,"key":"/library/metadata/1996","collectionTitle":"","collectionId":-1,"tmdbId":273895},{"name":"The Christmas Chronicles","year":2018,"posterUrl":"/library/metadata/2358/thumb/1599308744","imdbId":"","language":"en","overview":"Siblings Kate and Teddy try to prove Santa Claus is real, but when they accidentally cause his sleigh to crash, they have to save Christmas.","moviesInCollection":[],"ratingKey":2358,"key":"/library/metadata/2358","collectionTitle":"","collectionId":-1,"tmdbId":527435},{"name":"Drugstore Cowboy","year":1989,"posterUrl":"/library/metadata/786/thumb/1599308112","imdbId":"","language":"en","overview":"Bob Hughes is the leader of a \"family\" of drug addicts consisting of his wife, Dianne, and another couple who feed their habit by robbing drug stores as they travel across the country.","moviesInCollection":[],"ratingKey":786,"key":"/library/metadata/786","collectionTitle":"","collectionId":-1,"tmdbId":476},{"name":"Victor Frankenstein","year":2015,"posterUrl":"/library/metadata/3083/thumb/1599309026","imdbId":"","language":"en","overview":"Eccentric scientist Victor Von Frankenstein creates a grotesque creature in an unorthodox scientific experiment.","moviesInCollection":[],"ratingKey":3083,"key":"/library/metadata/3083","collectionTitle":"","collectionId":-1,"tmdbId":228066},{"name":"Shaun of the Dead","year":2004,"posterUrl":"/library/metadata/2015/thumb/1599308611","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2015,"key":"/library/metadata/2015","collectionTitle":"","collectionId":-1,"tmdbId":747},{"name":"Accepted","year":2006,"posterUrl":"/library/metadata/111/thumb/1599307867","imdbId":"","language":"en","overview":"A high school slacker who's rejected by every school he applies to opts to create his own institution of higher learning, the South Harmon Institute of Technology, on a rundown piece of property near his hometown.","moviesInCollection":[],"ratingKey":111,"key":"/library/metadata/111","collectionTitle":"","collectionId":-1,"tmdbId":9788},{"name":"2001 A Space Odyssey","year":1968,"posterUrl":"/library/metadata/21/thumb/1599307834","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":21,"key":"/library/metadata/21","collectionTitle":"","collectionId":-1,"tmdbId":62},{"name":"Predators","year":2010,"posterUrl":"/library/metadata/1800/thumb/1599308518","imdbId":"","language":"en","overview":"A mercenary reluctantly leads a motley crew of warriors who soon come to realize they've been captured and deposited on an alien planet by an unknown nemesis. With the exception of a peculiar physician, they are all cold-blooded killers, convicts, death squad members... hunters who have now become the hunted.","moviesInCollection":[],"ratingKey":1800,"key":"/library/metadata/1800","collectionTitle":"","collectionId":-1,"tmdbId":34851},{"name":"The Wolfpack","year":2015,"posterUrl":"/library/metadata/2901/thumb/1599308963","imdbId":"","language":"en","overview":"Locked away from society in an apartment on the Lower East Side of Manhattan, the Angulo brothers learn about the outside world through the films that they watch. Nicknamed ‘The Wolfpack’, the brothers spend their childhood reenacting their favorite films using elaborate home-made props and costumes. Their world is shaken up when one of the brothers escapes and everything changes.","moviesInCollection":[],"ratingKey":2901,"key":"/library/metadata/2901","collectionTitle":"","collectionId":-1,"tmdbId":307931},{"name":"Candyman","year":1992,"posterUrl":"/library/metadata/462/thumb/1599307997","imdbId":"","language":"en","overview":"The Candyman, a murderous soul with a hook for a hand, is accidentally summoned to reality by a skeptic grad student researching the monster's myth.","moviesInCollection":[],"ratingKey":462,"key":"/library/metadata/462","collectionTitle":"","collectionId":-1,"tmdbId":9529},{"name":"The Change-Up","year":2011,"posterUrl":"/library/metadata/2354/thumb/1599308742","imdbId":"","language":"en","overview":"Dave is a married man with two kids and a loving wife, and Mitch is a single man who is at the prime of his sexual life. One fateful night while Mitch and Dave are peeing in a fountain when lightning strikes, they switch bodies.","moviesInCollection":[],"ratingKey":2354,"key":"/library/metadata/2354","collectionTitle":"","collectionId":-1,"tmdbId":49520},{"name":"Spy","year":2015,"posterUrl":"/library/metadata/2121/thumb/1599308659","imdbId":"","language":"en","overview":"A desk-bound CIA analyst volunteers to go undercover to infiltrate the world of a deadly arms dealer, and prevent diabolical global disaster.","moviesInCollection":[],"ratingKey":2121,"key":"/library/metadata/2121","collectionTitle":"","collectionId":-1,"tmdbId":238713},{"name":"Coming to America","year":1988,"posterUrl":"/library/metadata/557/thumb/1599308031","imdbId":"","language":"en","overview":"Prince Akeem, heir to the throne of Zamunda, leaves the tropical paradise kingdom in search of his queen. What better place than Queens, New York, to find his bride? Joined by his loyal servant and friend, Semmi, Akeem attempts to blend in as an ordinary American and begin his search.","moviesInCollection":[],"ratingKey":557,"key":"/library/metadata/557","collectionTitle":"","collectionId":-1,"tmdbId":9602},{"name":"Tremors","year":1990,"posterUrl":"/library/metadata/2993/thumb/1599308995","imdbId":"","language":"en","overview":"Hick handymen Val McKee and Earl Bassett can barely eke out a living in the Nevada hamlet of Perfection, so they decide to leave town -- despite an admonition from a shapely seismology coed who's picking up odd readings on her equipment. Before long, Val and Earl discover what's responsible for those readings: 30-foot-long carnivorous worms with a proclivity for sucking their prey underground.","moviesInCollection":[],"ratingKey":2993,"key":"/library/metadata/2993","collectionTitle":"","collectionId":-1,"tmdbId":9362},{"name":"Teenage Mutant Ninja Turtles II The Secret of the Ooze","year":1991,"posterUrl":"/library/metadata/2255/thumb/1599308710","imdbId":"","language":"en","overview":"The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.","moviesInCollection":[],"ratingKey":2255,"key":"/library/metadata/2255","collectionTitle":"","collectionId":-1,"tmdbId":1497},{"name":"The Lovebirds","year":2020,"posterUrl":"/library/metadata/41095/thumb/1599309125","imdbId":"","language":"en","overview":"A couple experiences a defining moment in their relationship when they are unintentionally embroiled in a murder mystery. As their journey to clear their names takes them from one extreme – and hilarious - circumstance to the next, they must figure out how they, and their relationship, can survive the night.","moviesInCollection":[],"ratingKey":41095,"key":"/library/metadata/41095","collectionTitle":"","collectionId":-1,"tmdbId":576156},{"name":"The Villainess","year":2017,"posterUrl":"/library/metadata/2887/thumb/1599308958","imdbId":"","language":"en","overview":"A young girl is raised as a killer in the Yanbian province of China. She hides her identity and travels to South Korea where she hopes to lead a quiet life but becomes involved with two mysterious men.","moviesInCollection":[],"ratingKey":2887,"key":"/library/metadata/2887","collectionTitle":"","collectionId":-1,"tmdbId":437109},{"name":"My Uncle Benjamin","year":1969,"posterUrl":"/library/metadata/1579/thumb/1599308423","imdbId":"","language":"en","overview":"Benjamin is in love with Manette, the innkeeper's beautiful daughter, but she has no intention of giving in to the young doctor until she sees the marriage contract, and marriage does not fit in with Benjamin's spirit of independence. For the same reason he resists the efforts of his sister Bettine to marry him off to Arabelle, the daughter of old Dr. Minxit. Benjamin does agree to go and meet the girl. But that evening his sister finds him at the inn together with Manette, who is arrested by her father. So she decides to go with Benjamin herself. But as result of an incident with the fat Marquis puts paid to the expedition. Benjamin is subjected by the Marquis to a humiliating practical joke. Benjamin is determined to got his revenge. He succeeds thanks to the gorgeous Vicomte Hector de Pont-Cassé, who also helps Manette with her problems against her father. But Benjamin is now arrested by the Marquis...","moviesInCollection":[],"ratingKey":1579,"key":"/library/metadata/1579","collectionTitle":"","collectionId":-1,"tmdbId":2373},{"name":"Dragon Ball Z Super Android 13!","year":1992,"posterUrl":"/library/metadata/769/thumb/1599308106","imdbId":"","language":"en","overview":"Dr. Gero's Androids #13, #14, and #15 are awakened by the laboratory computers and immediately head to the mall where Goku is shopping. After Goku, Trunks, and Vegeta defeat #14 and #15, #13 absorbs their inner computers and becomes a super being greater than the original three separately were. Now it is up to Goku to stop him.","moviesInCollection":[],"ratingKey":769,"key":"/library/metadata/769","collectionTitle":"","collectionId":-1,"tmdbId":39104},{"name":"GoldenEye","year":1995,"posterUrl":"/library/metadata/41075/thumb/1599309122","imdbId":"","language":"en","overview":"When a powerful satellite system falls into the hands of Alec Trevelyan, AKA Agent 006, a former ally-turned-enemy, only James Bond can save the world from an awesome space weapon that -- in one short pulse -- could destroy the earth! As Bond squares off against his former compatriot, he also battles Trevelyan's stunning ally, Xenia Onatopp, an assassin who uses pleasure as her ultimate weapon.","moviesInCollection":[],"ratingKey":41075,"key":"/library/metadata/41075","collectionTitle":"","collectionId":-1,"tmdbId":710},{"name":"Lost Girls","year":2020,"posterUrl":"/library/metadata/1417/thumb/1599308349","imdbId":"","language":"en","overview":"When Mari Gilbert's daughter disappears, police inaction drives her own investigation into the gated Long Island community where Shannan was last seen. Her search brings attention to over a dozen murdered sex workers.","moviesInCollection":[],"ratingKey":1417,"key":"/library/metadata/1417","collectionTitle":"","collectionId":-1,"tmdbId":567970},{"name":"Escape from Zahrain","year":1962,"posterUrl":"/library/metadata/834/thumb/1599308128","imdbId":"","language":"en","overview":"Yul Brynner plays political leader Sharif who is sprung from a police van on his way to a firing squad by young loyalists led by Sal Mineo. Yul and the other prisoners kidnap an ambulance and head into the Arabian desert with the police in hot pursuit. All the performances are magnificent: Sal Mineo showing his acting talents, Jack Warden in a wiseguy performance as an employee of Zahrain oil who was involved in embezzlement, Anthony Caruso as a slimy psychotic and the underrated Madlyn Rhue as a nurse who becomes emotionally involved in the proceedings.","moviesInCollection":[],"ratingKey":834,"key":"/library/metadata/834","collectionTitle":"","collectionId":-1,"tmdbId":118300},{"name":"Species The Awakening","year":2007,"posterUrl":"/library/metadata/46035/thumb/1599309153","imdbId":"","language":"en","overview":"A scientist, Dr Holander, takes his niece Miranda to Mexico in an attempt to reverse the effects of the alien DNA he used to create her. However the treatment goes horribly wrong, and sets Miranda on a killing spree as she sets out to find a mate.","moviesInCollection":[],"ratingKey":46035,"key":"/library/metadata/46035","collectionTitle":"","collectionId":-1,"tmdbId":15212},{"name":"Movie 43","year":2013,"posterUrl":"/library/metadata/1551/thumb/1599308412","imdbId":"","language":"en","overview":"A series of interconnected short films follows a washed-up producer as he pitches insane story lines featuring some of the biggest stars in Hollywood.","moviesInCollection":[],"ratingKey":1551,"key":"/library/metadata/1551","collectionTitle":"","collectionId":-1,"tmdbId":87818},{"name":"Perfect Friday","year":1970,"posterUrl":"/library/metadata/1724/thumb/1599308488","imdbId":"","language":"en","overview":"The deputy manager of a London bank has worked out a way to rob the branch of £200,000. When he becomes involved with the attractive Lady Dorset he decides to go ahead with his plan. He needs her help and that of her philandering spendthrift husband. It all comes down to a matter of trust.","moviesInCollection":[],"ratingKey":1724,"key":"/library/metadata/1724","collectionTitle":"","collectionId":-1,"tmdbId":91583},{"name":"Apollo 13","year":2002,"posterUrl":"/library/metadata/212/thumb/1599307905","imdbId":"","language":"en","overview":"The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1971, 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.","moviesInCollection":[],"ratingKey":212,"key":"/library/metadata/212","collectionTitle":"","collectionId":-1,"tmdbId":568},{"name":"After","year":2019,"posterUrl":"/library/metadata/125/thumb/1599307872","imdbId":"","language":"en","overview":"Tessa Young is a dedicated student, dutiful daughter and loyal girlfriend to her high school sweetheart. Entering her first semester of college, Tessa's guarded world opens up when she meets Hardin Scott, a mysterious and brooding rebel who makes her question all she thought she knew about herself -- and what she wants out of life.","moviesInCollection":[],"ratingKey":125,"key":"/library/metadata/125","collectionTitle":"","collectionId":-1,"tmdbId":537915},{"name":"Clash of the Titans","year":2010,"posterUrl":"/library/metadata/521/thumb/1599308018","imdbId":"","language":"en","overview":"Born of a god but raised as a man, Perseus is helpless to save his family from Hades, vengeful god of the underworld. With nothing to lose, Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts, Perseus and his warriors will only survive if Perseus accepts his power as a god, defies fate and creates his own destiny.","moviesInCollection":[],"ratingKey":521,"key":"/library/metadata/521","collectionTitle":"","collectionId":-1,"tmdbId":18823},{"name":"Johnny English","year":2003,"posterUrl":"/library/metadata/1254/thumb/1599308290","imdbId":"","language":"en","overview":"A lowly pencil pusher working for MI7, Johnny English is suddenly promoted to super spy after Agent One is assassinated and every other agent is blown up at his funeral. When a billionaire entrepreneur sponsors the exhibition of the Crown Jewels—and the valuable gems disappear on the opening night and on English's watch—the newly-designated agent must jump into action to find the thief and recover the missing gems.","moviesInCollection":[],"ratingKey":1254,"key":"/library/metadata/1254","collectionTitle":"","collectionId":-1,"tmdbId":9486},{"name":"The Ides of March","year":2011,"posterUrl":"/library/metadata/2576/thumb/1599308827","imdbId":"","language":"en","overview":"Dirty tricks stand to soil an ambitious young press spokesman's idealism in a cutthroat presidential campaign where 'victory' is relative.","moviesInCollection":[],"ratingKey":2576,"key":"/library/metadata/2576","collectionTitle":"","collectionId":-1,"tmdbId":10316},{"name":"Resident Evil Apocalypse","year":2004,"posterUrl":"/library/metadata/1886/thumb/1599308557","imdbId":"","language":"en","overview":"As the city is locked down under quarantine, Alice joins a small band of elite soldiers, enlisted to rescue the missing daughter of the creator of the mutating T-virus. It's a heart-pounding race against time as the group faces off against hordes of blood- thirsty zombies, stealthy Lickers, mutant canines and the most sinister foe yet.","moviesInCollection":[],"ratingKey":1886,"key":"/library/metadata/1886","collectionTitle":"","collectionId":-1,"tmdbId":1577},{"name":"It's a Wonderful Life","year":1947,"posterUrl":"/library/metadata/43637/thumb/1599309142","imdbId":"","language":"en","overview":"A holiday favourite for generations... George Bailey has spent his entire life giving to the people of Bedford Falls. All that prevents rich skinflint Mr. Potter from taking over the entire town is George's modest building and loan company. But on Christmas Eve the business's $8,000 is lost and George's troubles begin.","moviesInCollection":[],"ratingKey":43637,"key":"/library/metadata/43637","collectionTitle":"","collectionId":-1,"tmdbId":1585},{"name":"Leatherheads","year":2008,"posterUrl":"/library/metadata/1352/thumb/1599308325","imdbId":"","language":"en","overview":"A light hearted comedy about the beginnings of Professional American Football. When a decorated war hero and college all star is tempted into playing professional football. Everyone see the chance to make some big money, but when a reporter digs up some dirt on the war hero... everyone could lose out.","moviesInCollection":[],"ratingKey":1352,"key":"/library/metadata/1352","collectionTitle":"","collectionId":-1,"tmdbId":4942},{"name":"Teenage Mutant Ninja Turtles III","year":1993,"posterUrl":"/library/metadata/2256/thumb/1599308710","imdbId":"","language":"en","overview":"The four turtles travel back in time to the days of the legendary and deadly samurai in ancient Japan, where they train to perfect the art of becoming one. The turtles also assist a small village in an uprising.","moviesInCollection":[],"ratingKey":2256,"key":"/library/metadata/2256","collectionTitle":"","collectionId":-1,"tmdbId":1499},{"name":"Johnny English Reborn","year":2011,"posterUrl":"/library/metadata/1255/thumb/1599308290","imdbId":"","language":"en","overview":"The most prominent heads of state in the world begin gathering for a conference that could have a major impact on global politics. When MI-7 receives word that the Chinese premier has become the target of some high-powered killers, it falls on Johnny English to save the day. Armed with the latest high-tech weaponry and gadgets that would make even James Bond jealous, the once-disgraced agent uncovers evidence of a massive conspiracy involving some of the world's most powerful organisations, and vows to redeem his tarnished reputation by stopping the killers before they can strike.","moviesInCollection":[],"ratingKey":1255,"key":"/library/metadata/1255","collectionTitle":"","collectionId":-1,"tmdbId":58233},{"name":"Uncut Gems","year":2019,"posterUrl":"/library/metadata/3039/thumb/1599309010","imdbId":"","language":"en","overview":"A charismatic New York City jeweler always on the lookout for the next big score makes a series of high-stakes bets that could lead to the windfall of a lifetime. Howard must perform a precarious high-wire act, balancing business, family, and encroaching adversaries on all sides in his relentless pursuit of the ultimate win.","moviesInCollection":[],"ratingKey":3039,"key":"/library/metadata/3039","collectionTitle":"","collectionId":-1,"tmdbId":473033},{"name":"A Fistful of Dollars","year":1967,"posterUrl":"/library/metadata/63/thumb/1599307848","imdbId":"","language":"en","overview":"The Man With No Name enters the Mexican village of San Miguel in the midst of a power struggle among the three Rojo brothers and sheriff John Baxter. When a regiment of Mexican soldiers bearing gold intended to pay for new weapons is waylaid by the Rojo brothers, the stranger inserts himself into the middle of the long-simmering battle, selling false information to both sides for his own benefit.","moviesInCollection":[],"ratingKey":63,"key":"/library/metadata/63","collectionTitle":"","collectionId":-1,"tmdbId":391},{"name":"Patriots Day","year":2016,"posterUrl":"/library/metadata/1711/thumb/1599308482","imdbId":"","language":"en","overview":"In the aftermath of an unspeakable act of terror, Police Sergeant Tommy Saunders joins courageous survivors, first responders and investigators in a race against the clock to hunt down the Boston Marathon bombers before they strike again.","moviesInCollection":[],"ratingKey":1711,"key":"/library/metadata/1711","collectionTitle":"","collectionId":-1,"tmdbId":388399},{"name":"Hidden in America","year":1996,"posterUrl":"/library/metadata/1106/thumb/1599308235","imdbId":"","language":"en","overview":"Story of a man Bill Januson whose pride in being the head of his family won't let him accept help from his sick daughters doctor. He has to prove to his kids that even with the death of his wife and the loss of his job that they can and will survive. After hitting brick wall after brick wall comes a glimmer of hope.","moviesInCollection":[],"ratingKey":1106,"key":"/library/metadata/1106","collectionTitle":"","collectionId":-1,"tmdbId":80221},{"name":"88 Minutes","year":2007,"posterUrl":"/library/metadata/45/thumb/1599307842","imdbId":"","language":"en","overview":"A college professor who moonlights as a forensic psychiatrist for the FBI, receives a death threat claiming he has only 88 minutes to live.","moviesInCollection":[],"ratingKey":45,"key":"/library/metadata/45","collectionTitle":"","collectionId":-1,"tmdbId":3489},{"name":"Saw IV","year":2007,"posterUrl":"/library/metadata/41021/thumb/1599309117","imdbId":"","language":"en","overview":"Jigsaw and his apprentice Amanda are dead. Now, upon the news of Detective Kerry's murder, two seasoned FBI profilers, Agent Strahm and Agent Perez, arrive in the terrified community to assist the veteran Detective Hoffman in sifting through Jigsaw's latest grisly remains and piecing together the puzzle. However, when SWAT Commander Rigg is abducted and thrust into a game, the last officer untouched by Jigsaw has but ninety minutes to overcome a series of demented traps and save an old friend...or face the deadly consequences.","moviesInCollection":[],"ratingKey":41021,"key":"/library/metadata/41021","collectionTitle":"","collectionId":-1,"tmdbId":663},{"name":"Blair Witch","year":2016,"posterUrl":"/library/metadata/378/thumb/1599307966","imdbId":"","language":"en","overview":"Students on a camping trip discover something sinister is lurking beyond the trees.","moviesInCollection":[],"ratingKey":378,"key":"/library/metadata/378","collectionTitle":"","collectionId":-1,"tmdbId":351211},{"name":"Public Enemies","year":2009,"posterUrl":"/library/metadata/1820/thumb/1599308527","imdbId":"","language":"en","overview":"Depression-era bank robber John Dillinger's charm and audacity endear him to much of America's downtrodden public, but he's also a thorn in the side of J. Edgar Hoover and the fledgling FBI. Desperate to capture the elusive outlaw, Hoover makes Dillinger his first Public Enemy Number One and assigns his top agent, Melvin Purvis, the task of bringing him in dead or alive.","moviesInCollection":[],"ratingKey":1820,"key":"/library/metadata/1820","collectionTitle":"","collectionId":-1,"tmdbId":11322},{"name":"The Fire Within","year":1963,"posterUrl":"/library/metadata/2466/thumb/1599308786","imdbId":"","language":"en","overview":"Alain Leroy is a recovering alcoholic who decides to end his life, but first decides to visit his friends in Paris one last time, in an attempt at finding a reason to continue living.","moviesInCollection":[],"ratingKey":2466,"key":"/library/metadata/2466","collectionTitle":"","collectionId":-1,"tmdbId":2593},{"name":"A Very Brady Sequel","year":1996,"posterUrl":"/library/metadata/96/thumb/1599307861","imdbId":"","language":"en","overview":"A man claiming to be Carol Brady's long-lost first husband, Roy Martin, shows up at the suburban Brady residence one evening. An impostor, the man is actually determined to steal the Bradys' familiar horse statue, a $20-million ancient Asian artifact.","moviesInCollection":[],"ratingKey":96,"key":"/library/metadata/96","collectionTitle":"","collectionId":-1,"tmdbId":12606},{"name":"Extremities","year":1986,"posterUrl":"/library/metadata/851/thumb/1599308135","imdbId":"","language":"en","overview":"A woman escapes from the man who is about to rape her, but leaves her purse behind. Afraid that her attacker might come after her, she goes to the police, but with no proof of the incident, they can do nothing. In fact, the man does use the information in her bag and comes to her apartment with the intent of rape, but she sprays him in the face with insect repellent, and then holds him captive. She is then faced with deciding whether to go to the police who might not believe her and release him, or to kill him.","moviesInCollection":[],"ratingKey":851,"key":"/library/metadata/851","collectionTitle":"","collectionId":-1,"tmdbId":44326},{"name":"Outpost Rise of the Spetsnaz","year":2013,"posterUrl":"/library/metadata/1677/thumb/1599308467","imdbId":"","language":"en","overview":"In the third installment of the hit Nazi Zombie action horror movie, Outpost: Rise Of The Spetnaz, we discover the horrifying origins of these supernatural soldiers and see them in ferocious gladiatorial battle against the most ruthless and notorious of all military special forces: the Russian Spetsnaz.","moviesInCollection":[],"ratingKey":1677,"key":"/library/metadata/1677","collectionTitle":"","collectionId":-1,"tmdbId":164377},{"name":"Still Waiting...","year":2009,"posterUrl":"/library/metadata/2168/thumb/1599308678","imdbId":"","language":"en","overview":"After Shenaniganz loses all its hottest waitresses to new competitor Ta-Ta's Wing Shack -- where the scantily clad wait staff earns bigger tips -- the Shenaniganz staff aims to give Ta-Ta's its just desserts.","moviesInCollection":[],"ratingKey":2168,"key":"/library/metadata/2168","collectionTitle":"","collectionId":-1,"tmdbId":15105},{"name":"Catch Me If You Can","year":2002,"posterUrl":"/library/metadata/39786/thumb/1599309096","imdbId":"","language":"en","overview":"A true story about Frank Abagnale Jr. who, before his 19th birthday, successfully conned millions of dollars worth of checks as a Pan Am pilot, doctor, and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture, he revels in the pursuit.","moviesInCollection":[],"ratingKey":39786,"key":"/library/metadata/39786","collectionTitle":"","collectionId":-1,"tmdbId":640},{"name":"Peppermint","year":2018,"posterUrl":"/library/metadata/1720/thumb/1599308486","imdbId":"","language":"en","overview":"A grieving mother transforms herself into a vigilante following the murders of her husband and daughter, eluding the authorities to deliver her own personal brand of justice.","moviesInCollection":[],"ratingKey":1720,"key":"/library/metadata/1720","collectionTitle":"","collectionId":-1,"tmdbId":458594},{"name":"Leatherface","year":2017,"posterUrl":"/library/metadata/1350/thumb/1599308325","imdbId":"","language":"en","overview":"A young nurse is kidnapped by a group of violent teens who escape from a mental hospital and take her on the road trip from hell. Pursued by an equally deranged lawman out for revenge, one of the teens is destined for tragedy and horrors that will destroy his mind, moulding him into a monster named Leatherface.","moviesInCollection":[],"ratingKey":1350,"key":"/library/metadata/1350","collectionTitle":"","collectionId":-1,"tmdbId":300665},{"name":"Guardians of the Galaxy","year":2014,"posterUrl":"/library/metadata/1037/thumb/1599308207","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1037,"key":"/library/metadata/1037","collectionTitle":"","collectionId":-1,"tmdbId":118340},{"name":"Cars 3","year":2017,"posterUrl":"/library/metadata/478/thumb/1599308003","imdbId":"","language":"en","overview":"Blindsided by a new generation of blazing-fast racers, the legendary Lightning McQueen is suddenly pushed out of the sport he loves. To get back in the game, he will need the help of an eager young race technician with her own plan to win, inspiration from the late Fabulous Hudson Hornet, and a few unexpected turns. Proving that #95 isn't through yet will test the heart of a champion on Piston Cup Racing’s biggest stage!","moviesInCollection":[],"ratingKey":478,"key":"/library/metadata/478","collectionTitle":"","collectionId":-1,"tmdbId":260514},{"name":"I Got the Hook Up","year":1998,"posterUrl":"/library/metadata/1157/thumb/1599308253","imdbId":"","language":"en","overview":"Two broke buddies feel lucky when they come upon a truckload of cellular phones and begin selling them out of the back of their van. Trouble arises though, when the phones develop faults. The two friends then not only have to deal with unsatisfied customers but also the FBI.","moviesInCollection":[],"ratingKey":1157,"key":"/library/metadata/1157","collectionTitle":"","collectionId":-1,"tmdbId":40505},{"name":"Uncle Buck","year":1989,"posterUrl":"/library/metadata/3037/thumb/1599309010","imdbId":"","language":"en","overview":"As an idle, good-natured bachelor, Uncle Buck is the last person you would think of to watch the kids. However, during a family crisis, he is suddenly left in charge of his nephew and nieces. Unaccustomed to suburban life, fun-loving Uncle Buck soon charms his younger relatives Miles and Maizy with his hefty cooking and his new way of doing the laundry. His carefree style does not impress everyone though - especially his rebellious teenage niece, Tia, and his impatient girlfriend, Chanice. With a little bit of luck and a lot of love, Uncle Buck manages to surprise everyone in this heartwarming family comedy.","moviesInCollection":[],"ratingKey":3037,"key":"/library/metadata/3037","collectionTitle":"","collectionId":-1,"tmdbId":2616},{"name":"Never Say Never Again","year":1983,"posterUrl":"/library/metadata/1603/thumb/1599308434","imdbId":"","language":"en","overview":"James Bond returns as the secret agent 007 one more time to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo's girlfriend, the willowy Domino, who falls for Bond and seeks revenge. This is the last time for Sean Connery as Her Majesty's Secret Agent 007. Made outside of the traditional Broccoli production environment due to separate rights having been obtained for this specific Ian Fleming story.","moviesInCollection":[],"ratingKey":1603,"key":"/library/metadata/1603","collectionTitle":"","collectionId":-1,"tmdbId":36670},{"name":"Rush","year":2013,"posterUrl":"/library/metadata/1945/thumb/1599308583","imdbId":"","language":"en","overview":"A biographical drama centered on the rivalry between Formula 1 drivers James Hunt and Niki Lauda during the 1976 Formula One motor-racing season.","moviesInCollection":[],"ratingKey":1945,"key":"/library/metadata/1945","collectionTitle":"","collectionId":-1,"tmdbId":96721},{"name":"Leprechaun","year":1993,"posterUrl":"/library/metadata/27850/thumb/1599309079","imdbId":"","language":"en","overview":"A horrific Leprechaun goes on a rampage after his precious bag of gold coins is stolen. He uses all of his magical destructive powers to trick, terrorize and kill anyone who is unlucky enough to hinder his relentless search. In a frantic attempt to survive the wrath of the Leprechaun, Tori and her friends scramble to find the only weapon known to kill this Irish monster...a four-leaf clover.","moviesInCollection":[],"ratingKey":27850,"key":"/library/metadata/27850","collectionTitle":"","collectionId":-1,"tmdbId":11811},{"name":"Polaroid","year":2019,"posterUrl":"/library/metadata/1777/thumb/1599308509","imdbId":"","language":"en","overview":"High school loner Bird Fitcher has no idea what dark secrets are tied to the mysterious Polaroid vintage camera she stumbles upon, but it doesn't take long to discover that those who have their picture taken meet a tragic end. Bird and her friends must survive one more night as they race to solve the mystery of the haunted Polaroid before it kills them all.","moviesInCollection":[],"ratingKey":1777,"key":"/library/metadata/1777","collectionTitle":"","collectionId":-1,"tmdbId":431075},{"name":"Bedazzled","year":1967,"posterUrl":"/library/metadata/326/thumb/1599307945","imdbId":"","language":"en","overview":"Stanley is infatuated with Margaret, the statuesque waitress who works with him. He meets George Spiggott AKA the devil and sells his soul for 7 wishes, which Stanley uses to try and make Margaret his own first as an intellectual, then as a rock star, then as a wealthy industrialist. As each fails, he becomes more aware of how empty his life had been and how much more he has to live for.","moviesInCollection":[],"ratingKey":326,"key":"/library/metadata/326","collectionTitle":"","collectionId":-1,"tmdbId":18209},{"name":"The Mule","year":2018,"posterUrl":"/library/metadata/2694/thumb/1599308876","imdbId":"","language":"en","overview":"Earl Stone, a man in his eighties, is broke, alone, and facing foreclosure of his business when he is offered a job that simply requires him to drive. Easy enough, but, unbeknownst to Earl, he's just signed on as a drug courier for a Mexican cartel. He does so well that his cargo increases exponentially, and Earl hit the radar of hard-charging DEA agent Colin Bates.","moviesInCollection":[],"ratingKey":2694,"key":"/library/metadata/2694","collectionTitle":"","collectionId":-1,"tmdbId":504172},{"name":"Thirteen","year":2003,"posterUrl":"/library/metadata/2921/thumb/1599308970","imdbId":"","language":"en","overview":"Tracy is a normal 13-year-old trying to make it in school. After befriending the most popular girl at school, Evie, Tracy's world is turned upside down when Evie introduces her to a world of sex, drugs and cash. But it isn't long before Tracy's new world and attitude finally takes a toll on her, her family, and old friends.","moviesInCollection":[],"ratingKey":2921,"key":"/library/metadata/2921","collectionTitle":"","collectionId":-1,"tmdbId":11023},{"name":"The Intern","year":2015,"posterUrl":"/library/metadata/2585/thumb/1599308830","imdbId":"","language":"en","overview":"70-year-old widower Ben Whittaker has discovered that retirement isn't all it's cracked up to be. Seizing an opportunity to get back in the game, he becomes a senior intern at an online fashion site, founded and run by Jules Ostin.","moviesInCollection":[],"ratingKey":2585,"key":"/library/metadata/2585","collectionTitle":"","collectionId":-1,"tmdbId":257211},{"name":"Inside Job","year":2010,"posterUrl":"/library/metadata/1194/thumb/1599308267","imdbId":"","language":"en","overview":"A film that exposes the shocking truth behind the economic crisis of 2008. The global financial meltdown, at a cost of over $20 trillion, resulted in millions of people losing their homes and jobs. Through extensive research and interviews with major financial insiders, politicians and journalists, Inside Job traces the rise of a rogue industry and unveils the corrosive relationships which have corrupted politics, regulation and academia.","moviesInCollection":[],"ratingKey":1194,"key":"/library/metadata/1194","collectionTitle":"","collectionId":-1,"tmdbId":44639},{"name":"The NeverEnding Story II The Next Chapter","year":1991,"posterUrl":"/library/metadata/2712/thumb/1599308884","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2712,"key":"/library/metadata/2712","collectionTitle":"","collectionId":-1,"tmdbId":34636},{"name":"Déjà Vu","year":2006,"posterUrl":"/library/metadata/620/thumb/1599308053","imdbId":"","language":"en","overview":"Called in to recover evidence in the aftermath of a horrific explosion on a New Orleans ferry, Federal agent Doug Carlin gets pulled away from the scene and taken to a top-secret government lab that uses a time-shifting surveillance device to help prevent crime.","moviesInCollection":[],"ratingKey":620,"key":"/library/metadata/620","collectionTitle":"","collectionId":-1,"tmdbId":7551},{"name":"Be Cool","year":2005,"posterUrl":"/library/metadata/322/thumb/1599307943","imdbId":"","language":"en","overview":"Disenchanted with the movie industry, Chili Palmer tries the music industry, meeting and romancing a widow of a music executive along the way.","moviesInCollection":[],"ratingKey":322,"key":"/library/metadata/322","collectionTitle":"","collectionId":-1,"tmdbId":4551},{"name":"Monty Python and the Holy Grail","year":1975,"posterUrl":"/library/metadata/1540/thumb/1599308407","imdbId":"","language":"en","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\".","moviesInCollection":[],"ratingKey":1540,"key":"/library/metadata/1540","collectionTitle":"","collectionId":-1,"tmdbId":762},{"name":"Monsters","year":2010,"posterUrl":"/library/metadata/1535/thumb/1599308405","imdbId":"","language":"en","overview":"Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain \"the creatures,\" while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.","moviesInCollection":[],"ratingKey":1535,"key":"/library/metadata/1535","collectionTitle":"","collectionId":-1,"tmdbId":43933},{"name":"The Wind Rises","year":2014,"posterUrl":"/library/metadata/46399/thumb/1599309158","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46399,"key":"/library/metadata/46399","collectionTitle":"","collectionId":-1,"tmdbId":149870},{"name":"Beyond The Sky","year":2018,"posterUrl":"/library/metadata/345/thumb/1599307952","imdbId":"","language":"en","overview":"A documentary filmmaker travels to a UFO convention in New Mexico where he meets a local artist with a dark secret. As they follow a trail of clues they discover disturbing sightings and question all they believe when they become immersed in the enigmatic culture of the Pueblo Indians.","moviesInCollection":[],"ratingKey":345,"key":"/library/metadata/345","collectionTitle":"","collectionId":-1,"tmdbId":478528},{"name":"The Mule","year":2014,"posterUrl":"/library/metadata/2693/thumb/1599308875","imdbId":"","language":"en","overview":"In 1983, a naive man is detained by Australian Federal Police with lethal narcotics hidden in his stomach. After being apprehended, ‘The Mule’ makes a desperate choice... to defy his bodily functions and withhold the evidence – literally.","moviesInCollection":[],"ratingKey":2693,"key":"/library/metadata/2693","collectionTitle":"","collectionId":-1,"tmdbId":253272},{"name":"Black Panther","year":2018,"posterUrl":"/library/metadata/367/thumb/1599307961","imdbId":"","language":"en","overview":"King T'Challa returns home from America to the reclusive, technologically advanced African nation of Wakanda to serve as his country's new leader. However, T'Challa soon finds that he is challenged for the throne by factions within his own country as well as without. Using powers reserved to Wakandan kings, T'Challa assumes the Black Panther mantel to join with girlfriend Nakia, the queen-mother, his princess-kid sister, members of the Dora Milaje (the Wakandan 'special forces') and an American secret agent, to prevent Wakanda from being dragged into a world war.","moviesInCollection":[],"ratingKey":367,"key":"/library/metadata/367","collectionTitle":"","collectionId":-1,"tmdbId":284054},{"name":"Master Z Ip Man Legacy","year":2019,"posterUrl":"/library/metadata/1467/thumb/1599308374","imdbId":"","language":"en","overview":"Following his defeat by Master Ip, Cheung Tin Chi (Zhang) tries to make a life with his young son in Hong Kong, waiting tables at a bar that caters to expats. But it s not long before the mix of foreigners, money, and triad leaders draw him once again to the fight.","moviesInCollection":[],"ratingKey":1467,"key":"/library/metadata/1467","collectionTitle":"","collectionId":-1,"tmdbId":450001},{"name":"Revenge of the Nerds","year":1984,"posterUrl":"/library/metadata/1896/thumb/1599308560","imdbId":"","language":"en","overview":"At Adams College, the jocks rule the school from their house on high, the Alpha Beta fraternity. So when a group of socially-challenged misfits try to go Greek, they're instantly rejected by every house on campus. Deciding to start their own fraternity to protect their outcast brothers, the campus nerds soon find themselves in a battle royale as the Alpha Betas try to crush their new rivals.","moviesInCollection":[],"ratingKey":1896,"key":"/library/metadata/1896","collectionTitle":"","collectionId":-1,"tmdbId":14052},{"name":"Street Kings 2 Motor City","year":2011,"posterUrl":"/library/metadata/2180/thumb/1599308683","imdbId":"","language":"en","overview":"Detroit detective Marty Kingston (Liotta) is the leader of an undercover narcotics team, whose members are being systematically murdered one by one. To solve the brutal killings, Kingston joins forces with a cocky, young homicide detective. But neither of them is prepared for the shocking corruption their investigation will uncover — stunning secrets that will set both men on a violent collision course with betrayal and vengeance.","moviesInCollection":[],"ratingKey":2180,"key":"/library/metadata/2180","collectionTitle":"","collectionId":-1,"tmdbId":58625},{"name":"Live and Let Die","year":1973,"posterUrl":"/library/metadata/1402/thumb/1599308342","imdbId":"","language":"en","overview":"James Bond must investigate a mysterious murder case of a British agent in New Orleans. Soon he finds himself up against a gangster boss named Mr. Big.","moviesInCollection":[],"ratingKey":1402,"key":"/library/metadata/1402","collectionTitle":"","collectionId":-1,"tmdbId":253},{"name":"On Her Majesty's Secret Service","year":1969,"posterUrl":"/library/metadata/1646/thumb/1599308454","imdbId":"","language":"en","overview":"James Bond tracks his archnemesis, Ernst Blofeld, to a mountaintop retreat where he is training an army of beautiful, lethal women. Along the way, Bond falls for Italian contessa Tracy Draco, and marries her in order to get closer to Blofeld.","moviesInCollection":[],"ratingKey":1646,"key":"/library/metadata/1646","collectionTitle":"","collectionId":-1,"tmdbId":668},{"name":"Forbidden World","year":1982,"posterUrl":"/library/metadata/928/thumb/1599308163","imdbId":"","language":"en","overview":"In the distant future, a federation marshal arrives at a research lab on a remote planet where a genetic experiment has gotten loose and begins feeding on the dwindling scientific group.","moviesInCollection":[],"ratingKey":928,"key":"/library/metadata/928","collectionTitle":"","collectionId":-1,"tmdbId":42251},{"name":"Only God Forgives","year":2013,"posterUrl":"/library/metadata/1661/thumb/1599308461","imdbId":"","language":"en","overview":"Julian, who runs a Thai boxing club as a front organization for his family's drug smuggling operation, is forced by his mother Crystal to find and kill the individual responsible for his brother's recent death.","moviesInCollection":[],"ratingKey":1661,"key":"/library/metadata/1661","collectionTitle":"","collectionId":-1,"tmdbId":77987},{"name":"Dawn of the Planet of the Apes","year":2014,"posterUrl":"/library/metadata/646/thumb/1599308062","imdbId":"","language":"en","overview":"A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.","moviesInCollection":[],"ratingKey":646,"key":"/library/metadata/646","collectionTitle":"","collectionId":-1,"tmdbId":119450},{"name":"The Game","year":1997,"posterUrl":"/library/metadata/2483/thumb/1599308793","imdbId":"","language":"en","overview":"In honor of his birthday, San Francisco banker Nicholas Van Orton, a financial genius and a cold-hearted loner, receives an unusual present from his younger brother, Conrad: a gift certificate to play a unique kind of game. In nearly a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.","moviesInCollection":[],"ratingKey":2483,"key":"/library/metadata/2483","collectionTitle":"","collectionId":-1,"tmdbId":2649},{"name":"The Strangers","year":2008,"posterUrl":"/library/metadata/2841/thumb/1599308942","imdbId":"","language":"en","overview":"After returning from a wedding reception, a couple staying in an isolated vacation house receive a knock on the door in the mid-hours of the night. What ensues is a violent invasion by three strangers, their faces hidden behind masks. The couple find themselves in a violent struggle, in which they go beyond what either of them thought capable in order to survive.","moviesInCollection":[],"ratingKey":2841,"key":"/library/metadata/2841","collectionTitle":"","collectionId":-1,"tmdbId":10665},{"name":"Fire with Fire","year":2012,"posterUrl":"/library/metadata/902/thumb/1599308154","imdbId":"","language":"en","overview":"A fireman takes an unexpected course of action when a man whom he's been ordered to testify against—after being held up at a local convenience store—threatens him.","moviesInCollection":[],"ratingKey":902,"key":"/library/metadata/902","collectionTitle":"","collectionId":-1,"tmdbId":139567},{"name":"Monos","year":2019,"posterUrl":"/library/metadata/1531/thumb/1599308403","imdbId":"","language":"en","overview":"On a faraway mountaintop, eight kids with guns watch over a hostage and a conscripted milk cow.","moviesInCollection":[],"ratingKey":1531,"key":"/library/metadata/1531","collectionTitle":"","collectionId":-1,"tmdbId":417466},{"name":"The Age of Shadows","year":2016,"posterUrl":"/library/metadata/2285/thumb/1599308719","imdbId":"","language":"en","overview":"Set in the late 1920s, The Age of Shadows follows the cat-and-mouse game that unfolds between a group of resistance fighters trying to bring in explosives from Shanghai to destroy key Japanese facilities in Seoul, and Japanese agents trying to stop them.","moviesInCollection":[],"ratingKey":2285,"key":"/library/metadata/2285","collectionTitle":"","collectionId":-1,"tmdbId":363579},{"name":"Cars 2","year":2011,"posterUrl":"/library/metadata/477/thumb/1599308003","imdbId":"","language":"en","overview":"Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.","moviesInCollection":[],"ratingKey":477,"key":"/library/metadata/477","collectionTitle":"","collectionId":-1,"tmdbId":49013},{"name":"The Curse of Frankenstein","year":1957,"posterUrl":"/library/metadata/2384/thumb/1599308754","imdbId":"","language":"en","overview":"Baron Victor Frankenstein has discovered life's secret and unleashed a blood-curdling chain of events resulting from his creation: a cursed creature with a horrid face — and a tendency to kill.","moviesInCollection":[],"ratingKey":2384,"key":"/library/metadata/2384","collectionTitle":"","collectionId":-1,"tmdbId":3079},{"name":"Peter Rabbit","year":2018,"posterUrl":"/library/metadata/1731/thumb/1599308491","imdbId":"","language":"en","overview":"Peter Rabbit's feud with Mr. McGregor escalates to greater heights than ever before as they rival for the affections of the warm-hearted animal lover who lives next door.","moviesInCollection":[],"ratingKey":1731,"key":"/library/metadata/1731","collectionTitle":"","collectionId":-1,"tmdbId":381719},{"name":"Lego DC Comics Super Heroes The Flash","year":2018,"posterUrl":"/library/metadata/1358/thumb/1599308327","imdbId":"","language":"en","overview":"In LEGO DC Super Heroes: The Flash, Reverse-Flash manipulates the Speed Force to put the Flash into a time loop that forces him to relive the same day over and over again—with progressively disastrous results, including losing his powers and being fired by the Justice League. The Flash must find a way to restore time to its original path and finally apprehend his worst enemy before all is lost for the Flash…and the world!","moviesInCollection":[],"ratingKey":1358,"key":"/library/metadata/1358","collectionTitle":"","collectionId":-1,"tmdbId":504997},{"name":"Funny Games","year":1997,"posterUrl":"/library/metadata/959/thumb/1599308178","imdbId":"","language":"en","overview":"Two psychotic young men take a mother, father, and son hostage in their vacation cabin and force them to play sadistic \"games\" with one another for their own amusement.","moviesInCollection":[],"ratingKey":959,"key":"/library/metadata/959","collectionTitle":"","collectionId":-1,"tmdbId":10234},{"name":"Bedazzled","year":2000,"posterUrl":"/library/metadata/39607/thumb/1599309087","imdbId":"","language":"en","overview":"Elliot Richardson, a suicidal techno geek, is given seven wishes to turn his life around when he meets a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil puts her own little twist on each of his fantasies.","moviesInCollection":[],"ratingKey":39607,"key":"/library/metadata/39607","collectionTitle":"","collectionId":-1,"tmdbId":1636},{"name":"The Rocky Horror Picture Show","year":1975,"posterUrl":"/library/metadata/48457/thumb/1601904434","imdbId":"","language":"en","overview":"Sweethearts Brad and Janet, stuck with a flat tire during a storm, discover the eerie mansion of Dr. Frank-N-Furter, a transvestite scientist. As their innocence is lost, Brad and Janet meet a houseful of wild characters, including a rocking biker and a creepy butler. Through elaborate dances and rock songs, Frank-N-Furter unveils his latest creation: a muscular man named 'Rocky'.","moviesInCollection":[],"ratingKey":48457,"key":"/library/metadata/48457","collectionTitle":"","collectionId":-1,"tmdbId":36685},{"name":"Wedding Crashers","year":2005,"posterUrl":"/library/metadata/3120/thumb/1599309038","imdbId":"","language":"en","overview":"John and his buddy, Jeremy are emotional criminals who know how to use a woman's hopes and dreams for their own carnal gain. Their modus operandi: crashing weddings. Normally, they meet guests who want to toast the romantic day with a random hook-up. But when John meets Claire, he discovers what true love – and heartache – feels like.","moviesInCollection":[],"ratingKey":3120,"key":"/library/metadata/3120","collectionTitle":"","collectionId":-1,"tmdbId":9522},{"name":"Batman Unlimited Animal Instincts","year":2015,"posterUrl":"/library/metadata/47405/thumb/1599309181","imdbId":"","language":"en","overview":"Gotham City is under siege by a series of bizarre crimes and only the world's greatest detective, Batman, can unravel the mystery! The trail leads to none other than the Penguin and his Animilitia, an animal-inspired squad of villains including Silverback, Cheetah, Killer Croc and the monstrous Man-Bat.","moviesInCollection":[],"ratingKey":47405,"key":"/library/metadata/47405","collectionTitle":"","collectionId":-1,"tmdbId":327418},{"name":"Descendants 3","year":2019,"posterUrl":"/library/metadata/696/thumb/1599308079","imdbId":"","language":"en","overview":"The teenagers of Disney's most infamous villains return to the Isle of the Lost to recruit a new batch of villainous offspring to join them at Auradon Prep.","moviesInCollection":[],"ratingKey":696,"key":"/library/metadata/696","collectionTitle":"","collectionId":-1,"tmdbId":506574},{"name":"Tenure","year":2009,"posterUrl":"/library/metadata/2259/thumb/1599308711","imdbId":"","language":"en","overview":"Despite his outstanding intellect, associate professor Charlie Thurber is a chronic underachiever and has never received university tenure. Aided by his nutty best friend, Charlie launches a final effort to make the grade at Gray College. But a beautiful new teacher whose ascending star threatens to eclipse him shakes up Charlie's plans.","moviesInCollection":[],"ratingKey":2259,"key":"/library/metadata/2259","collectionTitle":"","collectionId":-1,"tmdbId":33215},{"name":"Twister","year":1996,"posterUrl":"/library/metadata/3028/thumb/1599309006","imdbId":"","language":"en","overview":"TV weatherman Bill Harding is trying to get his tornado-hunter wife, Jo, to sign divorce papers so he can marry his girlfriend Melissa. But Mother Nature, in the form of a series of intense storms sweeping across Oklahoma, has other plans. Soon the three have joined the team of stormchasers as they attempt to insert a revolutionary measuring device into the very heart of several extremely violent tornados.","moviesInCollection":[],"ratingKey":3028,"key":"/library/metadata/3028","collectionTitle":"","collectionId":-1,"tmdbId":664},{"name":"Cowboys & Aliens","year":2011,"posterUrl":"/library/metadata/583/thumb/1599308041","imdbId":"","language":"en","overview":"A stranger stumbles into the desert town of Absolution with no memory of his past and a futuristic shackle around his wrist. With the help of mysterious beauty Ella and the iron-fisted Colonel Dolarhyde, he finds himself leading an unlikely posse of cowboys, outlaws, and Apache warriors against a common enemy from beyond this world in an epic showdown for survival.","moviesInCollection":[],"ratingKey":583,"key":"/library/metadata/583","collectionTitle":"","collectionId":-1,"tmdbId":49849},{"name":"Resident Evil Retribution","year":2012,"posterUrl":"/library/metadata/1888/thumb/1599308558","imdbId":"","language":"en","overview":"The Umbrella Corporation’s deadly T-virus continues to ravage the Earth, transforming the global population into legions of the flesh eating Undead. The human race’s last and only hope, Alice, awakens in the heart of Umbrella’s most clandestine operations facility and unveils more of her mysterious past as she delves further into the complex. Without a safe haven, Alice continues to hunt those responsible for the outbreak; a chase that takes her from Tokyo to New York, Washington, D.C. and Moscow, culminating in a mind-blowing revelation that will force her to rethink everything that she once thought to be true. Aided by new found allies and familiar friends, Alice must fight to survive long enough to escape a hostile world on the brink of oblivion. The countdown has begun.","moviesInCollection":[],"ratingKey":1888,"key":"/library/metadata/1888","collectionTitle":"","collectionId":-1,"tmdbId":71679},{"name":"The Old Guard","year":2020,"posterUrl":"/library/metadata/46514/thumb/1599309161","imdbId":"","language":"en","overview":"Four immortal mercenaries who've secretly protected humanity for centuries become targeted for their mysterious powers just as they discover a new immortal.","moviesInCollection":[],"ratingKey":46514,"key":"/library/metadata/46514","collectionTitle":"","collectionId":-1,"tmdbId":547016},{"name":"Taken 3","year":2015,"posterUrl":"/library/metadata/2237/thumb/1599308702","imdbId":"","language":"en","overview":"Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.","moviesInCollection":[],"ratingKey":2237,"key":"/library/metadata/2237","collectionTitle":"","collectionId":-1,"tmdbId":260346},{"name":"The Adjustment Bureau","year":2011,"posterUrl":"/library/metadata/2282/thumb/1599308718","imdbId":"","language":"en","overview":"A man glimpses the future Fate has planned for him – and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he's ever loved.","moviesInCollection":[],"ratingKey":2282,"key":"/library/metadata/2282","collectionTitle":"","collectionId":-1,"tmdbId":38050},{"name":"Saw V","year":2008,"posterUrl":"/library/metadata/42262/thumb/1599309139","imdbId":"","language":"en","overview":"Detective Hoffman is seemingly the last person alive to carry on the Jigsaw legacy. But when his secret is threatened, he must go on the hunt to eliminate all the loose ends.","moviesInCollection":[],"ratingKey":42262,"key":"/library/metadata/42262","collectionTitle":"","collectionId":-1,"tmdbId":11917},{"name":"Hellboy Animated Blood and Iron","year":2007,"posterUrl":"/library/metadata/1088/thumb/1599308228","imdbId":"","language":"en","overview":"When Hellboy, Liz Sherman, and Abe Sapien are assigned to investigate the ghost-infested mansion of a publicity-hound billionaire, they uncover a plot to resurrect a beautiful yet monstrous vampire from Professor Bruttenholm’s past. But before they can stop her bloodbath, Hellboy will have to battle harpies, hellhounds, a giant werewolf, and even the ferocious goddess Hecate herself.","moviesInCollection":[],"ratingKey":1088,"key":"/library/metadata/1088","collectionTitle":"","collectionId":-1,"tmdbId":13204},{"name":"Descendants 2","year":2017,"posterUrl":"/library/metadata/695/thumb/1599308079","imdbId":"","language":"en","overview":"When the pressure to be royal becomes too much for Mal, she returns to the Isle of the Lost where her archenemy Uma, Ursula's daughter, has taken her spot as self-proclaimed queen.","moviesInCollection":[],"ratingKey":695,"key":"/library/metadata/695","collectionTitle":"","collectionId":-1,"tmdbId":417320},{"name":"The Conspiracy","year":2012,"posterUrl":"/library/metadata/2372/thumb/1599308749","imdbId":"","language":"en","overview":"A documentary about conspiracy theories takes a horrific turn after the filmmakers uncover an ancient and dangerous secret society.","moviesInCollection":[],"ratingKey":2372,"key":"/library/metadata/2372","collectionTitle":"","collectionId":-1,"tmdbId":133369},{"name":"Abominable","year":2019,"posterUrl":"/library/metadata/107/thumb/1599307865","imdbId":"","language":"en","overview":"A group of misfits encounter a young Yeti named Everest, and they set off to reunite the magical creature with his family on the mountain of his namesake.","moviesInCollection":[],"ratingKey":107,"key":"/library/metadata/107","collectionTitle":"","collectionId":-1,"tmdbId":431580},{"name":"Dr. Strangelove or How I Learned to Stop Worrying and Love the Bomb","year":1964,"posterUrl":"/library/metadata/747/thumb/1599308099","imdbId":"","language":"en","overview":"After the insane General Jack D. Ripper initiates a nuclear strike on the Soviet Union, a war room full of politicians, generals and a Russian diplomat all frantically try to stop the nuclear strike.","moviesInCollection":[],"ratingKey":747,"key":"/library/metadata/747","collectionTitle":"","collectionId":-1,"tmdbId":935},{"name":"The Devil Rides Out","year":1968,"posterUrl":"/library/metadata/2415/thumb/1599308765","imdbId":"","language":"en","overview":"The powers of good are pitted against the forces of evil as the Duc de Richelieu wrestles with the charming but deadly Satanist, Mocata, for the soul of his friend. Mocata has the knowledge and the power to summon the forces of darkness and, as the Duc de Richelieu and his friends remain within the protected pentacle, they are subjected to ever-increasing horror until thundering hooves herald the arrival of the Angel of Death. Known as \"The Devil's Bride\" in the United States.","moviesInCollection":[],"ratingKey":2415,"key":"/library/metadata/2415","collectionTitle":"","collectionId":-1,"tmdbId":39891},{"name":"Transformers Revenge of the Fallen","year":2009,"posterUrl":"/library/metadata/2987/thumb/1599308993","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2987,"key":"/library/metadata/2987","collectionTitle":"","collectionId":-1,"tmdbId":8373},{"name":"A Black Veil for Lisa","year":1968,"posterUrl":"/library/metadata/47/thumb/1599307843","imdbId":"","language":"en","overview":"When a narcotics officer suspects that his beautiful wife, who is a former criminal, is having an affair, he becomes so obsessed with this that he has major problems to manage their work. In the end, his obsession with devastating consequences when he captures the assassin he hunts.","moviesInCollection":[],"ratingKey":47,"key":"/library/metadata/47","collectionTitle":"","collectionId":-1,"tmdbId":104935},{"name":"Starship Troopers","year":1997,"posterUrl":"/library/metadata/2158/thumb/1599308674","imdbId":"","language":"en","overview":"Set in the future, the story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry. Rico's military career progresses from recruit to non-commissioned officer and finally to officer against the backdrop of an interstellar war between mankind and an arachnoid species known as \"the Bugs\".","moviesInCollection":[],"ratingKey":2158,"key":"/library/metadata/2158","collectionTitle":"","collectionId":-1,"tmdbId":563},{"name":"Taken 2","year":2012,"posterUrl":"/library/metadata/2236/thumb/1599308701","imdbId":"","language":"en","overview":"In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.","moviesInCollection":[],"ratingKey":2236,"key":"/library/metadata/2236","collectionTitle":"","collectionId":-1,"tmdbId":82675},{"name":"Cyborg 2","year":1993,"posterUrl":"/library/metadata/619/thumb/1599308052","imdbId":"","language":"en","overview":"In the year 2074, the cybernetics market is dominated by two rival companies: USA's Pinwheel Robotics and Japan's Kobayashi Electronics. Cyborgs are commonplace, used for anything from soldiers to prostitutes. Casella Reese is a prototype cyborg developed for corporate espionage and assassination. She is filled with a liquid explosive called Glass Shadow. Pinwheel plans to eliminate the entire Kobayashi board of directors by using Casella","moviesInCollection":[],"ratingKey":619,"key":"/library/metadata/619","collectionTitle":"","collectionId":-1,"tmdbId":16437},{"name":"This Is 40","year":2012,"posterUrl":"/library/metadata/2923/thumb/1599308971","imdbId":"","language":"en","overview":"Pete and Debbie are both about to turn 40, their kids hate each other, both of their businesses are failing, they're on the verge of losing their house, and their relationship is threatening to fall apart.","moviesInCollection":[],"ratingKey":2923,"key":"/library/metadata/2923","collectionTitle":"","collectionId":-1,"tmdbId":89492},{"name":"Rosemary's Baby","year":1968,"posterUrl":"/library/metadata/48821/thumb/1601956053","imdbId":"","language":"en","overview":"A young couple moves into an infamous New York apartment building to start a family. Things become frightening as Rosemary begins to suspect her unborn baby isn’t safe around their strange neighbors.","moviesInCollection":[],"ratingKey":48821,"key":"/library/metadata/48821","collectionTitle":"","collectionId":-1,"tmdbId":805},{"name":"Scooby-Doo! and WWE Curse of the Speed Demon","year":2016,"posterUrl":"/library/metadata/1984/thumb/1599308597","imdbId":"","language":"en","overview":"It's pedal to the metal as Scooby-Doo, Shaggy and the gang team up with the superstars of WWE in this hi-octane, all-new original movie! When Scooby and Mystery Inc. visit an off-road racing competition, it's not long before strange events start to occur. A mysterious phantom racer, known only as Inferno, is causing chaos and determined to sabotage the race. It's up Scooby-Doo, Shaggy and their new driving partner, The Undertaker, to save the race and solve the mystery. Along with other WWE superstars such as Triple H, Paige and Shamus, it's time to start your engine and your appetite because Scooby-Doo and WWE are chasing down adventure and laughs just for you!","moviesInCollection":[],"ratingKey":1984,"key":"/library/metadata/1984","collectionTitle":"","collectionId":-1,"tmdbId":409122},{"name":"Solace","year":2016,"posterUrl":"/library/metadata/2083/thumb/1599308642","imdbId":"","language":"en","overview":"A psychic doctor, John Clancy, works with an FBI special agent in search of a serial killer.","moviesInCollection":[],"ratingKey":2083,"key":"/library/metadata/2083","collectionTitle":"","collectionId":-1,"tmdbId":339527},{"name":"I Origins","year":2014,"posterUrl":"/library/metadata/1161/thumb/1599308254","imdbId":"","language":"en","overview":"I Origins follows a molecular biologist studying the evolution of the human eye. He finds his work permeating his life after a brief encounter with an exotic young woman who slips away from him. As his research continues years later with his lab partner, they make a stunning scientific discovery that has far reaching implications and complicates both his scientific and and spiritual beliefs. Traveling half way around the world, he risks everything he has ever known to validate his theory.","moviesInCollection":[],"ratingKey":1161,"key":"/library/metadata/1161","collectionTitle":"","collectionId":-1,"tmdbId":244267},{"name":"Happy Death Day","year":2017,"posterUrl":"/library/metadata/1060/thumb/1599308217","imdbId":"","language":"en","overview":"Caught in a bizarre and terrifying time warp, college student Tree finds herself repeatedly reliving the day of her murder, ultimately realizing that she must identify the killer and the reason for her death before her chances of survival run out.","moviesInCollection":[],"ratingKey":1060,"key":"/library/metadata/1060","collectionTitle":"","collectionId":-1,"tmdbId":440021},{"name":"Gifted Hands The Ben Carson Story","year":2009,"posterUrl":"/library/metadata/1000/thumb/1599308193","imdbId":"","language":"en","overview":"Gifted Hands: The Ben Carson Story is a movie based on the life story of world-renowned neurosurgeon Ben Carson from 1961 to 1987.","moviesInCollection":[],"ratingKey":1000,"key":"/library/metadata/1000","collectionTitle":"","collectionId":-1,"tmdbId":22683},{"name":"Run All Night","year":2015,"posterUrl":"/library/metadata/1942/thumb/1599308581","imdbId":"","language":"en","overview":"Brooklyn mobster and prolific hit man Jimmy Conlon has seen better days. Longtime best friend of a mob boss, Jimmy is haunted by the sins of his past—as well as a dogged police detective who’s been one step behind Jimmy for 30 years. But when Jimmy’s estranged son becomes a target, Jimmy must make a choice between the crime family he chose and the real family he abandoned long ago. Now, with nowhere safe to turn, Jimmy has just one night to figure out exactly where his loyalties lie and to see if he can finally make things right.","moviesInCollection":[],"ratingKey":1942,"key":"/library/metadata/1942","collectionTitle":"","collectionId":-1,"tmdbId":241554},{"name":"Vampires vs. the Bronx","year":2020,"posterUrl":"/library/metadata/48446/thumb/1601904113","imdbId":"","language":"en","overview":"Three gutsy kids from a rapidly gentrifying Bronx neighborhood stumble upon a sinister plot to suck all the life from their beloved community.","moviesInCollection":[],"ratingKey":48446,"key":"/library/metadata/48446","collectionTitle":"","collectionId":-1,"tmdbId":567971},{"name":"Alan Partridge Alpha Papa","year":2014,"posterUrl":"/library/metadata/141/thumb/1599307878","imdbId":"","language":"en","overview":"Alan Partridge has had many ups and downs in life—national television broadcaster; responsible for killing a guest on live TV; local radio broadcaster; nervous breakdown in Dundee; and a self-published book that was subsequently recalled and pulped. Alan tries to salvage his public career while negotiating a potentially violent turn of events at North Norfolk Digital Radio.","moviesInCollection":[],"ratingKey":141,"key":"/library/metadata/141","collectionTitle":"","collectionId":-1,"tmdbId":177699},{"name":"Second Act","year":2018,"posterUrl":"/library/metadata/1994/thumb/1599308601","imdbId":"","language":"en","overview":"Maya, a 40-year-old woman struggling with frustrations from unfulfilled dreams. Until that is, she gets the chance to prove to Madison Avenue that street smarts are as valuable as book smarts, and that it is never too late for a second act.","moviesInCollection":[],"ratingKey":1994,"key":"/library/metadata/1994","collectionTitle":"","collectionId":-1,"tmdbId":503616},{"name":"The Driver","year":1978,"posterUrl":"/library/metadata/2429/thumb/1599308770","imdbId":"","language":"en","overview":"The Driver specializes in driving getaway cars for robberies. His exceptional talent has prevented him from being caught yet. After another successful flight from the police a self-assured detective makes it his primary goal to catch the Driver. He promises pardons to a gang if they help to convict him in a set-up robbery. The Driver seeks help from The Player to mislead the detective.","moviesInCollection":[],"ratingKey":2429,"key":"/library/metadata/2429","collectionTitle":"","collectionId":-1,"tmdbId":2153},{"name":"The Mustang","year":2019,"posterUrl":"/library/metadata/2703/thumb/1599308880","imdbId":"","language":"en","overview":"While participating in a rehabilitation program training wild mustangs, a convict at first struggles to connect with the horses and his fellow inmates, but he learns to confront his violent past as he soothes an especially feisty horse.","moviesInCollection":[],"ratingKey":2703,"key":"/library/metadata/2703","collectionTitle":"","collectionId":-1,"tmdbId":500860},{"name":"A Clockwork Orange","year":1971,"posterUrl":"/library/metadata/57/thumb/1599307846","imdbId":"","language":"en","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?","moviesInCollection":[],"ratingKey":57,"key":"/library/metadata/57","collectionTitle":"","collectionId":-1,"tmdbId":185},{"name":"First Kill","year":2017,"posterUrl":"/library/metadata/904/thumb/1599308155","imdbId":"","language":"en","overview":"A police chief tries to solve a kidnapping that involves a bank robber holding a young boy hostage.","moviesInCollection":[],"ratingKey":904,"key":"/library/metadata/904","collectionTitle":"","collectionId":-1,"tmdbId":410554},{"name":"Hall Pass","year":2011,"posterUrl":"/library/metadata/1042/thumb/1599308210","imdbId":"","language":"en","overview":"When best buds Rick and Fred begin to show signs of restlessness at home, their wives take a bold approach to revitalize their marriages, they grant the guys a 'hall pass'—one week of freedom to do whatever they want. At first, it seems like a dream come true, but they quickly discover that their expectations of the single life—and themselves—are completely and hilariously out of sync with reality.","moviesInCollection":[],"ratingKey":1042,"key":"/library/metadata/1042","collectionTitle":"","collectionId":-1,"tmdbId":48988},{"name":"Time Lapse","year":2014,"posterUrl":"/library/metadata/2940/thumb/1599308977","imdbId":"","language":"en","overview":"Three friends discover a mysterious machine that takes pictures 24 hours into the future and conspire to use it for personal gain, until disturbing and dangerous images begin to develop.","moviesInCollection":[],"ratingKey":2940,"key":"/library/metadata/2940","collectionTitle":"","collectionId":-1,"tmdbId":273271},{"name":"A Cinderella Story Once Upon a Song","year":2011,"posterUrl":"/library/metadata/47968/thumb/1599336946","imdbId":"","language":"en","overview":"In this modern telling of the classic tale, aspiring singer Katie Gibbs falls for the new boy at her performing arts high school. But Katie's wicked stepmother and stepsister are scheming to crush her dream before she can sing her way into his heart.","moviesInCollection":[],"ratingKey":47968,"key":"/library/metadata/47968","collectionTitle":"","collectionId":-1,"tmdbId":74018},{"name":"The House","year":2017,"posterUrl":"/library/metadata/2551/thumb/1599308818","imdbId":"","language":"en","overview":"When Scott and Kate Johansen’s daughter gets into the college of her dreams it’s cause for celebration. That is, until Scott and Kate learn that the scholarship they were counting on didn’t come through, and they’re now on the hook for tuition they can’t begin to afford. With the help of their friend and neighbor Frank also in need of a major payday they decide to open an illegal casino in his suburban house, risking everything together on a Vegas-style bacchanal where money flows, inhibitions are checked at the door, and all bets are off.","moviesInCollection":[],"ratingKey":2551,"key":"/library/metadata/2551","collectionTitle":"","collectionId":-1,"tmdbId":345914},{"name":"The Rescuers","year":1977,"posterUrl":"/library/metadata/2777/thumb/1599308913","imdbId":"","language":"en","overview":"What can two little mice possibly do to save an orphan girl who's fallen into evil hands? With a little cooperation and faith in oneself, anything is possible! As members of the mouse-run International Rescue Aid Society, Bernard and Miss Bianca respond to orphan Penny's call for help. The two mice search for clues with the help of an old cat named Rufus.","moviesInCollection":[],"ratingKey":2777,"key":"/library/metadata/2777","collectionTitle":"","collectionId":-1,"tmdbId":11319},{"name":"Under the Skin","year":2014,"posterUrl":"/library/metadata/3041/thumb/1599309011","imdbId":"","language":"en","overview":"A seductive alien prowls the streets of Glasgow in search of prey: unsuspecting men who fall under her spell.","moviesInCollection":[],"ratingKey":3041,"key":"/library/metadata/3041","collectionTitle":"","collectionId":-1,"tmdbId":97370},{"name":"The 40 Year Old Virgin","year":2005,"posterUrl":"/library/metadata/2273/thumb/1599308715","imdbId":"","language":"en","overview":"Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.","moviesInCollection":[],"ratingKey":2273,"key":"/library/metadata/2273","collectionTitle":"","collectionId":-1,"tmdbId":6957},{"name":"Rescue Dawn","year":2007,"posterUrl":"/library/metadata/1882/thumb/1599308555","imdbId":"","language":"en","overview":"A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.","moviesInCollection":[],"ratingKey":1882,"key":"/library/metadata/1882","collectionTitle":"","collectionId":-1,"tmdbId":9952},{"name":"Sharknado 2 The Second One","year":2014,"posterUrl":"/library/metadata/2012/thumb/1599308609","imdbId":"","language":"en","overview":"A freak weather system turns its deadly fury on New York City, unleashing a Sharknado on the population and its most cherished, iconic sites - and only Fin and April can save the Big Apple.","moviesInCollection":[],"ratingKey":2012,"key":"/library/metadata/2012","collectionTitle":"","collectionId":-1,"tmdbId":248504},{"name":"The Hangover Part II","year":2011,"posterUrl":"/library/metadata/2528/thumb/1599308809","imdbId":"","language":"en","overview":"The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.","moviesInCollection":[],"ratingKey":2528,"key":"/library/metadata/2528","collectionTitle":"","collectionId":-1,"tmdbId":45243},{"name":"Star Trek Nemesis","year":2002,"posterUrl":"/library/metadata/2140/thumb/1599308667","imdbId":"","language":"en","overview":"En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.","moviesInCollection":[],"ratingKey":2140,"key":"/library/metadata/2140","collectionTitle":"","collectionId":-1,"tmdbId":201},{"name":"Your Name.","year":2016,"posterUrl":"/library/metadata/3195/thumb/1599309063","imdbId":"","language":"en","overview":"High schoolers Mitsuha and Taki are complete strangers living separate lives. But one night, they suddenly switch places. Mitsuha wakes up in Taki’s body, and he in hers. This bizarre occurrence continues to happen randomly, and the two must adjust their lives around each other.","moviesInCollection":[],"ratingKey":3195,"key":"/library/metadata/3195","collectionTitle":"","collectionId":-1,"tmdbId":372058},{"name":"Escape from Pretoria","year":2020,"posterUrl":"/library/metadata/27829/thumb/1599309072","imdbId":"","language":"en","overview":"Two white South Africans, imprisoned for working on behalf of the ANC, are determined to escape from Pretoria's notorious white man's 'Robben Island' Prison.","moviesInCollection":[],"ratingKey":27829,"key":"/library/metadata/27829","collectionTitle":"","collectionId":-1,"tmdbId":502425},{"name":"Blitz","year":2011,"posterUrl":"/library/metadata/384/thumb/1599307968","imdbId":"","language":"en","overview":"A tough, renegade cop with a gay sidekick is dispatched to take down a serial killer who has been targeting police officers.","moviesInCollection":[],"ratingKey":384,"key":"/library/metadata/384","collectionTitle":"","collectionId":-1,"tmdbId":55846},{"name":"Wildlife","year":2018,"posterUrl":"/library/metadata/3150/thumb/1599309048","imdbId":"","language":"en","overview":"14-year-old Joe is the only child of Jeanette and Jerry — a housewife and a golf pro — in a small town in 1960s Montana. Nearby, an uncontrolled forest fire rages close to the Canadian border, and when Jerry loses his job (and his sense of purpose) he decides to join the cause of fighting the fire, leaving his wife and son to fend for themselves.","moviesInCollection":[],"ratingKey":3150,"key":"/library/metadata/3150","collectionTitle":"","collectionId":-1,"tmdbId":417812},{"name":"This Is Spinal Tap","year":1984,"posterUrl":"/library/metadata/2924/thumb/1599308971","imdbId":"","language":"en","overview":"\"This Is Spinal Tap\" shines a light on the self-contained universe of a metal band struggling to get back on the charts, including everything from its complicated history of ups and downs, gold albums, name changes and undersold concert dates, along with the full host of requisite groupies, promoters, hangers-on and historians, sessions, release events and those special behind-the-scenes moments that keep it all real.","moviesInCollection":[],"ratingKey":2924,"key":"/library/metadata/2924","collectionTitle":"","collectionId":-1,"tmdbId":11031},{"name":"Wake Up, Ron Burgundy The Lost Movie","year":2004,"posterUrl":"/library/metadata/3091/thumb/1599309028","imdbId":"","language":"en","overview":"While Ron Burgundy's rivalry with Veronica Corningstone escalates quickly, a group of unprofessional thieves better known as 'The Alarm Clock' try to make the truth known, whatever that may mean...","moviesInCollection":[],"ratingKey":3091,"key":"/library/metadata/3091","collectionTitle":"","collectionId":-1,"tmdbId":9965},{"name":"Beverly Hills Cop III","year":1994,"posterUrl":"/library/metadata/342/thumb/1599307951","imdbId":"","language":"en","overview":"Back in sunny southern California and on the trail of two murderers, Axel Foley again teams up with LA cop Billy Rosewood. Soon, they discover that an amusement park is being used as a front for a massive counterfeiting ring – and it's run by the same gang that shot Billy's boss.","moviesInCollection":[],"ratingKey":342,"key":"/library/metadata/342","collectionTitle":"","collectionId":-1,"tmdbId":306},{"name":"Cube Zero","year":2004,"posterUrl":"/library/metadata/613/thumb/1599308051","imdbId":"","language":"en","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’t stand to see a woman suffer he himself enters the cube to try and save her.","moviesInCollection":[],"ratingKey":613,"key":"/library/metadata/613","collectionTitle":"","collectionId":-1,"tmdbId":438},{"name":"K-19 The Widowmaker","year":2002,"posterUrl":"/library/metadata/1290/thumb/1599308303","imdbId":"","language":"en","overview":"When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.","moviesInCollection":[],"ratingKey":1290,"key":"/library/metadata/1290","collectionTitle":"","collectionId":-1,"tmdbId":8665},{"name":"Your Highness","year":2011,"posterUrl":"/library/metadata/3194/thumb/1599309063","imdbId":"","language":"en","overview":"A fantasy movie about an arrogant, lazy prince and his more heroic brother who must complete a quest in order to save their father's kingdom.","moviesInCollection":[],"ratingKey":3194,"key":"/library/metadata/3194","collectionTitle":"","collectionId":-1,"tmdbId":38319},{"name":"George of the Jungle","year":1997,"posterUrl":"/library/metadata/976/thumb/1599308184","imdbId":"","language":"en","overview":"After Baby George survives a plane crash in the jungle, he is rescued and then adopted by a wise ape. Years later, grown-up George saves a US noble woman, Ursula Stanhope while she is on a safari—and takes her to the jungle to live with him. While Ursula's lover continues his search for Ursula and the one who took her, George slowly learns the rules of human relationships.","moviesInCollection":[],"ratingKey":976,"key":"/library/metadata/976","collectionTitle":"","collectionId":-1,"tmdbId":10603},{"name":"Bandits","year":2001,"posterUrl":"/library/metadata/43667/thumb/1599309145","imdbId":"","language":"en","overview":"Two bank robbers fall in love with the girl they've kidnapped.","moviesInCollection":[],"ratingKey":43667,"key":"/library/metadata/43667","collectionTitle":"","collectionId":-1,"tmdbId":3172},{"name":"Capote","year":2005,"posterUrl":"/library/metadata/464/thumb/1599307998","imdbId":"","language":"en","overview":"A biopic of the writer, Truman Capote and his assignment for The New Yorker to write the non-fiction book, 'In Cold Blood'.","moviesInCollection":[],"ratingKey":464,"key":"/library/metadata/464","collectionTitle":"","collectionId":-1,"tmdbId":398},{"name":"Frozen","year":2013,"posterUrl":"/library/metadata/956/thumb/1599308176","imdbId":"","language":"en","overview":"Young princess Anna of Arendelle dreams about finding true love at her sister Elsa’s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.","moviesInCollection":[],"ratingKey":956,"key":"/library/metadata/956","collectionTitle":"","collectionId":-1,"tmdbId":109445},{"name":"Resident Evil Extinction","year":2007,"posterUrl":"/library/metadata/1887/thumb/1599308557","imdbId":"","language":"en","overview":"Years after the Racoon City catastrophe, survivors travel across the Nevada desert, hoping to make it to Alaska. Alice joins the caravan and their fight against hordes of zombies and the evil Umbrella Corp.","moviesInCollection":[],"ratingKey":1887,"key":"/library/metadata/1887","collectionTitle":"","collectionId":-1,"tmdbId":7737},{"name":"Rushmore","year":1998,"posterUrl":"/library/metadata/1949/thumb/1599308584","imdbId":"","language":"en","overview":"When a beautiful first-grade teacher arrives at a prep school, she soon attracts the attention of an ambitious teenager named Max, who quickly falls in love with her. Max turns to the father of two of his schoolmates for advice on how to woo the teacher. However, the situation soon gets complicated when Max's new friend becomes involved with her, setting the two pals against one another in a war for her attention.","moviesInCollection":[],"ratingKey":1949,"key":"/library/metadata/1949","collectionTitle":"","collectionId":-1,"tmdbId":11545},{"name":"Return of the Jedi","year":1983,"posterUrl":"/library/metadata/39517/thumb/1599309085","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":39517,"key":"/library/metadata/39517","collectionTitle":"","collectionId":-1,"tmdbId":1892},{"name":"Red Balls","year":2012,"posterUrl":"/library/metadata/1862/thumb/1599308546","imdbId":"","language":"en","overview":"Four teams from the grittiest corners of Chicago meet for a no holds barred dodge ball tournament.","moviesInCollection":[],"ratingKey":1862,"key":"/library/metadata/1862","collectionTitle":"","collectionId":-1,"tmdbId":292850},{"name":"Cube 2 Hypercube","year":2002,"posterUrl":"/library/metadata/3208/thumb/1599309068","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3208,"key":"/library/metadata/3208","collectionTitle":"","collectionId":-1,"tmdbId":437},{"name":"The Incredible Burt Wonderstone","year":2013,"posterUrl":"/library/metadata/2580/thumb/1599308828","imdbId":"","language":"en","overview":"After breaking up with his longtime stage partner, a famous but jaded Vegas magician fights for relevance when a new, \"hip\" street magician appears on the scene.","moviesInCollection":[],"ratingKey":2580,"key":"/library/metadata/2580","collectionTitle":"","collectionId":-1,"tmdbId":124459},{"name":"The Fountain","year":2006,"posterUrl":"/library/metadata/2477/thumb/1599308791","imdbId":"","language":"en","overview":"Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.","moviesInCollection":[],"ratingKey":2477,"key":"/library/metadata/2477","collectionTitle":"","collectionId":-1,"tmdbId":1381},{"name":"Boo 2! A Madea Halloween","year":2017,"posterUrl":"/library/metadata/398/thumb/1599307972","imdbId":"","language":"en","overview":"Madea and the gang encounter monsters, goblins and boogeymen at a haunted campground.","moviesInCollection":[],"ratingKey":398,"key":"/library/metadata/398","collectionTitle":"","collectionId":-1,"tmdbId":459202},{"name":"Carriers","year":2009,"posterUrl":"/library/metadata/475/thumb/1599308002","imdbId":"","language":"en","overview":"A deadly virus has spread across the globe. Contagion is everywhere, no one is safe, and no one can be trusted. Four friends race through the back roads of the American West on their way to a secluded utopian beach in the Gulf of Mexico where they could peacefully wait out the pandemic. Their plans take a grim turn when their car breaks down on an isolated road starting a chain of events that will seal their fates.","moviesInCollection":[],"ratingKey":475,"key":"/library/metadata/475","collectionTitle":"","collectionId":-1,"tmdbId":25769},{"name":"Trilogy of Terror","year":1975,"posterUrl":"/library/metadata/2999/thumb/1599308996","imdbId":"","language":"en","overview":"Three bizarre horror stories ending with the story of an African doll out for blood.","moviesInCollection":[],"ratingKey":2999,"key":"/library/metadata/2999","collectionTitle":"","collectionId":-1,"tmdbId":38783},{"name":"Jeepers Creepers","year":2001,"posterUrl":"/library/metadata/1232/thumb/1599308282","imdbId":"","language":"en","overview":"A college-age brother and sister get more than they bargained for on their road trip home from spring break. When the bickering siblings witness a creepy truck driver tossing body bags into a sewer near an abandoned church, they investigate. Bad move! Opening a Pandora's Box of unspeakable evil, the pair must flee for their lives -- with a monstrous \"shape\" in hot pursuit.","moviesInCollection":[],"ratingKey":1232,"key":"/library/metadata/1232","collectionTitle":"","collectionId":-1,"tmdbId":8922},{"name":"Lone Survivor","year":2013,"posterUrl":"/library/metadata/1411/thumb/1599308346","imdbId":"","language":"en","overview":"Four Navy SEALs on a covert mission to neutralize a high-level Taliban operative must make an impossible moral decision in the mountains of Afghanistan that leads them into an enemy ambush. As they confront unthinkable odds, the SEALs must find reserves of strength and resilience to fight to the finish.","moviesInCollection":[],"ratingKey":1411,"key":"/library/metadata/1411","collectionTitle":"","collectionId":-1,"tmdbId":193756},{"name":"Prancer","year":1989,"posterUrl":"/library/metadata/1797/thumb/1599308517","imdbId":"","language":"en","overview":"Jessica, the daughter of an impoverished apple farmer, still believes in Santa Claus. So when she comes across a reindeer with an injured leg, it makes perfect sense to her to assume that it is Prancer, who had fallen from a Christmas display in town. She hides the reindeer in her barn and feeds it cookies, until she can return it to Santa. Her father finds the reindeer an decides to sell it to the butcher, not for venison chops, but as an advertising display.","moviesInCollection":[],"ratingKey":1797,"key":"/library/metadata/1797","collectionTitle":"","collectionId":-1,"tmdbId":24951},{"name":"Once Upon a Time in the West","year":1969,"posterUrl":"/library/metadata/1653/thumb/1599308457","imdbId":"","language":"en","overview":"A widow whose land and life are in danger as the railroad is getting closer and closer to taking them over. A mysterious harmonica player joins forces with a desperado to protect the woman and her land.","moviesInCollection":[],"ratingKey":1653,"key":"/library/metadata/1653","collectionTitle":"","collectionId":-1,"tmdbId":335},{"name":"The Sword in the Stone","year":1983,"posterUrl":"/library/metadata/2846/thumb/1599308944","imdbId":"","language":"en","overview":"Wart is a young boy who aspires to be a knight's squire. On a hunting trip he falls in on Merlin, a powerful but amnesiac wizard who has plans for him beyond mere squiredom. He starts by trying to give him an education, believing that once one has an education, one can go anywhere. Needless to say, it doesn't quite work out that way.","moviesInCollection":[],"ratingKey":2846,"key":"/library/metadata/2846","collectionTitle":"","collectionId":-1,"tmdbId":9078},{"name":"Late Night","year":2019,"posterUrl":"/library/metadata/1344/thumb/1599308323","imdbId":"","language":"en","overview":"A legendary late-night talk show host's world is turned upside down when she hires her only female staff writer. Originally intended to smooth over diversity concerns, her decision has unexpectedly hilarious consequences as the two women separated by culture and generation are united by their love of a biting punchline.","moviesInCollection":[],"ratingKey":1344,"key":"/library/metadata/1344","collectionTitle":"","collectionId":-1,"tmdbId":523172},{"name":"Bullet to the Head","year":2013,"posterUrl":"/library/metadata/438/thumb/1599307987","imdbId":"","language":"en","overview":"After watching their respective partners die, a cop and a hitman form an alliance in order to bring down their common enemy.","moviesInCollection":[],"ratingKey":438,"key":"/library/metadata/438","collectionTitle":"","collectionId":-1,"tmdbId":70074},{"name":"Caddyshack","year":1980,"posterUrl":"/library/metadata/458/thumb/1599307995","imdbId":"","language":"en","overview":"At an exclusive country club, an ambitious young caddy, Danny Noonan, eagerly pursues a caddy scholarship in hopes of attending college and, in turn, avoiding a job at the lumber yard. In order to succeed, he must first win the favour of the elitist Judge Smails, and then the caddy golf tournament which Smails sponsors.","moviesInCollection":[],"ratingKey":458,"key":"/library/metadata/458","collectionTitle":"","collectionId":-1,"tmdbId":11977},{"name":"Shrek 2","year":2004,"posterUrl":"/library/metadata/2030/thumb/1599308618","imdbId":"","language":"en","overview":"Shrek, Fiona and Donkey set off to Far, Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along, and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.","moviesInCollection":[],"ratingKey":2030,"key":"/library/metadata/2030","collectionTitle":"","collectionId":-1,"tmdbId":809},{"name":"Get Him to the Greek","year":2010,"posterUrl":"/library/metadata/982/thumb/1599308186","imdbId":"","language":"en","overview":"Pinnacle records has the perfect plan to get their sinking company back on track: a comeback concert in LA featuring Aldous Snow, a fading rockstar who has dropped off the radar in recent years. Record company intern Aaron Green is faced with the monumental task of bringing his idol, out of control rock star Aldous Snow, back to LA for his comeback show.","moviesInCollection":[],"ratingKey":982,"key":"/library/metadata/982","collectionTitle":"","collectionId":-1,"tmdbId":32823},{"name":"The Lure","year":2016,"posterUrl":"/library/metadata/2659/thumb/1599308860","imdbId":"","language":"en","overview":"Two mermaid sisters, who end up performing at a nightclub, face cruel and bloody choices when one of them falls in love with a beautiful young man.","moviesInCollection":[],"ratingKey":2659,"key":"/library/metadata/2659","collectionTitle":"","collectionId":-1,"tmdbId":375742},{"name":"Superman vs. The Elite","year":2012,"posterUrl":"/library/metadata/2218/thumb/1599308695","imdbId":"","language":"en","overview":"The Man of Steel finds himself outshone by a new team of ruthless superheroes who hold his idealism in contempt.","moviesInCollection":[],"ratingKey":2218,"key":"/library/metadata/2218","collectionTitle":"","collectionId":-1,"tmdbId":103269},{"name":"The Italian Job","year":1969,"posterUrl":"/library/metadata/2593/thumb/1599308833","imdbId":"","language":"en","overview":"Charlie's got a 'job' to do. Having just left prison he finds one his of friends has attempted a high risk job in Torino, Italy, right under the nose of the mafia. Charlie's friend doesn't get very far, so Charlie takes over the 'job'. Using three Mini Coopers, a couple of Jaguars and a bus, he hopes to bring Torino to a standstill, steal a fortune in gold and escape in the chaos.","moviesInCollection":[],"ratingKey":2593,"key":"/library/metadata/2593","collectionTitle":"","collectionId":-1,"tmdbId":10536},{"name":"The Firm","year":1993,"posterUrl":"/library/metadata/2467/thumb/1599308786","imdbId":"","language":"en","overview":"Mitch McDeere is a young man with a promising future in Law. About to sit his Bar exam, he is approached by 'The Firm' and made an offer he doesn't refuse. Seduced by the money and gifts showered on him, he is totally oblivious to the more sinister side of his company. Then, two Associates are murdered. The FBI contact him, asking him for information and suddenly his life is ruined. He has a choice - work with the FBI, or stay with the Firm. Either way he will lose his life as he knows it. Mitch figures the only way out is to follow his own plan...","moviesInCollection":[],"ratingKey":2467,"key":"/library/metadata/2467","collectionTitle":"","collectionId":-1,"tmdbId":37233},{"name":"The Jungle Book","year":2016,"posterUrl":"/library/metadata/2598/thumb/1599308835","imdbId":"","language":"en","overview":"A man-cub named Mowgli fostered by wolves. After a threat from the tiger Shere Khan, Mowgli is forced to flee the jungle, by which he embarks on a journey of self discovery with the help of the panther, Bagheera and the free-spirited bear, Baloo.","moviesInCollection":[],"ratingKey":2598,"key":"/library/metadata/2598","collectionTitle":"","collectionId":-1,"tmdbId":278927},{"name":"The Island","year":2005,"posterUrl":"/library/metadata/2592/thumb/1599308833","imdbId":"","language":"en","overview":"In 2019, Lincoln Six-Echo is a resident of a seemingly \"Utopian\" but contained facility. Like all of the inhabitants of this carefully-controlled environment, Lincoln hopes to be chosen to go to The Island — reportedly the last uncontaminated location on the planet. But Lincoln soon discovers that everything about his existence is a lie.","moviesInCollection":[],"ratingKey":2592,"key":"/library/metadata/2592","collectionTitle":"","collectionId":-1,"tmdbId":1635},{"name":"Superman III","year":1983,"posterUrl":"/library/metadata/2212/thumb/1599308693","imdbId":"","language":"en","overview":"Aiming to defeat the Man of Steel, wealthy executive Ross Webster hires bumbling but brilliant Gus Gorman to develop synthetic kryptonite, which yields some unexpected psychological effects in the third installment of the 1980s Superman franchise. Between rekindling romance with his high school sweetheart and saving himself, Superman must contend with a powerful supercomputer.","moviesInCollection":[],"ratingKey":2212,"key":"/library/metadata/2212","collectionTitle":"","collectionId":-1,"tmdbId":9531},{"name":"The Muppet Movie","year":1979,"posterUrl":"/library/metadata/2700/thumb/1599308879","imdbId":"","language":"en","overview":"Dom DeLuise persuades Kermit the Frog to pursue a career in Hollywood. On his way there he meets his future muppet crew while being chased by the desperate owner of a frog-leg restaurant!","moviesInCollection":[],"ratingKey":2700,"key":"/library/metadata/2700","collectionTitle":"","collectionId":-1,"tmdbId":11176},{"name":"White House Down","year":2013,"posterUrl":"/library/metadata/3138/thumb/1599309044","imdbId":"","language":"en","overview":"Capitol Policeman John Cale has just been denied his dream job with the Secret Service of protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation's government falling into chaos and time running out, it's up to Cale to save the president, his daughter, and the country.","moviesInCollection":[],"ratingKey":3138,"key":"/library/metadata/3138","collectionTitle":"","collectionId":-1,"tmdbId":117251},{"name":"The Astronaut's Wife","year":1999,"posterUrl":"/library/metadata/2303/thumb/1599308726","imdbId":"","language":"en","overview":"When astronaut Spencer Armacost returns to Earth after a mission that nearly cost him his life, he decides to take a desk job in order to see his beautiful wife, Jillian, more often. Gradually, Jillian notices that Spencer's personality seems to have changed, but her concerns fade when she discovers that she's pregnant. As Jillian grows closer to becoming a mother, her suspicions about Spencer return. Why does it seem as if he's a different person?","moviesInCollection":[],"ratingKey":2303,"key":"/library/metadata/2303","collectionTitle":"","collectionId":-1,"tmdbId":2900},{"name":"Nothing to Lose","year":1997,"posterUrl":"/library/metadata/1622/thumb/1599308442","imdbId":"","language":"en","overview":"Advertising executive Nick Beame learns that his wife is sleeping with his employer. In a state of despair, he encounters a bumbling thief whose attempted carjacking goes awry when Nick takes him on an involuntary joyride. Soon the betrayed businessman and the incompetent crook strike up a partnership and develop a robbery-revenge scheme. But it turns out that some other criminals in the area don't appreciate the competition.","moviesInCollection":[],"ratingKey":1622,"key":"/library/metadata/1622","collectionTitle":"","collectionId":-1,"tmdbId":11676},{"name":"Superman Man of Tomorrow","year":2020,"posterUrl":"/library/metadata/47907/thumb/1599309190","imdbId":"","language":"en","overview":"It’s the dawn of a new age of heroes, and Metropolis has just met its first. But as Daily Planet intern Clark Kent – working alongside reporter Lois Lane – secretly wields his alien powers of flight, super-strength and x-ray vision in the battle for good, there’s even greater trouble on the horizon.","moviesInCollection":[],"ratingKey":47907,"key":"/library/metadata/47907","collectionTitle":"","collectionId":-1,"tmdbId":618354},{"name":"Pokémon the Movie I Choose You!","year":2017,"posterUrl":"/library/metadata/1774/thumb/1599308508","imdbId":"","language":"en","overview":"This is the story of how Satoshi and Pikachu first met. At first, Pikachu was disobedient towards Satoshi, but Satoshi only wanted to be friends with Pikachu. On the day they set out from Masara Town, both of them saw a Ho-Oh flying and they made a vow to meet it.","moviesInCollection":[],"ratingKey":1774,"key":"/library/metadata/1774","collectionTitle":"","collectionId":-1,"tmdbId":436931},{"name":"Paycheck","year":2003,"posterUrl":"/library/metadata/1718/thumb/1599308485","imdbId":"","language":"en","overview":"Michael Jennings is a genius who's hired – and paid handsomely – by high-tech firms to work on highly sensitive projects, after which his short-term memory is erased so he's incapable of breaching security. But at the end of a three-year job, he's told he isn't getting a paycheck and instead receives a mysterious envelope. In it are clues he must piece together to find out why he wasn't paid – and why he's now in hot water.","moviesInCollection":[],"ratingKey":1718,"key":"/library/metadata/1718","collectionTitle":"","collectionId":-1,"tmdbId":9620},{"name":"Children of Men","year":2006,"posterUrl":"/library/metadata/504/thumb/1599308012","imdbId":"","language":"en","overview":"In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.","moviesInCollection":[],"ratingKey":504,"key":"/library/metadata/504","collectionTitle":"","collectionId":-1,"tmdbId":9693},{"name":"Days of Thunder","year":1990,"posterUrl":"/library/metadata/650/thumb/1599308063","imdbId":"","language":"en","overview":"Talented but unproven stock car driver Cole Trickle gets a break and with the guidance of veteran Harry Hogge turns heads on the track. The young hotshot develops a rivalry with a fellow racer that threatens his career when the two smash their cars. But with the help of his doctor, Cole just might overcome his injuries-- and his fear.","moviesInCollection":[],"ratingKey":650,"key":"/library/metadata/650","collectionTitle":"","collectionId":-1,"tmdbId":2119},{"name":"The Italian Job","year":2003,"posterUrl":"/library/metadata/46559/thumb/1599309164","imdbId":"","language":"en","overview":"Charlie Croker pulled off the crime of a lifetime. The one thing that he didn't plan on was being double-crossed. Along with a drop-dead gorgeous safecracker, Croker and his team take off to re-steal the loot and end up in a pulse-pounding, pedal-to-the-metal chase that careens up, down, above and below the streets of Los Angeles.","moviesInCollection":[],"ratingKey":46559,"key":"/library/metadata/46559","collectionTitle":"","collectionId":-1,"tmdbId":9654},{"name":"Megalodon","year":2018,"posterUrl":"/library/metadata/1491/thumb/1599308384","imdbId":"","language":"en","overview":"A military vessel on the search for an unidentified submersible finds themselves face to face with a giant shark, forced to use only what they have on board to defend themselves from the monstrous beast.","moviesInCollection":[],"ratingKey":1491,"key":"/library/metadata/1491","collectionTitle":"","collectionId":-1,"tmdbId":523931},{"name":"Space Cowboys","year":2000,"posterUrl":"/library/metadata/2095/thumb/1599308647","imdbId":"","language":"en","overview":"Frank Corvin, ‘Hawk’ Hawkins, Jerry O'Neill and ‘Tank’ Sullivan were hotdog members of Project Daedalus, the Air Force's test program for space travel, but their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious ‘Ikon’ communications satellite's orbit begins to degrade and threatens to crash to Earth.","moviesInCollection":[],"ratingKey":2095,"key":"/library/metadata/2095","collectionTitle":"","collectionId":-1,"tmdbId":5551},{"name":"Saw II","year":2005,"posterUrl":"/library/metadata/41033/thumb/1599309119","imdbId":"","language":"en","overview":"When a new murder victim is discovered with all the signs of Jigsaw's hand, Detective Eric Matthews begins a full investigation and apprehends Jigsaw with little effort. But for Jigsaw, getting caught is just another part of his plan. Eight more of his victims are already fighting for their lives and now it's time for Matthews to join the game.","moviesInCollection":[],"ratingKey":41033,"key":"/library/metadata/41033","collectionTitle":"","collectionId":-1,"tmdbId":215},{"name":"The Exorcist","year":1973,"posterUrl":"/library/metadata/2443/thumb/1599308776","imdbId":"","language":"en","overview":"12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter, and ultimately turns to her last hope: Father Damien Karras, a troubled priest who is struggling with his own faith.","moviesInCollection":[],"ratingKey":2443,"key":"/library/metadata/2443","collectionTitle":"","collectionId":-1,"tmdbId":9552},{"name":"Ant-Man","year":2015,"posterUrl":"/library/metadata/208/thumb/1599307903","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":208,"key":"/library/metadata/208","collectionTitle":"","collectionId":-1,"tmdbId":102899},{"name":"The Demonologist","year":2019,"posterUrl":"/library/metadata/2410/thumb/1599308763","imdbId":"","language":"en","overview":"Detective Damien Seryph investigates a string of murders that connects to a group trying to bring forth the 4 King Demons of Hell. Damien's past connects him to those involved and will force him to become \"The Demonologist\".","moviesInCollection":[],"ratingKey":2410,"key":"/library/metadata/2410","collectionTitle":"","collectionId":-1,"tmdbId":572000},{"name":"Raiders of the Lost Ark","year":1981,"posterUrl":"/library/metadata/1837/thumb/1599308534","imdbId":"","language":"en","overview":"When Dr. Indiana Jones – the tweed-suited professor who just happens to be a celebrated archaeologist – is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.","moviesInCollection":[],"ratingKey":1837,"key":"/library/metadata/1837","collectionTitle":"","collectionId":-1,"tmdbId":85},{"name":"Enemies Closer","year":2013,"posterUrl":"/library/metadata/822/thumb/1599308124","imdbId":"","language":"en","overview":"After a major shipment of drugs goes missing on the US-Canadian border, forest ranger and former Navy SEAL Henry is plunged into survival mode when the drug cartel forces him to help retrieve the downed package. Trapped in the wilderness with no communication to the outside world, Henry finds himself face to face with Clay, a man with a personal vendetta against Henry who has returned for retribution. Now, the two mortal enemies must make a choice: put aside their past and work together, or die alone at the hands of the drug runners, a ruthless gang who will stop at nothing to retrieve their lost cargo.","moviesInCollection":[],"ratingKey":822,"key":"/library/metadata/822","collectionTitle":"","collectionId":-1,"tmdbId":238589},{"name":"Contraband","year":2012,"posterUrl":"/library/metadata/570/thumb/1599308036","imdbId":"","language":"en","overview":"When his brother-in-law runs afoul of a drug lord, family man Chris Farraday turns to a skill he abandoned long ago—smuggling—to repay the debt. But the job goes wrong, and Farraday finds himself wanted by cops, crooks and killers alike.","moviesInCollection":[],"ratingKey":570,"key":"/library/metadata/570","collectionTitle":"","collectionId":-1,"tmdbId":77866},{"name":"Paranormal Activity The Ghost Dimension","year":2015,"posterUrl":"/library/metadata/48829/thumb/1601969255","imdbId":"","language":"en","overview":"Using a special camera that can see spirits, a family must protect their daughter from an evil entity with a sinister plan.","moviesInCollection":[],"ratingKey":48829,"key":"/library/metadata/48829","collectionTitle":"","collectionId":-1,"tmdbId":146301},{"name":"The Call","year":2013,"posterUrl":"/library/metadata/2348/thumb/1599308741","imdbId":"","language":"en","overview":"Jordan Turner is an experienced 911 operator but when she makes an error in judgment and a call ends badly, Jordan is rattled and unsure if she can continue. But when teenager Casey Welson is abducted in the back of a man's car and calls 911, Jordan is the one called upon to use all of her experience, insights and quick thinking to help Casey escape, and not just to save her, but to make sure the man is brought to justice.","moviesInCollection":[],"ratingKey":2348,"key":"/library/metadata/2348","collectionTitle":"","collectionId":-1,"tmdbId":158011},{"name":"Animal House","year":1978,"posterUrl":"/library/metadata/200/thumb/1599307901","imdbId":"","language":"en","overview":"At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him.","moviesInCollection":[],"ratingKey":200,"key":"/library/metadata/200","collectionTitle":"","collectionId":-1,"tmdbId":8469},{"name":"Batman Beyond Return of the Joker","year":2000,"posterUrl":"/library/metadata/290/thumb/1599307933","imdbId":"","language":"en","overview":"The Joker is back with a vengeance, and Gotham's newest Dark Knight needs answers as he stands alone to face Gotham's most infamous Clown Prince of Crime.","moviesInCollection":[],"ratingKey":290,"key":"/library/metadata/290","collectionTitle":"","collectionId":-1,"tmdbId":16234},{"name":"Hellraiser","year":1987,"posterUrl":"/library/metadata/1091/thumb/1599308229","imdbId":"","language":"en","overview":"An unfaithful wife encounters the zombie of her dead lover while the demonic cenobites are pursuing him after he escaped their sadomasochistic underworld.","moviesInCollection":[],"ratingKey":1091,"key":"/library/metadata/1091","collectionTitle":"","collectionId":-1,"tmdbId":9003},{"name":"Creative Control","year":2015,"posterUrl":"/library/metadata/592/thumb/1599308044","imdbId":"","language":"en","overview":"Smooth advertising executive David is in a relationship with yoga teacher Juliette. Then his eye is caught by Sophie, the girlfriend of his best friend Wim, a fashion photographer. Things get completely out of hand during a campaign for augmented reality-glasses, for which David designs an avatar of the coveted Sophie.","moviesInCollection":[],"ratingKey":592,"key":"/library/metadata/592","collectionTitle":"","collectionId":-1,"tmdbId":320146},{"name":"Greener Grass","year":2019,"posterUrl":"/library/metadata/1033/thumb/1599308206","imdbId":"","language":"en","overview":"Suburban soccer moms find themselves constantly competing against each other in their personal lives as their kids settle their differences on the field.","moviesInCollection":[],"ratingKey":1033,"key":"/library/metadata/1033","collectionTitle":"","collectionId":-1,"tmdbId":547009},{"name":"A Cinderella Story Christmas Wish","year":2019,"posterUrl":"/library/metadata/56/thumb/1599307845","imdbId":"","language":"en","overview":"Kat is an aspiring singer-songwriter who dreams of making it big. However, her dreams are stalled by her reality: a conniving and cruel stepfamily and a demoralizing job working as a singing elf at billionaire Terrence Wintergarden’s Santa Land.","moviesInCollection":[],"ratingKey":56,"key":"/library/metadata/56","collectionTitle":"","collectionId":-1,"tmdbId":606117},{"name":"I Now Pronounce You Chuck & Larry","year":2007,"posterUrl":"/library/metadata/1160/thumb/1599308254","imdbId":"","language":"en","overview":"Firefighters Chuck Ford and Larry Valentine are guy's guys, loyal to the core – which is why, when widower Larry asks Chuck to pose as his gay lover so that he can get domestic partner benefits for his kids, his buddy agrees. However, things get dicey when a bureaucrat comes calling, and the boys are forced to present a picture of domestic bliss.","moviesInCollection":[],"ratingKey":1160,"key":"/library/metadata/1160","collectionTitle":"","collectionId":-1,"tmdbId":3563},{"name":"Kickboxer Vengeance","year":2016,"posterUrl":"/library/metadata/1297/thumb/1599308305","imdbId":"","language":"en","overview":"Eric and Kurt Sloane are the descendants of a well-known Venice, California-based family of martial artists. Kurt, the younger of the two, has always been in his brother Eric’s shadow, and despite his talent has been told he lacks the instinct needed to become a champion. But when Kurt witnesses the merciless murder of his brother at the hands of Muay Thai champion Tong Po, he vows revenge. He trains with his brother’s mentor for a fight to the death with Tong Po. At first it seems impossible to turn Kurt into the living weapon he must become to beat Tong Po, but through a series of tests and dangerous encounters, Kurt proves he has a deeper strength that will carry him through to his final showdown with Tong Po.","moviesInCollection":[],"ratingKey":1297,"key":"/library/metadata/1297","collectionTitle":"","collectionId":-1,"tmdbId":308529},{"name":"The Festival","year":2018,"posterUrl":"/library/metadata/2459/thumb/1599308783","imdbId":"","language":"en","overview":"After Nick's girlfriend dumps him, his best mate Shane has the perfect antidote to his break-up blues: three days at an epic music festival.","moviesInCollection":[],"ratingKey":2459,"key":"/library/metadata/2459","collectionTitle":"","collectionId":-1,"tmdbId":502385},{"name":"Signs","year":2002,"posterUrl":"/library/metadata/2038/thumb/1599308622","imdbId":"","language":"en","overview":"A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.","moviesInCollection":[],"ratingKey":2038,"key":"/library/metadata/2038","collectionTitle":"","collectionId":-1,"tmdbId":2675},{"name":"Daddy Long Legs","year":1955,"posterUrl":"/library/metadata/623/thumb/1599308053","imdbId":"","language":"en","overview":"Wealthy American, Jervis Pendleton has a chance encounter at a French orphanage with a cheerful 18-year-old residen, and anonymously pays for her education at a New England college. She writes letters to her mysterious benefactor regularly, but he never writes back. Several years later, he visits her at school, while still concealing his identity, and—despite their large age difference—they soon fall in love.","moviesInCollection":[],"ratingKey":623,"key":"/library/metadata/623","collectionTitle":"","collectionId":-1,"tmdbId":33218},{"name":"And Now a Word from Our Sponsor","year":2013,"posterUrl":"/library/metadata/197/thumb/1599307899","imdbId":"","language":"en","overview":"Adan Kundle, CEO of a major advertising agency, is discovered unconscious in front of a wall of TVs. When he wakes in the hospital, Adan can only communicate through advertising slogans.","moviesInCollection":[],"ratingKey":197,"key":"/library/metadata/197","collectionTitle":"","collectionId":-1,"tmdbId":180810},{"name":"Halloween 4 The Return of Michael Myers","year":1988,"posterUrl":"/library/metadata/1046/thumb/1599308211","imdbId":"","language":"en","overview":"The legend of that creepy masked-man, Michael Myers, comes to life once again in this fourth installment of the successful horror franchise. This time, it's Michael's niece, Jamie, who can't seem to escape her crazy uncle. With Michael on the loose, Jamie enlists the help of good old Dr. Loomis to stop the murderer. This time, though, there seems to be no end to Michael's madness.","moviesInCollection":[],"ratingKey":1046,"key":"/library/metadata/1046","collectionTitle":"","collectionId":-1,"tmdbId":11357},{"name":"Dancer and the Dame","year":2015,"posterUrl":"/library/metadata/629/thumb/1599308055","imdbId":"","language":"en","overview":"Down-and-out Detective Dancer, who struggling with a personal conflict, gives up on life and his job. But that all ends when he is paired up with a police dog who is also dealing with post-traumatic stress. The dog helps Dancer make a life-changing turn around. And in response, Dancer does the same for his partner, the Dame.","moviesInCollection":[],"ratingKey":629,"key":"/library/metadata/629","collectionTitle":"","collectionId":-1,"tmdbId":327385},{"name":"New World","year":2013,"posterUrl":"/library/metadata/1605/thumb/1586228337","imdbId":"","language":"en","overview":"An undercover cop has his loyalties tested when the boss of the corporate gang he's spent years infiltrating dies.","moviesInCollection":[],"ratingKey":1605,"key":"/library/metadata/1605","collectionTitle":"","collectionId":-1,"tmdbId":165213},{"name":"London Fields","year":2018,"posterUrl":"/library/metadata/1409/thumb/1599308345","imdbId":"","language":"en","overview":"Clairvoyant femme fatale, Nicola Six has been living with a dark premonition of her impending death by murder. She begins a tangled love affair with three uniquely different men—one of whom she knows will be her murderer.","moviesInCollection":[],"ratingKey":1409,"key":"/library/metadata/1409","collectionTitle":"","collectionId":-1,"tmdbId":220882},{"name":"Lost Horizon","year":1973,"posterUrl":"/library/metadata/1418/thumb/1599308349","imdbId":"","language":"en","overview":"This retelling of the classic tale of James Hilton's Utopian lost world plays out uneasily amid musical production numbers and Bacharach pop music. While escaping war-torn China, a group of Europeans crash in the Himalayas, where they are rescued and taken to the mysterious Valley of the Blue Moon, Shangri-La. Hidden from the rest of the world, Shangri-La is a haven of peace and tranquility for world-weary diplomat Richard Conway. His ambitious brother, George, sees it as a prison from which he must escape, even if it means risking his life and bringing destruction to the ancient culture of Shangri-La.","moviesInCollection":[],"ratingKey":1418,"key":"/library/metadata/1418","collectionTitle":"","collectionId":-1,"tmdbId":97519},{"name":"Ballerina","year":2017,"posterUrl":"/library/metadata/273/thumb/1599307927","imdbId":"","language":"en","overview":"Set in 1879 Paris. An orphan girl dreams of becoming a ballerina and flees her rural Brittany for Paris, where she passes for someone else and accedes to the position of pupil at the Grand Opera house.","moviesInCollection":[],"ratingKey":273,"key":"/library/metadata/273","collectionTitle":"","collectionId":-1,"tmdbId":342473},{"name":"Red Shoes and the Seven Dwarfs","year":2019,"posterUrl":"/library/metadata/39727/thumb/1599309092","imdbId":"","language":"en","overview":"Princes who have been turned into Dwarfs seek the red shoes of a lady in order to break the spell, although it will not be easy.","moviesInCollection":[],"ratingKey":39727,"key":"/library/metadata/39727","collectionTitle":"","collectionId":-1,"tmdbId":486589},{"name":"Seal Team Six The Raid on Osama Bin Laden","year":2012,"posterUrl":"/library/metadata/45751/thumb/1599309148","imdbId":"","language":"en","overview":"When the rumored whereabouts of Osama bin Laden are revealed, the CIA readies a team of seasoned U.S. Navy SEALs for the mission of a lifetime. Despite inconclusive evidence that bin Laden is inside the compound, and ignoring the possible ramifications of an unannounced attack on Pakistani soil, the Pentagon orders the attack. The SEAL Team bands together to complete their mission of justice in a riveting final showdown.","moviesInCollection":[],"ratingKey":45751,"key":"/library/metadata/45751","collectionTitle":"","collectionId":-1,"tmdbId":130267},{"name":"Destroyer","year":2018,"posterUrl":"/library/metadata/701/thumb/1599308081","imdbId":"","language":"en","overview":"Erin Bell is an LAPD detective who, as a young cop, was placed undercover with a gang in the California desert with tragic results. When the leader of that gang re-emerges many years later, she must work her way back through the remaining members and into her own history with them to finally reckon with the demons that destroyed her past.","moviesInCollection":[],"ratingKey":701,"key":"/library/metadata/701","collectionTitle":"","collectionId":-1,"tmdbId":471507},{"name":"Surrogates","year":2009,"posterUrl":"/library/metadata/2221/thumb/1599308697","imdbId":"","language":"en","overview":"Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.","moviesInCollection":[],"ratingKey":2221,"key":"/library/metadata/2221","collectionTitle":"","collectionId":-1,"tmdbId":19959},{"name":"There's Nothing Out There","year":1991,"posterUrl":"/library/metadata/2916/thumb/1599308969","imdbId":"","language":"en","overview":"Seven teens head up to a cabin on the lake for spring break. Mike has studied all horror films on video, and recognizes the signs of foreshadowing of doom. The others dismiss his concerns as the workings of a person that watches too many videos, but there really is something out there, and the teens begin experiencing an attrition problem when they start stumbling into all the cliches found in a typical teen horror film.","moviesInCollection":[],"ratingKey":2916,"key":"/library/metadata/2916","collectionTitle":"","collectionId":-1,"tmdbId":41775},{"name":"Colombiana","year":2011,"posterUrl":"/library/metadata/549/thumb/1599308028","imdbId":"","language":"en","overview":"Zoe Saldana plays a young woman who, after witnessing her parents’ murder as a child in Bogota, grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents' death.","moviesInCollection":[],"ratingKey":549,"key":"/library/metadata/549","collectionTitle":"","collectionId":-1,"tmdbId":62835},{"name":"The Dead Undead","year":2010,"posterUrl":"/library/metadata/2400/thumb/1599308759","imdbId":"","language":"en","overview":"Good Vampires battle Zombie Vampires while trying to hide their own identity and prevent the infection from spreading.","moviesInCollection":[],"ratingKey":2400,"key":"/library/metadata/2400","collectionTitle":"","collectionId":-1,"tmdbId":53502},{"name":"Tom of Finland","year":2017,"posterUrl":"/library/metadata/2950/thumb/1599308980","imdbId":"","language":"en","overview":"Touko Laaksonen, a decorated officer, returns home after a harrowing and heroic experience serving his country in World War II, but life in Finland during peacetime proves equally distressing. He finds peace-time Helsinki rampant with persecution of the homosexual and men around him even being pressured to marry women and have children. Touko finds refuge in his liberating art, specialising in homoerotic drawings of muscular men, free of inhibitions. His work – made famous by his signature ‘Tom of Finland’ – became the emblem of a generation of men and fanned the flames of a gay revolution.","moviesInCollection":[],"ratingKey":2950,"key":"/library/metadata/2950","collectionTitle":"","collectionId":-1,"tmdbId":405204},{"name":"Die Hard 2","year":1990,"posterUrl":"/library/metadata/708/thumb/1599308084","imdbId":"","language":"en","overview":"Off-duty cop John McClane is gripped with a feeling of déjà vu when, on a snowy Christmas Eve in the nation’s capital, terrorists seize a major international airport, holding thousands of holiday travelers hostage. Renegade military commandos led by a murderous rogue officer plot to rescue a drug lord from justice and are prepared for every contingency except one: McClane’s smart-mouthed heroics.","moviesInCollection":[],"ratingKey":708,"key":"/library/metadata/708","collectionTitle":"","collectionId":-1,"tmdbId":1573},{"name":"Parker","year":2013,"posterUrl":"/library/metadata/1701/thumb/1599308478","imdbId":"","language":"en","overview":"A thief with a unique code of professional ethics is double-crossed by his crew and left for dead. Assuming a new disguise and forming an unlikely alliance with a woman on the inside, he looks to hijack the score of the crew's latest heist.","moviesInCollection":[],"ratingKey":1701,"key":"/library/metadata/1701","collectionTitle":"","collectionId":-1,"tmdbId":119283},{"name":"Velvet Buzzsaw","year":2019,"posterUrl":"/library/metadata/3078/thumb/1599309024","imdbId":"","language":"en","overview":"Big money artists and mega-collectors pay a high price when art collides with commerce. After a series of paintings by an unknown artist are discovered, a supernatural force enacts revenge on those who have allowed their greed to get in the way of art.","moviesInCollection":[],"ratingKey":3078,"key":"/library/metadata/3078","collectionTitle":"","collectionId":-1,"tmdbId":463684},{"name":"Solis","year":2018,"posterUrl":"/library/metadata/2086/thumb/1599308643","imdbId":"","language":"en","overview":"Following an accident, an Engineer of an asteroid mining company endures the extreme limits – both physical and psychological – of human survival, trapped inside an escape pod as he helplessly idles towards the Sun.","moviesInCollection":[],"ratingKey":2086,"key":"/library/metadata/2086","collectionTitle":"","collectionId":-1,"tmdbId":529646},{"name":"Suicide Squad","year":2016,"posterUrl":"/library/metadata/2192/thumb/1599308687","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2192,"key":"/library/metadata/2192","collectionTitle":"","collectionId":-1,"tmdbId":297761},{"name":"Deepwater Horizon","year":2016,"posterUrl":"/library/metadata/682/thumb/1599308074","imdbId":"","language":"en","overview":"A story set on the offshore drilling rig Deepwater Horizon, which exploded during April 2010 and created the worst oil spill in U.S. history.","moviesInCollection":[],"ratingKey":682,"key":"/library/metadata/682","collectionTitle":"","collectionId":-1,"tmdbId":296524},{"name":"7 Days in Entebbe","year":2018,"posterUrl":"/library/metadata/43/thumb/1599307841","imdbId":"","language":"en","overview":"In 1976, four hijackers take over an Air France airplane en route from Tel Aviv to Paris and force it to land in Entebbe, Uganda. With 248 passengers on board, one of the most daring rescue missions ever is set in motion.","moviesInCollection":[],"ratingKey":43,"key":"/library/metadata/43","collectionTitle":"","collectionId":-1,"tmdbId":433627},{"name":"Return of the Jedi Despecialized Edition 4k83","year":2020,"posterUrl":"/library/metadata/39470/thumb/1599309084","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":39470,"key":"/library/metadata/39470","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Level 16","year":2018,"posterUrl":"/library/metadata/1379/thumb/1599308334","imdbId":"","language":"en","overview":"The teenage girls of Vestalis Academy are meticulously trained in the art of being “clean girls,” practicing the virtues of perfect femininity. But what exactly are they being trained for? Vivien intends to find out.","moviesInCollection":[],"ratingKey":1379,"key":"/library/metadata/1379","collectionTitle":"","collectionId":-1,"tmdbId":548066},{"name":"Fast & Furious 6","year":2013,"posterUrl":"/library/metadata/870/thumb/1599308142","imdbId":"","language":"en","overview":"Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend, Letty.","moviesInCollection":[],"ratingKey":870,"key":"/library/metadata/870","collectionTitle":"","collectionId":-1,"tmdbId":82992},{"name":"Evan Almighty","year":2007,"posterUrl":"/library/metadata/39679/thumb/1599309090","imdbId":"","language":"en","overview":"Junior congressman Evan Baxter, whose wish is to \"change the world\" is heard by none other than God. When God appears with the perplexing request to build an ark, Evan is sure he is losing it.","moviesInCollection":[],"ratingKey":39679,"key":"/library/metadata/39679","collectionTitle":"","collectionId":-1,"tmdbId":2698},{"name":"Major Payne","year":1995,"posterUrl":"/library/metadata/1445/thumb/1599308362","imdbId":"","language":"en","overview":"Major Benson Winifred Payne is being discharged from the Marines. Payne is a killin' machine, but the wars of the world are no longer fought on the battlefield. A career Marine, he has no idea what to do as a civilian, so his commander finds him a job - commanding officer of a local school's JROTC program, a bunch of ragtag losers with no hope.","moviesInCollection":[],"ratingKey":1445,"key":"/library/metadata/1445","collectionTitle":"","collectionId":-1,"tmdbId":11008},{"name":"Joe","year":2014,"posterUrl":"/library/metadata/27847/thumb/1599309077","imdbId":"","language":"en","overview":"The rough-hewn boss of a lumber crew courts trouble when he steps in to protect the youngest member of his team from an abusive father.","moviesInCollection":[],"ratingKey":27847,"key":"/library/metadata/27847","collectionTitle":"","collectionId":-1,"tmdbId":157847},{"name":"The Twilight Samurai","year":2002,"posterUrl":"/library/metadata/2879/thumb/1599308955","imdbId":"","language":"en","overview":"Seibei Iguchi leads a difficult life as a low ranking samurai at the turn of the nineteenth century. A widower with a meager income, Seibei struggles to take care of his two daughters and senile mother. New prospects seem to open up when the beautiful Tomoe, a childhood friend, comes back into he and his daughters' life, but as the Japanese feudal system unravels, Seibei is still bound by the code of honor of the samurai and by his own sense of social precedence. How can he find a way to do what is best for those he loves?","moviesInCollection":[],"ratingKey":2879,"key":"/library/metadata/2879","collectionTitle":"","collectionId":-1,"tmdbId":12496},{"name":"Blade Trinity","year":2015,"posterUrl":"/library/metadata/376/thumb/1599307965","imdbId":"","language":"en","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—The 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—the original vampire, Dracula.","moviesInCollection":[],"ratingKey":376,"key":"/library/metadata/376","collectionTitle":"","collectionId":-1,"tmdbId":36648},{"name":"In the Fade","year":2017,"posterUrl":"/library/metadata/1177/thumb/1599308260","imdbId":"","language":"en","overview":"Katja's life collapses after a senseless act impacts her. After a time of mourning and injustice, she seeks revenge.","moviesInCollection":[],"ratingKey":1177,"key":"/library/metadata/1177","collectionTitle":"","collectionId":-1,"tmdbId":423646},{"name":"Kidnapping Mr. Heineken","year":2015,"posterUrl":"/library/metadata/1298/thumb/1599308306","imdbId":"","language":"en","overview":"The true story of the kidnapping of Freddy Heineken, the grandson of the founder of the Heineken brewery, and his driver. They were released after a ransom of 35 million Dutch guilders was paid.","moviesInCollection":[],"ratingKey":1298,"key":"/library/metadata/1298","collectionTitle":"","collectionId":-1,"tmdbId":228968},{"name":"V for Vendetta","year":2005,"posterUrl":"/library/metadata/3066/thumb/1599309020","imdbId":"","language":"en","overview":"In a world in which Great Britain has become a fascist state, a masked vigilante known only as “V” 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.","moviesInCollection":[],"ratingKey":3066,"key":"/library/metadata/3066","collectionTitle":"","collectionId":-1,"tmdbId":752},{"name":"Mine 9","year":2019,"posterUrl":"/library/metadata/1510/thumb/1599308393","imdbId":"","language":"en","overview":"Two miles into the earth, nine Appalachian miners struggle to survive after a methane explosion leaves them with one hour of oxygen.","moviesInCollection":[],"ratingKey":1510,"key":"/library/metadata/1510","collectionTitle":"","collectionId":-1,"tmdbId":564898},{"name":"Harriet","year":2019,"posterUrl":"/library/metadata/1067/thumb/1599308219","imdbId":"","language":"en","overview":"The extraordinary tale of Harriet Tubman's escape from slavery and transformation into one of America's greatest heroes. Her courage, ingenuity and tenacity freed hundreds of slaves and changed the course of history.","moviesInCollection":[],"ratingKey":1067,"key":"/library/metadata/1067","collectionTitle":"","collectionId":-1,"tmdbId":506528},{"name":"National Treasure Book of Secrets","year":2007,"posterUrl":"/library/metadata/1594/thumb/1599308429","imdbId":"","language":"en","overview":"Benjamin Franklin Gates and Dr. Abigail Chase re-team with Riley Poole and, now armed with a stack of long-lost pages from John Wilkes Booth’s diary, Ben must follow a clue left there to prove his ancestor’s innocence in the assassination of Abraham Lincoln.","moviesInCollection":[],"ratingKey":1594,"key":"/library/metadata/1594","collectionTitle":"","collectionId":-1,"tmdbId":6637},{"name":"The Old Dark House","year":1963,"posterUrl":"/library/metadata/2726/thumb/1599308890","imdbId":"","language":"en","overview":"An American car salesman in London becomes mixed up in a series of fatal occurrences at a secluded mansion.","moviesInCollection":[],"ratingKey":2726,"key":"/library/metadata/2726","collectionTitle":"","collectionId":-1,"tmdbId":29400},{"name":"X2","year":2003,"posterUrl":"/library/metadata/43642/thumb/1599309142","imdbId":"","language":"en","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—Magneto and Mystique—to unhinge Stryker's scheme to exterminate all mutants.","moviesInCollection":[],"ratingKey":43642,"key":"/library/metadata/43642","collectionTitle":"","collectionId":-1,"tmdbId":36658},{"name":"St. Vincent","year":2014,"posterUrl":"/library/metadata/2123/thumb/1599308660","imdbId":"","language":"en","overview":"A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.","moviesInCollection":[],"ratingKey":2123,"key":"/library/metadata/2123","collectionTitle":"","collectionId":-1,"tmdbId":239563},{"name":"Walking Tall","year":2004,"posterUrl":"/library/metadata/40962/thumb/1599309112","imdbId":"","language":"en","overview":"A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.","moviesInCollection":[],"ratingKey":40962,"key":"/library/metadata/40962","collectionTitle":"","collectionId":-1,"tmdbId":11358},{"name":"White Boy Rick","year":2018,"posterUrl":"/library/metadata/3135/thumb/1599309043","imdbId":"","language":"en","overview":"The story of a teenager, Richard Wershe Jr., who became an undercover informant for the police during the 1980s and was ultimately arrested for drug-trafficking and sentenced to life in prison.","moviesInCollection":[],"ratingKey":3135,"key":"/library/metadata/3135","collectionTitle":"","collectionId":-1,"tmdbId":438808},{"name":"A Christmas Carol","year":1984,"posterUrl":"/library/metadata/51/thumb/1599307844","imdbId":"","language":"en","overview":"An old bitter miser who makes excuses for his uncaring nature learns real compassion when three ghosts visit him on Christmas Eve.","moviesInCollection":[],"ratingKey":51,"key":"/library/metadata/51","collectionTitle":"","collectionId":-1,"tmdbId":13189},{"name":"Kindergarten Cop 2","year":2016,"posterUrl":"/library/metadata/1308/thumb/1599308310","imdbId":"","language":"en","overview":"Assigned to recover sensitive stolen data, a gruff FBI agent goes undercover as a kindergarten teacher, but the school's liberal, politically correct environment is more than he bargained for.","moviesInCollection":[],"ratingKey":1308,"key":"/library/metadata/1308","collectionTitle":"","collectionId":-1,"tmdbId":383121},{"name":"Empire of the Sun","year":1987,"posterUrl":"/library/metadata/816/thumb/1599308122","imdbId":"","language":"en","overview":"Jamie Graham, a privileged English boy, is living in Shanghai when the Japanese invade and force all foreigners into prison camps. Jamie is captured with an American sailor named Basie, who looks out for him while they are in the camp together. Even though he is separated from his parents and in a hostile environment, Jamie maintains his dignity and youthful spirits, providing a beacon of hope for the others held captive with him.","moviesInCollection":[],"ratingKey":816,"key":"/library/metadata/816","collectionTitle":"","collectionId":-1,"tmdbId":10110},{"name":"The Sandlot Heading Home","year":2007,"posterUrl":"/library/metadata/47798/thumb/1599309189","imdbId":"","language":"en","overview":"A successful professional baseball player gets his ego in check via an unreality check when he travels back in time to his boyhood sandlot ball-playing days.","moviesInCollection":[],"ratingKey":47798,"key":"/library/metadata/47798","collectionTitle":"","collectionId":-1,"tmdbId":21138},{"name":"Wonder Woman","year":2009,"posterUrl":"/library/metadata/3164/thumb/1599309053","imdbId":"","language":"en","overview":"On the mystical island of Themyscira, a proud and fierce warrior race of Amazons have raised a daughter of untold beauty, grace and strength: Princess Diana. When an Army fighter pilot, Steve Trevor, crash-lands on the island, the rebellious and headstrong Diana defies Amazonian law by accompanying Trevor back to civilization.","moviesInCollection":[],"ratingKey":3164,"key":"/library/metadata/3164","collectionTitle":"","collectionId":-1,"tmdbId":15359},{"name":"Forrest Gump","year":1994,"posterUrl":"/library/metadata/930/thumb/1599308164","imdbId":"","language":"en","overview":"A man with a low IQ has accomplished great things in his life and been present during significant historic events—in each case, far exceeding what anyone imagined he could do. But despite all he has achieved, his one true love eludes him.","moviesInCollection":[],"ratingKey":930,"key":"/library/metadata/930","collectionTitle":"","collectionId":-1,"tmdbId":13},{"name":"Pet Sematary","year":1989,"posterUrl":"/library/metadata/1725/thumb/1599308488","imdbId":"","language":"en","overview":"Dr. Louis Creed's family moves into the country house of their dreams and discover a pet cemetery at the back of their property. The cursed burial ground deep in the woods brings the dead back to life -- with \"minor\" problems. At first, only the family's cat makes the return trip, but an accident forces a heartbroken father to contemplate the unthinkable.","moviesInCollection":[],"ratingKey":1725,"key":"/library/metadata/1725","collectionTitle":"","collectionId":-1,"tmdbId":8913},{"name":"Home Alone","year":1990,"posterUrl":"/library/metadata/1119/thumb/1599308240","imdbId":"","language":"en","overview":"Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. But when a pair of bungling burglars set their sights on Kevin's house, the plucky kid stands ready to defend his territory. By planting booby traps galore, adorably mischievous Kevin stands his ground as his frantic mother attempts to race home before Christmas Day.","moviesInCollection":[],"ratingKey":1119,"key":"/library/metadata/1119","collectionTitle":"","collectionId":-1,"tmdbId":771},{"name":"Rush Hour 3","year":2007,"posterUrl":"/library/metadata/1948/thumb/1599308584","imdbId":"","language":"en","overview":"After an attempted assassination on Ambassador Han, Inspector Lee and Detective Carter are back in action as they head to Paris to protect a French woman with knowledge of the Triads' secret leaders. Lee also holds secret meetings with a United Nations authority, but his personal struggles with a Chinese criminal mastermind named Kenji, which reveals that it's Lee's long-lost...brother.","moviesInCollection":[],"ratingKey":1948,"key":"/library/metadata/1948","collectionTitle":"","collectionId":-1,"tmdbId":5174},{"name":"Georgy Girl","year":1966,"posterUrl":"/library/metadata/978/thumb/1599308185","imdbId":"","language":"en","overview":"A homely but vivacious young woman dodges the amorous attentions of her father's middle-aged employer while striving to capture some of the glamorous life of her swinging London roommate.","moviesInCollection":[],"ratingKey":978,"key":"/library/metadata/978","collectionTitle":"","collectionId":-1,"tmdbId":42719},{"name":"Harry Potter and the Deathly Hallows Part 1","year":2010,"posterUrl":"/library/metadata/1069/thumb/1599308221","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1069,"key":"/library/metadata/1069","collectionTitle":"","collectionId":-1,"tmdbId":12444},{"name":"Semper Fi","year":2019,"posterUrl":"/library/metadata/1997/thumb/1599308603","imdbId":"","language":"en","overview":"Cal is a dedicated cop who also serves as a sergeant in the Marine Corps Reserve. When his reckless half brother lands in jail for accidentally killing a man, Cal and his buddies hatch a plan to break him out of prison -- no matter what the cost.","moviesInCollection":[],"ratingKey":1997,"key":"/library/metadata/1997","collectionTitle":"","collectionId":-1,"tmdbId":515724},{"name":"X-Men The Last Stand","year":2006,"posterUrl":"/library/metadata/43651/thumb/1599309144","imdbId":"","language":"en","overview":"When a cure is found to treat mutations, lines are drawn amongst the X-Men—led by Professor Charles Xavier—and the Brotherhood, a band of powerful mutants organised under Xavier's former ally, Magneto.","moviesInCollection":[],"ratingKey":43651,"key":"/library/metadata/43651","collectionTitle":"","collectionId":-1,"tmdbId":36668},{"name":"The Sound of Music","year":1965,"posterUrl":"/library/metadata/2826/thumb/1599308936","imdbId":"","language":"en","overview":"A tomboyish postulant at an Austrian abbey becomes a governess in the home of a widowed naval captain with seven children, and brings a new love of life and music into the home.","moviesInCollection":[],"ratingKey":2826,"key":"/library/metadata/2826","collectionTitle":"","collectionId":-1,"tmdbId":15121},{"name":"The Postcard Killings","year":2020,"posterUrl":"/library/metadata/2749/thumb/1599308900","imdbId":"","language":"en","overview":"A New York detective teams investigates the death of his daughter who was murdered while on her honeymoon in London, and recruits the help of Scandinavian journalist when other couples throughout Europe suffer a similar fate.","moviesInCollection":[],"ratingKey":2749,"key":"/library/metadata/2749","collectionTitle":"","collectionId":-1,"tmdbId":449756},{"name":"Richard Jewell","year":2019,"posterUrl":"/library/metadata/1901/thumb/1599308562","imdbId":"","language":"en","overview":"Directed by Clint Eastwood and based on true events, \"Richard Jewell\" is a story of what happens when what is reported as fact obscures the truth. \"There is a bomb in Centennial Park. You have thirty minutes.\" The world is first introduced to Richard Jewell as the security guard who reports finding the device at the 1996 Atlanta bombing-his report making him a hero whose swift actions save countless lives. But within days, the law enforcement wannabe becomes the FBI's number one suspect, vilified by press and public alike, his life ripped apart. Richard Jewell thinks quick, works fast, and saves hundreds, perhaps thousands, of lives after a domestic terrorist plants several pipe bombs and they explode during a concert, only to be falsely suspected of the crime by sloppy FBI work and sensational media coverage.","moviesInCollection":[],"ratingKey":1901,"key":"/library/metadata/1901","collectionTitle":"","collectionId":-1,"tmdbId":292011},{"name":"Double Impact","year":1991,"posterUrl":"/library/metadata/741/thumb/1599308097","imdbId":"","language":"en","overview":"Jean Claude Van Damme plays a dual role as Alex and Chad, twins separated at the death of their parents. Chad is raised by a family retainer in Paris, Alex becomes a petty crook in Hong Kong. Seeing a picture of Alex, Chad rejoins him and convinces him that his rival in Hong Kong is also the man who killed their parents. Alex is suspicious of Chad, especially when it comes to his girlfriend.","moviesInCollection":[],"ratingKey":741,"key":"/library/metadata/741","collectionTitle":"","collectionId":-1,"tmdbId":9594},{"name":"American Romance","year":2016,"posterUrl":"/library/metadata/189/thumb/1599307897","imdbId":"","language":"en","overview":"A series of horrifying murders, the victims, always couples, staged in bizarre collage dioramas with cardboard cutouts and scribbled, childlike messages about the corrupting power of love. The killer's on the loose, and the FBI is looking for a truck driver. Emery Reed is a long haul trucker disillusioned with the American Dream after an accident left his wife paralyzed and took the life of their son. Newlyweds Jeff and Krissy are having the time of their lives until their car breaks down on a rural road in the middle of nowhere. When the love birds collide with the forlorn truck driver, a wild ride leaves everyone questioning the true value of love and American Romance.","moviesInCollection":[],"ratingKey":189,"key":"/library/metadata/189","collectionTitle":"","collectionId":-1,"tmdbId":416602},{"name":"Blade","year":1998,"posterUrl":"/library/metadata/371/thumb/1599307962","imdbId":"","language":"en","overview":"When Blade's mother was bitten by a vampire during pregnancy, she did not know that she gave her son a special gift while dying—all the good vampire attributes in combination with the best human skills. Blade and his mentor battle an evil vampire rebel who plans to take over the outdated vampire council, capture Blade and resurrect a voracious blood god.","moviesInCollection":[],"ratingKey":371,"key":"/library/metadata/371","collectionTitle":"","collectionId":-1,"tmdbId":36647},{"name":"Hidden Figures","year":2016,"posterUrl":"/library/metadata/1105/thumb/1599308234","imdbId":"","language":"en","overview":"The untold story of Katherine G. Johnson, Dorothy Vaughan and Mary Jackson – brilliant African-American women working at NASA and serving as the brains behind one of the greatest operations in history – the launch of astronaut John Glenn into orbit. The visionary trio crossed all gender and race lines to inspire generations to dream big.","moviesInCollection":[],"ratingKey":1105,"key":"/library/metadata/1105","collectionTitle":"","collectionId":-1,"tmdbId":381284},{"name":"The Sonata","year":2020,"posterUrl":"/library/metadata/39362/thumb/1599309081","imdbId":"","language":"en","overview":"After a gifted musician inherits a mansion after her long lost father dies under mysterious circumstances, she discovers his last musical masterpiece riddled with cryptic symbols that unravels an evil secret, triggering dark forces that reach beyond her imagination.","moviesInCollection":[],"ratingKey":39362,"key":"/library/metadata/39362","collectionTitle":"","collectionId":-1,"tmdbId":477036},{"name":"Twelve Monkeys","year":1995,"posterUrl":"/library/metadata/3023/thumb/1599309005","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3023,"key":"/library/metadata/3023","collectionTitle":"","collectionId":-1,"tmdbId":63},{"name":"Wonder Woman","year":2017,"posterUrl":"/library/metadata/3165/thumb/1599309053","imdbId":"","language":"en","overview":"An Amazon princess comes to the world of Man in the grips of the First World War to confront the forces of evil and bring an end to human conflict.","moviesInCollection":[],"ratingKey":3165,"key":"/library/metadata/3165","collectionTitle":"","collectionId":-1,"tmdbId":297762},{"name":"Conan the Destroyer","year":1984,"posterUrl":"/library/metadata/562/thumb/1599308033","imdbId":"","language":"en","overview":"Conan is commissioned by the evil queen Taramis to safely escort a teen princess and her powerful bodyguard to a far away castle to retrieve the magic Horn of Dagon. Unknown to Conan, the queen plans to sacrifice the princess when she returns and inherit her kingdom after the bodyguard kills Conan. The queen's plans fail to take into consideration Conan's strength and cunning and the abilities of his sidekicks: the eccentric wizard Akiro, the wild woman Zula, and the inept Malak. Together the hero and his allies must defeat both mortal and supernatural foes in this voyage to sword-and-sorcery land.","moviesInCollection":[],"ratingKey":562,"key":"/library/metadata/562","collectionTitle":"","collectionId":-1,"tmdbId":9610},{"name":"Rush Hour 2","year":2001,"posterUrl":"/library/metadata/1947/thumb/1599308583","imdbId":"","language":"en","overview":"It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies, Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing, the counterfeiting, and the true allegiance of sexy customs agent Isabella.","moviesInCollection":[],"ratingKey":1947,"key":"/library/metadata/1947","collectionTitle":"","collectionId":-1,"tmdbId":5175},{"name":"King of Thieves","year":2019,"posterUrl":"/library/metadata/1311/thumb/1599308311","imdbId":"","language":"en","overview":"London, England, April 2015. Brian Reader, a retired thief, gathers an unlikely gang of burglars to perpetrate the biggest and boldest heist in British history. The thieves assault the Hatton Garden Safe Deposit Company and escape with millions in goods and money. But soon the cracks between the gang members begin to appear when they discuss how to share the loot.","moviesInCollection":[],"ratingKey":1311,"key":"/library/metadata/1311","collectionTitle":"","collectionId":-1,"tmdbId":520360},{"name":"Wonder Wheel","year":2017,"posterUrl":"/library/metadata/3163/thumb/1599309053","imdbId":"","language":"en","overview":"The story of four characters whose lives intertwine amid the hustle and bustle of the Coney Island amusement park in the 1950s: Ginny, an emotionally volatile former actress now working as a waitress in a clam house; Humpty, Ginny’s rough-hewn carousel operator husband; Mickey, a handsome young lifeguard who dreams of becoming a playwright; and Carolina, Humpty’s long-estranged daughter, who is now hiding out from gangsters at her father’s apartment.","moviesInCollection":[],"ratingKey":3163,"key":"/library/metadata/3163","collectionTitle":"","collectionId":-1,"tmdbId":429189},{"name":"Ghostland","year":2018,"posterUrl":"/library/metadata/998/thumb/1599308192","imdbId":"","language":"en","overview":"A mother of two inherits a home from her aunt. On the first night in the new home she is confronted with murderous intruders and fights for her daughters’ lives. Sixteen years later the daughters reunite at the house, and that is when things get strange . . .","moviesInCollection":[],"ratingKey":998,"key":"/library/metadata/998","collectionTitle":"","collectionId":-1,"tmdbId":476299},{"name":"Justice League vs. Teen Titans","year":2016,"posterUrl":"/library/metadata/1287/thumb/1599308302","imdbId":"","language":"en","overview":"Robin is sent by Batman to work with the Teen Titans after his volatile behavior botches up a Justice League mission. The Titans must then step up to face Trigon after he possesses the League and threatens to conquer the world.","moviesInCollection":[],"ratingKey":1287,"key":"/library/metadata/1287","collectionTitle":"","collectionId":-1,"tmdbId":379291},{"name":"Across the Universe","year":2007,"posterUrl":"/library/metadata/115/thumb/1599307868","imdbId":"","language":"en","overview":"When young dockworker Jude leaves Liverpool to find his estranged father in America, he is swept up by the waves of change that are re-shaping the nation. Jude falls in love with Lucy, a rich but sheltered American girl who joins the growing anti-war movement in New York's Greenwich Village. As the body count in Vietnam rises, political tensions at home spiral out of control and the star-crossed lovers find themselves in a psychedelic world gone mad.","moviesInCollection":[],"ratingKey":115,"key":"/library/metadata/115","collectionTitle":"","collectionId":-1,"tmdbId":4688},{"name":"Role Models","year":2008,"posterUrl":"/library/metadata/1930/thumb/1599308577","imdbId":"","language":"en","overview":"Two salesmen trash a company truck on an energy drink-fueled bender. Upon their arrest, the court gives them a choice: do hard time or spend 150 service hours with a mentorship program. After one day with the kids, however, jail doesn't look half bad.","moviesInCollection":[],"ratingKey":1930,"key":"/library/metadata/1930","collectionTitle":"","collectionId":-1,"tmdbId":15373},{"name":"Think Like a Dog","year":2020,"posterUrl":"/library/metadata/43677/thumb/1599309146","imdbId":"","language":"en","overview":"A 12-year-old tech prodigy whose science experiment goes awry and he forges a telepathic connection with his best friend, his dog. The duo join forces and use their unique perspectives on life to comically overcome complications of family and school.","moviesInCollection":[],"ratingKey":43677,"key":"/library/metadata/43677","collectionTitle":"","collectionId":-1,"tmdbId":513584},{"name":"Men of Honor","year":2000,"posterUrl":"/library/metadata/42261/thumb/1599309138","imdbId":"","language":"en","overview":"Against formidable odds -- and an old-school diving instructor embittered by the U.S. Navy's new, less prejudicial policies -- Carl Brashear sets his sights on becoming the Navy's first African-American master diver in this uplifting true story. Their relationship starts out on the rocks, but fate ultimately conspires to bring the men together into a setting of mutual respect, triumph and honor.","moviesInCollection":[],"ratingKey":42261,"key":"/library/metadata/42261","collectionTitle":"","collectionId":-1,"tmdbId":11978},{"name":"Soldier Boyz","year":1995,"posterUrl":"/library/metadata/2085/thumb/1599308642","imdbId":"","language":"en","overview":"A group of prisoners are going to Vietnam to rescue the daughter of a V-I.P. The Ones who survive get their freedom back...but hell awaits them.","moviesInCollection":[],"ratingKey":2085,"key":"/library/metadata/2085","collectionTitle":"","collectionId":-1,"tmdbId":112938},{"name":"Superman Doomsday","year":2007,"posterUrl":"/library/metadata/2210/thumb/1599308693","imdbId":"","language":"en","overview":"When LexCorps accidentally unleash a murderous creature, Doomsday, Superman meets his greatest challenge as a champion. Based on the \"The Death of Superman\" storyline that appeared in DC Comics' publications in the 1990s","moviesInCollection":[],"ratingKey":2210,"key":"/library/metadata/2210","collectionTitle":"","collectionId":-1,"tmdbId":13640},{"name":"Total Recall","year":1990,"posterUrl":"/library/metadata/2962/thumb/1599308984","imdbId":"","language":"en","overview":"Construction worker Douglas Quaid discovers a memory chip in his brain during a virtual-reality trip. He also finds that his past has been invented to conceal a plot of planetary domination. Soon, he's off to Mars to find out who he is and who planted the chip.","moviesInCollection":[],"ratingKey":2962,"key":"/library/metadata/2962","collectionTitle":"","collectionId":-1,"tmdbId":861},{"name":"Richard III","year":1956,"posterUrl":"/library/metadata/1900/thumb/1599308562","imdbId":"","language":"en","overview":"Having helped his brother King Edward IV take the throne of England, the jealous hunchback Richard, Duke of York, plots to seize power for himself. Masterfully deceiving and plotting against nearly everyone in the royal court, including his eventual wife, Lady Anne, and his brother George, Duke of Clarence, Richard orchestrates a bloody rise to power before finding all his gains jeopardized by those he betrayed.","moviesInCollection":[],"ratingKey":1900,"key":"/library/metadata/1900","collectionTitle":"","collectionId":-1,"tmdbId":43323},{"name":"The Fox and the Hound","year":1981,"posterUrl":"/library/metadata/2478/thumb/1599308791","imdbId":"","language":"en","overview":"When a feisty little fox named Tod is adopted into a farm family, he quickly becomes friends with a fun and adorable hound puppy named Copper. Life is full of hilarious adventures until Copper is expected to take on his role as a hunting dog -- and the object of his search is his best friend!","moviesInCollection":[],"ratingKey":2478,"key":"/library/metadata/2478","collectionTitle":"","collectionId":-1,"tmdbId":10948},{"name":"Phantom Thread","year":2017,"posterUrl":"/library/metadata/1734/thumb/1599308492","imdbId":"","language":"en","overview":"Renowned British dressmaker Reynolds Woodcock comes across Alma, a young, strong-willed woman, who soon becomes a fixture in his life as his muse and lover.","moviesInCollection":[],"ratingKey":1734,"key":"/library/metadata/1734","collectionTitle":"","collectionId":-1,"tmdbId":400617},{"name":"Tropic Thunder","year":2008,"posterUrl":"/library/metadata/3007/thumb/1599308999","imdbId":"","language":"en","overview":"Vietnam veteran 'Four Leaf' Tayback's memoir, Tropic Thunder, is being made into a film, but Director Damien Cockburn can’t control the cast of prima donnas. Behind schedule and over budget, Cockburn is ordered by a studio executive to get filming back on track, or risk its cancellation. On Tayback's advice, Cockburn drops the actors into the middle of the jungle to film the remaining scenes but, unbeknownst to the actors and production, the group have been dropped in the middle of the Golden Triangle, the home of heroin-producing gangs.","moviesInCollection":[],"ratingKey":3007,"key":"/library/metadata/3007","collectionTitle":"","collectionId":-1,"tmdbId":7446},{"name":"Zombie 108","year":2012,"posterUrl":"/library/metadata/3201/thumb/1599309065","imdbId":"tt2328841","language":"en","overview":"A virus gets loose in Taipei Army and SWAT teams oversee evacuation but in Ximending the gangs don't want the police They attack the military but when both find themselves under attack by zombies there is an alliance as they try and escape.","moviesInCollection":[],"ratingKey":3201,"key":"/library/metadata/3201","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"Léon The Professional","year":1994,"posterUrl":"/library/metadata/41151/thumb/1599309128","imdbId":"","language":"en","overview":"Léon, the top hit man in New York, has earned a rep as an effective \"cleaner\". But when his next-door neighbors are wiped out by a loose-cannon DEA agent, he becomes the unwilling custodian of 12-year-old Mathilda. Before long, Mathilda's thoughts turn to revenge, and she considers following in Léon's footsteps.","moviesInCollection":[],"ratingKey":41151,"key":"/library/metadata/41151","collectionTitle":"","collectionId":-1,"tmdbId":101},{"name":"Tarzan II","year":2005,"posterUrl":"/library/metadata/2247/thumb/1599308706","imdbId":"","language":"en","overview":"Experience the beginning of the legend with Disney's Tarzan Ⅱ, a hilarious, all-new, animated motion picture loaded with laughs, irresistible new songs by Phil Collins, and the inspired voice talent of Glenn Close, George Carlin, and Emmy Award winner Brad Garrett. Before he was King of the Jungle, Tarzan was an awkward young kid just trying to fit in. When one of his missteps puts his family in jeopardy, Tarzan decides they would be better off without him. His thrilling new journey brings him face to face with the mysterious Zugor, the most powerful force in the land. Together, Tarzan and Zugor discover that being different is not a weakness and that friends and family are the greatest strength of all. This action-packed adventure is sure to delight the entire family. Get ready to GO APE over Disney's wild, new Tarzan Ⅱ.","moviesInCollection":[],"ratingKey":2247,"key":"/library/metadata/2247","collectionTitle":"","collectionId":-1,"tmdbId":15657},{"name":"Gemini Man","year":2019,"posterUrl":"/library/metadata/971/thumb/1599308183","imdbId":"","language":"en","overview":"Ageing assassin, Henry Brogen tries to get out of the business but finds himself in the ultimate battle—fighting his own clone who is 25 years younger than him, and at the peak of his abilities.","moviesInCollection":[],"ratingKey":971,"key":"/library/metadata/971","collectionTitle":"","collectionId":-1,"tmdbId":453405},{"name":"Wakefield","year":2016,"posterUrl":"/library/metadata/3092/thumb/1599309028","imdbId":"","language":"en","overview":"A man's nervous breakdown causes him to leave his wife and live in his attic for several months.","moviesInCollection":[],"ratingKey":3092,"key":"/library/metadata/3092","collectionTitle":"","collectionId":-1,"tmdbId":369894},{"name":"Harry Potter and the Deathly Hallows Part 2","year":2011,"posterUrl":"/library/metadata/1070/thumb/1599308221","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1070,"key":"/library/metadata/1070","collectionTitle":"","collectionId":-1,"tmdbId":12445},{"name":"EGG","year":2018,"posterUrl":"/library/metadata/808/thumb/1599308119","imdbId":"","language":"en","overview":"Two couples and a surrogate lay bare the complications, contradictions, heartbreak, and absurdities implicit in how we think about motherhood.","moviesInCollection":[],"ratingKey":808,"key":"/library/metadata/808","collectionTitle":"","collectionId":-1,"tmdbId":511577},{"name":"Bad Boys II","year":2003,"posterUrl":"/library/metadata/266/thumb/1599307925","imdbId":"","language":"en","overview":"Out-of-control, trash-talking buddy cops Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force reunite, and bullets fly, cars crash and laughs explode as they pursue a whacked-out drug lord from the streets of Miami to the barrios of Cuba. But the real fireworks result when Marcus discovers that playboy Mike is secretly romancing Marcus’ sexy sister.","moviesInCollection":[],"ratingKey":266,"key":"/library/metadata/266","collectionTitle":"","collectionId":-1,"tmdbId":8961},{"name":"Dead Space Aftermath","year":2011,"posterUrl":"/library/metadata/658/thumb/1599308066","imdbId":"","language":"en","overview":"The End was only the Beginning.The year is 2509 and not only has Earth lost contact with the Ishimura and Isaac Clarke, but now also the USG O'Bannon, the first responder ship sent to rescue them. Four crew members of the O'Bannon have survived. But what happened to the rest of the crew? What were they doing? What secrets are they keeping? All to be revealed...in the Aftermath! --- Dead Space: Aftermath is a fast paced, horrifying thrill ride told through the perspective of the four survivors by several renowned international directors. Dead Space: Aftermath is an animated film that bridges the storyline between the video games Dead Space and Dead Space 2.","moviesInCollection":[],"ratingKey":658,"key":"/library/metadata/658","collectionTitle":"","collectionId":-1,"tmdbId":55215},{"name":"Made","year":1972,"posterUrl":"/library/metadata/1439/thumb/1599308360","imdbId":"","language":"en","overview":"This compelling emotional drama stars Carol White as a young single mother who finds herself caught between two people – a local priest and a folk singer – each of whom wants to convert her to his own worldview. An elegy to a younger generation looking for something to believe in, Made co-stars hugely influential folk-rock musician Roy Harper in his screen debut. Produced by Joseph Janni – who previously made the astonishingly successful Poor Cow with White – directed by The Long Good Friday's John Mackenzie and featuring new songs specially composed by Harper.","moviesInCollection":[],"ratingKey":1439,"key":"/library/metadata/1439","collectionTitle":"","collectionId":-1,"tmdbId":156092},{"name":"The Purge Anarchy","year":2014,"posterUrl":"/library/metadata/2768/thumb/1599308909","imdbId":"","language":"en","overview":"One night per year, the government sanctions a 12-hour period in which citizens can commit any crime they wish -- including murder -- without fear of punishment or imprisonment. Leo, a sergeant who lost his son, plans a vigilante mission of revenge during the mayhem. However, instead of a death-dealing avenger, he becomes the unexpected protector of four innocent strangers who desperately need his help if they are to survive the night.","moviesInCollection":[],"ratingKey":2768,"key":"/library/metadata/2768","collectionTitle":"","collectionId":-1,"tmdbId":238636},{"name":"On Chesil Beach","year":2018,"posterUrl":"/library/metadata/1645/thumb/1599308453","imdbId":"","language":"en","overview":"In 1962 England, a young couple finds their idyllic romance colliding with issues of sexual freedom and societal pressure, leading to an awkward and fateful wedding night.","moviesInCollection":[],"ratingKey":1645,"key":"/library/metadata/1645","collectionTitle":"","collectionId":-1,"tmdbId":391714},{"name":"The Fog","year":2005,"posterUrl":"/library/metadata/2473/thumb/1599308789","imdbId":"","language":"en","overview":"Trapped within an eerie mist, the residents of Antonio Bay have become the unwitting victims of a horrifying vengeance. One hundred years earlier, a ship carrying lepers was purposely lured onto the rocky coastline and sank, drowning all aboard. Now they're back – long-dead mariners who've waited a century for their revenge.","moviesInCollection":[],"ratingKey":2473,"key":"/library/metadata/2473","collectionTitle":"","collectionId":-1,"tmdbId":791},{"name":"Pokémon Heroes Latios and Latias","year":2003,"posterUrl":"/library/metadata/1771/thumb/1599308506","imdbId":"","language":"en","overview":"Satoshi, Pikachu and his friends try and stop a pair of thieves hiding out in the canals and alleyways of Altomare, the age-old water capital. Joining the adventure are two new legendary Pokémon, a pair of siblings named Latias and Latios, who serve as peacekeepers and protectors of the Soul Dew - a priceless treasure with a mysterious power.","moviesInCollection":[],"ratingKey":1771,"key":"/library/metadata/1771","collectionTitle":"","collectionId":-1,"tmdbId":33875},{"name":"Star Wars A New Hope D+80","year":1977,"posterUrl":"/library/metadata/46507/thumb/1599309161","imdbId":"","language":"en","overview":"","moviesInCollection":[],"ratingKey":46507,"key":"/library/metadata/46507","collectionTitle":"","collectionId":-1,"tmdbId":-1},{"name":"A Mighty Wind","year":2003,"posterUrl":"/library/metadata/75/thumb/1599307851","imdbId":"","language":"en","overview":"In \"A Mighty Wind\", director Christopher Guest reunites the team from \"Best In Show\" and \"Waiting for Guffman\" to tell tell the story of 60's-era folk musicians, who inspired by the death of their former manager, get back on the stage for one concert in New York City's Town Hall.","moviesInCollection":[],"ratingKey":75,"key":"/library/metadata/75","collectionTitle":"","collectionId":-1,"tmdbId":13370},{"name":"Interstellar","year":2014,"posterUrl":"/library/metadata/40878/thumb/1599309108","imdbId":"","language":"en","overview":"Interstellar chronicles 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.","moviesInCollection":[],"ratingKey":40878,"key":"/library/metadata/40878","collectionTitle":"","collectionId":-1,"tmdbId":157336},{"name":"The Postman","year":1997,"posterUrl":"/library/metadata/2750/thumb/1599308900","imdbId":"","language":"en","overview":"In 2013 there are no highways, no I-ways, no dreams of a better tomorrow, only scattered survivors across what was once the Unites States. Into this apocalyptic wasteland comes an enigmatic drifter with a mule, a knack for Shakespeare and something yet undiscovered: the power to inspire hope.","moviesInCollection":[],"ratingKey":2750,"key":"/library/metadata/2750","collectionTitle":"","collectionId":-1,"tmdbId":9922},{"name":"Jimmy Neutron Boy Genius","year":2001,"posterUrl":"/library/metadata/1241/thumb/1599308286","imdbId":"","language":"en","overview":"Jimmy Neutron is a boy genius and way ahead of his friends, but when it comes to being cool, he's a little behind. All until one day when his parents, and parents all over Earth are kidnapped by aliens, it's up to him to lead all the children of the world to rescue their parents.","moviesInCollection":[],"ratingKey":1241,"key":"/library/metadata/1241","collectionTitle":"","collectionId":-1,"tmdbId":12589},{"name":"Motherless Brooklyn","year":2019,"posterUrl":"/library/metadata/1550/thumb/1599308411","imdbId":"","language":"en","overview":"New York City, 1957. Lionel Essrog, a private detective living with Tourette syndrome, tries to solve the murder of his mentor and best friend, armed only with vague clues and the strength of his obsessive mind…","moviesInCollection":[],"ratingKey":1550,"key":"/library/metadata/1550","collectionTitle":"","collectionId":-1,"tmdbId":504562},{"name":"Vegas Vacation","year":1997,"posterUrl":"/library/metadata/3077/thumb/1599309024","imdbId":"","language":"en","overview":"The Griswold family hits the road again for a typically ill-fated vacation, this time to the glitzy mecca of slots and showgirls—Las Vegas.","moviesInCollection":[],"ratingKey":3077,"key":"/library/metadata/3077","collectionTitle":"","collectionId":-1,"tmdbId":11419},{"name":"Life of Pi","year":2012,"posterUrl":"/library/metadata/1386/thumb/1599308337","imdbId":"","language":"en","overview":"The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.","moviesInCollection":[],"ratingKey":1386,"key":"/library/metadata/1386","collectionTitle":"","collectionId":-1,"tmdbId":87827},{"name":"2048 Nowhere to Run","year":2017,"posterUrl":"/library/metadata/39770/thumb/1599309094","imdbId":"","language":"en","overview":"“2048: Nowhere to Run” takes place one year before the events of Blade Runner 2049. The short film focuses on Sapper, a man who is trying to make it through life day-by-day without turning back to his old ways. We’re introduced to both the gentle nature of Sapper and the violence he’s capable of when set off.","moviesInCollection":[],"ratingKey":39770,"key":"/library/metadata/39770","collectionTitle":"","collectionId":-1,"tmdbId":475759},{"name":"Jingle All the Way 2","year":2014,"posterUrl":"/library/metadata/1243/thumb/1599308286","imdbId":"","language":"en","overview":"Larry's daughter wants only one thing for Christmas - a talking bear. His daughter's step-dad intends to make sure that Larry can't get one.","moviesInCollection":[],"ratingKey":1243,"key":"/library/metadata/1243","collectionTitle":"","collectionId":-1,"tmdbId":289728},{"name":"The Fog","year":1980,"posterUrl":"/library/metadata/2472/thumb/1599308789","imdbId":"","language":"en","overview":"Strange things begin to occurs as a tiny California coastal town prepares to commemorate its centenary. Inanimate objects spring eerily to life; Rev. Malone stumbles upon a dark secret about the town's founding; radio announcer Stevie witnesses a mystical fire; and hitchhiker Elizabeth discovers the mutilated corpse of a fisherman. Then a mysterious iridescent fog descends upon the village, and more people start to die.","moviesInCollection":[],"ratingKey":2472,"key":"/library/metadata/2472","collectionTitle":"","collectionId":-1,"tmdbId":790},{"name":"The Great Gatsby","year":2013,"posterUrl":"/library/metadata/2511/thumb/1599308803","imdbId":"","language":"en","overview":"An adaptation of F. Scott Fitzgerald's Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby's nouveau riche existence, where obsession, madness, and tragedy await.","moviesInCollection":[],"ratingKey":2511,"key":"/library/metadata/2511","collectionTitle":"","collectionId":-1,"tmdbId":64682},{"name":"Resident Evil The Final Chapter","year":2017,"posterUrl":"/library/metadata/1889/thumb/1599308558","imdbId":"","language":"en","overview":"Picking up immediately after the events in Resident Evil: Retribution, Alice (Milla Jovovich) is the only survivor of what was meant to be humanity's final stand against the undead. Now, she must return to where the nightmare began - The Hive in Raccoon City, where the Umbrella Corporation is gathering its forces for a final strike against the only remaining survivors of the apocalypse.","moviesInCollection":[],"ratingKey":1889,"key":"/library/metadata/1889","collectionTitle":"","collectionId":-1,"tmdbId":173897},{"name":"CHiPS","year":2017,"posterUrl":"/library/metadata/506/thumb/1599308013","imdbId":"","language":"en","overview":"The adventures of two California Highway Patrol motorcycle officers as they make their rounds on the freeways of Los Angeles.","moviesInCollection":[],"ratingKey":506,"key":"/library/metadata/506","collectionTitle":"","collectionId":-1,"tmdbId":417644},{"name":"Total Recall","year":2012,"posterUrl":"/library/metadata/2963/thumb/1599308984","imdbId":"","language":"en","overview":"Welcome to Rekall, the company that can turn your dreams into real memories. For a factory worker named Douglas Quaid, even though he's got a beautiful wife who he loves, the mind-trip sounds like the perfect vacation from his frustrating life - real memories of life as a super-spy might be just what he needs. But when the procedure goes horribly wrong, Quaid becomes a hunted man. Finding himself on the run from the police - controlled by Chancellor Cohaagen, the leader of the free world - Quaid teams up with a rebel fighter to find the head of the underground resistance and stop Cohaagen. The line between fantasy and reality gets blurred and the fate of his world hangs in the balance as Quaid discovers his true identity, his true love, and his true fate.","moviesInCollection":[],"ratingKey":2963,"key":"/library/metadata/2963","collectionTitle":"","collectionId":-1,"tmdbId":64635},{"name":"Halloween H20 20 Years Later","year":1998,"posterUrl":"/library/metadata/1048/thumb/1599308212","imdbId":"","language":"en","overview":"Two decades after surviving a massacre on October 31, 1978, former baby sitter Laurie Strode finds herself hunted by persistent knife-wielder Michael Myers. Laurie now lives in Northern California under an assumed name, where she works as the headmistress of a private school. But it's not far enough to escape Myers, who soon discovers her whereabouts. As Halloween descends upon Laurie's peaceful community, a feeling of dread weighs upon her -- with good reason.","moviesInCollection":[],"ratingKey":1048,"key":"/library/metadata/1048","collectionTitle":"","collectionId":-1,"tmdbId":11675},{"name":"Ghostbusters II","year":1989,"posterUrl":"/library/metadata/997/thumb/1599308192","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":997,"key":"/library/metadata/997","collectionTitle":"","collectionId":-1,"tmdbId":2978},{"name":"Halloween II","year":1981,"posterUrl":"/library/metadata/1049/thumb/1599308212","imdbId":"","language":"en","overview":"After failing to kill stubborn survivor Laurie and taking a bullet or six from former psychiatrist Dr. Sam Loomis, Michael Myers has followed Laurie to the Haddonfield Memorial Hospital, where she's been admitted for Myers' attempt on her life. The institution proves to be particularly suited to serial killers, however, as Myers cuts, stabs and slashes his way through hospital staff to reach his favorite victim.","moviesInCollection":[],"ratingKey":1049,"key":"/library/metadata/1049","collectionTitle":"","collectionId":-1,"tmdbId":11281},{"name":"Alex Cross","year":2012,"posterUrl":"/library/metadata/142/thumb/1599307878","imdbId":"","language":"en","overview":"After Washington DC detective Alex Cross is told that a family member has been murdered, he vows to track down the killer. He soon discovers that she was not his first victim and that things are not what they seem.","moviesInCollection":[],"ratingKey":142,"key":"/library/metadata/142","collectionTitle":"","collectionId":-1,"tmdbId":94348},{"name":"Die Hard With a Vengeance","year":1995,"posterUrl":"/library/metadata/709/thumb/1599308084","imdbId":"","language":"en","overview":"New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series, which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all, until a genius named Simon engages McClane, his new \"partner\" -- and his beloved city -- in a deadly game that demands their concentration.","moviesInCollection":[],"ratingKey":709,"key":"/library/metadata/709","collectionTitle":"","collectionId":-1,"tmdbId":1572},{"name":"Psycho","year":1960,"posterUrl":"/library/metadata/1816/thumb/1599308526","imdbId":"","language":"en","overview":"When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother. The place seems quirky, but fine… until Marion decides to take a shower.","moviesInCollection":[],"ratingKey":1816,"key":"/library/metadata/1816","collectionTitle":"","collectionId":-1,"tmdbId":539},{"name":"Critters","year":1986,"posterUrl":"/library/metadata/598/thumb/1599308047","imdbId":"","language":"en","overview":"A massive ball of furry creatures from another world eat their way through a small mid-western town followed by intergalactic bounty hunters opposed only by militant townspeople.","moviesInCollection":[],"ratingKey":598,"key":"/library/metadata/598","collectionTitle":"","collectionId":-1,"tmdbId":3980},{"name":"Unfriended Dark Web","year":2018,"posterUrl":"/library/metadata/3052/thumb/1599309015","imdbId":"","language":"en","overview":"​When a 20-something finds a cache of hidden files on his new laptop, he and his friends are unwittingly thrust into the depths of the dark web. They soon discover someone has been watching their every move and will go to unimaginable lengths to protect the dark web.","moviesInCollection":[],"ratingKey":3052,"key":"/library/metadata/3052","collectionTitle":"","collectionId":-1,"tmdbId":505058},{"name":"21 Jump Street","year":2012,"posterUrl":"/library/metadata/48306/thumb/1600865843","imdbId":"","language":"en","overview":"In high school, Schmidt was a dork and Jenko was the popular jock. After graduation, both of them joined the police force and ended up as partners riding bicycles in the city park. Since they are young and look like high school students, they are assigned to an undercover unit to infiltrate a drug ring that is supplying high school students synthetic drugs.","moviesInCollection":[],"ratingKey":48306,"key":"/library/metadata/48306","collectionTitle":"","collectionId":-1,"tmdbId":64688},{"name":"The Last Castle","year":2001,"posterUrl":"/library/metadata/2615/thumb/1599308842","imdbId":"","language":"en","overview":"A Court Martialed general rallies together 1200 inmates to rise against the system that put him away.","moviesInCollection":[],"ratingKey":2615,"key":"/library/metadata/2615","collectionTitle":"","collectionId":-1,"tmdbId":2100},{"name":"Death Race Inferno","year":2013,"posterUrl":"/library/metadata/672/thumb/1599308071","imdbId":"","language":"en","overview":"Carl Lucas / Frankenstein has won four of his races and needs to win one more to win his freedom. Before his final race, Lucas and his team, car and all, are transferred to another prison where they will compete in a Death Race in the desert. Also, at the same time, Ceaser runs into a marketer who wants to franchise the Death Race program.","moviesInCollection":[],"ratingKey":672,"key":"/library/metadata/672","collectionTitle":"","collectionId":-1,"tmdbId":156717},{"name":"The Place Beyond the Pines","year":2013,"posterUrl":"/library/metadata/2742/thumb/1599308896","imdbId":"","language":"en","overview":"A motorcycle stunt rider considers committing a crime in order to provide for his wife and child, an act that puts him on a collision course with a cop-turned-politician.","moviesInCollection":[],"ratingKey":2742,"key":"/library/metadata/2742","collectionTitle":"","collectionId":-1,"tmdbId":97367},{"name":"Rambo Last Blood","year":2019,"posterUrl":"/library/metadata/1844/thumb/1599308537","imdbId":"","language":"en","overview":"After fighting his demons for decades, John Rambo now lives in peace on his family ranch in Arizona, but his rest is interrupted when Gabriela, the granddaughter of his housekeeper María, disappears after crossing the border into Mexico to meet her biological father. Rambo, who has become a true father figure for Gabriela over the years, undertakes a desperate and dangerous journey to find her.","moviesInCollection":[],"ratingKey":1844,"key":"/library/metadata/1844","collectionTitle":"","collectionId":-1,"tmdbId":522938},{"name":"Deadfall","year":2012,"posterUrl":"/library/metadata/661/thumb/1599308066","imdbId":"","language":"en","overview":"A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family's Thanksgiving celebration.","moviesInCollection":[],"ratingKey":661,"key":"/library/metadata/661","collectionTitle":"","collectionId":-1,"tmdbId":97614},{"name":"The Great Gatsby","year":1974,"posterUrl":"/library/metadata/2510/thumb/1599308803","imdbId":"","language":"en","overview":"Nick Carraway, a young Midwesterner now living on Long Island, finds himself fascinated by the mysterious past and lavish lifestyle of his neighbor, the nouveau riche Jay Gatsby. He is drawn into Gatsby's circle, becoming a witness to obsession and tragedy.","moviesInCollection":[],"ratingKey":2510,"key":"/library/metadata/2510","collectionTitle":"","collectionId":-1,"tmdbId":11034},{"name":"Inconceivable","year":2017,"posterUrl":"/library/metadata/1183/thumb/1599308263","imdbId":"","language":"en","overview":"A mother looks to escape her abusive past by moving to a new town where she befriends another mother, who grows suspicious of her.","moviesInCollection":[],"ratingKey":1183,"key":"/library/metadata/1183","collectionTitle":"","collectionId":-1,"tmdbId":433630},{"name":"Smokey and the Bandit Part 3","year":1983,"posterUrl":"/library/metadata/2070/thumb/1599308636","imdbId":"","language":"en","overview":"The Enos duo convince Cletus, aka The Bandit, to come out of hiding and help them promote their new restaurant. With a little coaxing, he agrees, producing an almost-creaky Trigger as his mode of transport. But his nemesis, Sheriff Buford T. Justice, is on the hunt, forcing Cletus and Trigger to hit the road. Can they steer clear of the vengeful sheriff?","moviesInCollection":[],"ratingKey":2070,"key":"/library/metadata/2070","collectionTitle":"","collectionId":-1,"tmdbId":15120},{"name":"Friday the 13th Part 2","year":1981,"posterUrl":"/library/metadata/948/thumb/1599308173","imdbId":"","language":"en","overview":"Five years after the horrible bloodbath at Camp Crystal Lake, it seems Jason Voorhees and his demented mother are in the past. Paul opens up a new camp close to the infamous site, ignoring warnings to stay away, and a sexually-charged group of counselors follow -- including child psychologist major Ginny. But Jason has been hiding out all this time, and now he's ready for revenge.","moviesInCollection":[],"ratingKey":948,"key":"/library/metadata/948","collectionTitle":"","collectionId":-1,"tmdbId":9725},{"name":"American Gangster","year":2008,"posterUrl":"/library/metadata/178/thumb/1599307891","imdbId":"","language":"en","overview":"Following the death of his employer and mentor, Bumpy Johnson, Frank Lucas establishes himself as the number one importer of heroin in the Harlem district of Manhattan. He does so by buying heroin directly from the source in South East Asia and he comes up with a unique way of importing the drugs into the United States. Partly based on a true story.","moviesInCollection":[],"ratingKey":178,"key":"/library/metadata/178","collectionTitle":"","collectionId":-1,"tmdbId":4982},{"name":"Babylon A.D.","year":2008,"posterUrl":"/library/metadata/256/thumb/1599307922","imdbId":"","language":"en","overview":"A veteran-turned-mercenary is hired to take a young woman with a secret from post-apocalyptic Eastern Europe to New York City.","moviesInCollection":[],"ratingKey":256,"key":"/library/metadata/256","collectionTitle":"","collectionId":-1,"tmdbId":9381},{"name":"Dora and the Lost City of Gold","year":2019,"posterUrl":"/library/metadata/740/thumb/1599308096","imdbId":"","language":"en","overview":"Dora, a girl who has spent most of her life exploring the jungle with her parents, now must navigate her most dangerous adventure yet: high school. Always the explorer, Dora quickly finds herself leading Boots (her best friend, a monkey), Diego, and a rag tag group of teens on an adventure to save her parents and solve the impossible mystery behind a lost Inca civilization.","moviesInCollection":[],"ratingKey":740,"key":"/library/metadata/740","collectionTitle":"","collectionId":-1,"tmdbId":499701},{"name":"Ant-Man and the Wasp","year":2018,"posterUrl":"/library/metadata/209/thumb/1599307904","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":209,"key":"/library/metadata/209","collectionTitle":"","collectionId":-1,"tmdbId":363088},{"name":"Return to Me","year":2000,"posterUrl":"/library/metadata/1893/thumb/1599308559","imdbId":"","language":"en","overview":"It took a lot of cajoling to get Bob, a recently widowed architect, to go on a blind date at a quirky Irish-Italian eatery. Once there, he's smitten instantly not with his date but with the sharp-witted waitress. Everything seems to be going great until an unbelievable truth is revealed, one that could easily break both of their hearts for good.","moviesInCollection":[],"ratingKey":1893,"key":"/library/metadata/1893","collectionTitle":"","collectionId":-1,"tmdbId":2621},{"name":"Step Up 3D","year":2010,"posterUrl":"/library/metadata/47262/thumb/1599309175","imdbId":"","language":"en","overview":"A tight-knit group of New York City street dancers, including Luke and Natalie, team up with NYU freshman Moose, and find themselves pitted against the world's best hip hop dancers in a high-stakes showdown that will change their lives forever.","moviesInCollection":[],"ratingKey":47262,"key":"/library/metadata/47262","collectionTitle":"","collectionId":-1,"tmdbId":41233},{"name":"Hotel Mumbai","year":2019,"posterUrl":"/library/metadata/1131/thumb/1599308244","imdbId":"","language":"en","overview":"Mumbai, India, November 26, 2008. While several terrorists spread hatred and death through the city, others attack the Taj Mahal Palace Hotel. Both hotel staff and guests risk their lives, making unthinkable sacrifices to protect themselves and keep everyone safe while help arrives.","moviesInCollection":[],"ratingKey":1131,"key":"/library/metadata/1131","collectionTitle":"","collectionId":-1,"tmdbId":416144},{"name":"Along Came the Devil","year":2018,"posterUrl":"/library/metadata/170/thumb/1599307888","imdbId":"","language":"en","overview":"After a troubled childhood, Ashley searches for a connection, and unknowingly invites in a demonic force, which leaves her loved ones fighting for her soul.","moviesInCollection":[],"ratingKey":170,"key":"/library/metadata/170","collectionTitle":"","collectionId":-1,"tmdbId":409056},{"name":"Megamind","year":2010,"posterUrl":"/library/metadata/1492/thumb/1599308385","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1492,"key":"/library/metadata/1492","collectionTitle":"","collectionId":-1,"tmdbId":38055},{"name":"Assault on Wall Street","year":2013,"posterUrl":"/library/metadata/233/thumb/1599307913","imdbId":"","language":"en","overview":"Jim is an average New Yorker living a peaceful life with a well paying job and a loving family. Suddenly, everything changes when the economy crashes causing Jim to lose everything. Filled with anger and rage, Jim snaps and goes to extreme lengths to seek revenge for the life taken from him.","moviesInCollection":[],"ratingKey":233,"key":"/library/metadata/233","collectionTitle":"","collectionId":-1,"tmdbId":184125},{"name":"The Lost World Jurassic Park","year":1997,"posterUrl":"/library/metadata/40965/thumb/1599309113","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":40965,"key":"/library/metadata/40965","collectionTitle":"","collectionId":-1,"tmdbId":330},{"name":"Police Academy 2 Their First Assignment","year":1985,"posterUrl":"/library/metadata/1779/thumb/1599308510","imdbId":"","language":"en","overview":"Officer Carey Mahoney and his cohorts have finally graduated from the Police Academy and are about to hit the streets on their first assignment. Question is, are they ready to do battle with a band of graffiti-tagging terrorists? Time will tell, but don't sell short this cheerful band of doltish boys in blue.","moviesInCollection":[],"ratingKey":1779,"key":"/library/metadata/1779","collectionTitle":"","collectionId":-1,"tmdbId":10157},{"name":"Sin City","year":2005,"posterUrl":"/library/metadata/2040/thumb/1599308623","imdbId":"","language":"en","overview":"Welcome to Sin City. This town beckons to the tough, the corrupt, the brokenhearted. Some call it dark… Hard-boiled. Then there are those who call it home — 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.","moviesInCollection":[],"ratingKey":2040,"key":"/library/metadata/2040","collectionTitle":"","collectionId":-1,"tmdbId":187},{"name":"Raging Bull","year":1980,"posterUrl":"/library/metadata/1836/thumb/1599308533","imdbId":"","language":"en","overview":"When Jake LaMotta steps into a boxing ring and obliterates his opponent, he's a prizefighter. But when he treats his family and friends the same way, he's a ticking time bomb, ready to go off at any moment. Though LaMotta wants his family's love, something always seems to come between them. Perhaps it's his violent bouts of paranoia and jealousy. This kind of rage helped make him a champ, but in real life, he winds up in the ring alone.","moviesInCollection":[],"ratingKey":1836,"key":"/library/metadata/1836","collectionTitle":"","collectionId":-1,"tmdbId":1578},{"name":"The Sitter","year":2011,"posterUrl":"/library/metadata/2820/thumb/1599308933","imdbId":"","language":"en","overview":"Noah, is not your typical entertain-the-kids-no-matter-how-boring-it-is kind of sitter. He's reluctant to take a sitting gig; he'd rather, well, be doing anything else, especially if it involves slacking. When Noah is watching the neighbor's kid he gets a booty call from his girlfriend in the city. To hook up with her, Noah takes to the streets, but his urban adventure spins out of control as he finds himself on the run from a maniacal drug lord.","moviesInCollection":[],"ratingKey":2820,"key":"/library/metadata/2820","collectionTitle":"","collectionId":-1,"tmdbId":57431},{"name":"The Finest Hours","year":2016,"posterUrl":"/library/metadata/2465/thumb/1599308785","imdbId":"","language":"en","overview":"The Coast Guard makes a daring rescue attempt off the coast of Cape Cod after a pair of oil tankers are destroyed during a blizzard in 1952.","moviesInCollection":[],"ratingKey":2465,"key":"/library/metadata/2465","collectionTitle":"","collectionId":-1,"tmdbId":300673},{"name":"Trolls Holiday","year":2017,"posterUrl":"/library/metadata/3004/thumb/1599308998","imdbId":"","language":"en","overview":"When the eternally optimistic Poppy, queen of the Trolls, learns that the Bergens no longer have any holidays on their calendar, she enlists the help of Branch and the rest of the gang on a delightfully quirky mission to fix something that the Bergens don't think is broken.","moviesInCollection":[],"ratingKey":3004,"key":"/library/metadata/3004","collectionTitle":"","collectionId":-1,"tmdbId":484510},{"name":"Prisoners","year":2013,"posterUrl":"/library/metadata/1810/thumb/1599308523","imdbId":"","language":"en","overview":"When Keller Dover's daughter and her friend go missing, he takes matters into his own hands as the police pursue multiple leads and the pressure mounts. But just how far will this desperate father go to protect his family?","moviesInCollection":[],"ratingKey":1810,"key":"/library/metadata/1810","collectionTitle":"","collectionId":-1,"tmdbId":146233},{"name":"21 Bridges","year":2019,"posterUrl":"/library/metadata/43714/thumb/1599309147","imdbId":"","language":"en","overview":"An embattled NYPD detective, is thrust into a citywide manhunt for a pair of cop killers after uncovering a massive and unexpected conspiracy. As the night unfolds, lines become blurred on who he is pursuing, and who is in pursuit of him.","moviesInCollection":[],"ratingKey":43714,"key":"/library/metadata/43714","collectionTitle":"","collectionId":-1,"tmdbId":535292},{"name":"The Karate Kid Part II","year":1986,"posterUrl":"/library/metadata/2601/thumb/1599308836","imdbId":"","language":"en","overview":"Mr. Miyagi and Daniel take a trip to Okinawa to visit Mr. Miyagi's dying father. After arriving Mr. Miyagi finds he still has feelings for an old love. This stirs up trouble with an old rival who he originally left Okinawa to avoid. In the mean time, Daniel encounters a new love and also makes some enemies.","moviesInCollection":[],"ratingKey":2601,"key":"/library/metadata/2601","collectionTitle":"","collectionId":-1,"tmdbId":8856},{"name":"The Assassination of Jesse James by the Coward Robert Ford","year":2007,"posterUrl":"/library/metadata/2301/thumb/1599308725","imdbId":"","language":"en","overview":"Outlaw Jesse James is rumored to be the 'fastest gun in the West'. An eager recruit into James' notorious gang, Robert Ford eventually grows jealous of the famed outlaw and, when Robert and his brother sense an opportunity to kill James, their murderous action elevates their target to near mythical status.","moviesInCollection":[],"ratingKey":2301,"key":"/library/metadata/2301","collectionTitle":"","collectionId":-1,"tmdbId":4512},{"name":"Tales from the Darkside The Movie","year":1990,"posterUrl":"/library/metadata/47495/thumb/1599309186","imdbId":"","language":"en","overview":"The first segment features an animated mummy stalking selected student victims; the second tale tells the story of a \"cat from hell\" who cannot be killed and leaves a trail of victims behind it; the third story is about a man who witnesses a bizarre killing and promises never to tell what he saw and the \"in-between\" bit is the story of a woman preparing to cook her newspaper boy for supper.","moviesInCollection":[],"ratingKey":47495,"key":"/library/metadata/47495","collectionTitle":"","collectionId":-1,"tmdbId":20701},{"name":"The Trap","year":1959,"posterUrl":"/library/metadata/2871/thumb/1599308952","imdbId":"","language":"en","overview":"Lawyer Ralph Anderson arrives in Tula, an amazingly remote town in the desert, as reluctant emissary of mob chief Victor Massonetti, who wants the airstrip clear for his unofficial exit from the country. Ralph's arrival has a profound effect on his estranged father, the sheriff; his brother Tip, an alcoholic deputy; and his ex-sweetheart Linda, now married to Tip. Tension builds as a small army of gangsters takes over the town. Then the situation abruptly changes...","moviesInCollection":[],"ratingKey":2871,"key":"/library/metadata/2871","collectionTitle":"","collectionId":-1,"tmdbId":70324},{"name":"Scare Me","year":2020,"posterUrl":"/library/metadata/48451/thumb/1601904163","imdbId":"","language":"en","overview":"During a power outage, two strangers tell scary stories. The more Fred and Fanny commit to their tales, the more the stories come to life in the dark of a Catskills cabin. The horrors of reality manifest when Fred confronts his ultimate fear: Fanny is the better storyteller.","moviesInCollection":[],"ratingKey":48451,"key":"/library/metadata/48451","collectionTitle":"","collectionId":-1,"tmdbId":653643},{"name":"The Wicker Man","year":1975,"posterUrl":"/library/metadata/48453/thumb/1601904182","imdbId":"","language":"en","overview":"Police sergeant Neil Howie is called to an island village in search of a missing girl whom the locals claim never existed. Stranger still, however, are the rituals that take place there.","moviesInCollection":[],"ratingKey":48453,"key":"/library/metadata/48453","collectionTitle":"","collectionId":-1,"tmdbId":16307},{"name":"Yes Man","year":2008,"posterUrl":"/library/metadata/3186/thumb/1599309060","imdbId":"","language":"en","overview":"Carl Allen has stumbled across a way to shake free of post-divorce blues and a dead-end job: embrace life and say yes to everything.","moviesInCollection":[],"ratingKey":3186,"key":"/library/metadata/3186","collectionTitle":"","collectionId":-1,"tmdbId":10201},{"name":"Hancock","year":2008,"posterUrl":"/library/metadata/1054/thumb/1599308214","imdbId":"","language":"en","overview":"Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful, but will Hancock stick to his new sense of purpose or slip back into old habits?","moviesInCollection":[],"ratingKey":1054,"key":"/library/metadata/1054","collectionTitle":"","collectionId":-1,"tmdbId":8960},{"name":"The Thomas Crown Affair","year":1968,"posterUrl":"/library/metadata/2860/thumb/1599308949","imdbId":"","language":"en","overview":"Young businessman, Thomas Crown is bored and decides to plan a robbery and assigns a professional agent with the right information to the job. However, Crown is soon betrayed yet cannot blow his cover because he’s in love.","moviesInCollection":[],"ratingKey":2860,"key":"/library/metadata/2860","collectionTitle":"","collectionId":-1,"tmdbId":912},{"name":"Platoon","year":1987,"posterUrl":"/library/metadata/1757/thumb/1599308500","imdbId":"","language":"en","overview":"As a young and naive recruit in Vietnam, Chris Taylor faces a moral crisis when confronted with the horrors of war and the duality of man.","moviesInCollection":[],"ratingKey":1757,"key":"/library/metadata/1757","collectionTitle":"","collectionId":-1,"tmdbId":792},{"name":"The House That Jack Built","year":2018,"posterUrl":"/library/metadata/2554/thumb/1599308819","imdbId":"","language":"en","overview":"Failed architect, engineer and vicious murderer Jack narrates the details of some of his most elaborately orchestrated crimes, each of them a towering piece of art that defines his life's work as a serial killer for twelve years.","moviesInCollection":[],"ratingKey":2554,"key":"/library/metadata/2554","collectionTitle":"","collectionId":-1,"tmdbId":398173},{"name":"Valkyrie","year":2008,"posterUrl":"/library/metadata/3071/thumb/1599309022","imdbId":"","language":"en","overview":"Wounded in Africa during World War II, Nazi Col. Claus von Stauffenberg returns to his native Germany and joins the Resistance in a daring plan to create a shadow government and assassinate Adolf Hitler. When events unfold so that he becomes a central player, he finds himself tasked with both leading the coup and personally killing the Führer.","moviesInCollection":[],"ratingKey":3071,"key":"/library/metadata/3071","collectionTitle":"","collectionId":-1,"tmdbId":2253},{"name":"Lucky Number Slevin","year":2006,"posterUrl":"/library/metadata/1425/thumb/1599308352","imdbId":"","language":"en","overview":"Slevin is mistakenly put in the middle of a personal war between the city’s biggest criminal bosses. Under constant watch, Slevin must try not to get killed by an infamous assassin and come up with an idea of how to get out of his current dilemma. A film with many twists and turns.","moviesInCollection":[],"ratingKey":1425,"key":"/library/metadata/1425","collectionTitle":"","collectionId":-1,"tmdbId":186},{"name":"Green Lantern First Flight","year":2009,"posterUrl":"/library/metadata/1032/thumb/1599308205","imdbId":"","language":"en","overview":"Test pilot Hal Jordan finds himself recruited as the newest member of the intergalactic police force, The Green Lantern Corps.","moviesInCollection":[],"ratingKey":1032,"key":"/library/metadata/1032","collectionTitle":"","collectionId":-1,"tmdbId":17445},{"name":"Barbershop The Next Cut","year":2016,"posterUrl":"/library/metadata/278/thumb/1599307929","imdbId":"","language":"en","overview":"It’s been more than 10 years since our last appointment at Calvin’s Barbershop. Calvin and his longtime crew, including Eddie, are still there, but the shop has undergone some major changes. Most noticeably, our once male-dominated sanctuary is now co-ed. The ladies bring their own flavor, drama and gossip to the shop challenging the fellas at every turn. Despite the good times and camaraderie within the shop, the surrounding community has taken a turn for the worse, forcing Calvin and our crew to come together to not only save the shop, but their neighborhood.","moviesInCollection":[],"ratingKey":278,"key":"/library/metadata/278","collectionTitle":"","collectionId":-1,"tmdbId":326423},{"name":"The Lord of the Rings The Fellowship of the Ring","year":2001,"posterUrl":"/library/metadata/2652/thumb/1599308857","imdbId":"","language":"en","overview":"Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.","moviesInCollection":[],"ratingKey":2652,"key":"/library/metadata/2652","collectionTitle":"","collectionId":-1,"tmdbId":120},{"name":"Venom","year":2018,"posterUrl":"/library/metadata/3079/thumb/1599309024","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":3079,"key":"/library/metadata/3079","collectionTitle":"","collectionId":-1,"tmdbId":335983},{"name":"Brother Bear","year":2003,"posterUrl":"/library/metadata/435/thumb/1599307986","imdbId":"","language":"en","overview":"When an impulsive boy named Kenai is magically transformed into a bear, he must literally walk in another's footsteps until he learns some valuable life lessons. His courageous and often zany journey introduces him to a forest full of wildlife, including the lovable bear cub Koda, hilarious moose Rutt and Tuke, woolly mammoths and rambunctious rams.","moviesInCollection":[],"ratingKey":435,"key":"/library/metadata/435","collectionTitle":"","collectionId":-1,"tmdbId":10009},{"name":"City Slickers","year":1991,"posterUrl":"/library/metadata/520/thumb/1599308018","imdbId":"","language":"en","overview":"Three New York businessmen decide to take a \"Wild West\" vacation that turns out not to be the relaxing vacation they had envisioned.","moviesInCollection":[],"ratingKey":520,"key":"/library/metadata/520","collectionTitle":"","collectionId":-1,"tmdbId":1406},{"name":"Justice League Doom","year":2012,"posterUrl":"/library/metadata/41003/thumb/1599309116","imdbId":"","language":"en","overview":"An adaptation of Mark Waid's \"Tower of Babel\" story from the JLA comic. Vandal Savage steals confidential files Batman has compiled on the members of the Justice League, and learns all their weaknesses.","moviesInCollection":[],"ratingKey":41003,"key":"/library/metadata/41003","collectionTitle":"","collectionId":-1,"tmdbId":76589},{"name":"Castle in the Sky","year":1989,"posterUrl":"/library/metadata/484/thumb/1599308006","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":484,"key":"/library/metadata/484","collectionTitle":"","collectionId":-1,"tmdbId":10515},{"name":"Cat People","year":1982,"posterUrl":"/library/metadata/485/thumb/1599308006","imdbId":"","language":"en","overview":"After years of separation, Irina and her minister brother, Paul, reunite in New Orleans in this erotic tale of the supernatural. When zoologists capture a wild panther, Irina is drawn to the cat -- and the zoo curator is drawn to her. Soon, Irina's brother will have to reveal the family secret: that when sexually aroused, they turn into predatory jungle cats.","moviesInCollection":[],"ratingKey":485,"key":"/library/metadata/485","collectionTitle":"","collectionId":-1,"tmdbId":6217},{"name":"Almost Famous","year":2011,"posterUrl":"/library/metadata/167/thumb/1599307887","imdbId":"","language":"en","overview":"In 1973, 15-year-old William Miller's unabashed love of music and aspiration to become a rock journalist lands him an assignment from Rolling Stone magazine to interview and tour with the up-and-coming band Stillwater—fronted by lead guitar Russell Hammond, and lead singer Jeff Bebe.","moviesInCollection":[],"ratingKey":167,"key":"/library/metadata/167","collectionTitle":"","collectionId":-1,"tmdbId":786},{"name":"Glory Road","year":2006,"posterUrl":"/library/metadata/1005/thumb/1599308194","imdbId":"","language":"en","overview":"In 1966, Texas Western coach Don Haskins led the first all-black starting line-up for a college basketball team to the NCAA national championship.","moviesInCollection":[],"ratingKey":1005,"key":"/library/metadata/1005","collectionTitle":"","collectionId":-1,"tmdbId":9918},{"name":"Death Wish II","year":1982,"posterUrl":"/library/metadata/680/thumb/1599308073","imdbId":"","language":"en","overview":"Paul Kersey is again a vigilante trying to find five punks who murdered his housekeeper and daughter in Los Angeles.","moviesInCollection":[],"ratingKey":680,"key":"/library/metadata/680","collectionTitle":"","collectionId":-1,"tmdbId":14373},{"name":"Only the Brave","year":2017,"posterUrl":"/library/metadata/1663/thumb/1599308461","imdbId":"","language":"en","overview":"Members of the Granite Mountain Hotshots battle deadly wildfires to save an Arizona town.","moviesInCollection":[],"ratingKey":1663,"key":"/library/metadata/1663","collectionTitle":"","collectionId":-1,"tmdbId":395991},{"name":"Highway Dragnet","year":1954,"posterUrl":"/library/metadata/1111/thumb/1599308236","imdbId":"","language":"en","overview":"An ex-Marine on the lam from a murder charge. He hitches a ride from glamor-magazine photographer, who is travelling cross-country with her principal model. Tensions rise when the woman realize the man with them may be a killer.","moviesInCollection":[],"ratingKey":1111,"key":"/library/metadata/1111","collectionTitle":"","collectionId":-1,"tmdbId":47149},{"name":"The Perfect Score","year":2004,"posterUrl":"/library/metadata/2739/thumb/1599308895","imdbId":"","language":"en","overview":"Six high school seniors decide to break into the Princeton Testing Center so they can steal the answers to their upcoming SAT tests and all get perfect scores.","moviesInCollection":[],"ratingKey":2739,"key":"/library/metadata/2739","collectionTitle":"","collectionId":-1,"tmdbId":13505},{"name":"The Thomas Crown Affair","year":1999,"posterUrl":"/library/metadata/2861/thumb/1599308949","imdbId":"","language":"en","overview":"A very rich and successful playboy amuses himself by stealing artwork, but may have met his match in a seductive detective.","moviesInCollection":[],"ratingKey":2861,"key":"/library/metadata/2861","collectionTitle":"","collectionId":-1,"tmdbId":913},{"name":"Cloverfield","year":2008,"posterUrl":"/library/metadata/531/thumb/1599308022","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":531,"key":"/library/metadata/531","collectionTitle":"","collectionId":-1,"tmdbId":7191},{"name":"The Devil's Rejects","year":2005,"posterUrl":"/library/metadata/2420/thumb/1599308767","imdbId":"","language":"en","overview":"The sequel to House of 1000 Corpses – the Firefly family are ambushed at their isolated home by Sheriff Wydell and a squad of armed men guns blazing – yet only Otis and his sister, Baby, manage to escape the barrage of bullets unharmed. Hiding out in a backwater motel, the wanted siblings wait to rendezvous with their errant father, Captain Spaulding, killing whoever happens to stand in their way.","moviesInCollection":[],"ratingKey":2420,"key":"/library/metadata/2420","collectionTitle":"","collectionId":-1,"tmdbId":1696},{"name":"Hellraiser Revelations","year":2011,"posterUrl":"/library/metadata/1099/thumb/1599308231","imdbId":"","language":"en","overview":"Two friends in Mexico discover the Lament Configuration and unleash Pinhead, but one decides to try to survive by swapping himself with someone else. Once they go missing, family members go in search of them, but find Pinhead instead.","moviesInCollection":[],"ratingKey":1099,"key":"/library/metadata/1099","collectionTitle":"","collectionId":-1,"tmdbId":70584},{"name":"Solo A Star Wars Story","year":2018,"posterUrl":"/library/metadata/2088/thumb/1599308644","imdbId":"","language":"en","overview":"Through a series of daring escapades deep within a dark and dangerous criminal underworld, Han Solo meets his mighty future copilot Chewbacca and encounters the notorious gambler Lando Calrissian.","moviesInCollection":[],"ratingKey":2088,"key":"/library/metadata/2088","collectionTitle":"","collectionId":-1,"tmdbId":348350},{"name":"Juliet, Naked","year":2018,"posterUrl":"/library/metadata/1265/thumb/1599308295","imdbId":"","language":"en","overview":"Annie is stuck in a long-term relationship with Duncan – an obsessive fan of obscure rocker Tucker Crowe. When the acoustic demo of Tucker's hit record from 25 years ago surfaces, its discovery leads to a life-changing encounter with the elusive rocker himself.","moviesInCollection":[],"ratingKey":1265,"key":"/library/metadata/1265","collectionTitle":"","collectionId":-1,"tmdbId":458344},{"name":"We Are Still Here","year":2015,"posterUrl":"/library/metadata/48809/thumb/1601966777","imdbId":"","language":"en","overview":"After the death of their college age son, Anne and Paul Sacchetti relocate to the snowswept New England hamlet of Aylesbury, a sleepy village where all is most certainly not as it seems. When strange sounds and eerie feelings convince Anne that her son's spirit is still with them, they invite an eccentric, New Age couple to help them get to the bottom of the mystery.","moviesInCollection":[],"ratingKey":48809,"key":"/library/metadata/48809","collectionTitle":"","collectionId":-1,"tmdbId":291272},{"name":"Cats & Dogs","year":2001,"posterUrl":"/library/metadata/48430/thumb/1601899637","imdbId":"","language":"en","overview":"When a professor develops a vaccine that eliminates human allergies to dogs, he unwittingly upsets the fragile balance of power between cats and dogs and touches off an epic battle for pet supremacy. The fur flies as the feline faction, led by Mr. Tinkles, squares off against wide-eyed puppy Lou and his canine cohorts.","moviesInCollection":[],"ratingKey":48430,"key":"/library/metadata/48430","collectionTitle":"","collectionId":-1,"tmdbId":10992},{"name":"Up in the Air","year":2009,"posterUrl":"/library/metadata/3061/thumb/1599309018","imdbId":"","language":"en","overview":"Corporate downsizing expert Ryan Bingham spends his life in planes, airports, and hotels, but just as he’s about to reach a milestone of ten million frequent flyer miles, he meets a woman who causes him to rethink his transient life.","moviesInCollection":[],"ratingKey":3061,"key":"/library/metadata/3061","collectionTitle":"","collectionId":-1,"tmdbId":22947},{"name":"Dragon Ball Z Resurrection 'F'","year":2015,"posterUrl":"/library/metadata/767/thumb/1599308105","imdbId":"","language":"en","overview":"One peaceful day on Earth, two remnants of Frieza's army named Sorbet and Tagoma arrive searching for the Dragon Balls with the aim of reviving Frieza. They succeed, and Frieza subsequently seeks revenge on the Saiyans.","moviesInCollection":[],"ratingKey":767,"key":"/library/metadata/767","collectionTitle":"","collectionId":-1,"tmdbId":303857},{"name":"Chappaquiddick","year":2018,"posterUrl":"/library/metadata/493/thumb/1599308008","imdbId":"","language":"en","overview":"Ted Kennedy's life and political career become derailed in the aftermath of a fatal car accident in 1969 that claims the life of a young campaign strategist, Mary Jo Kopechne.","moviesInCollection":[],"ratingKey":493,"key":"/library/metadata/493","collectionTitle":"","collectionId":-1,"tmdbId":432301},{"name":"Drive Hard","year":2014,"posterUrl":"/library/metadata/783/thumb/1599308111","imdbId":"","language":"en","overview":"A former race car driver is abducted by a mysterious thief and forced to be the wheel-man for a crime that puts them both in the sights of the cops and the mob.","moviesInCollection":[],"ratingKey":783,"key":"/library/metadata/783","collectionTitle":"","collectionId":-1,"tmdbId":256092},{"name":"Jack Reacher","year":2012,"posterUrl":"/library/metadata/1218/thumb/1599308277","imdbId":"","language":"en","overview":"When a gunman takes five lives with six shots, all evidence points to the suspect in custody. On interrogation, the suspect offers up a single note: \"Get Jack Reacher!\" So begins an extraordinary chase for the truth, pitting Jack Reacher against an unexpected enemy, with a skill for violence and a secret to keep.","moviesInCollection":[],"ratingKey":1218,"key":"/library/metadata/1218","collectionTitle":"","collectionId":-1,"tmdbId":75780},{"name":"Dragnet","year":1987,"posterUrl":"/library/metadata/752/thumb/1599308101","imdbId":"","language":"en","overview":"LAPD Sgt. Joe Friday -- the equally straight-laced nephew of the famous police sergeant of the same name -- is paired up with a young, freewheeling detective named Pep Streebeck. After investigating some strange robberies at the local zoo and the theft of a stockpile of pornographic magazines, they uncover cult activity in the heart of the city and are hot on the case to figure out who's behind it all.","moviesInCollection":[],"ratingKey":752,"key":"/library/metadata/752","collectionTitle":"","collectionId":-1,"tmdbId":10023},{"name":"Wall Street Money Never Sleeps","year":2010,"posterUrl":"/library/metadata/3098/thumb/1599309030","imdbId":"","language":"en","overview":"As the global economy teeters on the brink of disaster, a young Wall Street trader partners with disgraced former Wall Street corporate raider Gordon Gekko on a two tiered mission: To alert the financial community to the coming doom, and to find out who was responsible for the death of the young trader's mentor.","moviesInCollection":[],"ratingKey":3098,"key":"/library/metadata/3098","collectionTitle":"","collectionId":-1,"tmdbId":33909},{"name":"Rogue Male","year":1977,"posterUrl":"/library/metadata/1928/thumb/1599308575","imdbId":"","language":"en","overview":"Early in 1939 Sir Robert Thorndyke takes aim at Adolf Hitler with a high powered rifle, but the shot misses its mark. Captured and tortured by the Gestapo and left for dead, Sir Robert makes his way back to England where he discovers the Gestapo has followed him. Knowing that his government would turn him over to German authorities, Sir Robert goes underground in his battle with his pursuers.","moviesInCollection":[],"ratingKey":1928,"key":"/library/metadata/1928","collectionTitle":"","collectionId":-1,"tmdbId":141752},{"name":"Snitch","year":2013,"posterUrl":"/library/metadata/2075/thumb/1599308638","imdbId":"","language":"en","overview":"Construction company owner John Matthews learns that his estranged son, Jason, has been arrested for drug trafficking. Facing an unjust prison sentence for a first time offender courtesy of mandatory minimum sentence laws, Jason has nothing to offer for leniency in good conscience. Desperately, John convinces the DEA and the opportunistic DA Joanne Keeghan to let him go undercover to help make arrests big enough to free his son in return. With the unwitting help of an ex-con employee, John enters the narcotics underworld where every move could be his last in an operation that will demand all his resources, wits and courage to survive.","moviesInCollection":[],"ratingKey":2075,"key":"/library/metadata/2075","collectionTitle":"","collectionId":-1,"tmdbId":134411},{"name":"RED","year":2010,"posterUrl":"/library/metadata/1859/thumb/1599308545","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1859,"key":"/library/metadata/1859","collectionTitle":"","collectionId":-1,"tmdbId":39514},{"name":"Fist Fight","year":2017,"posterUrl":"/library/metadata/909/thumb/1599308157","imdbId":"","language":"en","overview":"When one school teacher gets the other fired, he is challenged to an after-school fight.","moviesInCollection":[],"ratingKey":909,"key":"/library/metadata/909","collectionTitle":"","collectionId":-1,"tmdbId":345922},{"name":"Transformers","year":2007,"posterUrl":"/library/metadata/41130/thumb/1599309127","imdbId":"","language":"en","overview":"Young teenager, Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots – the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.","moviesInCollection":[],"ratingKey":41130,"key":"/library/metadata/41130","collectionTitle":"","collectionId":-1,"tmdbId":1858},{"name":"The Wicker Man","year":2006,"posterUrl":"/library/metadata/48449/thumb/1601904128","imdbId":"","language":"en","overview":"A sheriff investigating the disappearance of a young girl from a small island discovers there's a larger mystery to solve among the island's secretive, neo-pagan community.","moviesInCollection":[],"ratingKey":48449,"key":"/library/metadata/48449","collectionTitle":"","collectionId":-1,"tmdbId":9708},{"name":"Age of Dinosaurs","year":2013,"posterUrl":"/library/metadata/133/thumb/1599307875","imdbId":"","language":"en","overview":"Using breakthrough flesh-regeneration technology, a biotech firm creates a set of living dinosaurs. But when the creatures escape their museum exhibit and terrorize Los Angeles, a former firefighter must rescue his teenage daughter from the chaos brought on by the Age of Dinosaurs","moviesInCollection":[],"ratingKey":133,"key":"/library/metadata/133","collectionTitle":"","collectionId":-1,"tmdbId":192813},{"name":"Ice Age The Meltdown","year":2006,"posterUrl":"/library/metadata/1172/thumb/1599308259","imdbId":"","language":"en","overview":"Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.","moviesInCollection":[],"ratingKey":1172,"key":"/library/metadata/1172","collectionTitle":"","collectionId":-1,"tmdbId":950},{"name":"Mean Streets","year":1973,"posterUrl":"/library/metadata/1484/thumb/1599308381","imdbId":"","language":"en","overview":"A small-time hood must choose from among love, friendship and the chance to rise within the mob.","moviesInCollection":[],"ratingKey":1484,"key":"/library/metadata/1484","collectionTitle":"","collectionId":-1,"tmdbId":203},{"name":"Black Hawk Down","year":2001,"posterUrl":"/library/metadata/364/thumb/1599307960","imdbId":"","language":"en","overview":"When U.S. Rangers and an elite Delta Force team attempt to kidnap two underlings of a Somali warlord, their Black Hawk helicopters are shot down, and the Americans suffer heavy casualties, facing intense fighting from the militia on the ground.","moviesInCollection":[],"ratingKey":364,"key":"/library/metadata/364","collectionTitle":"","collectionId":-1,"tmdbId":855},{"name":"Hulk","year":2003,"posterUrl":"/library/metadata/1146/thumb/1599308249","imdbId":"","language":"en","overview":"Bruce Banner, a genetics researcher with a tragic past, suffers massive radiation exposure in his laboratory that causes him to transform into a raging green monster when he gets angry.","moviesInCollection":[],"ratingKey":1146,"key":"/library/metadata/1146","collectionTitle":"","collectionId":-1,"tmdbId":1927},{"name":"The Brady Bunch Movie","year":1995,"posterUrl":"/library/metadata/2337/thumb/1599308737","imdbId":"","language":"en","overview":"The original '70s TV family is now placed in the 1990s, where they're even more square and out of place than ever.","moviesInCollection":[],"ratingKey":2337,"key":"/library/metadata/2337","collectionTitle":"","collectionId":-1,"tmdbId":9066},{"name":"Zookeeper","year":2011,"posterUrl":"/library/metadata/3204/thumb/1599309066","imdbId":"","language":"en","overview":"Kindhearted Griffin Keyes is one of the best-loved caretakers at the Franklin Park Zoo, but since he is more comfortable with the animals than with females of his own species, his love life is lacking. When Griffin decides that the only way to get a girlfriend is to find a more-glamorous career, the animals panic. To keep him from leaving, they reveal their secret ability to talk and offer to teach him the rules of courtship, animal-style.","moviesInCollection":[],"ratingKey":3204,"key":"/library/metadata/3204","collectionTitle":"","collectionId":-1,"tmdbId":38317},{"name":"Apostle","year":2018,"posterUrl":"/library/metadata/214/thumb/1599307906","imdbId":"","language":"en","overview":"In 1905, a man travels to a remote island in search of his missing sister who has been kidnapped by a mysterious religious cult.","moviesInCollection":[],"ratingKey":214,"key":"/library/metadata/214","collectionTitle":"","collectionId":-1,"tmdbId":424121},{"name":"Annabelle Creation","year":2017,"posterUrl":"/library/metadata/204/thumb/1599307902","imdbId":"","language":"en","overview":"Several years after the tragic death of their little girl, a doll maker and his wife welcome a nun and several girls from a shuttered orphanage into their home, soon becoming the target of the doll maker's possessed creation—Annabelle.","moviesInCollection":[],"ratingKey":204,"key":"/library/metadata/204","collectionTitle":"","collectionId":-1,"tmdbId":396422},{"name":"Batman","year":1989,"posterUrl":"/library/metadata/285/thumb/1599307932","imdbId":"","language":"en","overview":"The Dark Knight of Gotham City begins his war on crime with his first major enemy being the clownishly homicidal Joker, who has seized control of Gotham's underworld.","moviesInCollection":[],"ratingKey":285,"key":"/library/metadata/285","collectionTitle":"","collectionId":-1,"tmdbId":268},{"name":"The Girl with All the Gifts","year":2017,"posterUrl":"/library/metadata/2492/thumb/1599308796","imdbId":"","language":"en","overview":"In the future, a strange fungus has changed nearly everyone into a thoughtless, flesh-eating monster. When a scientist and a teacher find a girl who seems to be immune to the fungus, they all begin a journey to save humanity.","moviesInCollection":[],"ratingKey":2492,"key":"/library/metadata/2492","collectionTitle":"","collectionId":-1,"tmdbId":375366},{"name":"Crouching Tiger, Hidden Dragon Sword of Destiny","year":2016,"posterUrl":"/library/metadata/607/thumb/1599308049","imdbId":"","language":"en","overview":"A story of lost love, young love, a legendary sword and one last opportunity at redemption.","moviesInCollection":[],"ratingKey":607,"key":"/library/metadata/607","collectionTitle":"","collectionId":-1,"tmdbId":263341},{"name":"North Sea Hijack","year":1980,"posterUrl":"/library/metadata/1619/thumb/1599308441","imdbId":"","language":"en","overview":"A terrorist (Anthony Perkins) holds an offshore drilling rig and production platform for ransom in the North Sea. Ffolkes (Roger Moore) a wealthy eccentric, volunteers to send his crack team of soldiers in to stop the terrorists. With few other options available, the British Government reluctantly accepts his help.","moviesInCollection":[],"ratingKey":1619,"key":"/library/metadata/1619","collectionTitle":"","collectionId":-1,"tmdbId":390253},{"name":"Teenage Mutant Ninja Turtles","year":1990,"posterUrl":"/library/metadata/2253/thumb/1599308709","imdbId":"","language":"en","overview":"A quartet of mutated humanoid turtles clash with an uprising criminal gang of ninjas","moviesInCollection":[],"ratingKey":2253,"key":"/library/metadata/2253","collectionTitle":"","collectionId":-1,"tmdbId":1498},{"name":"Operation Finale","year":2018,"posterUrl":"/library/metadata/1667/thumb/1599308463","imdbId":"","language":"en","overview":"In 1960, a team of Israeli secret agents is deployed to find Adolf Eichmann, the infamous Nazi architect of the Holocaust, supposedly hidden in Argentina, and get him to Israel to be judged.","moviesInCollection":[],"ratingKey":1667,"key":"/library/metadata/1667","collectionTitle":"","collectionId":-1,"tmdbId":493551},{"name":"Creed","year":2015,"posterUrl":"/library/metadata/593/thumb/1599308045","imdbId":"","language":"en","overview":"The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.","moviesInCollection":[],"ratingKey":593,"key":"/library/metadata/593","collectionTitle":"","collectionId":-1,"tmdbId":312221},{"name":"The Year Without a Santa Claus","year":1974,"posterUrl":"/library/metadata/2908/thumb/1599308966","imdbId":"","language":"en","overview":"Feeling forgotten by the children of the world, old St. Nick decides to skip his gift-giving journey and take a vacation. Mrs. Claus and two spunky little elves, Jingle and Jangle, set out to see to where all the season's cheer has disappeared. Aided by a magical snowfall, they reawaken the spirit of Christmas in children's hearts and put Santa back in action.","moviesInCollection":[],"ratingKey":2908,"key":"/library/metadata/2908","collectionTitle":"","collectionId":-1,"tmdbId":13397},{"name":"Project X","year":2012,"posterUrl":"/library/metadata/1812/thumb/1599308524","imdbId":"","language":"en","overview":"Three high school seniors throw a party to make a name for themselves. As the night progresses, things spiral out of control as word of the party spreads.","moviesInCollection":[],"ratingKey":1812,"key":"/library/metadata/1812","collectionTitle":"","collectionId":-1,"tmdbId":57214},{"name":"Notorious","year":2009,"posterUrl":"/library/metadata/1624/thumb/1599308443","imdbId":"","language":"en","overview":"NOTORIOUS is the story of Christopher Wallace. Through raw talent and sheer determination, Wallace transforms himself from Brooklyn street hustler (once selling crack to pregnant women) to one of the greatest rappers of all time; THE NOTORIOUS B.I.G. Follow his meteoric rise to fame and his refusal to succumb to expectations - redefining our notion of \"The American Dream.\"","moviesInCollection":[],"ratingKey":1624,"key":"/library/metadata/1624","collectionTitle":"","collectionId":-1,"tmdbId":14410},{"name":"The Expendables 3","year":2014,"posterUrl":"/library/metadata/2446/thumb/1599308778","imdbId":"","language":"en","overview":"Barney, Christmas and the rest of the team comes face-to-face with Conrad Stonebanks, who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to kill… or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables -- but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendables’ most personal battle yet.","moviesInCollection":[],"ratingKey":2446,"key":"/library/metadata/2446","collectionTitle":"","collectionId":-1,"tmdbId":138103},{"name":"Nymphomaniac Vol. II","year":2014,"posterUrl":"/library/metadata/1627/thumb/1599308445","imdbId":"","language":"en","overview":"The continuation of Joe's sexually dictated life delves into the darker aspects of her adult life and what led to her being in Seligman's care.","moviesInCollection":[],"ratingKey":1627,"key":"/library/metadata/1627","collectionTitle":"","collectionId":-1,"tmdbId":249397},{"name":"The Thing from Another World","year":1951,"posterUrl":"/library/metadata/48330/thumb/1600865848","imdbId":"","language":"en","overview":"Scientists and U.S. Air Force officials fend off a blood-thirsty alien organism while at a remote arctic outpost.","moviesInCollection":[],"ratingKey":48330,"key":"/library/metadata/48330","collectionTitle":"","collectionId":-1,"tmdbId":10785},{"name":"The Net","year":1995,"posterUrl":"/library/metadata/2710/thumb/1599308883","imdbId":"","language":"en","overview":"Angela Bennett is a freelance software engineer who lives in a world of computer technology. When a cyber friend asks Bennett to debug a new game, she inadvertently becomes involved in a conspiracy that will soon turn her life upside down. While on vacation in Mexico, her purse is stolen. She soon finds that people and events may not be what they seem as she becomes the target of an assassination. Her vacation is ruined. She gets a new passport at the U.S. Embassy in Mexico but it has the wrong name, Ruth Marx. When she returns to the U.S. to sort things out, she discovers that Ruth Marx has an unsavory past and a lengthy police record. To make matters worse, another person has assumed her real identity ...","moviesInCollection":[],"ratingKey":2710,"key":"/library/metadata/2710","collectionTitle":"","collectionId":-1,"tmdbId":1642},{"name":"Bad Match","year":2017,"posterUrl":"/library/metadata/268/thumb/1599307925","imdbId":"","language":"en","overview":"An internet-dating playboy's life spirals out of control after meeting a woman online.","moviesInCollection":[],"ratingKey":268,"key":"/library/metadata/268","collectionTitle":"","collectionId":-1,"tmdbId":429727},{"name":"Get a Job","year":2016,"posterUrl":"/library/metadata/980/thumb/1599308185","imdbId":"","language":"en","overview":"A recent college graduate and his friends are forced to lower life expectations when they leave school for the real world. Life after college graduation is not exactly going as planned for Will and Jillian who find themselves lost in a sea of increasingly strange jobs. But with help from their family, friends and coworkers they soon discover that the most important (and hilarious) adventures are the ones that we don't see coming.","moviesInCollection":[],"ratingKey":980,"key":"/library/metadata/980","collectionTitle":"","collectionId":-1,"tmdbId":186759},{"name":"The Chronicles of Narnia The Lion, the Witch and the Wardrobe","year":2005,"posterUrl":"/library/metadata/2360/thumb/1599308744","imdbId":"","language":"en","overview":"Siblings Lucy, Edmund, Susan and Peter step through a magical wardrobe and find the land of Narnia. There, the 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.","moviesInCollection":[],"ratingKey":2360,"key":"/library/metadata/2360","collectionTitle":"","collectionId":-1,"tmdbId":411},{"name":"Batman","year":1966,"posterUrl":"/library/metadata/284/thumb/1599307931","imdbId":"","language":"en","overview":"The Dynamic Duo faces four super-villains who plan to hold the world for ransom with the help of a secret invention that instantly dehydrates people.","moviesInCollection":[],"ratingKey":284,"key":"/library/metadata/284","collectionTitle":"","collectionId":-1,"tmdbId":2661},{"name":"Night at the Museum","year":2006,"posterUrl":"/library/metadata/1608/thumb/1599308436","imdbId":"","language":"en","overview":"Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits.","moviesInCollection":[],"ratingKey":1608,"key":"/library/metadata/1608","collectionTitle":"","collectionId":-1,"tmdbId":1593},{"name":"Repo Men","year":2010,"posterUrl":"/library/metadata/1879/thumb/1599308553","imdbId":"","language":"en","overview":"In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.","moviesInCollection":[],"ratingKey":1879,"key":"/library/metadata/1879","collectionTitle":"","collectionId":-1,"tmdbId":31867},{"name":"The Iceman","year":2012,"posterUrl":"/library/metadata/2575/thumb/1599308826","imdbId":"","language":"en","overview":"The true story of Richard Kuklinski, the notorious contract killer and family man.","moviesInCollection":[],"ratingKey":2575,"key":"/library/metadata/2575","collectionTitle":"","collectionId":-1,"tmdbId":68812},{"name":"Meet the Spartans","year":2008,"posterUrl":"/library/metadata/1490/thumb/1599308384","imdbId":"","language":"en","overview":"From the creators of Scary Movie and Date Movie comes this tongue-in-cheek parody of the sword-and-sandal epics, dubbed Meet the Spartans. The 20th Century Fox production was written and directed by the filmmaking team of Jason Friedberg and Aaron Seltzer. Sure, Leonidas may have nothing more than a cape and some leather underwear to protect him from the razor-sharp swords of his Persian enemies,","moviesInCollection":[],"ratingKey":1490,"key":"/library/metadata/1490","collectionTitle":"","collectionId":-1,"tmdbId":7278},{"name":"Buried","year":2010,"posterUrl":"/library/metadata/445/thumb/1599307990","imdbId":"","language":"en","overview":"Paul is a U.S. truck driver working in Iraq. After an attack by a group of Iraqis he wakes to find he is buried alive inside a coffin. With only a lighter and a cell phone it's a race against time to escape this claustrophobic death trap.","moviesInCollection":[],"ratingKey":445,"key":"/library/metadata/445","collectionTitle":"","collectionId":-1,"tmdbId":26388},{"name":"Becky","year":2020,"posterUrl":"/library/metadata/46563/thumb/1599309165","imdbId":"","language":"en","overview":"A teenager's weekend at a lake house with her father takes a turn for the worse when a group of convicts wreaks havoc on their lives.","moviesInCollection":[],"ratingKey":46563,"key":"/library/metadata/46563","collectionTitle":"","collectionId":-1,"tmdbId":601844},{"name":"The Vast of Night","year":2019,"posterUrl":"/library/metadata/43635/thumb/1599309141","imdbId":"","language":"en","overview":"At the dawn of the space-race, two radio-obsessed teens discover a strange frequency over the airwaves in what becomes the most important night of their lives and in the history of their small town.","moviesInCollection":[],"ratingKey":43635,"key":"/library/metadata/43635","collectionTitle":"","collectionId":-1,"tmdbId":565743},{"name":"Drag Me to Hell","year":2009,"posterUrl":"/library/metadata/750/thumb/1599308100","imdbId":"","language":"en","overview":"After denying a woman the extension she needs to keep her home, loan officer Christine Brown sees her once-promising life take a startling turn for the worse. Christine is convinced she's been cursed by a Gypsy, but her boyfriend is skeptical. Her only hope seems to lie in a psychic who claims he can help her lift the curse and keep her soul from being dragged straight to hell.","moviesInCollection":[],"ratingKey":750,"key":"/library/metadata/750","collectionTitle":"","collectionId":-1,"tmdbId":16871},{"name":"Let the Right One In","year":2008,"posterUrl":"/library/metadata/1371/thumb/1599308331","imdbId":"","language":"en","overview":"Set in 1982 in the suburb of Blackeberg, Stockholm, twelve-year-old Oskar is a lonely outsider, bullied at school by his classmates; at home, Oskar dreams of revenge against a trio of bullies. He befriends his twelve-year-old, next-door neighbor Eli, who only appears at night in the snow-covered playground outside their building.","moviesInCollection":[],"ratingKey":1371,"key":"/library/metadata/1371","collectionTitle":"","collectionId":-1,"tmdbId":13310},{"name":"American Made","year":2017,"posterUrl":"/library/metadata/181/thumb/1599307892","imdbId":"","language":"en","overview":"The true story of pilot Barry Seal, who transported contraband for the CIA and the Medellin cartel in the 1980s.","moviesInCollection":[],"ratingKey":181,"key":"/library/metadata/181","collectionTitle":"","collectionId":-1,"tmdbId":337170},{"name":"Kong Skull Island","year":2017,"posterUrl":"/library/metadata/1319/thumb/1599308314","imdbId":"","language":"en","overview":"Explore the mysterious and dangerous home of the king of the apes as a team of explorers ventures deep inside the treacherous, primordial island.","moviesInCollection":[],"ratingKey":1319,"key":"/library/metadata/1319","collectionTitle":"","collectionId":-1,"tmdbId":293167},{"name":"Arrival","year":2016,"posterUrl":"/library/metadata/223/thumb/1599307909","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":223,"key":"/library/metadata/223","collectionTitle":"","collectionId":-1,"tmdbId":329865},{"name":"Leatherface The Texas Chainsaw Massacre III","year":1990,"posterUrl":"/library/metadata/1351/thumb/1599308325","imdbId":"","language":"en","overview":"A couple encounters a perverted gas station attendant who threatens them with a shotgun. They take a deserted path in Texas to seek help, but only meet up with a cannibalistic clan interested in helping themselves to fresh meat.","moviesInCollection":[],"ratingKey":1351,"key":"/library/metadata/1351","collectionTitle":"","collectionId":-1,"tmdbId":25018},{"name":"Smokey and the Bandit II","year":1980,"posterUrl":"/library/metadata/2069/thumb/1599308636","imdbId":"","language":"en","overview":"The Bandit goes on another cross-country run, transporting an elephant from Florida to Texas. And, once again, Sheriff Buford T. Justice is on his tail.","moviesInCollection":[],"ratingKey":2069,"key":"/library/metadata/2069","collectionTitle":"","collectionId":-1,"tmdbId":12705},{"name":"Torque","year":2004,"posterUrl":"/library/metadata/2960/thumb/1599308983","imdbId":"","language":"en","overview":"Biker Cary Ford is framed by an old rival and biker gang leader for the murder of another gang member who happens to be the brother of Trey, leader of the most feared biker gang in the country. Ford is now on the run trying to clear his name from the murder with Trey and his gang looking for his blood.","moviesInCollection":[],"ratingKey":2960,"key":"/library/metadata/2960","collectionTitle":"","collectionId":-1,"tmdbId":10718},{"name":"No","year":2013,"posterUrl":"/library/metadata/1613/thumb/1599308438","imdbId":"","language":"en","overview":"In 1988, Chilean military dictator Augusto Pinochet, due to international pressure, is forced to call a plebiscite on his presidency. The country will vote ‘Yes’ or ‘No’ to Pinochet extending his rule for another eight years. Opposition leaders for the ‘No’ vote persuade a brash young advertising executive, Rene Saavedra, to spearhead their campaign. Against all odds, with scant resources and while under scrutiny by the despot’s minions, Saavedra and his team devise an audacious plan to win the election and set Chile free.","moviesInCollection":[],"ratingKey":1613,"key":"/library/metadata/1613","collectionTitle":"","collectionId":-1,"tmdbId":110398},{"name":"Meet Joe Black","year":1998,"posterUrl":"/library/metadata/1486/thumb/1599308382","imdbId":"","language":"en","overview":"When the grim reaper comes to collect the soul of megamogul Bill Parrish, he arrives with a proposition: Host him for a \"vacation\" among the living in trade for a few more days of existence. Parrish agrees, and using the pseudonym Joe Black, Death begins taking part in Parrish's daily agenda and falls in love with the man's daughter. Yet when Black's holiday is over, so is Parrish's life.","moviesInCollection":[],"ratingKey":1486,"key":"/library/metadata/1486","collectionTitle":"","collectionId":-1,"tmdbId":297},{"name":"Teenage Mutant Ninja Turtles","year":2014,"posterUrl":"/library/metadata/2254/thumb/1599308709","imdbId":"","language":"en","overview":"The city needs heroes. Darkness has settled over New York City as Shredder and his evil Foot Clan have an iron grip on everything from the police to the politicians. The future is grim until four unlikely outcast brothers rise from the sewers and discover their destiny as Teenage Mutant Ninja Turtles. The Turtles must work with fearless reporter April and her wise-cracking cameraman Vern Fenwick to save the city and unravel Shredder's diabolical plan.","moviesInCollection":[],"ratingKey":2254,"key":"/library/metadata/2254","collectionTitle":"","collectionId":-1,"tmdbId":98566},{"name":"Escape Plan The Extractors","year":2019,"posterUrl":"/library/metadata/837/thumb/1599308129","imdbId":"","language":"en","overview":"After security expert Ray Breslin is hired to rescue the kidnapped daughter of a Hong Kong tech mogul from a formidable Latvian prison, Breslin's girlfriend is also captured. Now he and his team must pull off a deadly rescue mission to confront their sadistic foe and save the hostages before time runs out.","moviesInCollection":[],"ratingKey":837,"key":"/library/metadata/837","collectionTitle":"","collectionId":-1,"tmdbId":480042},{"name":"Notorious","year":1946,"posterUrl":"/library/metadata/1623/thumb/1599308443","imdbId":"","language":"en","overview":"In order to help bring Nazis to justice, U.S. government agent T.R. Devlin recruits Alicia Huberman, the American daughter of a convicted German war criminal, as a spy. As they begin to fall for one another, Alicia is instructed to win the affections of Alexander Sebastian, a Nazi hiding out in Brazil. When Sebastian becomes serious about his relationship with Alicia, the stakes get higher, and Devlin must watch her slip further undercover.","moviesInCollection":[],"ratingKey":1623,"key":"/library/metadata/1623","collectionTitle":"","collectionId":-1,"tmdbId":303},{"name":"Premonition","year":2007,"posterUrl":"/library/metadata/1804/thumb/1599308520","imdbId":"","language":"en","overview":"A depressed housewife who learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the day after to a world in which he is still dead.","moviesInCollection":[],"ratingKey":1804,"key":"/library/metadata/1804","collectionTitle":"","collectionId":-1,"tmdbId":9963},{"name":"The Expendables 2","year":2012,"posterUrl":"/library/metadata/2445/thumb/1599308777","imdbId":"","language":"en","overview":"Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.","moviesInCollection":[],"ratingKey":2445,"key":"/library/metadata/2445","collectionTitle":"","collectionId":-1,"tmdbId":76163},{"name":"Pet Sematary","year":2019,"posterUrl":"/library/metadata/1726/thumb/1599308489","imdbId":"","language":"en","overview":"Dr. Louis Creed and his wife, Rachel, move from Boston to Ludlow, in rural Maine, with their two young children. Hidden in the woods near the new family home, Ellie, their eldest daughter, discovers a mysterious cemetery where the pets of community members are buried.","moviesInCollection":[],"ratingKey":1726,"key":"/library/metadata/1726","collectionTitle":"","collectionId":-1,"tmdbId":157433},{"name":"Comedy Central Roast of Bruce Willis","year":2018,"posterUrl":"/library/metadata/556/thumb/1599308030","imdbId":"","language":"en","overview":"Bruce Willis goes from \"Die Hard\" to dead on arrival as some of the biggest names in entertainment serve up punches of their own to Hollywood's go-to action star. And with Roast Master Joseph Gordon-Levitt at the helm, nobody is leaving the dais unscathed.","moviesInCollection":[],"ratingKey":556,"key":"/library/metadata/556","collectionTitle":"","collectionId":-1,"tmdbId":536056},{"name":"Poison Ivy 2 Lily","year":1996,"posterUrl":"/library/metadata/1768/thumb/1599308505","imdbId":"","language":"en","overview":"A young and naive college art student becomes obsessed with assuming the identity and personality of a departed coed who used to live in her room, and in so doing causes complications that result in two men, a student and her art professor, lusting after her.","moviesInCollection":[],"ratingKey":1768,"key":"/library/metadata/1768","collectionTitle":"","collectionId":-1,"tmdbId":18220},{"name":"The Angry Birds Movie 2","year":2019,"posterUrl":"/library/metadata/2292/thumb/1599308722","imdbId":"","language":"en","overview":"Red, Chuck, Bomb and the rest of their feathered friends are surprised when a green pig suggests that they put aside their differences and unite to fight a common threat. Aggressive birds from an island covered in ice are planning to use an elaborate weapon to destroy the fowl and swine.","moviesInCollection":[],"ratingKey":2292,"key":"/library/metadata/2292","collectionTitle":"","collectionId":-1,"tmdbId":454640},{"name":"The Favourite","year":2018,"posterUrl":"/library/metadata/2457/thumb/1599308782","imdbId":"","language":"en","overview":"England, early 18th century. The close relationship between Queen Anne and Sarah Churchill is threatened by the arrival of Sarah's cousin, Abigail Hill, resulting in a bitter rivalry between the two cousins to be the Queen's favourite.","moviesInCollection":[],"ratingKey":2457,"key":"/library/metadata/2457","collectionTitle":"","collectionId":-1,"tmdbId":375262},{"name":"Downloaded","year":2013,"posterUrl":"/library/metadata/743/thumb/1599308097","imdbId":"","language":"en","overview":"A documentary that explores the downloading revolution; the kids that created it, the bands and the businesses that were affected by it, and its impact on the world at large.","moviesInCollection":[],"ratingKey":743,"key":"/library/metadata/743","collectionTitle":"","collectionId":-1,"tmdbId":173210},{"name":"The Tax Collector","year":2020,"posterUrl":"/library/metadata/48437/thumb/1601899890","imdbId":"","language":"en","overview":"David Cuevas is a family man who works as a gangland tax collector for high ranking Los Angeles gang members. He makes collections across the city with his partner Creeper making sure people pay up or will see retaliation. An old threat returns to Los Angeles that puts everything David loves in harm’s way.","moviesInCollection":[],"ratingKey":48437,"key":"/library/metadata/48437","collectionTitle":"","collectionId":-1,"tmdbId":531499},{"name":"King Arthur Legend of the Sword","year":2017,"posterUrl":"/library/metadata/1310/thumb/1599308310","imdbId":"","language":"en","overview":"When the child Arthur’s father is murdered, Vortigern, Arthur’s uncle, seizes the crown. Robbed of his birthright and with no idea who he truly is, Arthur comes up the hard way in the back alleys of the city. But once he pulls the sword Excalibur from the stone, his life is turned upside down and he is forced to acknowledge his true legacy... whether he likes it or not.","moviesInCollection":[],"ratingKey":1310,"key":"/library/metadata/1310","collectionTitle":"","collectionId":-1,"tmdbId":274857},{"name":"The Wedding Party","year":1969,"posterUrl":"/library/metadata/2895/thumb/1599308961","imdbId":"","language":"en","overview":"Young Charlie begins to develop a case of cold feet as his upcoming wedding looms nearer. Desperate to throw the wedding plans off the track, Charlie tries a variety of tactics, including attempting to rekindle the relationship between his fiancée Josephine and a former boyfriend, to flee the scene","moviesInCollection":[],"ratingKey":2895,"key":"/library/metadata/2895","collectionTitle":"","collectionId":-1,"tmdbId":74137},{"name":"Pink Floyd The Wall","year":1982,"posterUrl":"/library/metadata/1743/thumb/1599308496","imdbId":"","language":"en","overview":"A troubled rock star descends into madness in the midst of his physical and social isolation from everyone.","moviesInCollection":[],"ratingKey":1743,"key":"/library/metadata/1743","collectionTitle":"","collectionId":-1,"tmdbId":12104},{"name":"American Violence","year":2017,"posterUrl":"/library/metadata/191/thumb/1599307897","imdbId":"","language":"en","overview":"A psychologist interviews a death row inmate to determine whether or not a stay of execution should be granted.","moviesInCollection":[],"ratingKey":191,"key":"/library/metadata/191","collectionTitle":"","collectionId":-1,"tmdbId":435473},{"name":"A Time to Love and a Time to Die","year":1958,"posterUrl":"/library/metadata/95/thumb/1599307860","imdbId":"","language":"en","overview":"A German soldier home on leave falls in love with a girl, then returns to World War II.","moviesInCollection":[],"ratingKey":95,"key":"/library/metadata/95","collectionTitle":"","collectionId":-1,"tmdbId":84079},{"name":"Seventh Son","year":2015,"posterUrl":"/library/metadata/2005/thumb/1599308606","imdbId":"","language":"en","overview":"John Gregory, who is a seventh son of a seventh son and also the local spook, has protected the country from witches, boggarts, ghouls and all manner of things that go bump in the night. However John is not young anymore, and has been seeking an apprentice to carry on his trade. Most have failed to survive. The last hope is a young farmer's son named Thomas Ward. Will he survive the training to become the spook that so many others couldn't?","moviesInCollection":[],"ratingKey":2005,"key":"/library/metadata/2005","collectionTitle":"","collectionId":-1,"tmdbId":68737},{"name":"I Am Wrath","year":2016,"posterUrl":"/library/metadata/1154/thumb/1599308252","imdbId":"","language":"en","overview":"A man is out for justice after a group of corrupt police officers are unable to catch his wife's killer.","moviesInCollection":[],"ratingKey":1154,"key":"/library/metadata/1154","collectionTitle":"","collectionId":-1,"tmdbId":332411},{"name":"Clerks","year":1994,"posterUrl":"/library/metadata/523/thumb/1599308019","imdbId":"","language":"en","overview":"Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.","moviesInCollection":[],"ratingKey":523,"key":"/library/metadata/523","collectionTitle":"","collectionId":-1,"tmdbId":2292},{"name":"Cube","year":1998,"posterUrl":"/library/metadata/39706/thumb/1599309092","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":39706,"key":"/library/metadata/39706","collectionTitle":"","collectionId":-1,"tmdbId":431},{"name":"Kubo and the Two Strings","year":2016,"posterUrl":"/library/metadata/1323/thumb/1599308315","imdbId":"","language":"en","overview":"Kubo mesmerizes the people in his village with his magical gift for spinning wild tales with origami. When he accidentally summons an evil spirit seeking vengeance, Kubo is forced to go on a quest to solve the mystery of his fallen samurai father and his mystical weaponry, as well as discover his own magical powers.","moviesInCollection":[],"ratingKey":1323,"key":"/library/metadata/1323","collectionTitle":"","collectionId":-1,"tmdbId":313297},{"name":"All the Devil's Men","year":2018,"posterUrl":"/library/metadata/163/thumb/1599307886","imdbId":"","language":"en","overview":"A battle-scarred War on Terror bounty hunter is forced to go to London on a manhunt for a disavowed CIA operative, which leads him into a deadly running battle with a former military comrade and his private army.","moviesInCollection":[],"ratingKey":163,"key":"/library/metadata/163","collectionTitle":"","collectionId":-1,"tmdbId":481203},{"name":"After Earth","year":2013,"posterUrl":"/library/metadata/126/thumb/1599307872","imdbId":"","language":"en","overview":"One thousand years after cataclysmic events forced humanity's escape from Earth, Nova Prime has become mankind's new home. Legendary General Cypher Raige returns from an extended tour of duty to his estranged family, ready to be a father to his 13-year-old son, Kitai. When an asteroid storm damages Cypher and Kitai's craft, they crash-land on a now unfamiliar and dangerous Earth. As his father lies dying in the cockpit, Kitai must trek across the hostile terrain to recover their rescue beacon. His whole life, Kitai has wanted nothing more than to be a soldier like his father. Today, he gets his chance.","moviesInCollection":[],"ratingKey":126,"key":"/library/metadata/126","collectionTitle":"","collectionId":-1,"tmdbId":82700},{"name":"Let's Be Cops","year":2014,"posterUrl":"/library/metadata/1373/thumb/1599308331","imdbId":"","language":"en","overview":"It's the ultimate buddy cop movie except for one thing: they're not cops. When two struggling pals dress as police officers for a costume party, they become neighborhood sensations. But when these newly-minted “heroes” get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.","moviesInCollection":[],"ratingKey":1373,"key":"/library/metadata/1373","collectionTitle":"","collectionId":-1,"tmdbId":193893},{"name":"The Switch","year":2010,"posterUrl":"/library/metadata/2845/thumb/1599308944","imdbId":"","language":"en","overview":"An unmarried 40-year-old woman turns to a turkey baster in order to become pregnant. Seven years later, she reunites with her best friend, who has been living with a secret: he replaced her preferred sperm sample with his own.","moviesInCollection":[],"ratingKey":2845,"key":"/library/metadata/2845","collectionTitle":"","collectionId":-1,"tmdbId":41210},{"name":"Force of Nature","year":2020,"posterUrl":"/library/metadata/45845/thumb/1599309149","imdbId":"","language":"en","overview":"A gang of thieves plan a heist during a hurricane and encounter trouble when a disgraced cop tries to force everyone in the building to evacuate.","moviesInCollection":[],"ratingKey":45845,"key":"/library/metadata/45845","collectionTitle":"","collectionId":-1,"tmdbId":619592},{"name":"Along Came a Spider","year":2001,"posterUrl":"/library/metadata/169/thumb/1599307888","imdbId":"","language":"en","overview":"When a teacher kidnaps a girl from a prestigious school, homicide detective, Alex Cross takes the case and teams up with young security agent, Jezzie Flannigan in hope of finding the girl and stopping the brutal psychopath.","moviesInCollection":[],"ratingKey":169,"key":"/library/metadata/169","collectionTitle":"","collectionId":-1,"tmdbId":2043},{"name":"We Die Young","year":2019,"posterUrl":"/library/metadata/3117/thumb/1599309037","imdbId":"","language":"en","overview":"Lucas, a 14-year-old boy inducted into the gang life in Washington D.C., is determined that his 10-year-old brother won't follow the same path. When an Afghanistan war veteran comes into the neighborhood, an opportunity arises.","moviesInCollection":[],"ratingKey":3117,"key":"/library/metadata/3117","collectionTitle":"","collectionId":-1,"tmdbId":538207},{"name":"Dragon Ball Curse of the Blood Rubies","year":1986,"posterUrl":"/library/metadata/755/thumb/1599308102","imdbId":"","language":"en","overview":"The great King Gurumes is searching for the Dragon Balls in order to put a stop to his endless hunger. A young girl named Pansy who lives in the nearby village has had enough of the treachery and decides to seek Muten Rōshi for assistance. Can our heroes save the village and put a stop to the Gurumes Army?","moviesInCollection":[],"ratingKey":755,"key":"/library/metadata/755","collectionTitle":"","collectionId":-1,"tmdbId":39144},{"name":"Texas Chainsaw Massacre The Shocking Truth","year":2000,"posterUrl":"/library/metadata/2267/thumb/1599308713","imdbId":"","language":"en","overview":"For the first time the full story behind the film which terrified the world...","moviesInCollection":[],"ratingKey":2267,"key":"/library/metadata/2267","collectionTitle":"","collectionId":-1,"tmdbId":76177},{"name":"Pain and Glory","year":2019,"posterUrl":"/library/metadata/1691/thumb/1599308473","imdbId":"","language":"en","overview":"Salvador Mallo, a filmmaker in the twilight of his career, remembers his life: his mother, his lovers, the actors he worked with. The sixties in a small village in Valencia, the eighties in Madrid, the present, when he feels an immeasurable emptiness, facing his mortality, the incapability of continuing filming, the impossibility of separating creation from his own life. The need of narrating his past can be his salvation.","moviesInCollection":[],"ratingKey":1691,"key":"/library/metadata/1691","collectionTitle":"","collectionId":-1,"tmdbId":519010},{"name":"Night of the Living Dead","year":1968,"posterUrl":"/library/metadata/1610/thumb/1599308436","imdbId":"","language":"en","overview":"A group of people try to survive an attack of bloodthirsty zombies while trapped in a rural Pennsylvania farmhouse.","moviesInCollection":[],"ratingKey":1610,"key":"/library/metadata/1610","collectionTitle":"","collectionId":-1,"tmdbId":10331},{"name":"RoboCop","year":2014,"posterUrl":"/library/metadata/1922/thumb/1599308573","imdbId":"","language":"en","overview":"In RoboCop, the year is 2028 and multinational conglomerate OmniCorp is at the center of robot technology. Overseas, their drones have been used by the military for years, but have been forbidden for law enforcement in America. Now OmniCorp wants to bring their controversial technology to the home front, and they see a golden opportunity to do it. When Alex Murphy – a loving husband, father and good cop doing his best to stem the tide of crime and corruption in Detroit – is critically injured, OmniCorp sees their chance to build a part-man, part-robot police officer. OmniCorp envisions a RoboCop in every city and even more billions for their shareholders, but they never counted on one thing: there is still a man inside the machine.","moviesInCollection":[],"ratingKey":1922,"key":"/library/metadata/1922","collectionTitle":"","collectionId":-1,"tmdbId":97020},{"name":"Baby Mama","year":2008,"posterUrl":"/library/metadata/255/thumb/1599307921","imdbId":"","language":"en","overview":"A successful, single businesswoman who dreams of having a baby discovers she is infertile and hires a working class woman to be her unlikely surrogate.","moviesInCollection":[],"ratingKey":255,"key":"/library/metadata/255","collectionTitle":"","collectionId":-1,"tmdbId":8780},{"name":"Filth","year":2014,"posterUrl":"/library/metadata/889/thumb/1599308149","imdbId":"","language":"en","overview":"A bigoted junkie cop suffering from bipolar disorder and drug addiction manipulates and hallucinates his way through the festive season in a bid to secure promotion and win back his wife and daughter.","moviesInCollection":[],"ratingKey":889,"key":"/library/metadata/889","collectionTitle":"","collectionId":-1,"tmdbId":85889},{"name":"Joy","year":2015,"posterUrl":"/library/metadata/1262/thumb/1599308293","imdbId":"","language":"en","overview":"A story based on the life of a struggling Long Island single mom who became one of the country's most successful entrepreneurs.","moviesInCollection":[],"ratingKey":1262,"key":"/library/metadata/1262","collectionTitle":"","collectionId":-1,"tmdbId":274479},{"name":"The Transporter Refueled","year":2015,"posterUrl":"/library/metadata/2870/thumb/1599308952","imdbId":"","language":"en","overview":"The fast-paced action movie is again set in the criminal underworld in France, where Frank Martin is known as The Transporter, because he is the best driver and mercenary money can buy. In this installment, he meets Anna and they attempt to take down a group of ruthless Russian human traffickers who also have kidnapped Frank’s father.","moviesInCollection":[],"ratingKey":2870,"key":"/library/metadata/2870","collectionTitle":"","collectionId":-1,"tmdbId":287948},{"name":"Event Horizon","year":1997,"posterUrl":"/library/metadata/841/thumb/1599308131","imdbId":"","language":"en","overview":"In 2047 a group of astronauts are sent to investigate and salvage the starship 'Event Horizon' which disappeared mysteriously 7 years before on its maiden voyage. With its return, the crew of the 'Lewis and Clark' discovers the real truth behind the disappearance of the 'Event Horizon' – and something even more terrifying.","moviesInCollection":[],"ratingKey":841,"key":"/library/metadata/841","collectionTitle":"","collectionId":-1,"tmdbId":8413},{"name":"Badland","year":2019,"posterUrl":"/library/metadata/272/thumb/1599307927","imdbId":"","language":"en","overview":"Detective Matthias Breecher, hired to track down the worst of the Confederate war criminals, roams the Old West seeking justice. His resolve is tested when he meets a determined pioneer woman who is far more than she seems.","moviesInCollection":[],"ratingKey":272,"key":"/library/metadata/272","collectionTitle":"","collectionId":-1,"tmdbId":634524},{"name":"Fifty Shades Freed","year":2018,"posterUrl":"/library/metadata/885/thumb/1599308148","imdbId":"","language":"en","overview":"Believing they have left behind shadowy figures from their past, newlyweds Christian and Ana fully embrace an inextricable connection and shared life of luxury. But just as she steps into her role as Mrs. Grey and he relaxes into an unfamiliar stability, new threats could jeopardize their happy ending before it even begins.","moviesInCollection":[],"ratingKey":885,"key":"/library/metadata/885","collectionTitle":"","collectionId":-1,"tmdbId":337167},{"name":"Return to Never Land","year":2002,"posterUrl":"/library/metadata/1894/thumb/1599308560","imdbId":"","language":"en","overview":"In 1940, the world is besieged by World War II. Wendy, all grown up, has two children; including Jane, who does not believe Wendy's stories about Peter Pan.","moviesInCollection":[],"ratingKey":1894,"key":"/library/metadata/1894","collectionTitle":"","collectionId":-1,"tmdbId":16690},{"name":"Cosmopolis","year":2012,"posterUrl":"/library/metadata/578/thumb/1599308039","imdbId":"","language":"en","overview":"Riding across Manhattan in a stretch limo during a riot in order to get a haircut, a 28-year-old billionaire asset manager's life begins to crumble.","moviesInCollection":[],"ratingKey":578,"key":"/library/metadata/578","collectionTitle":"","collectionId":-1,"tmdbId":49014},{"name":"Mission Impossible - Fallout","year":2018,"posterUrl":"/library/metadata/1520/thumb/1599308398","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1520,"key":"/library/metadata/1520","collectionTitle":"","collectionId":-1,"tmdbId":353081},{"name":"RoboCop","year":1987,"posterUrl":"/library/metadata/1921/thumb/1599308572","imdbId":"","language":"en","overview":"In a violent, near-apocalyptic Detroit, evil corporation Omni Consumer Products wins a contract from the city government to privatize the police force. To test their crime-eradicating cyborgs, the company leads street cop Alex Murphy into an armed confrontation with crime lord Boddicker so they can use his body to support their untested RoboCop prototype. But when RoboCop learns of the company's nefarious plans, he turns on his masters.","moviesInCollection":[],"ratingKey":1921,"key":"/library/metadata/1921","collectionTitle":"","collectionId":-1,"tmdbId":5548},{"name":"The Nightmare Before Christmas","year":1993,"posterUrl":"/library/metadata/2719/thumb/1599308887","imdbId":"","language":"en","overview":"Tired of scaring humans every October 31 with the same old bag of tricks, Jack Skellington, the spindly king of Halloween Town, kidnaps Santa Claus and plans to deliver shrunken heads and other ghoulish gifts to children on Christmas morning. But as Christmas approaches, Jack's rag-doll girlfriend, Sally, tries to foil his misguided plans.","moviesInCollection":[],"ratingKey":2719,"key":"/library/metadata/2719","collectionTitle":"","collectionId":-1,"tmdbId":9479},{"name":"Slither","year":2006,"posterUrl":"/library/metadata/2063/thumb/1599308633","imdbId":"","language":"en","overview":"A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.","moviesInCollection":[],"ratingKey":2063,"key":"/library/metadata/2063","collectionTitle":"","collectionId":-1,"tmdbId":9035},{"name":"Trick or Treat","year":2019,"posterUrl":"/library/metadata/48788/thumb/1601966969","imdbId":"","language":"en","overview":"Greg Kielty's life is turned upside down when his estranged brother Dan turns up, claiming to have drunkenly run someone over. But has Dan just murdered a gangster's son? Or maybe there's an even more sinister explanation.","moviesInCollection":[],"ratingKey":48788,"key":"/library/metadata/48788","collectionTitle":"","collectionId":-1,"tmdbId":641300},{"name":"Ava","year":2020,"posterUrl":"/library/metadata/48142/thumb/1600864572","imdbId":"","language":"en","overview":"A black ops assassin is forced to fight for her own survival after a job goes dangerously wrong.","moviesInCollection":[],"ratingKey":48142,"key":"/library/metadata/48142","collectionTitle":"","collectionId":-1,"tmdbId":539885},{"name":"Blade II","year":2002,"posterUrl":"/library/metadata/372/thumb/1599307963","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":372,"key":"/library/metadata/372","collectionTitle":"","collectionId":-1,"tmdbId":36586},{"name":"Green Book","year":2018,"posterUrl":"/library/metadata/1029/thumb/1599308204","imdbId":"","language":"en","overview":"Tony Lip, a bouncer in 1962, is hired to drive pianist Don Shirley on a tour through the Deep South in the days when African Americans, forced to find alternate accommodations and services due to segregation laws below the Mason-Dixon Line, relied on a guide called The Negro Motorist Green Book.","moviesInCollection":[],"ratingKey":1029,"key":"/library/metadata/1029","collectionTitle":"","collectionId":-1,"tmdbId":490132},{"name":"Dirty Harry","year":1971,"posterUrl":"/library/metadata/712/thumb/1599308086","imdbId":"","language":"en","overview":"When a madman dubbed 'Scorpio' terrorizes San Francisco, hard-nosed cop, Harry Callahan – famous for his take-no-prisoners approach to law enforcement – is tasked with hunting down the psychopath. Harry eventually collars Scorpio in the process of rescuing a kidnap victim, only to see him walk on technicalities. Now, the maverick detective is determined to nail the maniac himself.","moviesInCollection":[],"ratingKey":712,"key":"/library/metadata/712","collectionTitle":"","collectionId":-1,"tmdbId":984},{"name":"The Dawn Wall","year":2018,"posterUrl":"/library/metadata/2395/thumb/1599308757","imdbId":"","language":"en","overview":"In the middle of Yosemite National Park towers El Capitan, a huge block of granite whose smoothest side, the Dawn Wall, is said to be the most difficult rock climb in the world. Tommy Caldwell didn’t see inhospitable terrain, but rather a puzzle almost a kilometer tall. In The Dawn Wall, we follow him and Kevin Jorgeson in their historic ascent to the summit.","moviesInCollection":[],"ratingKey":2395,"key":"/library/metadata/2395","collectionTitle":"","collectionId":-1,"tmdbId":489471},{"name":"Monsters and Men","year":2018,"posterUrl":"/library/metadata/1536/thumb/1599308405","imdbId":"","language":"en","overview":"After capturing an illegal act of police violence on his cellphone, a Brooklyn street hustler sets off a series of events that alter the lives of a local police officer and a star high-school athlete.","moviesInCollection":[],"ratingKey":1536,"key":"/library/metadata/1536","collectionTitle":"","collectionId":-1,"tmdbId":489934},{"name":"Rounders","year":1998,"posterUrl":"/library/metadata/41092/thumb/1599309124","imdbId":"","language":"en","overview":"A young man is a reformed gambler who must return to playing big stakes poker to help a friend pay off loan sharks.","moviesInCollection":[],"ratingKey":41092,"key":"/library/metadata/41092","collectionTitle":"","collectionId":-1,"tmdbId":10220},{"name":"The Chant of Jimmie Blacksmith","year":1980,"posterUrl":"/library/metadata/2355/thumb/1599308743","imdbId":"","language":"en","overview":"The true story of a part aboriginal man who finds the pressure of adapting to white culture intolerable, and as a result snaps in a violent and horrific manner.","moviesInCollection":[],"ratingKey":2355,"key":"/library/metadata/2355","collectionTitle":"","collectionId":-1,"tmdbId":69069},{"name":"Cloudy with a Chance of Meatballs 2","year":2013,"posterUrl":"/library/metadata/530/thumb/1599308022","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":530,"key":"/library/metadata/530","collectionTitle":"","collectionId":-1,"tmdbId":109451},{"name":"Shrek","year":2001,"posterUrl":"/library/metadata/2029/thumb/1599308617","imdbId":"","language":"en","overview":"It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.","moviesInCollection":[],"ratingKey":2029,"key":"/library/metadata/2029","collectionTitle":"","collectionId":-1,"tmdbId":808},{"name":"Never Grow Old","year":2019,"posterUrl":"/library/metadata/1601/thumb/1599308433","imdbId":"","language":"en","overview":"An Irish undertaker profits when outlaws take over a peaceful town, but his own family come under threat as the death toll increases dramatically.","moviesInCollection":[],"ratingKey":1601,"key":"/library/metadata/1601","collectionTitle":"","collectionId":-1,"tmdbId":498743},{"name":"Fifty Shades of Grey","year":2015,"posterUrl":"/library/metadata/886/thumb/1599308148","imdbId":"","language":"en","overview":"When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper, little does she realize the path her life will take. Christian, as enigmatic as he is rich and powerful, finds himself strangely drawn to Ana, and she to him. Though sexually inexperienced, Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.","moviesInCollection":[],"ratingKey":886,"key":"/library/metadata/886","collectionTitle":"","collectionId":-1,"tmdbId":216015},{"name":"Lethal Weapon 4","year":1998,"posterUrl":"/library/metadata/1377/thumb/1599308333","imdbId":"","language":"en","overview":"In the combustible action franchise's final installment, maverick detectives Martin Riggs and Roger Murtaugh square off against Asian mobster Wah Sing Ku, who's up to his neck in slave trading and counterfeit currency. With help from gumshoe Leo Getz and smart-aleck rookie cop Lee Butters, Riggs and Murtaugh aim to take down Ku and his gang.","moviesInCollection":[],"ratingKey":1377,"key":"/library/metadata/1377","collectionTitle":"","collectionId":-1,"tmdbId":944},{"name":"Child's Play 2","year":1990,"posterUrl":"/library/metadata/502/thumb/1599308012","imdbId":"","language":"en","overview":"When Andy's mother is admitted to a psychiatric hospital, the young boy is placed in foster care, and Chucky, determined to claim Andy's soul, is not far behind.","moviesInCollection":[],"ratingKey":502,"key":"/library/metadata/502","collectionTitle":"","collectionId":-1,"tmdbId":11186},{"name":"Big Legend","year":2018,"posterUrl":"/library/metadata/352/thumb/1599307955","imdbId":"","language":"en","overview":"An ex-soldier ventures into the Pacific Northwest to uncover the truth behind his fiance's disappearance.","moviesInCollection":[],"ratingKey":352,"key":"/library/metadata/352","collectionTitle":"","collectionId":-1,"tmdbId":526224},{"name":"Revolver","year":2005,"posterUrl":"/library/metadata/1899/thumb/1599308562","imdbId":"","language":"en","overview":"Hotshot gambler Jake Green (Jason Statham) is long on bravado and seriously short of common sense. Rarely is he allowed in any casino because he's a bona fide winner and, in fact, has taken so much money over the years that he's the sole client of his accountant elder brother, Billy. Invited to a private game, Jake is in fear of losing his life.","moviesInCollection":[],"ratingKey":1899,"key":"/library/metadata/1899","collectionTitle":"","collectionId":-1,"tmdbId":10851},{"name":"Styx","year":2019,"posterUrl":"/library/metadata/2185/thumb/1599308685","imdbId":"","language":"en","overview":"Rike is forty, a successful doctor whose job demands everything of her. She intends to use her much-needed annual holiday to fulfill her long-cherished dream of sailing alone from Gibraltar to Ascension, a small tropical island in the middle of the Atlantic. Her desire for a carefree holiday seems to be coming to pass but then, after a storm, her beautiful adventure suddenly turns into an unprecedented challenge when she spots a badly damaged, hopelessly overloaded refugee boat nearby.","moviesInCollection":[],"ratingKey":2185,"key":"/library/metadata/2185","collectionTitle":"","collectionId":-1,"tmdbId":500853},{"name":"2 Guns","year":2013,"posterUrl":"/library/metadata/20/thumb/1599307833","imdbId":"","language":"en","overview":"A DEA agent and an undercover Naval Intelligence officer who have been tasked with investigating one another find they have been set up by the mob -- the very organization the two men believe they have been stealing money from.","moviesInCollection":[],"ratingKey":20,"key":"/library/metadata/20","collectionTitle":"","collectionId":-1,"tmdbId":136400},{"name":"Sleepless in Seattle","year":1993,"posterUrl":"/library/metadata/2057/thumb/1599308631","imdbId":"","language":"en","overview":"A young boy who tries to set his dad up on a date after the death of his mother. He calls into a radio station to talk about his dad's loneliness which soon leads the dad into meeting a journalist, Annie who flies to Seattle, to write a story about the boy and his dad. Yet Annie ends up with more than just a story in this popular romantic comedy.","moviesInCollection":[],"ratingKey":2057,"key":"/library/metadata/2057","collectionTitle":"","collectionId":-1,"tmdbId":858},{"name":"Angels & Demons","year":2009,"posterUrl":"/library/metadata/199/thumb/1599307900","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":199,"key":"/library/metadata/199","collectionTitle":"","collectionId":-1,"tmdbId":13448},{"name":"The Girl in the Spider's Web","year":2018,"posterUrl":"/library/metadata/2490/thumb/1599308795","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2490,"key":"/library/metadata/2490","collectionTitle":"","collectionId":-1,"tmdbId":446807},{"name":"DragonHeart","year":1996,"posterUrl":"/library/metadata/775/thumb/1599308108","imdbId":"","language":"en","overview":"In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.","moviesInCollection":[],"ratingKey":775,"key":"/library/metadata/775","collectionTitle":"","collectionId":-1,"tmdbId":8840},{"name":"Beauty and the Beast The Enchanted Christmas","year":1997,"posterUrl":"/library/metadata/46669/thumb/1599309169","imdbId":"","language":"en","overview":"Astonished to find the Beast has a deep-seeded hatred for the Christmas season, Belle endeavors to change his mind on the matter.","moviesInCollection":[],"ratingKey":46669,"key":"/library/metadata/46669","collectionTitle":"","collectionId":-1,"tmdbId":13313},{"name":"Batman & Robin","year":1997,"posterUrl":"/library/metadata/283/thumb/1599307931","imdbId":"","language":"en","overview":"Along with crime-fighting partner Robin and new recruit Batgirl, Batman battles the dual threat of frosty genius Mr. Freeze and homicidal horticulturalist Poison Ivy. Freeze plans to put Gotham City on ice, while Ivy tries to drive a wedge between the dynamic duo.","moviesInCollection":[],"ratingKey":283,"key":"/library/metadata/283","collectionTitle":"","collectionId":-1,"tmdbId":415},{"name":"Save the Last Dance","year":2001,"posterUrl":"/library/metadata/1962/thumb/1599308590","imdbId":"","language":"en","overview":"A white midwestern girl moves to Chicago, where her new boyfriend is a black teen from the South Side with a rough, semi-criminal past.","moviesInCollection":[],"ratingKey":1962,"key":"/library/metadata/1962","collectionTitle":"","collectionId":-1,"tmdbId":9816},{"name":"Creepshow 2","year":1987,"posterUrl":"/library/metadata/39676/thumb/1599309090","imdbId":"","language":"en","overview":"EC Comics-inspired weirdness returns with three tales. In the first, a wooden statue of a Native American comes to life...to exact vengeance on the murderer of his elderly owners. In the second, four teens are stranded on a raft on a lake with a blob that is hungry. And in the third, a hit and run woman is terrorized by the hitchhiker she accidentally killed...or did she really kill him?","moviesInCollection":[],"ratingKey":39676,"key":"/library/metadata/39676","collectionTitle":"","collectionId":-1,"tmdbId":16288},{"name":"The Little Rascals","year":1994,"posterUrl":"/library/metadata/2643/thumb/1599308853","imdbId":"","language":"en","overview":"Spanky, Alfalfa, Buckwheat, and the other characters made famous in the Our Gang shorts of the 1920s and 1930s are brought back to life in this nostalgic children's comedy. When Alfalfa starts to question his devotion to the club's principles after falling for the beautiful nine-year old Darla, the rest of the gang sets out to keep them apart.","moviesInCollection":[],"ratingKey":2643,"key":"/library/metadata/2643","collectionTitle":"","collectionId":-1,"tmdbId":10897},{"name":"10 Things I Hate About You","year":1999,"posterUrl":"/library/metadata/4/thumb/1599307828","imdbId":"","language":"en","overview":"On the first day at his new school, Cameron instantly falls for Bianca, the gorgeous girl of his dreams. The only problem is that Bianca is forbidden to date until her ill-tempered, completely un-dateable older sister Kat goes out, too. In an attempt to solve his problem, Cameron singles out the only guy who could possibly be a match for Kat: a mysterious bad boy with a nasty reputation of his own.","moviesInCollection":[],"ratingKey":4,"key":"/library/metadata/4","collectionTitle":"","collectionId":-1,"tmdbId":4951},{"name":"Tombstone","year":1993,"posterUrl":"/library/metadata/2952/thumb/1599308981","imdbId":"","language":"en","overview":"Legendary marshal Wyatt Earp, now a weary gunfighter, joins his brothers Morgan and Virgil to pursue their collective fortune in the thriving mining town of Tombstone. But Earp is forced to don a badge again and get help from his notorious pal Doc Holliday when a gang of renegade brigands and rustlers begins terrorizing the town.","moviesInCollection":[],"ratingKey":2952,"key":"/library/metadata/2952","collectionTitle":"","collectionId":-1,"tmdbId":11969},{"name":"Flashdance","year":1983,"posterUrl":"/library/metadata/916/thumb/1599308159","imdbId":"","language":"en","overview":"The popular 1980s dance movie that depicts the life of an exotic dancer with a side job as a welder whose true desire is to get into ballet school. It’s her dream to be a professional dancer and now is her chance.","moviesInCollection":[],"ratingKey":916,"key":"/library/metadata/916","collectionTitle":"","collectionId":-1,"tmdbId":535},{"name":"Batman Returns","year":1992,"posterUrl":"/library/metadata/299/thumb/1599307936","imdbId":"","language":"en","overview":"Having defeated the Joker, Batman now faces the Penguin—a warped and deformed individual who is intent on being accepted into Gotham society, with the help of Max Schreck, a crooked businessman, whom he coerces into helping him run for the position of Mayor of Gotham, while they both attempt to frame Batman in a different light. Batman must attempt to clear his name, all while also deciding just what must be done with the mysterious Catwoman slinking about.","moviesInCollection":[],"ratingKey":299,"key":"/library/metadata/299","collectionTitle":"","collectionId":-1,"tmdbId":364},{"name":"National Lampoon Presents Endless Bummer","year":2014,"posterUrl":"/library/metadata/1588/thumb/1599308426","imdbId":"","language":"en","overview":"From National Lampoon, the masters of raunchy comedy, comes a summer tale of beers, babes, and bros! In the surf town of Ventura, California, JD's surf board is stolen by a surfer from Los Angeles...a crime that cannot go unpunished. Gathering his friends and the local surf hero, Mike Mooney, they take a road trip to LA to get the surfboard back, then return to Ventura for the wildest summer party ever!","moviesInCollection":[],"ratingKey":1588,"key":"/library/metadata/1588","collectionTitle":"","collectionId":-1,"tmdbId":250622},{"name":"The Mask","year":1994,"posterUrl":"/library/metadata/2674/thumb/1599308867","imdbId":"","language":"en","overview":"When timid bank clerk Stanley Ipkiss discovers a magical mask containing the spirit of the Norse god Loki, his entire life changes. While wearing the mask, Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle. Unfortunately, under the mask's influence, Ipkiss also robs a bank, which angers junior crime lord Dorian Tyrell, whose goons get blamed for the heist.","moviesInCollection":[],"ratingKey":2674,"key":"/library/metadata/2674","collectionTitle":"","collectionId":-1,"tmdbId":854},{"name":"October Sky","year":1999,"posterUrl":"/library/metadata/1636/thumb/1599308449","imdbId":"","language":"en","overview":"Based on the true story of Homer Hickam, a coal miner's son who was inspired by the first Sputnik launch to take up rocketry against his father's wishes, and eventually became a NASA scientist.","moviesInCollection":[],"ratingKey":1636,"key":"/library/metadata/1636","collectionTitle":"","collectionId":-1,"tmdbId":13466},{"name":"The Signal","year":2014,"posterUrl":"/library/metadata/2816/thumb/1599308931","imdbId":"","language":"en","overview":"Three college students on a road trip across the Southwest experience a detour – the tracking of a computer genius who has already hacked into MIT and exposed security faults. When the trio find themselves drawn to an eerily isolated area, suddenly everything goes dark. When one of the students regains consciousness, he finds himself in a waking nightmare.","moviesInCollection":[],"ratingKey":2816,"key":"/library/metadata/2816","collectionTitle":"","collectionId":-1,"tmdbId":242095},{"name":"The Fast and the Furious","year":2001,"posterUrl":"/library/metadata/2454/thumb/1599308781","imdbId":"","language":"en","overview":"Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.","moviesInCollection":[],"ratingKey":2454,"key":"/library/metadata/2454","collectionTitle":"","collectionId":-1,"tmdbId":9799},{"name":"The Belko Experiment","year":2016,"posterUrl":"/library/metadata/2314/thumb/1599308729","imdbId":"","language":"en","overview":"A group of eighty American workers are locked in their office and ordered by an unknown voice to participate in a twisted game.","moviesInCollection":[],"ratingKey":2314,"key":"/library/metadata/2314","collectionTitle":"","collectionId":-1,"tmdbId":341006},{"name":"The Poison Rose","year":2019,"posterUrl":"/library/metadata/2744/thumb/1599308897","imdbId":"","language":"en","overview":"A down-on-his-luck PI is hired by his old flame to investigate a murder. But while the case at first appears routine, it slowly reveals itself to be a complex interwoven web of crimes, suspects and dead bodies.","moviesInCollection":[],"ratingKey":2744,"key":"/library/metadata/2744","collectionTitle":"","collectionId":-1,"tmdbId":529983},{"name":"The Mummy","year":1999,"posterUrl":"/library/metadata/2695/thumb/1599308876","imdbId":"","language":"en","overview":"Dashing legionnaire Rick O'Connell stumbles upon the hidden ruins of Hamunaptra while in the midst of a battle to claim the area in 1920s Egypt. It has been over three thousand years since former High Priest Imhotep suffered a fate worse than death as a punishment for a forbidden love—along with a curse that guarantees eternal doom upon the world if he is ever awoken.","moviesInCollection":[],"ratingKey":2695,"key":"/library/metadata/2695","collectionTitle":"","collectionId":-1,"tmdbId":564},{"name":"Lethal Weapon 2","year":1989,"posterUrl":"/library/metadata/1375/thumb/1599308332","imdbId":"","language":"en","overview":"In the opening chase, Martin Riggs and Roger Murtaugh stumble across a trunk full of Krugerrands. They follow the trail to a South African diplomat who's using his immunity to conceal a smuggling operation. When he plants a bomb under Murtaugh's toilet, the action explodes!","moviesInCollection":[],"ratingKey":1375,"key":"/library/metadata/1375","collectionTitle":"","collectionId":-1,"tmdbId":942},{"name":"Breaking and Entering","year":2006,"posterUrl":"/library/metadata/421/thumb/1599307980","imdbId":"","language":"en","overview":"Set in a blighted, inner-city neighbourhood of London, Breaking and Entering examines an affair which unfolds between a successful British landscape architect and Amira, a Bosnian woman – the mother of a troubled teen son – who was widowed by the war in Bosnia and Herzegovina.","moviesInCollection":[],"ratingKey":421,"key":"/library/metadata/421","collectionTitle":"","collectionId":-1,"tmdbId":1253},{"name":"Red Planet","year":2000,"posterUrl":"/library/metadata/1869/thumb/1599308549","imdbId":"","language":"en","overview":"Astronauts search for solutions to save a dying Earth by searching on Mars, only to have the mission go terribly awry.","moviesInCollection":[],"ratingKey":1869,"key":"/library/metadata/1869","collectionTitle":"","collectionId":-1,"tmdbId":8870},{"name":"Planet Terror","year":2007,"posterUrl":"/library/metadata/1754/thumb/1599308499","imdbId":"","language":"en","overview":"Two doctors find their graveyard shift inundated with townspeople ravaged by sores. Among the wounded is Cherry, a dancer whose leg was ripped from her body. As the invalids quickly become enraged aggressors, Cherry and her ex-boyfriend Wray lead a team of accidental warriors into the night.","moviesInCollection":[],"ratingKey":1754,"key":"/library/metadata/1754","collectionTitle":"","collectionId":-1,"tmdbId":1992},{"name":"How to Train Your Dragon 2","year":2014,"posterUrl":"/library/metadata/1144/thumb/1599308249","imdbId":"","language":"en","overview":"The thrilling second chapter of the epic How To Train Your Dragon trilogy brings back the fantastical world of Hiccup and Toothless five years later. While Astrid, Snotlout and the rest of the gang are challenging each other to dragon races (the island's new favorite contact sport), the now inseparable pair journey through the skies, charting unmapped territories and exploring new worlds. When one of their adventures leads to the discovery of a secret ice cave that is home to hundreds of new wild dragons and the mysterious Dragon Rider, the two friends find themselves at the center of a battle to protect the peace.","moviesInCollection":[],"ratingKey":1144,"key":"/library/metadata/1144","collectionTitle":"","collectionId":-1,"tmdbId":82702},{"name":"The Killer Inside Me","year":2010,"posterUrl":"/library/metadata/2605/thumb/1599308838","imdbId":"","language":"en","overview":"Deputy Sheriff Lou Ford is a pillar of the community in his small west Texas town, patient and apparently thoughtful. Some people think he is a little slow and maybe boring, but that is the worst they say about him. But then nobody knows about what Lou calls his \"sickness\": He is a brilliant, but disturbed sociopathic sadist.","moviesInCollection":[],"ratingKey":2605,"key":"/library/metadata/2605","collectionTitle":"","collectionId":-1,"tmdbId":37414},{"name":"Cedar Rapids","year":2011,"posterUrl":"/library/metadata/489/thumb/1599308007","imdbId":"","language":"en","overview":"A naive Midwesterner insurance salesman travels to a big-city convention in an effort to save the jobs of his co-workers.","moviesInCollection":[],"ratingKey":489,"key":"/library/metadata/489","collectionTitle":"","collectionId":-1,"tmdbId":52067},{"name":"Star Trek VI The Undiscovered Country","year":1991,"posterUrl":"/library/metadata/2143/thumb/1599308669","imdbId":"","language":"en","overview":"On the eve of retirement, Kirk and McCoy are charged with assassinating the Klingon High Chancellor and imprisoned. The Enterprise crew must help them escape to thwart a conspiracy aimed at sabotaging the last best hope for peace.","moviesInCollection":[],"ratingKey":2143,"key":"/library/metadata/2143","collectionTitle":"","collectionId":-1,"tmdbId":174},{"name":"Steve Jobs","year":2015,"posterUrl":"/library/metadata/2166/thumb/1599308678","imdbId":"","language":"en","overview":"Set backstage at three iconic product launches and ending in 1998 with the unveiling of the iMac, Steve Jobs takes us behind the scenes of the digital revolution to paint an intimate portrait of the brilliant man at its epicenter.","moviesInCollection":[],"ratingKey":2166,"key":"/library/metadata/2166","collectionTitle":"","collectionId":-1,"tmdbId":321697},{"name":"Scooby-Doo","year":2002,"posterUrl":"/library/metadata/1981/thumb/1599308596","imdbId":"","language":"en","overview":"The Mystery Inc. gang have gone their separate ways and have been apart for two years, until they each receive an invitation to Spooky Island. Not knowing that the others have also been invited, they show up and discover an amusement park that affects young visitors in very strange ways.","moviesInCollection":[],"ratingKey":1981,"key":"/library/metadata/1981","collectionTitle":"","collectionId":-1,"tmdbId":9637},{"name":"The Boy Next Door","year":2015,"posterUrl":"/library/metadata/2334/thumb/1599308736","imdbId":"","language":"en","overview":"A recently cheated on married woman falls for a younger man who has moved in next door, but their torrid affair soon takes a dangerous turn.","moviesInCollection":[],"ratingKey":2334,"key":"/library/metadata/2334","collectionTitle":"","collectionId":-1,"tmdbId":241251},{"name":"Aliens","year":1986,"posterUrl":"/library/metadata/155/thumb/1599307883","imdbId":"","language":"en","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—all contact is lost with the planet and colonists. They enlist Ripley and the colonial marines to return and search for answers.","moviesInCollection":[],"ratingKey":155,"key":"/library/metadata/155","collectionTitle":"","collectionId":-1,"tmdbId":679},{"name":"Best in Show","year":2000,"posterUrl":"/library/metadata/337/thumb/1599307950","imdbId":"","language":"en","overview":"The tension is palpable, the excitement is mounting and the heady scent of competition is in the air as hundreds of eager contestants from across America prepare to take part in what is undoubtedly one of the greatest events of their lives -- the Mayflower Dog Show. The canine contestants and their owners are as wondrously diverse as the great country that has bred them.","moviesInCollection":[],"ratingKey":337,"key":"/library/metadata/337","collectionTitle":"","collectionId":-1,"tmdbId":13785},{"name":"Cabin Fever","year":2016,"posterUrl":"/library/metadata/455/thumb/1599307994","imdbId":"","language":"en","overview":"In this grisly remake of the 2002 horror hit, five college chums rent an isolated woodland cabin for a party. But their fun quickly ends when the group is exposed to a hideous flesh-eating virus, and survival becomes the name of the game.","moviesInCollection":[],"ratingKey":455,"key":"/library/metadata/455","collectionTitle":"","collectionId":-1,"tmdbId":298584},{"name":"Lethal Weapon 3","year":1992,"posterUrl":"/library/metadata/1376/thumb/1599308333","imdbId":"","language":"en","overview":"Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action, this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.","moviesInCollection":[],"ratingKey":1376,"key":"/library/metadata/1376","collectionTitle":"","collectionId":-1,"tmdbId":943},{"name":"A Million Little Pieces","year":2019,"posterUrl":"/library/metadata/76/thumb/1599307852","imdbId":"","language":"en","overview":"A young drug-addled writer approaching the bottom of his descent submits to two months of agonizing detox at a treatment center in Minnesota.","moviesInCollection":[],"ratingKey":76,"key":"/library/metadata/76","collectionTitle":"","collectionId":-1,"tmdbId":499566},{"name":"The Mummy","year":2017,"posterUrl":"/library/metadata/2696/thumb/1599308877","imdbId":"","language":"en","overview":"Though safely entombed in a crypt deep beneath the unforgiving desert, an ancient queen whose destiny was unjustly taken from her is awakened in our current day, bringing with her malevolence grown over millennia, and terrors that defy human comprehension.","moviesInCollection":[],"ratingKey":2696,"key":"/library/metadata/2696","collectionTitle":"","collectionId":-1,"tmdbId":282035},{"name":"Escape from L.A.","year":1996,"posterUrl":"/library/metadata/831/thumb/1599308127","imdbId":"","language":"en","overview":"This time, a cataclysmic temblor hits Los Angeles, turning it into an island. The president views the quake as a sign from above, expels Los Angeles from the country and makes it a penal colony for those found guilty of moral crimes. When his daughter, part of a resistance movement, steals the control unit for a doomsday weapon, Snake again gets tapped to save the day.","moviesInCollection":[],"ratingKey":831,"key":"/library/metadata/831","collectionTitle":"","collectionId":-1,"tmdbId":10061},{"name":"Sphere","year":1998,"posterUrl":"/library/metadata/2108/thumb/1599308653","imdbId":"","language":"en","overview":"The OSSA discovers a spacecraft thought to be at least 300 years old at the bottom of the ocean. Immediately following the discovery, they decide to send a team down to the depths of the ocean to study the space craft. They are the best of best, smart and logical, and the perfect choice to learn more about the spacecraft.","moviesInCollection":[],"ratingKey":2108,"key":"/library/metadata/2108","collectionTitle":"","collectionId":-1,"tmdbId":10153},{"name":"Cabin Fever","year":2003,"posterUrl":"/library/metadata/454/thumb/1599307993","imdbId":"","language":"en","overview":"A group of five college graduates rent a cabin in the woods and begin to fall victim to a horrifying flesh-eating virus, which attracts the unwanted attention of the homicidal locals.","moviesInCollection":[],"ratingKey":454,"key":"/library/metadata/454","collectionTitle":"","collectionId":-1,"tmdbId":11547},{"name":"The Son of No One","year":2011,"posterUrl":"/library/metadata/2824/thumb/1599308935","imdbId":"","language":"en","overview":"A rookie cop is assigned to the 118 Precinct in the same district where he grew up. The Precinct Captain starts receiving letters about two unsolved murders that happened many years ago in the housing projects when the rookie cop was just a kid. These letters bring back bad memories and old secrets that begin to threaten his career and break up his family.","moviesInCollection":[],"ratingKey":2824,"key":"/library/metadata/2824","collectionTitle":"","collectionId":-1,"tmdbId":74536},{"name":"Zombieland","year":2009,"posterUrl":"/library/metadata/3202/thumb/1599309065","imdbId":"","language":"en","overview":"Columbus has made a habit of running from what scares him. Tallahassee doesn't have fears. If he did, he'd kick their ever-living ass. In a world overrun by zombies, these two are perfectly evolved survivors. But now, they're about to stare down the most terrifying prospect of all: each other.","moviesInCollection":[],"ratingKey":3202,"key":"/library/metadata/3202","collectionTitle":"","collectionId":-1,"tmdbId":19908},{"name":"Snatch","year":2000,"posterUrl":"/library/metadata/2073/thumb/1599308637","imdbId":"","language":"en","overview":"The second film from British director Guy Ritchie. Snatch tells an obscure story similar to his first fast-paced crazy character-colliding filled film “Lock, Stock and Two Smoking Barrels.” There are two overlapping stories here – one is the search for a stolen diamond, and the other about a boxing promoter who’s having trouble with a psychotic gangster.","moviesInCollection":[],"ratingKey":2073,"key":"/library/metadata/2073","collectionTitle":"","collectionId":-1,"tmdbId":107},{"name":"Con Air","year":1997,"posterUrl":"/library/metadata/559/thumb/1599308032","imdbId":"","language":"en","overview":"When the government puts all its rotten criminal eggs in one airborne basket, it's asking for trouble. Before you can say, \"Pass the barf bag,\" the crooks control the plane, led by creepy Cyrus \"The Virus\" Grissom. Watching his every move is the just-released Cameron Poe, who'd rather reunite with his family.","moviesInCollection":[],"ratingKey":559,"key":"/library/metadata/559","collectionTitle":"","collectionId":-1,"tmdbId":1701},{"name":"Rampage President Down","year":2016,"posterUrl":"/library/metadata/1847/thumb/1599308539","imdbId":"","language":"en","overview":"Bill Williamson is back, alive and well and doing a recon mission around D.C. This time he wants to cause a major population disruption within the USA which result in devastating consequences reverberating throughout the world. His new mission this time to bring down The President of the United States and his Secret Service detail. Bill brings with him all the freak-in havoc and acidity of the previous 2 movies.","moviesInCollection":[],"ratingKey":1847,"key":"/library/metadata/1847","collectionTitle":"","collectionId":-1,"tmdbId":395925},{"name":"The Return of Jafar","year":1994,"posterUrl":"/library/metadata/2779/thumb/1599308914","imdbId":"","language":"en","overview":"The evil Jafar escapes from the magic lamp as an all-powerful genie, ready to plot his revenge against Aladdin. From battling elusive villains atop winged horses, to dodging flames inside an exploding lava pit, it's up to Aladdin - with Princess Jasmine and the outrageously funny Genie by his side - to save the kingdom once and for all.","moviesInCollection":[],"ratingKey":2779,"key":"/library/metadata/2779","collectionTitle":"","collectionId":-1,"tmdbId":15969},{"name":"Stargate The Ark of Truth","year":2008,"posterUrl":"/library/metadata/2155/thumb/1599308674","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2155,"key":"/library/metadata/2155","collectionTitle":"","collectionId":-1,"tmdbId":13001},{"name":"Fantastic Four","year":2005,"posterUrl":"/library/metadata/864/thumb/1599308140","imdbId":"","language":"en","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 … thing. Together, these \"Fantastic Four\" must now thwart the evil plans of Dr. Doom and save the world from certain destruction.","moviesInCollection":[],"ratingKey":864,"key":"/library/metadata/864","collectionTitle":"","collectionId":-1,"tmdbId":9738},{"name":"Grease","year":1978,"posterUrl":"/library/metadata/41959/thumb/1599309136","imdbId":"","language":"en","overview":"Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?","moviesInCollection":[],"ratingKey":41959,"key":"/library/metadata/41959","collectionTitle":"","collectionId":-1,"tmdbId":621},{"name":"The Nut Job","year":2014,"posterUrl":"/library/metadata/2722/thumb/1599308888","imdbId":"","language":"en","overview":"Surly, a curmudgeon, independent squirrel is banished from his park and forced to survive in the city. Lucky for him, he stumbles on the one thing that may be able to save his life, and the rest of park community, as they gear up for winter - Maury's Nut Store.","moviesInCollection":[],"ratingKey":2722,"key":"/library/metadata/2722","collectionTitle":"","collectionId":-1,"tmdbId":227783},{"name":"Star Slammer","year":1986,"posterUrl":"/library/metadata/2130/thumb/1599308662","imdbId":"","language":"en","overview":"Two women who have been unjustly confined to a prison planet plot their escape, all the while having to put up with lesbian guards, crazed wardens and mutant rodents.","moviesInCollection":[],"ratingKey":2130,"key":"/library/metadata/2130","collectionTitle":"","collectionId":-1,"tmdbId":68171},{"name":"The Cat in the Hat","year":2003,"posterUrl":"/library/metadata/2353/thumb/1599308742","imdbId":"","language":"en","overview":"Conrad and Sally Walden are home alone with their pet fish. It is raining outside, and there is nothing to do. Until The Cat in the Hat walks in the front door. He introduces them to their imagination, and at first it's all fun and games, until things get out of hand, and The Cat must go, go, go, before their parents get back.","moviesInCollection":[],"ratingKey":2353,"key":"/library/metadata/2353","collectionTitle":"","collectionId":-1,"tmdbId":10588},{"name":"Dark Was the Night","year":2018,"posterUrl":"/library/metadata/639/thumb/1599308059","imdbId":"","language":"en","overview":"In the aftermath of tragedy, a woman and her teenage son must forge into uncharted territory in order to move on with their lives.","moviesInCollection":[],"ratingKey":639,"key":"/library/metadata/639","collectionTitle":"","collectionId":-1,"tmdbId":469321},{"name":"The Man Who Invented Christmas","year":2018,"posterUrl":"/library/metadata/2665/thumb/1599308863","imdbId":"","language":"en","overview":"In 1843, despite the fact that Dickens is a successful writer, the failure of his latest book puts his career at a crossroads, until the moment when, struggling with inspiration and confronting reality with his childhood memories, a new character is born in the depths of his troubled mind; an old, lonely, embittered man, so vivid, so human, that a whole world grows around him, a story so inspiring that changed the meaning of Christmas forever.","moviesInCollection":[],"ratingKey":2665,"key":"/library/metadata/2665","collectionTitle":"","collectionId":-1,"tmdbId":450322},{"name":"Alice in Wonderland","year":2010,"posterUrl":"/library/metadata/146/thumb/1599307879","imdbId":"","language":"en","overview":"Alice, an unpretentious and individual 19-year-old, is betrothed to a dunce of an English nobleman. At her engagement party, she escapes the crowd to consider whether to go through with the marriage and falls down a hole in the garden after spotting an unusual rabbit. Arriving in a strange and surreal place called 'Underland,' she finds herself in a world that resembles the nightmares she had as a child, filled with talking animals, villainous queens and knights, and frumious bandersnatches. Alice realizes that she is there for a reason – to conquer the horrific Jabberwocky and restore the rightful queen to her throne.","moviesInCollection":[],"ratingKey":146,"key":"/library/metadata/146","collectionTitle":"","collectionId":-1,"tmdbId":12155},{"name":"Swimming Pool","year":2003,"posterUrl":"/library/metadata/2225/thumb/1599308698","imdbId":"","language":"en","overview":"In the middle of this amusing thriller is a relationship between two different types of females, one is a well know British author and the other is a sex-crazed French teen. The two get into some relationship trouble while living together in this film of psychological imagery and an erotic exploration of the female body.","moviesInCollection":[],"ratingKey":2225,"key":"/library/metadata/2225","collectionTitle":"","collectionId":-1,"tmdbId":302},{"name":"Like Father, Like Son","year":2014,"posterUrl":"/library/metadata/1389/thumb/1599308338","imdbId":"","language":"en","overview":"Ryota Nonomiya is a successful businessman driven by money. He learns that his biological son was switched with another child after birth. He must make a life-changing decision and choose his true son or the boy he raised as his own.","moviesInCollection":[],"ratingKey":1389,"key":"/library/metadata/1389","collectionTitle":"","collectionId":-1,"tmdbId":177945},{"name":"Transporter 2","year":2005,"posterUrl":"/library/metadata/2989/thumb/1599308994","imdbId":"","language":"en","overview":"Professional driver Frank Martin is living in Miami, where he is temporarily filling in for a friend as the chauffeur for a government narcotics control policymaker and his family. The young boy in the family is targeted for kidnapping, and Frank immediately becomes involved in protecting the child and exposing the kidnappers.","moviesInCollection":[],"ratingKey":2989,"key":"/library/metadata/2989","collectionTitle":"","collectionId":-1,"tmdbId":9335},{"name":"Tremors A Cold Day in Hell","year":2018,"posterUrl":"/library/metadata/2998/thumb/1599308996","imdbId":"","language":"en","overview":"Burt Gummer (Michael Gross) and his son Travis Welker (Jamie Kennedy) find themselves up to their ears in Graboids and Ass-Blasters when they head to Canada to investigate a series of deadly giant-worm attacks. Arriving at a remote research facility in the artic tundra, Burt begins to suspect that Graboids are secretly being weaponized, but before he can prove his theory, he is sidelined by Graboid venom. With just 48 hours to live, the only hope is to create an antidote from fresh venom — but to do that, someone will have to figure out how to milk a Graboid!","moviesInCollection":[],"ratingKey":2998,"key":"/library/metadata/2998","collectionTitle":"","collectionId":-1,"tmdbId":496704},{"name":"Underwater","year":2020,"posterUrl":"/library/metadata/27781/thumb/1599309070","imdbId":"","language":"en","overview":"After an earthquake destroys their underwater station, six researchers must navigate two miles along the dangerous, unknown depths of the ocean floor to make it to safety in a race against time.","moviesInCollection":[],"ratingKey":27781,"key":"/library/metadata/27781","collectionTitle":"","collectionId":-1,"tmdbId":443791},{"name":"Casino Jack","year":2010,"posterUrl":"/library/metadata/481/thumb/1599308004","imdbId":"","language":"en","overview":"Based on a true story, a hot shot Washington DC lobbyist and his protégé go down hard as their schemes to peddle influence lead to corruption and murder.","moviesInCollection":[],"ratingKey":481,"key":"/library/metadata/481","collectionTitle":"","collectionId":-1,"tmdbId":45324},{"name":"Whiplash","year":2014,"posterUrl":"/library/metadata/3133/thumb/1599309042","imdbId":"","language":"en","overview":"Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.","moviesInCollection":[],"ratingKey":3133,"key":"/library/metadata/3133","collectionTitle":"","collectionId":-1,"tmdbId":244786},{"name":"Deep Blue Sea 2","year":2018,"posterUrl":"/library/metadata/47281/thumb/1599309178","imdbId":"","language":"en","overview":"When shark conservationist Dr. Misty Calhoun is invited to consult on a top-secret project run by pharmaceutical billionaire Carl Durant, she is shocked to learn that the company is using unpredictable and highly aggressive bull sharks as its test subjects, which soon break loose and cause havoc.","moviesInCollection":[],"ratingKey":47281,"key":"/library/metadata/47281","collectionTitle":"","collectionId":-1,"tmdbId":492336},{"name":"Mortal Kombat Annihilation","year":1997,"posterUrl":"/library/metadata/1548/thumb/1599308411","imdbId":"","language":"en","overview":"A group of heroic warriors has only six days to save the planet in \"Mortal Kombat Annihilation.\" To succeed they must survive the most spectacular series of challenges any human, or god, has ever encountered as they battle an evil warlord bent on taking control of Earth. Sequel to the film \"Mortal Kombat,\" and based on the popular video game.","moviesInCollection":[],"ratingKey":1548,"key":"/library/metadata/1548","collectionTitle":"","collectionId":-1,"tmdbId":9823},{"name":"Battlestar Galactica Razor","year":2007,"posterUrl":"/library/metadata/317/thumb/1599307942","imdbId":"","language":"en","overview":"A two-hour Battlestar Galactica special that tells the story of the Battlestar Pegasus several months prior to it finding the Galactica.","moviesInCollection":[],"ratingKey":317,"key":"/library/metadata/317","collectionTitle":"","collectionId":-1,"tmdbId":69315},{"name":"Side by Side","year":2012,"posterUrl":"/library/metadata/2037/thumb/1599308621","imdbId":"","language":"en","overview":"Since the invention of cinema, the standard format for recording moving images has been film. Over the past two decades, a new form of digital filmmaking has emerged, creating a groundbreaking evolution in the medium. Keanu Reeves explores the development of cinema and the impact of digital filmmaking via in-depth interviews with Hollywood masters, such as James Cameron, David Fincher, David Lynch, Christopher Nolan, Martin Scorsese, George Lucas, Steven Soderbergh, and many more.","moviesInCollection":[],"ratingKey":2037,"key":"/library/metadata/2037","collectionTitle":"","collectionId":-1,"tmdbId":110354},{"name":"Fantastic Four","year":2015,"posterUrl":"/library/metadata/865/thumb/1599308140","imdbId":"","language":"en","overview":"Four young outsiders teleport to a dangerous universe, which alters their physical form in shocking ways. Their lives irrevocably upended, the team must learn to harness their daunting new abilities and work together to save Earth from a former friend turned enemy.","moviesInCollection":[],"ratingKey":865,"key":"/library/metadata/865","collectionTitle":"","collectionId":-1,"tmdbId":166424},{"name":"The Real McCoy","year":1993,"posterUrl":"/library/metadata/2773/thumb/1599308911","imdbId":"","language":"en","overview":"Karen McCoy is released from prison with nothing but the clothes on her back. Before being incarcerated Karen was the bank robber of her time, but now she wishes for nothing more than to settle down and start a new life. Unfortunately between a dirty parole officer, old business partners, and an idiot ex-husband she will have to do the unthinkable in order to save her son.","moviesInCollection":[],"ratingKey":2773,"key":"/library/metadata/2773","collectionTitle":"","collectionId":-1,"tmdbId":2047},{"name":"The Pentagon Wars","year":1998,"posterUrl":"/library/metadata/41107/thumb/1599309127","imdbId":"","language":"en","overview":"From the director of “Made In America” and “The Money Pit” comes a hilarious look at one of the most expensive blunders in military history. Over 17 years and almost as many billion dollars have gone into devising the BFV (Bradley Fighting Vehicle). There's only one problem. . . it doesn't work.","moviesInCollection":[],"ratingKey":41107,"key":"/library/metadata/41107","collectionTitle":"","collectionId":-1,"tmdbId":14439},{"name":"Damsels in Distress","year":2012,"posterUrl":"/library/metadata/628/thumb/1599308055","imdbId":"","language":"en","overview":"A trio of beautiful girls set out to revolutionize life at a grungy American university: the dynamic leader Violet Wister, principled Rose and sexy Heather. They welcome transfer student Lily into their group which seeks to help severely depressed students with a program of good hygiene and musical dance numbers.","moviesInCollection":[],"ratingKey":628,"key":"/library/metadata/628","collectionTitle":"","collectionId":-1,"tmdbId":82533},{"name":"Jaws","year":1975,"posterUrl":"/library/metadata/1226/thumb/1599308280","imdbId":"","language":"en","overview":"When an insatiable great white shark terrorizes the townspeople of Amity Island, the police chief, an oceanographer and a grizzled shark hunter seek to destroy the blood-thirsty beast.","moviesInCollection":[],"ratingKey":1226,"key":"/library/metadata/1226","collectionTitle":"","collectionId":-1,"tmdbId":578},{"name":"Licence to Kill","year":1989,"posterUrl":"/library/metadata/1383/thumb/1599308335","imdbId":"","language":"en","overview":"When drug lord Franz Sanchez exacts his brutal vengeance on Bond's friend Felix Leiter, 007 resigns from the British Secret Service and begins a fierce vendetta against the master criminal. Bond won't be satisfied until Sanchez is defeated, and to accomplish this aim he allies himself with a beautiful pilot and Sanchez's sexy girlfriend.","moviesInCollection":[],"ratingKey":1383,"key":"/library/metadata/1383","collectionTitle":"","collectionId":-1,"tmdbId":709},{"name":"Solomon Kane","year":2009,"posterUrl":"/library/metadata/2089/thumb/1599308644","imdbId":"","language":"en","overview":"A nomadic 16th century warrior, condemned to hell for his brutal past, seeks redemption by renouncing violence, but finds some things are worth burning for as he fights to free a young Puritan woman from the grip of evil.","moviesInCollection":[],"ratingKey":2089,"key":"/library/metadata/2089","collectionTitle":"","collectionId":-1,"tmdbId":32985},{"name":"The Silencing","year":2020,"posterUrl":"/library/metadata/48406/thumb/1601544665","imdbId":"","language":"en","overview":"A reformed hunter becomes involved in a deadly game of cat and mouse when he and the local sheriff set out to track a vicious killer who may have kidnapped his daughter years ago.","moviesInCollection":[],"ratingKey":48406,"key":"/library/metadata/48406","collectionTitle":"","collectionId":-1,"tmdbId":603119},{"name":"Days of Power","year":2018,"posterUrl":"/library/metadata/649/thumb/1599308063","imdbId":"","language":"en","overview":"On their 2010 tour, an International Pop Star and band mates mysteriously disappear. As past and present merge, they find themselves searching for answers and fighting for more than just their own lives when a concealed industry is revealed.","moviesInCollection":[],"ratingKey":649,"key":"/library/metadata/649","collectionTitle":"","collectionId":-1,"tmdbId":434129},{"name":"Once Upon a Time… in Hollywood","year":2019,"posterUrl":"/library/metadata/1650/thumb/1599308456","imdbId":"","language":"en","overview":"Los Angeles, 1969. TV star Rick Dalton, a struggling actor specializing in westerns, and stuntman Cliff Booth, his best friend, try to survive in a constantly changing movie industry. Dalton is the neighbor of the young and promising actress and model Sharon Tate, who has just married the prestigious Polish director Roman Polanski…","moviesInCollection":[],"ratingKey":1650,"key":"/library/metadata/1650","collectionTitle":"","collectionId":-1,"tmdbId":466272},{"name":"Transporter 3","year":2008,"posterUrl":"/library/metadata/2990/thumb/1599308994","imdbId":"","language":"en","overview":"Frank Martin puts the driving gloves on to deliver Valentina, the kidnapped daughter of a Ukranian government official, from Marseilles to Odessa on the Black Sea. En route, he has to contend with thugs who want to intercept Valentina's safe delivery and not let his personal feelings get in the way of his dangerous objective.","moviesInCollection":[],"ratingKey":2990,"key":"/library/metadata/2990","collectionTitle":"","collectionId":-1,"tmdbId":13387},{"name":"A Violent Separation","year":2019,"posterUrl":"/library/metadata/99/thumb/1599307862","imdbId":"","language":"en","overview":"1983. In a quiet Midwestern town, a young deputy covers up a murder at the hands of his brother triggering a series of events that sends them and the victim's family towards a shattering climax.","moviesInCollection":[],"ratingKey":99,"key":"/library/metadata/99","collectionTitle":"","collectionId":-1,"tmdbId":506815},{"name":"District 9","year":2009,"posterUrl":"/library/metadata/715/thumb/1599308087","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":715,"key":"/library/metadata/715","collectionTitle":"","collectionId":-1,"tmdbId":17654},{"name":"The Boondock Saints II All Saints Day","year":2009,"posterUrl":"/library/metadata/2326/thumb/1599308733","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2326,"key":"/library/metadata/2326","collectionTitle":"","collectionId":-1,"tmdbId":22821},{"name":"Call Me by Your Name","year":2017,"posterUrl":"/library/metadata/460/thumb/1599307995","imdbId":"","language":"en","overview":"In 1980s Italy, a relationship begins between seventeen-year-old teenage Elio and the older adult man hired as his father's research assistant.","moviesInCollection":[],"ratingKey":460,"key":"/library/metadata/460","collectionTitle":"","collectionId":-1,"tmdbId":398818},{"name":"Deep Blue Sea 3","year":2020,"posterUrl":"/library/metadata/46696/thumb/1599309169","imdbId":"","language":"en","overview":"Dr. Emma Collins and her team are spending their third summer on the island of Little Happy studying the effect of climate change on the great white sharks who come to the nearby nursery every year to give birth. Along with the last two inhabitants of this former fishing village, their peaceful life is disrupted when a \"scientific\" team led by her ex-boyfriend and marine biologist Richard show up looking for three bull sharks who we soon learn aren't just any bull sharks.","moviesInCollection":[],"ratingKey":46696,"key":"/library/metadata/46696","collectionTitle":"","collectionId":-1,"tmdbId":703745},{"name":"Draft Day","year":2014,"posterUrl":"/library/metadata/749/thumb/1599308100","imdbId":"","language":"en","overview":"At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he's willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.","moviesInCollection":[],"ratingKey":749,"key":"/library/metadata/749","collectionTitle":"","collectionId":-1,"tmdbId":200505},{"name":"Gone in 60 Seconds","year":1974,"posterUrl":"/library/metadata/1012/thumb/1599308198","imdbId":"","language":"en","overview":"Insurance investigator Maindrian Pace and his team lead double-lives as unstoppable car thieves. When a South American drug lord pays Pace to steal 48 cars for him, all but one, a 1973 Ford Mustang, are in the bag. As Pace prepares to rip-off the fastback, codenamed \"Eleanor\", in Long Beach, he is unaware that his boss has tipped off the police after a business dispute.","moviesInCollection":[],"ratingKey":1012,"key":"/library/metadata/1012","collectionTitle":"","collectionId":-1,"tmdbId":16246},{"name":"Lara Croft Tomb Raider - The Cradle of Life","year":2003,"posterUrl":"/library/metadata/1341/thumb/1599308322","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":1341,"key":"/library/metadata/1341","collectionTitle":"","collectionId":-1,"tmdbId":1996},{"name":"All Star Superman","year":2011,"posterUrl":"/library/metadata/162/thumb/1599307885","imdbId":"","language":"en","overview":"Lex Luthor enacts his plan to rid the world of Superman, once and for all. Succeeding with solar radiation poisoning, the Man of Steel is slowly dying. With what little times remains, the Last Son of Krypton must confront the revealing of his secret identity to Lois Lane and face Luthor in a final battle.","moviesInCollection":[],"ratingKey":162,"key":"/library/metadata/162","collectionTitle":"","collectionId":-1,"tmdbId":56590},{"name":"The Man Without a Face","year":1993,"posterUrl":"/library/metadata/2672/thumb/1599308866","imdbId":"","language":"en","overview":"Justin McLeod is a former teacher who lives as a recluse on the edge of town after his face is disfigured from an automobile accident ten years earlier, in which a boy was incinerated—and for which he was convicted of involuntary manslaughter. Also suspected of being a paedophile, he is befriended by Chuck, causing the town's suspicions and hostility to be ignited.","moviesInCollection":[],"ratingKey":2672,"key":"/library/metadata/2672","collectionTitle":"","collectionId":-1,"tmdbId":10502},{"name":"Alice in Wonderland","year":1951,"posterUrl":"/library/metadata/145/thumb/1599307879","imdbId":"","language":"en","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!","moviesInCollection":[],"ratingKey":145,"key":"/library/metadata/145","collectionTitle":"","collectionId":-1,"tmdbId":12092},{"name":"Welcome to the Punch","year":2013,"posterUrl":"/library/metadata/3124/thumb/1599309039","imdbId":"","language":"en","overview":"When notorious criminal Jacob Sternwood is forced to return to London, it gives detective Max Lewinsky one last chance to take down the man he's always been after.","moviesInCollection":[],"ratingKey":3124,"key":"/library/metadata/3124","collectionTitle":"","collectionId":-1,"tmdbId":93828},{"name":"Armageddon","year":1998,"posterUrl":"/library/metadata/219/thumb/1599307908","imdbId":"","language":"en","overview":"When an asteroid threatens to collide with Earth, NASA honcho Dan Truman determines the only way to stop it is to drill into its surface and detonate a nuclear bomb. This leads him to renowned driller Harry Stamper, who agrees to helm the dangerous space mission provided he can bring along his own hotshot crew. Among them is the cocksure A.J. who Harry thinks isn't good enough for his daughter, until the mission proves otherwise.","moviesInCollection":[],"ratingKey":219,"key":"/library/metadata/219","collectionTitle":"","collectionId":-1,"tmdbId":95},{"name":"The Last Days on Mars","year":2013,"posterUrl":"/library/metadata/2616/thumb/1599308842","imdbId":"","language":"en","overview":"On the last day of the first manned mission to Mars, a crew member of Tantalus Base believes he has made an astounding discovery – fossilized evidence of bacterial life. Unwilling to let the relief crew claims all the glory, he disobeys orders to pack up and goes out on an unauthorized expedition to collect further samples. But a routine excavation turns to disaster when the porous ground collapses and he falls into a deep crevice and near certain death. His devastated colleagues attempt to recover his body. However, when another vanishes, they start to suspect that the life-form they have discovered is not without danger.","moviesInCollection":[],"ratingKey":2616,"key":"/library/metadata/2616","collectionTitle":"","collectionId":-1,"tmdbId":190847},{"name":"Barbershop 2 Back in Business","year":2004,"posterUrl":"/library/metadata/277/thumb/1599307929","imdbId":"","language":"en","overview":"The continuing adventures of the barbers at Calvin's Barbershop. Gina, a stylist at the beauty shop next door, is now trying to cut in on his business. Calvin is again struggling to keep his father's shop and traditions alive--this time against urban developers looking to replace mom & pop establishments with name-brand chains. The world changes, but some things never go out of style--from current events and politics to relationships and love, you can still say anything you want at the barbershop.","moviesInCollection":[],"ratingKey":277,"key":"/library/metadata/277","collectionTitle":"","collectionId":-1,"tmdbId":21301},{"name":"Cats & Dogs 3 Paws Unite","year":2020,"posterUrl":"/library/metadata/48444/thumb/1601900204","imdbId":"","language":"en","overview":"It's been ten years since the creation of the Great Truce, an elaborate joint-species surveillance system designed and monitored by cats and dogs to keep the peace when conflicts arise. But when a tech-savvy villain hacks into wireless networks to use frequencies only heard by cats and dogs, he manipulates them into conflict and the worldwide battle between cats and dogs is BACK ON. Now, a team of inexperienced and untested agents will have to use their old-school animal instincts to restore order and peace between cats and dogs everywhere.","moviesInCollection":[],"ratingKey":48444,"key":"/library/metadata/48444","collectionTitle":"","collectionId":-1,"tmdbId":726739},{"name":"Percy Jackson & the Olympians The Lightning Thief","year":2010,"posterUrl":"/library/metadata/1721/thumb/1599308487","imdbId":"","language":"en","overview":"Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.","moviesInCollection":[],"ratingKey":1721,"key":"/library/metadata/1721","collectionTitle":"","collectionId":-1,"tmdbId":32657},{"name":"Skyscraper","year":2018,"posterUrl":"/library/metadata/2053/thumb/1599308629","imdbId":"","language":"en","overview":"Framed and on the run, a former FBI agent must save his family from a blazing fire in the world's tallest building.","moviesInCollection":[],"ratingKey":2053,"key":"/library/metadata/2053","collectionTitle":"","collectionId":-1,"tmdbId":447200},{"name":"Shrek the Third","year":2007,"posterUrl":"/library/metadata/2032/thumb/1599308619","imdbId":"","language":"en","overview":"The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However, Shrek wants to return to his cozy swamp and live in peace and quiet, so when he finds out there is another heir to the throne, they set off to bring him back to rule the kingdom.","moviesInCollection":[],"ratingKey":2032,"key":"/library/metadata/2032","collectionTitle":"","collectionId":-1,"tmdbId":810},{"name":"5 Days of War","year":2011,"posterUrl":"/library/metadata/40/thumb/1599307840","imdbId":"","language":"en","overview":"An American journalist and his cameraman are caught in the combat zone during the first Russian airstrikes against Georgia. Rescuing Tatia, a young Georgian schoolteacher separated from her family during the attack, the two reporters agree to help reunite her with her family in exchange for serving as their interpreter. As the three attempt to escape to safety, they witness--and document--the devastation from the full-scale crossfire and cold-blooded murder of innocent civilians.","moviesInCollection":[],"ratingKey":40,"key":"/library/metadata/40","collectionTitle":"","collectionId":-1,"tmdbId":50601},{"name":"The Naked Gun From the Files of Police Squad!","year":1988,"posterUrl":"/library/metadata/2706/thumb/1599308882","imdbId":"","language":"en","overview":"When the incompetent Officer Frank Drebin seeks the ruthless killer of his partner, he stumbles upon an attempt to assassinate Queen Elizabeth.","moviesInCollection":[],"ratingKey":2706,"key":"/library/metadata/2706","collectionTitle":"","collectionId":-1,"tmdbId":37136},{"name":"The Santa Clause 2","year":2002,"posterUrl":"/library/metadata/2795/thumb/1599308922","imdbId":"","language":"en","overview":"Better watch out! The big guy in red is coming to town once again. This time, Scott Calvin -- also known as Santa Claus -- finds out there's an obscure clause in his contract requiring him to take on a wife. He has to leave the North Pole to fulfill his obligations, or else he'll be forced to give up his Yuletide gig.","moviesInCollection":[],"ratingKey":2795,"key":"/library/metadata/2795","collectionTitle":"","collectionId":-1,"tmdbId":9021},{"name":"David Attenborough A Life on Our Planet","year":2020,"posterUrl":"/library/metadata/48489/thumb/1601904467","imdbId":"","language":"en","overview":"He knows our natural world like no other, and there’s never been a more urgent time to hear his story and vision for our future.","moviesInCollection":[],"ratingKey":48489,"key":"/library/metadata/48489","collectionTitle":"","collectionId":-1,"tmdbId":664280},{"name":"Dead Heat","year":1988,"posterUrl":"/library/metadata/653/thumb/1599308064","imdbId":"","language":"en","overview":"LAPD police officer, Roger Mortis is killed while arresting zombies who have been reanimated by the head of Dante Laboratories in order to carry out violent armed robberies.","moviesInCollection":[],"ratingKey":653,"key":"/library/metadata/653","collectionTitle":"","collectionId":-1,"tmdbId":40095},{"name":"The Chosen One","year":2010,"posterUrl":"/library/metadata/2357/thumb/1599308743","imdbId":"","language":"en","overview":"Paul is an ordinary man who is at the end of his rope. He hates his job, his beautiful wife has left him, and his mother and gay, Buddhist-monk brother constantly remind him of his shortcomings. Although Paul doesn't know it yet, his life is about to change in a big way.","moviesInCollection":[],"ratingKey":2357,"key":"/library/metadata/2357","collectionTitle":"","collectionId":-1,"tmdbId":44219},{"name":"Child's Play 3","year":1991,"posterUrl":"/library/metadata/27837/thumb/1599309073","imdbId":"","language":"en","overview":"Eight years have passed since the events of the second film. Chucky has been resurrected once again and seeks revenge on Andy, his former owner, who is now a teenager enrolled in military school.","moviesInCollection":[],"ratingKey":27837,"key":"/library/metadata/27837","collectionTitle":"","collectionId":-1,"tmdbId":11187},{"name":"Disturbia","year":2007,"posterUrl":"/library/metadata/716/thumb/1599308087","imdbId":"","language":"en","overview":"Kale is a 17-year-old placed under house arrest after punching his teacher. He is confined to his house, and decides to use his free time spying on his neighbors. Things start to get weird when guests enter the Turner's house and don't come back out. Kale and his friends, Ronnie and Ashley, start to grow more and more interested in what is actually happening within the house of Robert Turner.","moviesInCollection":[],"ratingKey":716,"key":"/library/metadata/716","collectionTitle":"","collectionId":-1,"tmdbId":8271},{"name":"Basic","year":2003,"posterUrl":"/library/metadata/280/thumb/1599307930","imdbId":"","language":"en","overview":"A DEA agent investigates the disappearance of a legendary Army ranger drill sergeant and several of his cadets during a training exercise gone severely awry.","moviesInCollection":[],"ratingKey":280,"key":"/library/metadata/280","collectionTitle":"","collectionId":-1,"tmdbId":10782},{"name":"Cliffhanger","year":1993,"posterUrl":"/library/metadata/525/thumb/1599308020","imdbId":"","language":"en","overview":"A year after losing his friend in a tragic 4,000-foot fall, former ranger Gabe Walker and his partner, Hal, are called to return to the same peak to rescue a group of stranded climbers, only to learn the climbers are actually thieving hijackers who are looking for boxes full of money.","moviesInCollection":[],"ratingKey":525,"key":"/library/metadata/525","collectionTitle":"","collectionId":-1,"tmdbId":9350},{"name":"Cop Car","year":2015,"posterUrl":"/library/metadata/573/thumb/1599308037","imdbId":"","language":"en","overview":"Two kids find themselves in the centre of a deadly game of cat and mouse after taking a sheriff's cruiser for a joy ride.","moviesInCollection":[],"ratingKey":573,"key":"/library/metadata/573","collectionTitle":"","collectionId":-1,"tmdbId":310133},{"name":"My Neighbor Totoro","year":2018,"posterUrl":"/library/metadata/46623/thumb/1599309168","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":46623,"key":"/library/metadata/46623","collectionTitle":"","collectionId":-1,"tmdbId":8392},{"name":"Leroy & Stitch","year":2006,"posterUrl":"/library/metadata/1370/thumb/1599308330","imdbId":"","language":"en","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.\"","moviesInCollection":[],"ratingKey":1370,"key":"/library/metadata/1370","collectionTitle":"","collectionId":-1,"tmdbId":21316},{"name":"Thor Ragnarok","year":2017,"posterUrl":"/library/metadata/2927/thumb/1599308972","imdbId":"","language":"en","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 an all-powerful new threat, the ruthless Hela.","moviesInCollection":[],"ratingKey":2927,"key":"/library/metadata/2927","collectionTitle":"","collectionId":-1,"tmdbId":284053},{"name":"The Breakfast Club","year":1985,"posterUrl":"/library/metadata/2341/thumb/1599308738","imdbId":"","language":"en","overview":"Five disparate high school students meet in Saturday detention, and discover they have a lot more in common than they thought.","moviesInCollection":[],"ratingKey":2341,"key":"/library/metadata/2341","collectionTitle":"","collectionId":-1,"tmdbId":2108},{"name":"The Fate of the Furious","year":2017,"posterUrl":"/library/metadata/2456/thumb/1599308782","imdbId":"","language":"en","overview":"When a mysterious woman seduces Dom into the world of crime and a betrayal of those closest to him, the crew face trials that will test them as never before.","moviesInCollection":[],"ratingKey":2456,"key":"/library/metadata/2456","collectionTitle":"","collectionId":-1,"tmdbId":337339},{"name":"Long Shot","year":2019,"posterUrl":"/library/metadata/1412/thumb/1599308347","imdbId":"","language":"en","overview":"Fred Flarsky is a gifted and free-spirited journalist who has a knack for getting into trouble. Charlotte Field is one of the most influential women in the world -- a smart, sophisticated and accomplished politician. When Fred unexpectedly runs into Charlotte, he soon realizes that she was his former baby sitter and childhood crush. When Charlotte decides to make a run for the presidency, she impulsively hires Fred as her speechwriter -- much to the dismay of her trusted advisers.","moviesInCollection":[],"ratingKey":1412,"key":"/library/metadata/1412","collectionTitle":"","collectionId":-1,"tmdbId":459992},{"name":"Safe House","year":2012,"posterUrl":"/library/metadata/1953/thumb/1599308586","imdbId":"","language":"en","overview":"A dangerous CIA renegade resurfaces after a decade on the run. When the safe house he's remanded to is attacked by mercenaries, a rookie operative escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.","moviesInCollection":[],"ratingKey":1953,"key":"/library/metadata/1953","collectionTitle":"","collectionId":-1,"tmdbId":59961},{"name":"Rabbit-Proof Fence","year":2002,"posterUrl":"/library/metadata/1834/thumb/1599308532","imdbId":"","language":"en","overview":"In 1931, three Aboriginal girls escape after being plucked from their homes to be trained as domestic staff, and set off on a trek across the Outback.","moviesInCollection":[],"ratingKey":1834,"key":"/library/metadata/1834","collectionTitle":"","collectionId":-1,"tmdbId":9555},{"name":"Zoolander 2","year":2016,"posterUrl":"/library/metadata/3206/thumb/1599309067","imdbId":"","language":"en","overview":"Derek and Hansel are modelling again when an opposing company attempts to take them out from the business.","moviesInCollection":[],"ratingKey":3206,"key":"/library/metadata/3206","collectionTitle":"","collectionId":-1,"tmdbId":329833},{"name":"Hardbodies","year":1984,"posterUrl":"/library/metadata/1065/thumb/1599308218","imdbId":"","language":"en","overview":"Three middle-aged daddies visit California to have a marvelous time at the beach. When they learn that a nice apartment and an expensive cabriolet isn't enough for them to score with the chicks, they employ a student to help them. At first he's as disgusted of them and his job as his girlfriend, but soon they find out how to use the situation to everyone's benefit.","moviesInCollection":[],"ratingKey":1065,"key":"/library/metadata/1065","collectionTitle":"","collectionId":-1,"tmdbId":52736},{"name":"Trick or Treat","year":1986,"posterUrl":"/library/metadata/48811/thumb/1601966724","imdbId":"","language":"en","overview":"Eddie Weinbauer, an '80s metalhead teen who is bullied at school, looks to his heavy metal superstar idol, Sammi Curr, for guidance. When Curr is killed in a hotel fire, Eddie becomes the recipient of the only copy of Curr's unreleased album, which, when played backwards, brings Sammi back to life. As Halloween approaches, Eddie begins to realize that this isn't only rock 'n roll...it's life and death.","moviesInCollection":[],"ratingKey":48811,"key":"/library/metadata/48811","collectionTitle":"","collectionId":-1,"tmdbId":25438},{"name":"Conan the Barbarian","year":2011,"posterUrl":"/library/metadata/561/thumb/1599308032","imdbId":"","language":"en","overview":"A quest that begins as a personal vendetta for the fierce Cimmerian warrior soon turns into an epic battle against hulking rivals, horrific monsters, and impossible odds, as Conan (Jason Momoa) realizes he is the only hope of saving the great nations of Hyboria from an encroaching reign of supernatural evil.","moviesInCollection":[],"ratingKey":561,"key":"/library/metadata/561","collectionTitle":"","collectionId":-1,"tmdbId":37430},{"name":"Backdraft","year":1991,"posterUrl":"/library/metadata/260/thumb/1599307923","imdbId":"","language":"en","overview":"Firemen brothers Brian and Stephen McCaffrey battle each other over past slights while trying to stop an arsonist with a diabolical agenda from torching Chicago.","moviesInCollection":[],"ratingKey":260,"key":"/library/metadata/260","collectionTitle":"","collectionId":-1,"tmdbId":2924},{"name":"Baby Driver","year":2017,"posterUrl":"/library/metadata/254/thumb/1599307921","imdbId":"","language":"en","overview":"After being coerced into working for a crime boss, a young getaway driver finds himself taking part in a heist doomed to fail.","moviesInCollection":[],"ratingKey":254,"key":"/library/metadata/254","collectionTitle":"","collectionId":-1,"tmdbId":339403},{"name":"The Purge Election Year","year":2016,"posterUrl":"/library/metadata/2769/thumb/1599308910","imdbId":"","language":"en","overview":"Two years after choosing not to kill the man who killed his son, former police sergeant Leo Barnes has become head of security for Senator Charlene Roan, the front runner in the next Presidential election due to her vow to eliminate the Purge. On the night of what should be the final Purge, a betrayal from within the government forces Barnes and Roan out onto the street where they must fight to survive the night.","moviesInCollection":[],"ratingKey":2769,"key":"/library/metadata/2769","collectionTitle":"","collectionId":-1,"tmdbId":316727},{"name":"The Grudge","year":2020,"posterUrl":"/library/metadata/2524/thumb/1599308808","imdbId":"","language":"en","overview":"After a young mother murders her family in her own house, a detective attempts to investigate the mysterious case, only to discover that the house is cursed by a vengeful ghost. Now targeted by the demonic spirits, the detective must do anything to protect herself and her family from harm.","moviesInCollection":[],"ratingKey":2524,"key":"/library/metadata/2524","collectionTitle":"","collectionId":-1,"tmdbId":465086},{"name":"The Karate Kid Part III","year":1989,"posterUrl":"/library/metadata/2602/thumb/1599308837","imdbId":"","language":"en","overview":"Kreese, his life in tatters after his karate school was defeated by Daniel and Mr. Miyagi, visits Terry, a friend from Vietnam. Terry is a ruthless business man and a martial arts expert, and he vows to help Kreese take revenge on Daniel and Mr. Miyagi.","moviesInCollection":[],"ratingKey":2602,"key":"/library/metadata/2602","collectionTitle":"","collectionId":-1,"tmdbId":10495},{"name":"A Walk in the Clouds","year":1995,"posterUrl":"/library/metadata/101/thumb/1599307863","imdbId":"","language":"en","overview":"World War II vet Paul Sutton falls for a pregnant and unwed woman who persuades him -- during their first encounter -- to pose as her husband so she can face her family.","moviesInCollection":[],"ratingKey":101,"key":"/library/metadata/101","collectionTitle":"","collectionId":-1,"tmdbId":9560},{"name":"3 Days to Kill","year":2014,"posterUrl":"/library/metadata/29/thumb/1599307836","imdbId":"","language":"en","overview":"A dangerous international spy is determined to give up his high stakes life to finally build a closer relationship with his estranged wife and daughter. But first, he must complete one last mission - even if it means juggling the two toughest assignments yet: hunting down the world's most ruthless terrorist and looking after his teenage daughter for the first time in ten years, while his wife is out of town.","moviesInCollection":[],"ratingKey":29,"key":"/library/metadata/29","collectionTitle":"","collectionId":-1,"tmdbId":192102},{"name":"London Has Fallen","year":2016,"posterUrl":"/library/metadata/1410/thumb/1599308346","imdbId":"","language":"en","overview":"In London for the Prime Minister's funeral, Mike Banning discovers a plot to assassinate all the attending world leaders.","moviesInCollection":[],"ratingKey":1410,"key":"/library/metadata/1410","collectionTitle":"","collectionId":-1,"tmdbId":267860},{"name":"Can You Ever Forgive Me?","year":2018,"posterUrl":"/library/metadata/461/thumb/1599307996","imdbId":"","language":"en","overview":"When a bestselling celebrity biographer is no longer able to get published because she has fallen out of step with current tastes, she turns her art form to deception.","moviesInCollection":[],"ratingKey":461,"key":"/library/metadata/461","collectionTitle":"","collectionId":-1,"tmdbId":401847},{"name":"Mortal Kombat","year":1995,"posterUrl":"/library/metadata/1547/thumb/1599308410","imdbId":"","language":"en","overview":"For nine generations an evil sorcerer has been victorious in hand-to-hand battle against his mortal enemies. If he wins a tenth Mortal Kombat tournament, desolation and evil will reign over the multiverse forever. To save Earth, three warriors must overcome seemingly insurmountable odds, their own inner demons, and superhuman foes in this action/adventure movie based on one of the most popular video games of all time.","moviesInCollection":[],"ratingKey":1547,"key":"/library/metadata/1547","collectionTitle":"","collectionId":-1,"tmdbId":9312},{"name":"Human Flow","year":2017,"posterUrl":"/library/metadata/1148/thumb/1599308250","imdbId":"","language":"en","overview":"More than 65 million people around the world have been forced from their homes to escape famine, climate change and war, the greatest displacement since World War II. Filmmaker Ai Weiwei examines the staggering scale of the refugee crisis and its profoundly personal human impact. Over the course of one year in 23 countries, Weiwei follows a chain of urgent human stories that stretch across the globe, including Afghanistan, France, Greece, Germany and Iraq.","moviesInCollection":[],"ratingKey":1148,"key":"/library/metadata/1148","collectionTitle":"","collectionId":-1,"tmdbId":468213},{"name":"The Polar Express","year":2004,"posterUrl":"/library/metadata/2745/thumb/1599308898","imdbId":"","language":"en","overview":"When a doubting young boy takes an extraordinary train ride to the North Pole, he embarks on a journey of self-discovery that shows him that the wonder of life never fades for those who believe.","moviesInCollection":[],"ratingKey":2745,"key":"/library/metadata/2745","collectionTitle":"","collectionId":-1,"tmdbId":5255},{"name":"Stitch! The Movie","year":2003,"posterUrl":"/library/metadata/2169/thumb/1599308679","imdbId":"","language":"en","overview":"The continuing adventures of Lilo, a little Hawaiian girl, and Stitch, the galaxy's most wanted extraterrestrial. Stitch, Pleakley, and Dr. Jumba are all part of the household now. But what Lilo and Stitch don't know is that Dr. Jumba brought one of his alien \"experiments\" to Hawaii.","moviesInCollection":[],"ratingKey":2169,"key":"/library/metadata/2169","collectionTitle":"","collectionId":-1,"tmdbId":15567},{"name":"Dumb and Dumber","year":1994,"posterUrl":"/library/metadata/792/thumb/1599308114","imdbId":"","language":"en","overview":"Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some \"adventures\" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.","moviesInCollection":[],"ratingKey":792,"key":"/library/metadata/792","collectionTitle":"","collectionId":-1,"tmdbId":8467},{"name":"Police Academy 5 Assignment Miami Beach","year":1988,"posterUrl":"/library/metadata/1782/thumb/1599308511","imdbId":"","language":"en","overview":"The Police Academy misfits travel to Miami, Florida for their academy's commanding officer, Lassard, to receive a prestigious lifetime award pending his retirement, which takes a turn involving a group of jewel thieves after their stolen loot that Lassard unknowingly has in his possession.","moviesInCollection":[],"ratingKey":1782,"key":"/library/metadata/1782","collectionTitle":"","collectionId":-1,"tmdbId":11825},{"name":"Slice","year":2018,"posterUrl":"/library/metadata/2061/thumb/1599308632","imdbId":"","language":"en","overview":"In a spooky small town, when a slew of pizza delivery boys are slain on the job, two daring survivors set out to catch the culprits behind the cryptic crime spree.","moviesInCollection":[],"ratingKey":2061,"key":"/library/metadata/2061","collectionTitle":"","collectionId":-1,"tmdbId":347392},{"name":"Father of the Year","year":2018,"posterUrl":"/library/metadata/877/thumb/1599308145","imdbId":"","language":"en","overview":"Two college grads return to their hometown, where a hypothetical question -- whose dad would win in a fight? -- leads to mass mayhem.","moviesInCollection":[],"ratingKey":877,"key":"/library/metadata/877","collectionTitle":"","collectionId":-1,"tmdbId":531949},{"name":"Occupation","year":2018,"posterUrl":"/library/metadata/1630/thumb/1599308446","imdbId":"","language":"en","overview":"A small group of town residents have to band together after a devastating ground invasion. As they struggle to survive, they realize they must stay one step ahead of their attackers, and work together for a chance to strike back.","moviesInCollection":[],"ratingKey":1630,"key":"/library/metadata/1630","collectionTitle":"","collectionId":-1,"tmdbId":503346},{"name":"American Wedding","year":2003,"posterUrl":"/library/metadata/192/thumb/1599307898","imdbId":"","language":"en","overview":"With high school a distant memory, Jim and Michelle are getting married -- and in a hurry, since Jim's grandmother is sick and wants to see him walk down the aisle -- prompting Stifler to throw the ultimate bachelor party. And Jim's dad is reliable as ever, doling out advice no one wants to hear.","moviesInCollection":[],"ratingKey":192,"key":"/library/metadata/192","collectionTitle":"","collectionId":-1,"tmdbId":8273},{"name":"Ghostbusters","year":2016,"posterUrl":"/library/metadata/996/thumb/1599308191","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":996,"key":"/library/metadata/996","collectionTitle":"","collectionId":-1,"tmdbId":43074},{"name":"Bad Therapy","year":2020,"posterUrl":"/library/metadata/45905/thumb/1599309151","imdbId":"","language":"en","overview":"Married couple Bob and Susan Howard decide to see a marriage counselor named Judy Small, who appears trustworthy but harbors dark and conflicted impulses.","moviesInCollection":[],"ratingKey":45905,"key":"/library/metadata/45905","collectionTitle":"","collectionId":-1,"tmdbId":527382},{"name":"Sister Street Fighter","year":1976,"posterUrl":"/library/metadata/2047/thumb/1599308626","imdbId":"","language":"en","overview":"Lee Long is a martial-arts champion who the police use as an undercover agent to infiltrate a drug ring responsible for importing heroin from Japan to Hong Kong. When he is identified and imprisoned, his sister gets the help of Lee's martial-arts school, including the powerful Sonny Kawasaka, for the inevitable battle-royale with the drug gang.","moviesInCollection":[],"ratingKey":2047,"key":"/library/metadata/2047","collectionTitle":"","collectionId":-1,"tmdbId":47313},{"name":"The Killing","year":1956,"posterUrl":"/library/metadata/2606/thumb/1599308838","imdbId":"","language":"en","overview":"Career criminal Johnny Clay recruits a sharpshooter, a crooked police officer, a bartender and a betting teller named George, among others, for one last job before he goes straight and gets married. But when George tells his restless wife about the scheme to steal millions from the racetrack where he works, she hatches a plot of her own.","moviesInCollection":[],"ratingKey":2606,"key":"/library/metadata/2606","collectionTitle":"","collectionId":-1,"tmdbId":247},{"name":"Kickboxer","year":1989,"posterUrl":"/library/metadata/1295/thumb/1599308305","imdbId":"","language":"en","overview":"If your enemy refuses to be humbled... Destroy him. Accompanied by his brother Kurt (Van Damme), American kickboxing champion Eric Sloane (Dennis Alexio), arrives in Thailand to defeat the Eastern warriors at their own sport. His opponent: ruthless fighter and Thai champion, Tong Po. Tong not only defeats Eric, he paralyzes him for life. Crazed with anger, Kurt vows revenge.","moviesInCollection":[],"ratingKey":1295,"key":"/library/metadata/1295","collectionTitle":"","collectionId":-1,"tmdbId":10222},{"name":"The Honorary Consul","year":1983,"posterUrl":"/library/metadata/2548/thumb/1599308816","imdbId":"","language":"en","overview":"Set in a small politically unstable Latin American country, the story follows the half English and half Latino Dr. Eduardo Plarr, who left his home to find a better life. Along the way he meets an array of people, including British Consul Charley Fortnum, a representative in Latin America who is trying to keep Revolution from occurring. He is also a remorseful alcoholic. Another person the doctor meets is Clara, whom he immediately falls in love with, but there is a problem: Clara is Charley's wife.","moviesInCollection":[],"ratingKey":2548,"key":"/library/metadata/2548","collectionTitle":"","collectionId":-1,"tmdbId":69007},{"name":"Crucible of the Vampire","year":2019,"posterUrl":"/library/metadata/608/thumb/1599308049","imdbId":"","language":"en","overview":"A young museum curator Isabelle (Katie Goldfinch) is sent to look at an ancient artefact, discovered in the basement of a stately home in Shropshire. Welcomed into the sprawling manor house by a seemingly hospitable family; Karl (Larry Rew), his wife Evelyn (Babette Barat) and their beautiful daughter Scarlet (Florence Cady), but all is not what it seems, as a dark and terrifying secret hangs over them.","moviesInCollection":[],"ratingKey":608,"key":"/library/metadata/608","collectionTitle":"","collectionId":-1,"tmdbId":566512},{"name":"The NeverEnding Story","year":1984,"posterUrl":"/library/metadata/2711/thumb/1599308883","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":2711,"key":"/library/metadata/2711","collectionTitle":"","collectionId":-1,"tmdbId":34584},{"name":"The Zombie King","year":2013,"posterUrl":"/library/metadata/2910/thumb/1599308967","imdbId":"","language":"en","overview":"Samuel Peters (Edward Furlong), once an ordinary man, dabbles in the laws of voodoo to bring his wife back from the grave. He soon encounters the God of malevolence ‘Kalfu’ (Corey Feldman), and makes a pact with him to destroy the underworld and bring chaos to earth. In return, he will become ‘The Zombie King’ and walk the earth for eternity with his late wife. But, as the ever growing horde of zombies begins to completely wipe out a countryside town, the Government set-up a perimeter around the town and employ a shoot-on-sight policy. Trapped within the town, the locals, an unlikely bunch of misfits, must fight for their lives and unite in order to survive. Can our heroes unravel the clues in time and survive or will The Zombie King and his horde of zombies rise on the night of the dark moon?","moviesInCollection":[],"ratingKey":2910,"key":"/library/metadata/2910","collectionTitle":"","collectionId":-1,"tmdbId":189098},{"name":"Justice League Dark Apokolips War","year":2020,"posterUrl":"/library/metadata/42253/thumb/1599309137","imdbId":"","language":"en","overview":"Earth is decimated after intergalactic tyrant Darkseid has devastated the Justice League in a poorly executed war by the DC Super Heroes. Now the remaining bastions of good – the Justice League, Teen Titans, Suicide Squad and assorted others – must regroup, strategize and take the war to Darkseid in order to save the planet and its surviving inhabitants.","moviesInCollection":[],"ratingKey":42253,"key":"/library/metadata/42253","collectionTitle":"","collectionId":-1,"tmdbId":618344},{"name":"A Bug's Life","year":1998,"posterUrl":"/library/metadata/50/thumb/1599307844","imdbId":"","language":"en","overview":"On behalf of \"oppressed bugs everywhere,\" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.","moviesInCollection":[],"ratingKey":50,"key":"/library/metadata/50","collectionTitle":"","collectionId":-1,"tmdbId":9487},{"name":"An American Haunting","year":2005,"posterUrl":"/library/metadata/194/thumb/1599307898","imdbId":"","language":"en","overview":"Based on the true events of the only case in US History where a spirit caused the death of a man.","moviesInCollection":[],"ratingKey":194,"key":"/library/metadata/194","collectionTitle":"","collectionId":-1,"tmdbId":10008},{"name":"Over the Hedge","year":2006,"posterUrl":"/library/metadata/1678/thumb/1599308467","imdbId":"","language":"en","overview":"A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating – and learns a lesson about family himself.","moviesInCollection":[],"ratingKey":1678,"key":"/library/metadata/1678","collectionTitle":"","collectionId":-1,"tmdbId":7518},{"name":"The Ghastly Love of Johnny X","year":2013,"posterUrl":"/library/metadata/2486/thumb/1599308794","imdbId":"","language":"en","overview":"A truly mad concoction, blending 1950s juvenile delinquents, sci-fi melodrama, song-and-dance, and a touch of horror, everything in just the right combination to create an engaging big screen spectacle! This curious and curiously entertaining story involves one Jonathan Xavier and his devoted misfit gang who, incidentally, have been exiled to Earth from the far reaches of outer space. Johnny's former girlfriend Bliss has left him and stolen his Resurrection Suit, a cosmic, mind-bending uniform that gives the owner power over others. Along the way, there will be several highly stylized musical numbers, lots of genuinely humorous dialogue, and a wacky plot-twist or two, all beautifully captured on the very last of Kodak's black-and-white Plus-X film stock.","moviesInCollection":[],"ratingKey":2486,"key":"/library/metadata/2486","collectionTitle":"","collectionId":-1,"tmdbId":188652},{"name":"Stone","year":2010,"posterUrl":"/library/metadata/2171/thumb/1599308679","imdbId":"","language":"en","overview":"Parole officer Jack Mabry has only a few weeks left before retirement and wishes to finish out the cases he's been assigned. One such case is that of Gerald 'Stone' Creeson, a convicted arsonist who is up for parole. Jack is initially reluctant to indulge Stone in the coarse banter he wishes to pursue and feels little sympathy for the prisoner's pleads for an early release. Seeing little hope in convincing Jack himself, Stone arranges for his wife to seduce the officer, but motives and intentions steadily blur amidst the passions and buried secrets of the corrupted players in this deadly game of deception.","moviesInCollection":[],"ratingKey":2171,"key":"/library/metadata/2171","collectionTitle":"","collectionId":-1,"tmdbId":44113},{"name":"Diamonds Are Forever","year":1971,"posterUrl":"/library/metadata/704/thumb/1599308082","imdbId":"","language":"en","overview":"Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out who's guilty. The mission takes him to Las Vegas where Bond meets his archenemy Blofeld.","moviesInCollection":[],"ratingKey":704,"key":"/library/metadata/704","collectionTitle":"","collectionId":-1,"tmdbId":681},{"name":"Cabin Fever 2 Spring Fever","year":2009,"posterUrl":"/library/metadata/456/thumb/1599307994","imdbId":"","language":"en","overview":"A high school prom faces a deadly threat: a flesh-eating virus that spreads via a popular brand of bottled water.","moviesInCollection":[],"ratingKey":456,"key":"/library/metadata/456","collectionTitle":"","collectionId":-1,"tmdbId":28739},{"name":"Squirm","year":1976,"posterUrl":"/library/metadata/2122/thumb/1599308659","imdbId":"","language":"en","overview":"At the beginning of the film, we learn from one of the characters that earthworms can be called to the surface with electricity, but somehow it turns them into vicious flesh-eaters. Sure enough, a storm that night causes some power lines to break and touch the ground, drawing millions of man-eating worms out of the earth, and into town where they quickly start munching on the locals.","moviesInCollection":[],"ratingKey":2122,"key":"/library/metadata/2122","collectionTitle":"","collectionId":-1,"tmdbId":25241},{"name":"Ghostbusters","year":1984,"posterUrl":"/library/metadata/995/thumb/1599308191","imdbId":"","language":"en","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.","moviesInCollection":[],"ratingKey":995,"key":"/library/metadata/995","collectionTitle":"","collectionId":-1,"tmdbId":620},{"name":"Batman The Killing Joke","year":2016,"posterUrl":"/library/metadata/303/thumb/1599307937","imdbId":"","language":"en","overview":"As Batman hunts for the escaped Joker, the Clown Prince of Crime attacks the Gordon family to prove a diabolical point mirroring his own fall into madness.","moviesInCollection":[],"ratingKey":303,"key":"/library/metadata/303","collectionTitle":"","collectionId":-1,"tmdbId":382322},{"name":"Eraserhead","year":1977,"posterUrl":"/library/metadata/48447/thumb/1601819110","imdbId":"","language":"en","overview":"Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.","moviesInCollection":[],"ratingKey":48447,"key":"/library/metadata/48447","collectionTitle":"","collectionId":-1,"tmdbId":985},{"name":"Star Wars Episode III - Revenge of the Sith","year":2005,"posterUrl":"/library/metadata/2148/thumb/1599308670","imdbId":"","language":"en","overview":"The evil Darth Sidious enacts his final plan for unlimited power -- and the heroic Jedi Anakin Skywalker must choose a side.","moviesInCollection":[],"ratingKey":2148,"key":"/library/metadata/2148","collectionTitle":"","collectionId":-1,"tmdbId":1895},{"name":"¡Three Amigos!","year":1986,"posterUrl":"/library/metadata/1/thumb/1599307689","imdbId":"","language":"en","overview":"Three unemployed actors accept an invitation to a Mexican village to replay their bandit fighter roles, unaware that it is the real thing.","moviesInCollection":[],"ratingKey":1,"key":"/library/metadata/1","collectionTitle":"","collectionId":-1,"tmdbId":8388},{"name":"In the Heart of the Sea","year":2015,"posterUrl":"/library/metadata/1178/thumb/1599308261","imdbId":"","language":"en","overview":"In the winter of 1820, the New England whaling ship Essex is assaulted by something no one could believe—a whale of mammoth size and will, and an almost human sense of vengeance.","moviesInCollection":[],"ratingKey":1178,"key":"/library/metadata/1178","collectionTitle":"","collectionId":-1,"tmdbId":205775},{"name":"Toy Story That Time Forgot","year":2014,"posterUrl":"/library/metadata/2971/thumb/1599308987","imdbId":"","language":"en","overview":"During a post-Christmas play date, the gang find themselves in uncharted territory when the coolest set of action figures ever turn out to be dangerously delusional. It's all up to Trixie, the triceratops, if the gang hopes to return to Bonnie's room in this Toy Story That Time Forgot.","moviesInCollection":[],"ratingKey":2971,"key":"/library/metadata/2971","collectionTitle":"","collectionId":-1,"tmdbId":256835},{"name":"Won't You Be My Neighbor?","year":2019,"posterUrl":"/library/metadata/3161/thumb/1599309052","imdbId":"","language":"en","overview":"Fred Rogers used puppets and play to explore complex social issues: race, disability, equality and tragedy, helping form the American concept of childhood. He spoke directly to children and they responded enthusiastically. Yet today, his impact is unclear. Have we lived up to Fred's ideal of good neighbors?","moviesInCollection":[],"ratingKey":3161,"key":"/library/metadata/3161","collectionTitle":"","collectionId":-1,"tmdbId":490003},{"name":"A Woman, a Gun and a Noodle Shop","year":2009,"posterUrl":"/library/metadata/102/thumb/1599307863","imdbId":"","language":"en","overview":"Wang is a gloomy, cunning and avaricious noodle shop owner in a desert town in China. His neglected, sharp-tongued wife is involved in a secret affair with Li, one of Wang’s employees. A timid man, Li reluctantly keeps the gun his lover has bought to kill her husband. But Wang is watching their every move. He bribes patrol officer Zhang to murder the illicit couple. It seems like a perfect plan: the affair will come to a cruel, bloody but satisfying end… or so he thinks. The equally wicked Zhang has an agenda of his own. As the plot twists, more blood will flow, and ever greater violence will erupt…","moviesInCollection":[],"ratingKey":102,"key":"/library/metadata/102","collectionTitle":"","collectionId":-1,"tmdbId":44555},{"name":"The Autopsy of Jane Doe","year":2016,"posterUrl":"/library/metadata/2306/thumb/1599308726","imdbId":"","language":"en","overview":"Father and son coroners receive a mysterious unidentified corpse with no apparent cause of death. As they attempt to examine the beautiful young \"Jane Doe,\" they discover increasingly bizarre clues that hold the key to her terrifying secrets.","moviesInCollection":[],"ratingKey":2306,"key":"/library/metadata/2306","collectionTitle":"","collectionId":-1,"tmdbId":397243},{"name":"Hidalgo","year":2004,"posterUrl":"/library/metadata/1104/thumb/1599308234","imdbId":"","language":"en","overview":"Set in 1890, this is the story of a Pony Express courier who travels to Arabia to compete with his horse, Hidalgo, in a dangerous race for a massive contest prize, in an adventure that sends the pair around the world...","moviesInCollection":[],"ratingKey":1104,"key":"/library/metadata/1104","collectionTitle":"","collectionId":-1,"tmdbId":2023},{"name":"Only Yesterday","year":2019,"posterUrl":"/library/metadata/46402/thumb/1599309158","imdbId":"","language":"en","overview":"It’s 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, and as the train travels through the night, memories flood back of her younger years: the first immature stirrings of romance, the onset of puberty, and the frustrations of math and boys. At the station she is met by young farmer Toshio, and the encounters with him begin to reconnect her 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.","moviesInCollection":[],"ratingKey":46402,"key":"/library/metadata/46402","collectionTitle":"","collectionId":-1,"tmdbId":15080},{"name":"True Grit","year":2010,"posterUrl":"/library/metadata/3011/thumb/1599309000","imdbId":"","language":"en","overview":"Following the murder of her father by a hired hand, a 14-year-old farm girl sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find—a man with 'true grit'—Reuben J. 'Rooster' Cogburn.","moviesInCollection":[],"ratingKey":3011,"key":"/library/metadata/3011","collectionTitle":"","collectionId":-1,"tmdbId":44264}]} \ No newline at end of file diff --git a/cypress/fixtures/libraries.joker.4.json b/cypress/fixtures/libraries.joker.4.json new file mode 100644 index 00000000..189b82e2 --- /dev/null +++ b/cypress/fixtures/libraries.joker.4.json @@ -0,0 +1,384 @@ +{ + "code": 40, + "reason": "Plex's library movies found.", + "extras": [ + { + "name": "Batman Return of the Caped Crusaders", + "year": 2016, + "posterUrl": "/library/metadata/48497/thumb/1601864977", + "imdbId": "", + "language": "en", + "overview": "Adam West and Burt Ward returns to their iconic roles of Batman and Robin. The film sees the superheroes going up against classic villains like The Joker, The Riddler, The Penguin and Catwoman, both in Gotham City… and in space.", + "moviesInCollection": [], + "ratingKey": 48497, + "key": "/library/metadata/48497", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Beauty and the Beast", + "year": 2017, + "posterUrl": "/library/metadata/48546/thumb/1601864994", + "imdbId": "", + "language": "en", + "overview": "A live-action adaptation of Disney's version of the classic tale of a cursed prince and a beautiful young woman who helps him break the spell.", + "moviesInCollection": [], + "ratingKey": 48546, + "key": "/library/metadata/48546", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Blade Runner 2049", + "year": 2017, + "posterUrl": "/library/metadata/48704/thumb/1601865018", + "imdbId": "", + "language": "en", + "overview": "Young Blade Runner K's discovery of a long-buried secret leads him to track down former Blade Runner Rick Deckard, who's been missing for thirty years.", + "moviesInCollection": [], + "ratingKey": 48704, + "key": "/library/metadata/48704", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Bill & Ted's Excellent Adventure", + "year": 1989, + "posterUrl": "/library/metadata/48653/thumb/1601865012", + "imdbId": "", + "language": "en", + "overview": "Two seemingly dumb teens set off on a quest to prepare the ultimate historical presentation with the help of a time machine.", + "moviesInCollection": [], + "ratingKey": 48653, + "key": "/library/metadata/48653", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Batman vs. Robin", + "year": 2015, + "posterUrl": "/library/metadata/48506/thumb/1601864980", + "imdbId": "", + "language": "en", + "overview": "Damian Wayne is having a hard time coping with his father's \"no killing\" rule. Meanwhile, Gotham is going through hell with threats such as the insane Dollmaker, and the secretive Court of Owls.", + "moviesInCollection": [], + "ratingKey": 48506, + "key": "/library/metadata/48506", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Batman Year One", + "year": 2011, + "posterUrl": "/library/metadata/48537/thumb/1601864987", + "imdbId": "", + "language": "en", + "overview": "Two men come to Gotham City: Bruce Wayne after years abroad feeding his lifelong obsession for justice and Jim Gordon after being too honest a cop with the wrong people elsewhere. After learning painful lessons about the city's corruption on its streets and police department respectively, this pair learn how to fight back their own way. With that, Gotham's evildoers from top to bottom are terrorized by the mysterious Batman and the equally heroic Gordon is assigned to catch him by comrades who both hate and fear him themselves. In the ensuing manhunt, both find much in common as the seeds of an unexpected friendship are laid with additional friends and rivals helping to start the legend.", + "moviesInCollection": [], + "ratingKey": 48537, + "key": "/library/metadata/48537", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Big Trouble in Little China", + "year": 1986, + "posterUrl": "/library/metadata/48603/thumb/1601865009", + "imdbId": "", + "language": "en", + "overview": "A rough-and-tumble trucker helps rescue his friend's fiancée from an ancient sorcerer in a supernatural battle beneath Chinatown.", + "moviesInCollection": [], + "ratingKey": 48603, + "key": "/library/metadata/48603", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Blazing Saddles", + "year": 1974, + "posterUrl": "/library/metadata/48718/thumb/1601865020", + "imdbId": "", + "language": "en", + "overview": "In order to ruin a western town, a corrupt politician appoints a black Sheriff, who promptly becomes his most formidable adversary.", + "moviesInCollection": [], + "ratingKey": 48718, + "key": "/library/metadata/48718", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Batman vs. Two-Face", + "year": 2017, + "posterUrl": "/library/metadata/48536/thumb/1601864987", + "imdbId": "", + "language": "en", + "overview": "Former Gotham City District Attorney Harvey Dent, one side of his face scarred by acid, goes on a crime spree based on the number '2'. All of his actions are decided by the flip of a defaced, two-headed silver dollar.", + "moviesInCollection": [], + "ratingKey": 48536, + "key": "/library/metadata/48536", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Beauty and the Beast", + "year": 1991, + "posterUrl": "/library/metadata/48544/thumb/1601864989", + "imdbId": "", + "language": "en", + "overview": "Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.", + "moviesInCollection": [], + "ratingKey": 48544, + "key": "/library/metadata/48544", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Blade Runner", + "year": 1982, + "posterUrl": "/library/metadata/48696/thumb/1601865015", + "imdbId": "", + "language": "en", + "overview": "A blade runner must pursue and terminate four replicants who stole a ship in space, and have returned to Earth to find their creator.", + "moviesInCollection": [], + "ratingKey": 48696, + "key": "/library/metadata/48696", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Bedazzled", + "year": 1967, + "posterUrl": "/library/metadata/48547/thumb/1601864996", + "imdbId": "", + "language": "en", + "overview": "Stanley is infatuated with Margaret, the statuesque waitress who works with him. He meets George Spiggott AKA the devil and sells his soul for 7 wishes, which Stanley uses to try and make Margaret his own first as an intellectual, then as a rock star, then as a wealthy industrialist. As each fails, he becomes more aware of how empty his life had been and how much more he has to live for.", + "moviesInCollection": [], + "ratingKey": 48547, + "key": "/library/metadata/48547", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Ben-Hur", + "year": 2016, + "posterUrl": "/library/metadata/48601/thumb/1601865008", + "imdbId": "", + "language": "en", + "overview": "Judah Ben-Hur, a prince falsely accused of treason by his adopted brother, an officer in the Roman army, returns to his homeland after years at sea to seek revenge, but finds redemption.", + "moviesInCollection": [], + "ratingKey": 48601, + "key": "/library/metadata/48601", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Bill & Ted's Bogus Journey", + "year": 1991, + "posterUrl": "/library/metadata/48651/thumb/1601865011", + "imdbId": "", + "language": "en", + "overview": "A tyrant from the future creates evil android doubles of Bill and Ted and sends them back to eliminate the originals.", + "moviesInCollection": [], + "ratingKey": 48651, + "key": "/library/metadata/48651", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Batman v Superman Dawn of Justice", + "year": 2016, + "posterUrl": "/library/metadata/48505/thumb/1601864979", + "imdbId": "", + "language": "en", + "overview": "Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.", + "moviesInCollection": [], + "ratingKey": 48505, + "key": "/library/metadata/48505", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Blade Trinity", + "year": 2004, + "posterUrl": "/library/metadata/48705/thumb/1601865017", + "imdbId": "", + "language": "en", + "overview": "Blade, now a wanted man by the FBI, must join forces with the Nightstalkers to face his most challenging enemy yet: Dracula.", + "moviesInCollection": [], + "ratingKey": 48705, + "key": "/library/metadata/48705", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Blade", + "year": 1998, + "posterUrl": "/library/metadata/48654/thumb/1601865012", + "imdbId": "", + "language": "en", + "overview": "A half-vampire, half-mortal man becomes a protector of the mortal race, while slaying evil vampires.", + "moviesInCollection": [], + "ratingKey": 48654, + "key": "/library/metadata/48654", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Blade II", + "year": 2002, + "posterUrl": "/library/metadata/48679/thumb/1601865013", + "imdbId": "", + "language": "en", + "overview": "Blade forms an uneasy alliance with the vampire council in order to combat the Reapers, who are feeding on vampires.", + "moviesInCollection": [], + "ratingKey": 48679, + "key": "/library/metadata/48679", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Beetlejuice", + "year": 1988, + "posterUrl": "/library/metadata/48589/thumb/1601864998", + "imdbId": "", + "language": "en", + "overview": "The spirits of a deceased couple are harassed by an unbearable family that has moved into their home, and hire a malicious spirit to drive them out.", + "moviesInCollection": [], + "ratingKey": 48589, + "key": "/library/metadata/48589", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Ben-Hur", + "year": 1959, + "posterUrl": "/library/metadata/48597/thumb/1601865004", + "imdbId": "", + "language": "en", + "overview": "After a Jewish prince is betrayed and sent into slavery by a Roman friend, he regains his freedom and comes back for revenge.", + "moviesInCollection": [], + "ratingKey": 48597, + "key": "/library/metadata/48597", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Batman The Dark Knight Returns, Part 2", + "year": 2013, + "posterUrl": "/library/metadata/48498/thumb/1601864977", + "imdbId": "", + "language": "en", + "overview": "Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.", + "moviesInCollection": [], + "ratingKey": 48498, + "key": "/library/metadata/48498", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Batman vs Teenage Mutant Ninja Turtles", + "year": 2019, + "posterUrl": "/library/metadata/48534/thumb/1601864983", + "imdbId": "", + "language": "en", + "overview": "Batman, Batgirl and Robin forge an alliance with the Teenage Mutant Ninja Turtles to fight against the Turtles' sworn enemy, The Shredder, who has apparently teamed up with Ra's Al Ghul and The League of Assassins.", + "moviesInCollection": [], + "ratingKey": 48534, + "key": "/library/metadata/48534", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Being John Malkovich", + "year": 1999, + "posterUrl": "/library/metadata/48594/thumb/1601865002", + "imdbId": "", + "language": "en", + "overview": "A puppeteer discovers a portal that leads literally into the head of movie star John Malkovich.", + "moviesInCollection": [], + "ratingKey": 48594, + "key": "/library/metadata/48594", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Batman Under the Red Hood", + "year": 2010, + "posterUrl": "/library/metadata/48499/thumb/1601864977", + "imdbId": "", + "language": "en", + "overview": "Batman faces his ultimate challenge as the mysterious Red Hood takes Gotham City by firestorm. One part vigilante, one part criminal kingpin, Red Hood begins cleaning up Gotham with the efficiency of Batman, but without following the same ethical code.", + "moviesInCollection": [], + "ratingKey": 48499, + "key": "/library/metadata/48499", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Big Hero 6", + "year": 2014, + "posterUrl": "/library/metadata/48602/thumb/1601865010", + "imdbId": "", + "language": "en", + "overview": "The special bond develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada. They team up with a group of friends to form a band of high-tech heroes.", + "moviesInCollection": [], + "ratingKey": 48602, + "key": "/library/metadata/48602", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Bayonetta Bloody Fate", + "year": 2013, + "posterUrl": "/library/metadata/48538/thumb/1601864988", + "imdbId": "", + "language": "en", + "overview": "Bayonetta: Bloody Fate follows the story of the witch Bayonetta, as she defeats the blood-thirsty Angels and tries to remember her past from before the time she awoke, 20 years ago. Along her side are a mysterious little girl who keeps calling her \"Mummy\", a journalist that holds a personal grudge against Bayonetta and a unknown white-haired woman who seems to know more than she is willing to reveal about Bayonetta's time before her sleep.", + "moviesInCollection": [], + "ratingKey": 48538, + "key": "/library/metadata/48538", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + }, + { + "name": "Bedazzled", + "year": 2000, + "posterUrl": "/library/metadata/48588/thumb/1601864997", + "imdbId": "", + "language": "en", + "overview": "Elliot Richardson, a suicidal techno geek, is given seven wishes to turn his life around when he meets a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil puts her own little twist on each of his fantasies.", + "moviesInCollection": [], + "ratingKey": 48588, + "key": "/library/metadata/48588", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + } + ] +} \ No newline at end of file diff --git a/cypress/fixtures/libraries.joker.5.json b/cypress/fixtures/libraries.joker.5.json new file mode 100644 index 00000000..2f74392c --- /dev/null +++ b/cypress/fixtures/libraries.joker.5.json @@ -0,0 +1,20 @@ +{ + "code": 40, + "reason": "Plex's library movies found.", + "extras": [ + { + "name": "Saw", + "year": 2004, + "posterUrl": "/library/metadata/48756/thumb/1601867828", + "imdbId": "tt0387564", + "language": "en", + "overview": "Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying...", + "moviesInCollection": [], + "ratingKey": 48756, + "key": "/library/metadata/48756", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": -1 + } + ] +} \ No newline at end of file diff --git a/cypress/fixtures/libraries.joker.6.json b/cypress/fixtures/libraries.joker.6.json new file mode 100644 index 00000000..614d5d3b --- /dev/null +++ b/cypress/fixtures/libraries.joker.6.json @@ -0,0 +1,328 @@ +{ + "code": 40, + "reason": "Plex's library movies found.", + "extras": [ + { + "name": "Dragon Ball Z Broly – Second Coming", + "year": 1994, + "posterUrl": "/library/metadata/48762/thumb/1601866905", + "imdbId": "tt0142239", + "language": "en", + "overview": "A Saiyan Space pod crash-lands on Earth out of which a wounded Saiyan crawls: Broly, the Legendary Super Saiyan. The wounded Broly shouts out in frustration and turns into normal form. The place soon freezes, trapping him in it and he falls into a coma.", + "moviesInCollection": [], + "ratingKey": 48762, + "key": "/library/metadata/48762", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 44251 + }, + { + "name": "Dragon Ball Z Broly – The Legendary Super Saiyan", + "year": 1993, + "posterUrl": "/library/metadata/48763/thumb/1601866916", + "imdbId": "tt0142242", + "language": "en", + "overview": "While the Saiyan Paragus persuades Vegeta to rule a new planet, King Kai alerts Goku of the South Galaxy's destruction by an unknown Super Saiyan.", + "moviesInCollection": [], + "ratingKey": 48763, + "key": "/library/metadata/48763", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 34433 + }, + { + "name": "Dragon Ball Z Dead Zone", + "year": 1989, + "posterUrl": "/library/metadata/48767/thumb/1601866938", + "imdbId": "tt0142235", + "language": "en", + "overview": "Gohan has been kidnapped! To make matters worse, the evil Garlic Jr. is gathering the Dragonballs to wish for immortality. Only then will Garlic Jr. be able to take over the Earth in order to gain revenge for the death of his father. Goku rushes to save Gohan, but arrives at the fortress just as Garlic Jr. summons the Eternal Dragon! Krillin and Piccolo try to help Goku, but their combined powers.", + "moviesInCollection": [], + "ratingKey": 48767, + "key": "/library/metadata/48767", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 28609 + }, + { + "name": "Dragon Ball Z The Tree of Might", + "year": 1990, + "posterUrl": "/library/metadata/48778/thumb/1601867446", + "imdbId": "tt0142233", + "language": "en", + "overview": "Goku and friends must stop a band of space pirates from consuming fruit from the Tree of Might before it's destructive powers drain Earth's energy.", + "moviesInCollection": [], + "ratingKey": 48778, + "key": "/library/metadata/48778", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39101 + }, + { + "name": "X-Men Days of Future Past", + "year": 2014, + "posterUrl": "/library/metadata/48737/thumb/1601888885", + "imdbId": "tt1877832", + "language": "en", + "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 – to save our future.", + "moviesInCollection": [], + "ratingKey": 48737, + "key": "/library/metadata/48737", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 127585 + }, + { + "name": "Dragon Ball Z Bio-Broly", + "year": 1994, + "posterUrl": "/library/metadata/48759/thumb/1601866890", + "imdbId": "tt0142234", + "language": "en", + "overview": "Jaga Bada, Mr. Satan's old sparring partner, has invited Satan to his personal island to hold a grudge match. Trunks and Goten decide to come for the adventure and Android #18 is following Satan for the money he owes her. Little do they know that Jaga Bada's scientist have found a way to resurrect Broly, the legendary Super Saiyan.", + "moviesInCollection": [], + "ratingKey": 48759, + "key": "/library/metadata/48759", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39106 + }, + { + "name": "Dragon Ball Z The World's Strongest", + "year": 1990, + "posterUrl": "/library/metadata/48779/thumb/1601867458", + "imdbId": "tt0142240", + "language": "en", + "overview": "The evil Dr. Kochin uses the dragon balls to resurrect his mentor, Dr. Wheelo, in an effort to take over the world. Dr. Wheelo, his body having been destroyed by the avalanche that killed him fifty years before, desires the body of the strongest fighter in the world as his new vessel. Believing Roshi to be the world's strongest warrior, Dr. Kochin abducts Bulma and forces Roshi to surrender himself to save her. When Goku hears of their abduction, he goes to their rescue.", + "moviesInCollection": [], + "ratingKey": 48779, + "key": "/library/metadata/48779", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39100 + }, + { + "name": "Dragon Ball Curse of the Blood Rubies", + "year": 1986, + "posterUrl": "/library/metadata/48754/thumb/1601866106", + "imdbId": "tt0142251", + "language": "en", + "overview": "The great King Gurumes is searching for the Dragon Balls in order to put a stop to his endless hunger. A young girl named Pansy who lives in the nearby village has had enough of the treachery and decides to seek Muten Rōshi for assistance. Can our heroes save the village and put a stop to the Gurumes Army?", + "moviesInCollection": [], + "ratingKey": 48754, + "key": "/library/metadata/48754", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39144 + }, + { + "name": "Dragon Ball Mystical Adventure", + "year": 1988, + "posterUrl": "/library/metadata/48748/thumb/1601866053", + "imdbId": "tt0142248", + "language": "en", + "overview": "Master Roshi has succeeded at the one mission he valued most: to train Goku and Krillin to become ultimate fighters. So, he arranges for them to test their mettle at a competition hosted by Emperor Chiaotzu. Not everyone's playing by the rules, however, as a member of the ruler's household schemes to use the Dragonballs to extort money and power from the royal.", + "moviesInCollection": [], + "ratingKey": 48748, + "key": "/library/metadata/48748", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 116776 + }, + { + "name": "Dragon Ball Z Lord Slug", + "year": 1991, + "posterUrl": "/library/metadata/48769/thumb/1601866969", + "imdbId": "tt0142244", + "language": "en", + "overview": "A Super Namekian named Slug comes to invade Earth. But the Z Warriors do their best to stop Slug and his gang.", + "moviesInCollection": [], + "ratingKey": 48769, + "key": "/library/metadata/48769", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39102 + }, + { + "name": "X-Men", + "year": 2000, + "posterUrl": "/library/metadata/48735/thumb/1601888898", + "imdbId": "tt0120903", + "language": "en", + "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.", + "moviesInCollection": [], + "ratingKey": 48735, + "key": "/library/metadata/48735", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 36657 + }, + { + "name": "Dragon Ball Z Bardock - The Father of Goku", + "year": 1990, + "posterUrl": "/library/metadata/48734/thumb/1601865971", + "imdbId": "tt0142245", + "language": "en", + "overview": "Bardock, Son Goku's father, is a low-ranking Saiyan soldier who was given the power to see into the future by the last remaining alien on a planet he just destroyed. He witnesses the destruction of his race and must now do his best to stop Frieza's impending massacre.", + "moviesInCollection": [], + "ratingKey": 48734, + "key": "/library/metadata/48734", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39323 + }, + { + "name": "Dragon Ball Z Battle of Gods", + "year": 2013, + "posterUrl": "/library/metadata/48749/thumb/1601866054", + "imdbId": "tt2263944", + "language": "en", + "overview": "The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. After awakening from a long slumber, Beerus, the God of Destruction is visited by Whis, his attendant and learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai's advice and battles Beerus, but he is easily overwhelmed and defeated. Beerus leaves, but his eerie remark of \"Is there nobody on Earth more worthy to destroy?\" lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost.", + "moviesInCollection": [], + "ratingKey": 48749, + "key": "/library/metadata/48749", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 126963 + }, + { + "name": "Dragon Ball Z The Return of Cooler", + "year": 1992, + "posterUrl": "/library/metadata/48775/thumb/1601867335", + "imdbId": "tt0142237", + "language": "en", + "overview": "Cooler has resurrected himself as a robot and is enslaving the people of New Namek. Goku and the gang must help.", + "moviesInCollection": [], + "ratingKey": 48775, + "key": "/library/metadata/48775", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39103 + }, + { + "name": "Dragon Ball Z Bojack Unbound", + "year": 1993, + "posterUrl": "/library/metadata/48760/thumb/1601866897", + "imdbId": "tt0142238", + "language": "en", + "overview": "Mr. Money is holding another World Martial Arts Tournament and Mr. Satan invites everyone in the world to join in. Little does he know that Bojack, an ancient villain who has escaped his prison, is competing. Since Goku is currently dead, it is up to Gohan, Vegeta, and Trunks to defeat Bojack and his henchman.", + "moviesInCollection": [], + "ratingKey": 48760, + "key": "/library/metadata/48760", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39105 + }, + { + "name": "Dragon Ball Z Resurrection 'F'", + "year": 2015, + "posterUrl": "/library/metadata/48770/thumb/1601867255", + "imdbId": "tt3819668", + "language": "en", + "overview": "One peaceful day on Earth, two remnants of Frieza's army named Sorbet and Tagoma arrive searching for the Dragon Balls with the aim of reviving Frieza. They succeed, and Frieza subsequently seeks revenge on the Saiyans.", + "moviesInCollection": [], + "ratingKey": 48770, + "key": "/library/metadata/48770", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 303857 + }, + { + "name": "Dragon Ball Z The History of Trunks", + "year": 1993, + "posterUrl": "/library/metadata/48777/thumb/1601867430", + "imdbId": "tt0142247", + "language": "en", + "overview": "It has been thirteen years since the Androids began their killing rampage and Son Gohan is the only person fighting back. He takes Bulma's son Trunks as a student and even gives his own life to save Trunks's. Now Trunks must figure out a way to change this apocalyptic future", + "moviesInCollection": [], + "ratingKey": 48777, + "key": "/library/metadata/48777", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39324 + }, + { + "name": "Dragon Ball Z Wrath of the Dragon", + "year": 1995, + "posterUrl": "/library/metadata/48780/thumb/1601867465", + "imdbId": "tt0142243", + "language": "en", + "overview": "The Z Warriors discover an unopenable music box and are told to open it with the Dragon Balls. The contents turn out to be a warrior named Tapion who had sealed himself inside along with a monster called Hildegarn. Goku must now perfect a new technique to defeat the evil monster.", + "moviesInCollection": [], + "ratingKey": 48780, + "key": "/library/metadata/48780", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39108 + }, + { + "name": "Dragon Ball Z Cooler's Revenge", + "year": 1991, + "posterUrl": "/library/metadata/48765/thumb/1601866926", + "imdbId": "tt1125254", + "language": "en", + "overview": "After defeating Frieza, Goku returns to Earth and goes on a camping trip with Gohan and Krillin. Everything is normal until Cooler - Frieza's brother - sends three henchmen after Goku. A long fight ensues between our heroes and Cooler, in which he transforms into the fourth stage of his evolution and has the edge in the fight... until Goku transforms into a Super Saiyan.", + "moviesInCollection": [], + "ratingKey": 48765, + "key": "/library/metadata/48765", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 24752 + }, + { + "name": "Dragon Ball Z Fusion Reborn", + "year": 1995, + "posterUrl": "/library/metadata/48768/thumb/1601866949", + "imdbId": "tt0142236", + "language": "en", + "overview": "Not paying attention to his job, a young demon allows the evil cleansing machine to overflow and explode, turning the young demon into the infamous monster Janemba. Goku and Vegeta make solo attempts to defeat the monster, but realize their only option is fusion.", + "moviesInCollection": [], + "ratingKey": 48768, + "key": "/library/metadata/48768", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39107 + }, + { + "name": "Dragon Ball The Path to Power", + "year": 1996, + "posterUrl": "/library/metadata/48755/thumb/1601866122", + "imdbId": "tt0142250", + "language": "en", + "overview": "A retelling of Dragon Ball's origin with a different take on the meeting of Goku, Bulma, and Kame-Sen'nin. It also retells the Red Ribbon Army story; but this time they find Goku rather than Goku finding them.", + "moviesInCollection": [], + "ratingKey": 48755, + "key": "/library/metadata/48755", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39148 + }, + { + "name": "Dragon Ball Super Broly", + "year": 2018, + "posterUrl": "/library/metadata/48753/thumb/1601866095", + "imdbId": "tt7961060", + "language": "en", + "overview": "Earth is peaceful following the Tournament of Power. Realizing that the universes still hold many more strong people yet to see, Goku spends all his days training to reach even greater heights. Then one day, Goku and Vegeta are faced by a Saiyan called 'Broly' who they've never seen before. The Saiyans were supposed to have been almost completely wiped out in the destruction of Planet Vegeta, so what's this one doing on Earth? This encounter between the three Saiyans who have followed completely different destinies turns into a stupendous battle, with even Frieza (back from Hell) getting caught up in the mix.", + "moviesInCollection": [], + "ratingKey": 48753, + "key": "/library/metadata/48753", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 503314 + }, + { + "name": "Dragon Ball Z Super Android 13!", + "year": 1992, + "posterUrl": "/library/metadata/48776/thumb/1601867343", + "imdbId": "tt0142241", + "language": "en", + "overview": "Dr. Gero's Androids #13, #14, and #15 are awakened by the laboratory computers and immediately head to the mall where Goku is shopping. After Goku, Trunks, and Vegeta defeat #14 and #15, #13 absorbs their inner computers and becomes a super being greater than the original three separately were. Now it is up to Goku to stop him.", + "moviesInCollection": [], + "ratingKey": 48776, + "key": "/library/metadata/48776", + "collectionTitle": "", + "collectionId": -1, + "tmdbId": 39104 + } + ] +} \ No newline at end of file diff --git a/cypress/integration/common.js b/cypress/integration/common.js index cb83c6b0..a242a77c 100755 --- a/cypress/integration/common.js +++ b/cypress/integration/common.js @@ -31,66 +31,6 @@ export function spyOnAddEventListener(win) { }; } -export function searchPlexForMoviesFromSaw(cy) { - cy.get('#dropdownMenuLink') - .click(); - - cy.get('[data-key="2"]') - .first() - .click(); - - cy.get('.card-body > .btn') - .click(); - - cy.get('label > input') - .clear() - .type('Saw'); - - cy.get('#movies_info') - .should('have.text', 'Showing 1 to 1 of 1 entries'); - - cy.get('.card-img') - .should('be.visible') - .and(($img) => { - // "naturalWidth" and "naturalHeight" are set when the image loads - expect($img[0].naturalWidth).to.be.greaterThan(0); - }); -} - -export function searchPlexForMoviesFromBestMovies(cy) { - cy.get('#dropdownMenuLink') - .click(); - - cy.get('[data-key="5"]') - .first() - .click(); - - cy.get('.card-body > .btn') - .click(); - - // Wait for timeout from clearing data - cy.wait(5000); -} - -export function searchPlexForMoviesFromMovies(cy) { - cy.get('#dropdownMenuLink') - .click(); - - cy.get('[data-key="1"]') - .first() - .click(); - - cy.get('.card-body > .btn') - .click(); - - cy.get('label > input') - .clear() - .type('Gods'); - - cy.get('#movies_info') - .should('have.text', 'Showing 1 to 1 of 1 entries (filtered from 21 total entries)'); -} - export function nuke() { cy.request('PUT', '/nuke') .then((response) => { @@ -120,8 +60,8 @@ export function redLibraryBefore() { cy.get('#address') .clear() - .type(atob('MTkyLjE2OC4xLjk=')) - .should('have.value', atob('MTkyLjE2OC4xLjk=')); + .type(atob('MTkyLjE2OC4xLjg=')) + .should('have.value', atob('MTkyLjE2OC4xLjg=')); cy.get('#port') .clear() @@ -164,16 +104,19 @@ export function redLibraryBefore() { .should('not.be.visible'); // Define card here - cy.get('.card-header') - .should('have.text', 'Red'); + cy.get('[data-cy=Joker]') + .should('have.text', 'Joker'); - cy.get('.list-group > :nth-child(1)') + cy.get('[data-cy="Best Movies"]') .should('have.text', 'Best Movies'); - cy.get('.list-group > :nth-child(2)') + cy.get('[data-cy="Movies"]') + .should('have.text', 'Movies'); + + cy.get('[data-cy="Movies with new Metadata"]') .should('have.text', 'Movies with new Metadata'); - cy.get('.list-group > :nth-child(3)') + cy.get('[data-cy=Saw]') .should('have.text', 'Saw'); } diff --git a/cypress/integration/configuration/plex.spec.js b/cypress/integration/configuration/plex.spec.js index 6924120d..7756db0d 100755 --- a/cypress/integration/configuration/plex.spec.js +++ b/cypress/integration/configuration/plex.spec.js @@ -83,8 +83,8 @@ describe('Plex Configuration Tests', () => { it('Test valid new Plex Server', () => { cy.get('#address') .clear() - .type(atob('MTkyLjE2OC4xLjk=')) - .should('have.value', atob('MTkyLjE2OC4xLjk=')); + .type(atob('MTkyLjE2OC4xLjg=')) + .should('have.value', atob('MTkyLjE2OC4xLjg=')); cy.get('#port') .clear() @@ -178,8 +178,8 @@ describe('Plex Configuration Tests', () => { it('Save valid Plex Server', () => { cy.get('#address') .clear() - .type(atob('MTkyLjE2OC4xLjk=')) - .should('have.value', atob('MTkyLjE2OC4xLjk=')); + .type(atob('MTkyLjE2OC4xLjg=')) + .should('have.value', atob('MTkyLjE2OC4xLjg=')); cy.get('#port') .clear() @@ -220,15 +220,18 @@ describe('Plex Configuration Tests', () => { // Define card here cy.get('.card-header') - .should('have.text', 'Red'); + .should('have.text', 'Joker'); cy.get('.list-group > :nth-child(1)') .should('have.text', 'Best Movies'); cy.get('.list-group > :nth-child(2)') - .should('have.text', 'Movies with new Metadata'); + .should('have.text', 'Movies'); cy.get('.list-group > :nth-child(3)') + .should('have.text', 'Movies with new Metadata'); + + cy.get('.list-group > :nth-child(4)') .should('have.text', 'Saw'); }); @@ -293,8 +296,8 @@ describe('Plex Configuration Tests', () => { it('Save duplicate valid Plex Server', () => { cy.get('#address') .clear() - .type(atob('MTkyLjE2OC4xLjk=')) - .should('have.value', atob('MTkyLjE2OC4xLjk=')); + .type(atob('MTkyLjE2OC4xLjg=')) + .should('have.value', atob('MTkyLjE2OC4xLjg=')); cy.get('#port') .clear() @@ -335,21 +338,24 @@ describe('Plex Configuration Tests', () => { // Define card here cy.get('.card-header') - .should('have.text', 'Red'); + .should('have.text', 'Joker'); cy.get('.list-group > :nth-child(1)') .should('have.text', 'Best Movies'); cy.get('.list-group > :nth-child(2)') - .should('have.text', 'Movies with new Metadata'); + .should('have.text', 'Movies'); cy.get('.list-group > :nth-child(3)') + .should('have.text', 'Movies with new Metadata'); + + cy.get('.list-group > :nth-child(4)') .should('have.text', 'Saw'); cy.get('#address') .clear() - .type('192.168.1.9') - .should('have.value', '192.168.1.9'); + .type('192.168.1.8') + .should('have.value', '192.168.1.8'); cy.get('#port') .clear() diff --git a/cypress/integration/duplication/duplication.spec.js b/cypress/integration/duplication/duplication.spec.js index 7cf0e89f..ab05d46f 100644 --- a/cypress/integration/duplication/duplication.spec.js +++ b/cypress/integration/duplication/duplication.spec.js @@ -8,10 +8,12 @@ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* global cy, it, describe, before, expect */ +/* global cy, it, describe, beforeEach, expect */ /* eslint no-undef: "error" */ -import { redLibraryBefore, searchPlexForMoviesFromBestMovies, spyOnAddEventListener } from '../common.js'; +import { + nuke, redLibraryBefore, spyOnAddEventListener, +} from '../common.js'; function checkForDuplicates(ownedMovies, recommendedMovies) { cy.log(`recommendedMovies.length: ${recommendedMovies.length}`); @@ -39,7 +41,51 @@ function checkForDuplicates(ownedMovies, recommendedMovies) { function searchBestMovieLibrary(cy) { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); - searchPlexForMoviesFromBestMovies(cy); + cy.get('#dropdownMenuLink') + .click(); + + cy.get('[data-cy="Best Movies"]') + .first() + .click(); + + cy.get('[data-cy=searchForMovies]') + .click(); + + // Wait for timeout from clearing data + cy.wait(5000); + + cy.visit('/recommended', { onBeforeLoad: spyOnAddEventListener }); + + cy.get('#dropdownMenuLink') + .click(); + + cy.get('[data-cy="Best Movies"]') + .first() + .click(); + + cy.get('[data-cy=searchForMovies]') + .click(); +} + +function searchMovieWithNewMetadataLibrary(cy) { + cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); + + cy.get('#dropdownMenuLink') + .click(); + + cy.get('[data-cy="Movies with new Metadata"]') + .first() + .click(); + + cy.get('[data-cy=searchForMovies]') + .click(); + + cy.get('label > input') + .clear() + .type('God'); + + cy.get('#movies_info') + .contains('Showing 1 to 1 of 1 entries'); cy.visit('/recommended', { onBeforeLoad: spyOnAddEventListener }); } @@ -56,58 +102,36 @@ function waitUtilSearchingIsDone() { } describe('Search for Duplicates', () => { - before(redLibraryBefore); + beforeEach(nuke); + beforeEach(redLibraryBefore); it('Check Best Movies and Recommended for Duplicates', () => { searchBestMovieLibrary(cy); - cy.get('#dropdownMenuLink') - .click(); - - cy.get('[data-key="5"]') - .first() - .click(); - - cy.get('.card-body > .btn') - .click(); - waitUtilSearchingIsDone(); let ownedMovies; - cy.request('/plex/movies/721fee4db63634b88ed699f8b0a16d7682a7a0d9/5') + cy.request('/plex/movies/c51c432ae94e316d52570550f915ecbcd71bede8/1') .then((resp) => { ownedMovies = resp.body; cy.log(`ownedMovies.length: ${ownedMovies.length}`); - }).request('/recommended/721fee4db63634b88ed699f8b0a16d7682a7a0d9/5') + }).request('/recommended/c51c432ae94e316d52570550f915ecbcd71bede8/1') .then((resp) => { const recommendedMovies = resp.body.extras; checkForDuplicates(ownedMovies, recommendedMovies); }); }); - it('Check Saw and Recommended for Duplicates', () => { - waitUtilSearchingIsDone(); - - let ownedMovies; - cy.request('/plex/movies/721fee4db63634b88ed699f8b0a16d7682a7a0d9/2') - .then((resp) => { - ownedMovies = resp.body; - cy.log(`ownedMovies.length: ${ownedMovies.length}`); - }).request('/recommended/721fee4db63634b88ed699f8b0a16d7682a7a0d9/2') - .then((resp) => { - const recommendedMovies = resp.body.extras; - checkForDuplicates(ownedMovies, recommendedMovies); - }); - }); + it('Check Movies with new Metatdata and Recommended for Duplicates', () => { + searchMovieWithNewMetadataLibrary(cy); - it('Check Movies and Recommended for Duplicates', () => { waitUtilSearchingIsDone(); let ownedMovies; - cy.request('/plex/movies/721fee4db63634b88ed699f8b0a16d7682a7a0d9/1') + cy.request('/plex/movies/c51c432ae94e316d52570550f915ecbcd71bede8/4') .then((resp) => { ownedMovies = resp.body; - }).request('/recommended/721fee4db63634b88ed699f8b0a16d7682a7a0d9/1') + }).request('/recommended/c51c432ae94e316d52570550f915ecbcd71bede8/4') .then((resp) => { const recommendedMovies = resp.body.extras; checkForDuplicates(ownedMovies, recommendedMovies); diff --git a/cypress/integration/libraries/api.js b/cypress/integration/libraries/api.js index e56566ec..1aa912fa 100644 --- a/cypress/integration/libraries/api.js +++ b/cypress/integration/libraries/api.js @@ -12,13 +12,24 @@ /* eslint no-undef: "error" */ import { - nuke, redLibraryBefore, searchPlexForMoviesFromSaw, spyOnAddEventListener, + nuke, redLibraryBefore, spyOnAddEventListener, } from '../common.js'; function searchSawLibrary(cy) { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); - searchPlexForMoviesFromSaw(cy); + cy.get('#dropdownMenuLink') + .click(); + + cy.get('[data-cy=Saw]') + .first() + .click(); + + cy.get('[data-cy=searchForMovies]') + .click(); + + cy.get('#movies_info') + .should('have.text', 'Showing 1 to 1 of 1 entries'); cy.visit('/recommended', { onBeforeLoad: spyOnAddEventListener }); } @@ -33,13 +44,12 @@ describe('Library API', () => { }); }); - before(nuke); before(redLibraryBefore); - it('Get library Red - Saw', () => { + it('Get library Joker - Saw', () => { searchSawLibrary(cy); - cy.request('/libraries/721fee4db63634b88ed699f8b0a16d7682a7a0d9/2') + cy.request('/libraries/c51c432ae94e316d52570550f915ecbcd71bede8/5') .then((resp) => { cy.log(resp.body); const result = resp.body; @@ -52,8 +62,8 @@ describe('Plex Movie List API', () => { beforeEach(nuke); beforeEach(redLibraryBefore); - it('Get library Red - Saw', () => { - cy.request('/plex/movies/721fee4db63634b88ed699f8b0a16d7682a7a0d9/2') + it('Get library Joker - Saw', () => { + cy.request('/plex/movies/c51c432ae94e316d52570550f915ecbcd71bede8/5') .then((resp) => { cy.log(resp.body); const result = resp.body; diff --git a/cypress/integration/libraries/empty.js b/cypress/integration/libraries/empty.js index faaf07c9..d4d06e28 100755 --- a/cypress/integration/libraries/empty.js +++ b/cypress/integration/libraries/empty.js @@ -20,14 +20,14 @@ describe('Not Searched Yet Library', () => { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); cy.get('#libraryTitle') - .contains('Red'); + .contains('Joker'); cy.get('#dropdownMenuLink') .should('have.text', 'Libraries'); - cy.get('[data-key="1"]') + cy.get('[data-cy="Movies with new Metadata"]') .first() - .should('have.text', 'Red - Movies with new Metadata'); + .should('have.text', 'Joker - Movies with new Metadata'); cy.get('.card-img-top') .should('be.visible'); diff --git a/cypress/integration/libraries/searchOwnedMovies.js b/cypress/integration/libraries/searchOwnedMovies.js index a6940807..02aa97a6 100755 --- a/cypress/integration/libraries/searchOwnedMovies.js +++ b/cypress/integration/libraries/searchOwnedMovies.js @@ -12,32 +12,48 @@ /* eslint no-undef: "error" */ import { - jokerLibraryBefore, redLibraryBefore, searchPlexForMoviesFromSaw, spyOnAddEventListener, + redLibraryBefore, nuke, spyOnAddEventListener, } from '../common.js'; describe('Find owned movies', () => { + before(nuke); before(redLibraryBefore); - it('Find Movies', () => { + it('Find Saw Movies', () => { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); - searchPlexForMoviesFromSaw(cy); + cy.get('#dropdownMenuLink') + .click(); + + cy.get('[data-cy=Saw]') + .first() + .click(); + + cy.get('[data-cy=searchForMovies]') + .click(); + + cy.get('label > input') + .clear() + .type('Saw'); + + cy.get('#movies_info') + .should('have.text', 'Showing 1 to 1 of 1 entries'); }); - it('Refresh Movies', () => { + it('Refresh Saw Movies', () => { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); cy.get('#dropdownMenuLink') .click(); - cy.get('[data-key="1"]') + cy.get('[data-cy="Best Movies"]') .first() .click(); cy.get('#dropdownMenuLink') .click(); - cy.get('[data-key="2"]') + cy.get('[data-cy=Saw]') .first() .click(); @@ -56,13 +72,13 @@ describe('Find owned movies', () => { }); }); - it('Research Movies', () => { + it('Research Saw Movies', () => { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); cy.get('#dropdownMenuLink') .click(); - cy.get('[data-key="2"]') + cy.get('[data-cy=Saw]') .first() .click(); @@ -87,18 +103,16 @@ describe('Find owned movies', () => { }); }); - it('Regular Movies Empty', () => { - jokerLibraryBefore(); - + it('Movies with Metadata Empty', () => { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); cy.get('#dropdownMenuLink') .click(); - cy.get('[data-key="1"][data-machineidentifier="721fee4db63634b88ed699f8b0a16d7682a7a0d9"]') + cy.get('[data-cy="Movies with new Metadata"]') .click(); - cy.get('.card-body > .btn') + cy.get('[data-cy=searchForMovies]') .should('be.visible'); }); }); diff --git a/cypress/integration/notifications/discord.spec.js b/cypress/integration/notifications/discord.spec.js index 82f4b4b5..220c08fa 100644 --- a/cypress/integration/notifications/discord.spec.js +++ b/cypress/integration/notifications/discord.spec.js @@ -237,79 +237,6 @@ describe('Check Discord Notification Agent', () => { .should(CYPRESS_VALUES.notBeVisible); }); - it('Check saving and test Discord Notification', () => { - cy.visit('/configuration'); - - cy.get('#notificationTab') - .click(); - - cy.get('#discordShowHide') - .click(); - - checkElements('', CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, 'false'); - - cy.get('#discordWebHookUrl') - .clear() - .type(atob('aHR0cHM6Ly9kaXNjb3JkYXBwLmNvbS9hcGkvd2ViaG9va3MvNzU2MzExMTkwOTU0NTczOTU2L0Uwa25VRF91akxIQU5oZTA3MGEwYW9PMUNnMGRNQUV4Z1FBbEZGTS1GZUgwNnl3VGExLU42c2ZhREpQSC1lM2dDVEZz')) - .should('have.value', atob('aHR0cHM6Ly9kaXNjb3JkYXBwLmNvbS9hcGkvd2ViaG9va3MvNzU2MzExMTkwOTU0NTczOTU2L0Uwa25VRF91akxIQU5oZTA3MGEwYW9PMUNnMGRNQUV4Z1FBbEZGTS1GZUgwNnl3VGExLU42c2ZhREpQSC1lM2dDVEZz')); - - cy.get('#discordTmdbApiConnectionNotification') - .click(); - - cy.get('#discordPlexServerConnectionNotification') - .click(); - - cy.get('#discordPlexMetadataUpdateNotification') - .click(); - - cy.get('#discordPlexLibraryUpdateNotification') - .click(); - - cy.get('#discordGapsMissingCollectionsNotification') - .click(); - - cy.get('#discordEnabled') - .select('Enabled'); - - cy.get('#saveDiscord') - .click(); - - cy.get('#discordTestSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#discordTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#discordSaveSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#discordSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#discordSpinner') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#testDiscord') - .click(); - - cy.wait(2000); - - cy.get('#discordTestSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#discordTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#discordSaveSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#discordSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#discordSpinner') - .should(CYPRESS_VALUES.notBeVisible); - }); - it('Check Successful Saving and Failure Testing Discord Notification', () => { cy.visit('/configuration'); diff --git a/cypress/integration/notifications/email.spec.js b/cypress/integration/notifications/email.spec.js index f126d24e..c42823bb 100644 --- a/cypress/integration/notifications/email.spec.js +++ b/cypress/integration/notifications/email.spec.js @@ -399,118 +399,6 @@ describe('Check Email Notification Agent', () => { .should(CYPRESS_VALUES.notBeVisible); }); - it('Check saving and test Email Notification', () => { - cy.visit('/configuration'); - - cy.get('#notificationTab') - .click(); - - cy.get('#emailShowHide') - .click(); - - checkElements('', '', '', '', '', 0, 'smtp', 'true', 'false', CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, 'false'); - - cy.get('#emailUsername') - .clear() - .type(atob('amg1OTc1')) - .should('have.value', atob('amg1OTc1')); - - cy.get('#emailPassword') - .clear() - .type(atob('aWJnYnR3aXdyd2xvZWNucA==')) - .should('have.value', atob('aWJnYnR3aXdyd2xvZWNucA==')); - - cy.get('#emailMailTo') - .clear() - .type(atob('amg1OTc1QGdtYWlsLmNvbQ==')) - .should('have.value', atob('amg1OTc1QGdtYWlsLmNvbQ==')); - - cy.get('#emailMailFrom') - .clear() - .type(atob('amg1OTc1QGdtYWlsLmNvbQ==')) - .should('have.value', atob('amg1OTc1QGdtYWlsLmNvbQ==')); - - cy.get('#emailServer') - .clear() - .type(atob('c210cC5nbWFpbC5jb20=')) - .should('have.value', atob('c210cC5nbWFpbC5jb20=')); - - cy.get('#emailPort') - .clear() - .type(atob('NTg3')) - .should('have.value', atob('NTg3')); - - cy.get('#emailTransportProtocol') - .clear() - .type(atob('c210cA==')) - .should('have.value', atob('c210cA==')); - - cy.get('#emailSmtpAuth') - .clear() - .type(atob('amg1OTc1')) - .should('have.value', atob('amg1OTc1')); - - cy.get('#emailSmtpTlsEnabled') - .select('true') - .should('have.value', 'true'); - - cy.get('#emailTmdbApiConnectionNotification') - .click(); - - cy.get('#emailPlexServerConnectionNotification') - .click(); - - cy.get('#emailPlexMetadataUpdateNotification') - .click(); - - cy.get('#emailPlexLibraryUpdateNotification') - .click(); - - cy.get('#emailGapsMissingCollectionsNotification') - .click(); - - cy.get('#emailEnabled') - .select('Enabled'); - - cy.get('#saveEmail') - .click(); - - cy.get('#emailTestSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#emailTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#emailSaveSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#emailSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#emailSpinner') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#testEmail') - .click(); - - cy.wait(5000); - - cy.get('#emailTestSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#emailTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#emailSaveSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#emailSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#emailSpinner') - .should(CYPRESS_VALUES.notBeVisible); - }); - it('Check Successful Saving and Failure Testing Email Notification', () => { cy.visit('/configuration'); diff --git a/cypress/integration/notifications/gotify.spec.js b/cypress/integration/notifications/gotify.spec.js index a3a02f10..45c836ff 100644 --- a/cypress/integration/notifications/gotify.spec.js +++ b/cypress/integration/notifications/gotify.spec.js @@ -249,84 +249,6 @@ describe('Check Gotify Notification Agent', () => { .should(CYPRESS_VALUES.notBeVisible); }); - it('Check saving and test Gotify Notification', () => { - cy.visit('/configuration'); - - cy.get('#notificationTab') - .click(); - - cy.get('#gotifyShowHide') - .click(); - - checkElements('', '', CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, 'false'); - - cy.get('#gotifyAddress') - .clear() - .type(atob('aHR0cDovLzE5Mi4xNjguMS44OjgwNzA=')) - .should('have.value', atob('aHR0cDovLzE5Mi4xNjguMS44OjgwNzA=')); - - cy.get('#gotifyToken') - .clear() - .type(atob('QVJkbS55SHRQUTlhaW5i')) - .should('have.value', atob('QVJkbS55SHRQUTlhaW5i')); - - cy.get('#gotifyTmdbApiConnectionNotification') - .click(); - - cy.get('#gotifyPlexServerConnectionNotification') - .click(); - - cy.get('#gotifyPlexMetadataUpdateNotification') - .click(); - - cy.get('#gotifyPlexLibraryUpdateNotification') - .click(); - - cy.get('#gotifyGapsMissingCollectionsNotification') - .click(); - - cy.get('#gotifyEnabled') - .select('Enabled'); - - cy.get('#saveGotify') - .click(); - - cy.get('#gotifyTestSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#gotifyTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#gotifySaveSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#gotifySaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#gotifySpinner') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#testGotify') - .click(); - - cy.wait(2000); - - cy.get('#gotifyTestSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#gotifyTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#gotifySaveSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#gotifySaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#gotifySpinner') - .should(CYPRESS_VALUES.notBeVisible); - }); - it('Check Successful Saving and Failure Testing Gotify Notification', () => { cy.visit('/configuration'); diff --git a/cypress/integration/notifications/pushBullet.spec.js b/cypress/integration/notifications/pushBullet.spec.js index d8a2d4a2..cfb03996 100644 --- a/cypress/integration/notifications/pushBullet.spec.js +++ b/cypress/integration/notifications/pushBullet.spec.js @@ -249,84 +249,6 @@ describe('Check PushBullet Notification Agent', () => { .should(CYPRESS_VALUES.notBeVisible); }); - it('Check saving and test PushBullet Notification', () => { - cy.visit('/configuration'); - - cy.get('#notificationTab') - .click(); - - cy.get('#pushBulletShowHide') - .click(); - - checkElements('', '', CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, 'false'); - - cy.get('#pushBulletChannelTag') - .clear() - .type(atob('Z2Fwcw==')) - .should('have.value', atob('Z2Fwcw==')); - - cy.get('#pushBulletAccessToken') - .clear() - .type(atob('by5pdjBXbXRuTFdJM3hmaFRTTmh1dVF2Tm1vdlVGSHN6dA==')) - .should('have.value', atob('by5pdjBXbXRuTFdJM3hmaFRTTmh1dVF2Tm1vdlVGSHN6dA==')); - - cy.get('#pushBulletTmdbApiConnectionNotification') - .click(); - - cy.get('#pushBulletPlexServerConnectionNotification') - .click(); - - cy.get('#pushBulletPlexMetadataUpdateNotification') - .click(); - - cy.get('#pushBulletPlexLibraryUpdateNotification') - .click(); - - cy.get('#pushBulletGapsMissingCollectionsNotification') - .click(); - - cy.get('#pushBulletEnabled') - .select('Enabled'); - - cy.get('#savePushBullet') - .click(); - - cy.get('#pushBulletTestSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushBulletTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushBulletSaveSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#pushBulletSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushBulletSpinner') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#testPushBullet') - .click(); - - cy.wait(2000); - - cy.get('#pushBulletTestSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#pushBulletTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushBulletSaveSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushBulletSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushBulletSpinner') - .should(CYPRESS_VALUES.notBeVisible); - }); - it('Check Successful Saving and Failure Testing PushBullet Notification', () => { cy.visit('/configuration'); diff --git a/cypress/integration/notifications/pushOver.spec.js b/cypress/integration/notifications/pushOver.spec.js index f50042d6..ee648830 100644 --- a/cypress/integration/notifications/pushOver.spec.js +++ b/cypress/integration/notifications/pushOver.spec.js @@ -230,102 +230,6 @@ describe('Check PushOver Notification Agent', () => { .should(CYPRESS_VALUES.notBeVisible); }); - it('Check saving and test PushOver Notification', () => { - cy.visit('/configuration'); - - cy.get('#notificationTab') - .click(); - - cy.get('#pushOverShowHide') - .click(); - - checkElements('', '', 0, 'pushover', '0', '0', CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, 'false'); - - cy.get('#pushOverToken') - .clear() - .type(atob('YWM1ZjJya2JwejEyMnBqenNlMnBlbmJkdmYxZ2dh')) - .should('have.value', atob('YWM1ZjJya2JwejEyMnBqenNlMnBlbmJkdmYxZ2dh')); - - cy.get('#pushOverUser') - .clear() - .type(atob('dTdiemZkZW5kdmRqbnM1eXRrMmV3YjIxZDduaWJ5')) - .should('have.value', atob('dTdiemZkZW5kdmRqbnM1eXRrMmV3YjIxZDduaWJ5')); - - cy.get('#pushOverPriority') - .select('1') - .should('have.value', '1'); - - cy.get('#pushOverSound') - .select('spacealarm') - .should('have.value', 'spacealarm'); - - cy.get('#pushOverRetry') - .clear() - .type('1') - .should('have.value', '1'); - - cy.get('#pushOverExpire') - .clear() - .type('2') - .should('have.value', '2'); - - cy.get('#pushOverTmdbApiConnectionNotification') - .click(); - - cy.get('#pushOverPlexServerConnectionNotification') - .click(); - - cy.get('#pushOverPlexMetadataUpdateNotification') - .click(); - - cy.get('#pushOverPlexLibraryUpdateNotification') - .click(); - - cy.get('#pushOverGapsMissingCollectionsNotification') - .click(); - - cy.get('#pushOverEnabled') - .select('Enabled'); - - cy.get('#savePushOver') - .click(); - - cy.get('#pushOverTestSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushOverTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushOverSaveSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#pushOverSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushOverSpinner') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#testPushOver') - .click(); - - cy.wait(2000); - - cy.get('#pushOverTestSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#pushOverTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushOverSaveSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushOverSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#pushOverSpinner') - .should(CYPRESS_VALUES.notBeVisible); - }); - it('Check Successful Saving and Failure Testing PushOver Notification', () => { cy.visit('/configuration'); diff --git a/cypress/integration/notifications/slack.spec.js b/cypress/integration/notifications/slack.spec.js index 32a909bd..bcbd6469 100644 --- a/cypress/integration/notifications/slack.spec.js +++ b/cypress/integration/notifications/slack.spec.js @@ -188,79 +188,6 @@ describe('Check Slack Notification Agent', () => { .should(CYPRESS_VALUES.notBeVisible); }); - it('Check saving and test Slack Notification', () => { - cy.visit('/configuration'); - - cy.get('#notificationTab') - .click(); - - cy.get('#slackShowHide') - .click(); - - checkElements('', CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, 'false'); - - cy.get('#slackWebHookUrl') - .clear() - .type(atob('aHR0cHM6Ly9ob29rcy5zbGFjay5jb20vc2VydmljZXMvVDAxN1hSMEJNUlYvQjAxOEs0TkE3NjAvemsxcVVWMno1N0w4c3lqQ0ExUU8xRFFE')) - .should('have.value', atob('aHR0cHM6Ly9ob29rcy5zbGFjay5jb20vc2VydmljZXMvVDAxN1hSMEJNUlYvQjAxOEs0TkE3NjAvemsxcVVWMno1N0w4c3lqQ0ExUU8xRFFE')); - - cy.get('#slackTmdbApiConnectionNotification') - .click(); - - cy.get('#slackPlexServerConnectionNotification') - .click(); - - cy.get('#slackPlexMetadataUpdateNotification') - .click(); - - cy.get('#slackPlexLibraryUpdateNotification') - .click(); - - cy.get('#slackGapsMissingCollectionsNotification') - .click(); - - cy.get('#slackEnabled') - .select('Enabled'); - - cy.get('#saveSlack') - .click(); - - cy.get('#slackTestSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#slackTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#slackSaveSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#slackSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#slackSpinner') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#testSlack') - .click(); - - cy.wait(2000); - - cy.get('#slackTestSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#slackTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#slackSaveSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#slackSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#slackSpinner') - .should(CYPRESS_VALUES.notBeVisible); - }); - it('Check Successful Saving and Failure Testing Slack Notification', () => { cy.visit('/configuration'); diff --git a/cypress/integration/notifications/telegram.spec.js b/cypress/integration/notifications/telegram.spec.js index 36fe531a..8ea91831 100644 --- a/cypress/integration/notifications/telegram.spec.js +++ b/cypress/integration/notifications/telegram.spec.js @@ -180,84 +180,6 @@ describe('Check Telegram Notification Agent', () => { .should(CYPRESS_VALUES.notBeVisible); }); - it('Check saving and test Telegram Notification', () => { - cy.visit('/configuration'); - - cy.get('#notificationTab') - .click(); - - cy.get('#telegramShowHide') - .click(); - - checkElements('', '', CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, CYPRESS_VALUES.notBeChecked, 'false'); - - cy.get('#telegramBotId') - .clear() - .type(atob('MTMwMjEzOTExOTpBQUV1cGh0RXVvcFhhVHBpdGlHbFdDWS0zbDMzU0JrUGUybw==')) - .should('have.value', atob('MTMwMjEzOTExOTpBQUV1cGh0RXVvcFhhVHBpdGlHbFdDWS0zbDMzU0JrUGUybw==')); - - cy.get('#telegramChatId') - .clear() - .type(atob('MTA0MTA4MTMxNw==')) - .should('have.value', atob('MTA0MTA4MTMxNw==')); - - cy.get('#telegramTmdbApiConnectionNotification') - .click(); - - cy.get('#telegramPlexServerConnectionNotification') - .click(); - - cy.get('#telegramPlexMetadataUpdateNotification') - .click(); - - cy.get('#telegramPlexLibraryUpdateNotification') - .click(); - - cy.get('#telegramGapsMissingCollectionsNotification') - .click(); - - cy.get('#telegramEnabled') - .select('Enabled'); - - cy.get('#saveTelegram') - .click(); - - cy.get('#telegramTestSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#telegramTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#telegramSaveSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#telegramSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#telegramSpinner') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#testTelegram') - .click(); - - cy.wait(2000); - - cy.get('#telegramTestSuccess') - .should(CYPRESS_VALUES.beVisible); - - cy.get('#telegramTestError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#telegramSaveSuccess') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#telegramSaveError') - .should(CYPRESS_VALUES.notBeVisible); - - cy.get('#telegramSpinner') - .should(CYPRESS_VALUES.notBeVisible); - }); - it('Check Successful Saving and Failure Testing Telegram Notification', () => { cy.visit('/configuration'); diff --git a/cypress/integration/recommended/api.js b/cypress/integration/recommended/api.js index 23ea4a84..4273ad8b 100644 --- a/cypress/integration/recommended/api.js +++ b/cypress/integration/recommended/api.js @@ -8,17 +8,32 @@ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* global cy, describe, it, before, expect */ +/* global cy, describe, it, expect */ /* eslint no-undef: "error" */ import { - nuke, redLibraryBefore, searchPlexForMoviesFromSaw, spyOnAddEventListener, + redLibraryBefore, spyOnAddEventListener, } from '../common.js'; function searchSawLibrary(cy) { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); - searchPlexForMoviesFromSaw(cy); + cy.get('#dropdownMenuLink') + .click(); + + cy.get('[data-cy=Saw]') + .first() + .click(); + + cy.get('[data-cy=searchForMovies]') + .click(); + + cy.get('label > input') + .clear() + .type('Saw'); + + cy.get('#movies_info') + .should('have.text', 'Showing 1 to 1 of 1 entries'); cy.visit('/recommended', { onBeforeLoad: spyOnAddEventListener }); } @@ -33,13 +48,11 @@ describe('Recommended API', () => { }); }); - before(nuke); - before(redLibraryBefore); - it('Get library Red - Saw', () => { + redLibraryBefore(); searchSawLibrary(cy); - cy.request('/libraries/721fee4db63634b88ed699f8b0a16d7682a7a0d9/2') + cy.request('/libraries/c51c432ae94e316d52570550f915ecbcd71bede8/5') .then((resp) => { cy.log(resp.body); const result = resp.body; diff --git a/cypress/integration/recommended/empty.js b/cypress/integration/recommended/empty.js index ab8917c0..6d10346b 100755 --- a/cypress/integration/recommended/empty.js +++ b/cypress/integration/recommended/empty.js @@ -25,8 +25,8 @@ describe('Not Searched Yet Recommended', () => { cy.get('#dropdownMenuLink') .click(); - cy.get('[data-key="1"]') + cy.get('[data-cy="Movies with new Metadata"]') .first() - .should('have.text', 'Red - Movies with new Metadata'); + .should('have.text', 'Joker - Movies with new Metadata'); }); }); diff --git a/cypress/integration/recommended/searchRecommendedMovies.js b/cypress/integration/recommended/searchRecommendedMovies.js index 72ca8216..20b01a22 100755 --- a/cypress/integration/recommended/searchRecommendedMovies.js +++ b/cypress/integration/recommended/searchRecommendedMovies.js @@ -11,26 +11,42 @@ /* global cy, describe, it, beforeEach */ /* eslint no-undef: "error" */ -import { redLibraryBefore, searchPlexForMoviesFromSaw, spyOnAddEventListener } from '../common.js'; +import { nuke, redLibraryBefore, spyOnAddEventListener } from '../common.js'; function searchSawLibrary(cy) { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); - searchPlexForMoviesFromSaw(cy); + cy.get('#dropdownMenuLink') + .click(); + + cy.get('[data-cy=Saw]') + .first() + .click(); + + cy.get('[data-cy=searchForMovies]') + .click(); + + cy.get('label > input') + .clear() + .type('Saw'); + + cy.get('#movies_info') + .should('have.text', 'Showing 1 to 1 of 1 entries'); cy.visit('/recommended', { onBeforeLoad: spyOnAddEventListener }); } describe('Search for Recommended', () => { + beforeEach(nuke); beforeEach(redLibraryBefore); it('Clean configuration page load', () => { searchSawLibrary(cy); cy.get('#libraryTitle').then(($libraryTitle) => { - if ($libraryTitle.text() !== 'Red - Saw') { + if ($libraryTitle.text() !== 'Joker - Saw') { cy.get('#dropdownMenuLink').click(); - cy.get('[data-key="2"]') + cy.get('[data-cy=Saw]') .first() .click(); } @@ -46,11 +62,11 @@ describe('Search for Recommended', () => { cy.get('#dropdownMenuLink') .click(); - cy.get('[data-key="2"]') + cy.get('[data-cy=Saw]') .first() .click(); - cy.get('.card-body > .btn') + cy.get('[data-cy=searchForMovies]') .click(); cy.wait(5000); @@ -65,11 +81,11 @@ describe('Search for Recommended', () => { cy.get('#dropdownMenuLink') .click(); - cy.get('[data-key="2"]') + cy.get('[data-cy=Saw]') .first() .click(); - cy.get('.card-body > .btn') + cy.get('[data-cy=searchForMovies]') .click(); cy.wait(5000); diff --git a/cypress/integration/rss/rss.js b/cypress/integration/rss/rss.js index 706fb729..fe8257f7 100644 --- a/cypress/integration/rss/rss.js +++ b/cypress/integration/rss/rss.js @@ -11,12 +11,27 @@ /* global cy, describe, it, before, expect */ /* eslint no-undef: "error" */ -import { redLibraryBefore, searchPlexForMoviesFromSaw, spyOnAddEventListener } from '../common.js'; +import { redLibraryBefore, spyOnAddEventListener } from '../common.js'; function searchSawLibrary(cy) { cy.visit('/libraries', { onBeforeLoad: spyOnAddEventListener }); - searchPlexForMoviesFromSaw(cy); + cy.get('#dropdownMenuLink') + .click(); + + cy.get('[data-cy=Saw]') + .first() + .click(); + + cy.get('[data-cy=searchForMovies]') + .click(); + + cy.get('label > input') + .clear() + .type('Saw'); + + cy.get('#movies_info') + .should('have.text', 'Showing 1 to 1 of 1 entries'); cy.visit('/recommended', { onBeforeLoad: spyOnAddEventListener }); } @@ -30,11 +45,11 @@ describe('Searched RSS', () => { cy.get('#dropdownMenuLink') .click(); - cy.get('[data-key="2"]') + cy.get('[data-cy=Saw]') .first() .click(); - cy.get('.card-body > .btn') + cy.get('[data-cy=searchForMovies]') .click(); cy.wait(5000); @@ -44,7 +59,7 @@ describe('Searched RSS', () => { cy.visit('/rssCheck', { onBeforeLoad: spyOnAddEventListener }); - cy.request('/rss/721fee4db63634b88ed699f8b0a16d7682a7a0d9/2') + cy.request('/rss/c51c432ae94e316d52570550f915ecbcd71bede8/5') .then((resp) => { const result = resp.body; expect(result).to.have.lengthOf(7); From c4649f9df6c9a11dc01125782aced6ba6eb930d7 Mon Sep 17 00:00:00 2001 From: Jason House Date: Wed, 7 Oct 2020 23:17:32 +0900 Subject: [PATCH 2/9] More test clean up --- .../resources/templates/configuration.html | 2 +- .../main/resources/templates/libraries.html | 3 +- .../main/resources/templates/recommended.html | 3 +- cypress/fixtures/libraries.joker.1.json | 48377 +++++++++++++++- cypress/integration/common.js | 4 +- .../integration/configuration/tmdb.spec.js | 16 +- .../duplication/duplication.spec.js | 13 +- cypress/integration/libraries/api.js | 7 +- cypress/integration/libraries/empty.js | 5 +- .../libraries/searchOwnedMovies.js | 18 +- cypress/integration/navbar/navbar.js | 3 +- cypress/integration/recommended/api.js | 7 +- cypress/integration/recommended/empty.js | 3 +- .../recommended/searchRecommendedMovies.js | 27 +- cypress/integration/rss/rss.js | 6 +- 15 files changed, 48424 insertions(+), 70 deletions(-) diff --git a/GapsWeb/src/main/resources/templates/configuration.html b/GapsWeb/src/main/resources/templates/configuration.html index 90152220..d18f483a 100755 --- a/GapsWeb/src/main/resources/templates/configuration.html +++ b/GapsWeb/src/main/resources/templates/configuration.html @@ -111,7 +111,7 @@

Settings

- +
Please enter a Movie Database Key.
diff --git a/GapsWeb/src/main/resources/templates/libraries.html b/GapsWeb/src/main/resources/templates/libraries.html index e82b667c..5a13fc90 100755 --- a/GapsWeb/src/main/resources/templates/libraries.html +++ b/GapsWeb/src/main/resources/templates/libraries.html @@ -81,13 +81,14 @@

Libraries