diff --git a/DvdCollection.sln b/DvdCollection.sln new file mode 100644 index 0000000..e32dc70 --- /dev/null +++ b/DvdCollection.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33403.182 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DvdCollection", "DvdCollection\DvdCollection.csproj", "{0DF30FB0-0B1B-4972-9B0F-1B7D8A26A316}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0DF30FB0-0B1B-4972-9B0F-1B7D8A26A316}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0DF30FB0-0B1B-4972-9B0F-1B7D8A26A316}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0DF30FB0-0B1B-4972-9B0F-1B7D8A26A316}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0DF30FB0-0B1B-4972-9B0F-1B7D8A26A316}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1B975656-9FDB-42E5-8F83-6E77EE108AC3} + EndGlobalSection +EndGlobal diff --git a/DvdCollection/App.razor b/DvdCollection/App.razor new file mode 100644 index 0000000..6fd3ed1 --- /dev/null +++ b/DvdCollection/App.razor @@ -0,0 +1,12 @@ + + + + + + + Not found + +

Sorry, there's nothing at this address.

+
+
+
diff --git a/DvdCollection/Data/WeatherForecast.cs b/DvdCollection/Data/WeatherForecast.cs new file mode 100644 index 0000000..649abd9 --- /dev/null +++ b/DvdCollection/Data/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace DvdCollection.Data +{ + public class WeatherForecast + { + public DateOnly Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string Summary { get; set; } + } +} \ No newline at end of file diff --git a/DvdCollection/Data/WeatherForecastService.cs b/DvdCollection/Data/WeatherForecastService.cs new file mode 100644 index 0000000..044dd71 --- /dev/null +++ b/DvdCollection/Data/WeatherForecastService.cs @@ -0,0 +1,20 @@ +namespace DvdCollection.Data +{ + public class WeatherForecastService + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + public Task GetForecastAsync(DateOnly startDate) + { + return Task.FromResult(Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = startDate.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = Summaries[Random.Shared.Next(Summaries.Length)] + }).ToArray()); + } + } +} \ No newline at end of file diff --git a/DvdCollection/DvdCollection.csproj b/DvdCollection/DvdCollection.csproj new file mode 100644 index 0000000..4335320 --- /dev/null +++ b/DvdCollection/DvdCollection.csproj @@ -0,0 +1,14 @@ + + + + net7.0 + enable + + + + + PreserveNewest + + + + diff --git a/DvdCollection/Pages/Counter.razor b/DvdCollection/Pages/Counter.razor new file mode 100644 index 0000000..ef23cb3 --- /dev/null +++ b/DvdCollection/Pages/Counter.razor @@ -0,0 +1,18 @@ +@page "/counter" + +Counter + +

Counter

+ +

Current count: @currentCount

+ + + +@code { + private int currentCount = 0; + + private void IncrementCount() + { + currentCount++; + } +} diff --git a/DvdCollection/Pages/Dvd/Data/DvdEpisode.cs b/DvdCollection/Pages/Dvd/Data/DvdEpisode.cs new file mode 100644 index 0000000..f6a1fd7 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdEpisode.cs @@ -0,0 +1,22 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "episode", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdEpisode + { + [XmlElement(ElementName = "air_date", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Air_date { get; set; } + [XmlElement(ElementName = "episode_name", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Episode_name { get; set; } + [XmlElement(ElementName = "overview", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Overview { get; set; } + [XmlAttribute(AttributeName = "episode_number")] + public string Episode_number { get; set; } + [XmlAttribute(AttributeName = "id")] + public string Id { get; set; } + [XmlElement(ElementName = "location", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Location { get; set; } + [XmlElement(ElementName = "still_path", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Still_path { get; set; } + } + +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/DvdEpisodes.cs b/DvdCollection/Pages/Dvd/Data/DvdEpisodes.cs new file mode 100644 index 0000000..e549cbf --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdEpisodes.cs @@ -0,0 +1,12 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "episodes", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdEpisodes + { + [XmlElement(ElementName = "episode", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public List Episode { get; set; } + [XmlAttribute(AttributeName = "class")] + public string Class { get; set; } + } + +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/DvdList.cs b/DvdCollection/Pages/Dvd/Data/DvdList.cs new file mode 100644 index 0000000..2544305 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdList.cs @@ -0,0 +1,24 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "list", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdList + { + [XmlElement(ElementName = "movies", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public DvdMovies Movies { get; set; } + [XmlAttribute(AttributeName = "class")] + public string Class { get; set; } + [XmlAttribute(AttributeName = "id")] + public string Id { get; set; } + [XmlAttribute(AttributeName = "list_type")] + public string List_type { get; set; } + [XmlAttribute(AttributeName = "name")] + public string Name { get; set; } + [XmlAttribute(AttributeName = "order")] + public string Order { get; set; } + [XmlAttribute(AttributeName = "table")] + public string Table { get; set; } + [XmlElement(ElementName = "series", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public DvdSeriesParent Series { get; set; } + } + +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/DvdLists.cs b/DvdCollection/Pages/Dvd/Data/DvdLists.cs new file mode 100644 index 0000000..3dbc974 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdLists.cs @@ -0,0 +1,12 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "lists", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdLists + { + [XmlElement(ElementName = "list", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public List List { get; set; } + [XmlAttribute(AttributeName = "class")] + public string Class { get; set; } + } + +} diff --git a/DvdCollection/Pages/Dvd/Data/DvdMovie.cs b/DvdCollection/Pages/Dvd/Data/DvdMovie.cs new file mode 100644 index 0000000..ed24ec2 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdMovie.cs @@ -0,0 +1,60 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "movie", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdMovie + { + [XmlElement(ElementName = "actors", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Actors { get; set; } + [XmlElement(ElementName = "backdrop_path", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Backdrop_path { get; set; } + [XmlElement(ElementName = "cert", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Cert { get; set; } + [XmlElement(ElementName = "collectionId", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string CollectionId { get; set; } + [XmlElement(ElementName = "companies", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Companies { get; set; } + [XmlElement(ElementName = "description", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Description { get; set; } + [XmlElement(ElementName = "director", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Director { get; set; } + [XmlElement(ElementName = "duration", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Duration { get; set; } + [XmlElement(ElementName = "genre", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Genre { get; set; } + [XmlElement(ElementName = "poster_path", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Poster_path { get; set; } + [XmlElement(ElementName = "producer", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Producer { get; set; } + [XmlElement(ElementName = "production", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Production { get; set; } + [XmlElement(ElementName = "rating", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Rating { get; set; } + [XmlElement(ElementName = "title", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Title { get; set; } + [XmlElement(ElementName = "year", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Year { get; set; } + [XmlAttribute(AttributeName = "res_id")] + public string Res_id { get; set; } + [XmlAttribute(AttributeName = "format_id")] + public string Format_id { get; set; } + [XmlAttribute(AttributeName = "id")] + public string Id { get; set; } + [XmlAttribute(AttributeName = "imdb_id")] + public string Imdb_id { get; set; } + [XmlAttribute(AttributeName = "tmdb_id")] + public string Tmdb_id { get; set; } + [XmlElement(ElementName = "home", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Home { get; set; } + [XmlAttribute(AttributeName = "barcode")] + public string Barcode { get; set; } + [XmlElement(ElementName = "location", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Location { get; set; } + [XmlElement(ElementName = "custom_title", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Custom_title { get; set; } + [XmlElement(ElementName = "lent", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Lent { get; set; } + [XmlElement(ElementName = "last_seen", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Last_seen { get; set; } + } + +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/DvdMoviecollection.cs b/DvdCollection/Pages/Dvd/Data/DvdMoviecollection.cs new file mode 100644 index 0000000..a114714 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdMoviecollection.cs @@ -0,0 +1,20 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + + [XmlRoot(ElementName = "moviecollection", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdMoviecollection + { + [XmlElement(ElementName = "backup_time", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Backup_time { get; set; } + [XmlElement(ElementName = "lists", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public DvdLists Lists { get; set; } + [XmlElement(ElementName = "tags", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public DvdTags Tags { get; set; } + [XmlElement(ElementName = "version", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Version { get; set; } + [XmlAttribute(AttributeName = "xmlns")] + public string Xmlns { get; set; } + } + + +} diff --git a/DvdCollection/Pages/Dvd/Data/DvdMovies.cs b/DvdCollection/Pages/Dvd/Data/DvdMovies.cs new file mode 100644 index 0000000..548aec0 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdMovies.cs @@ -0,0 +1,11 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "movies", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdMovies + { + [XmlElement(ElementName = "movie", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public List Movie { get; set; } + [XmlAttribute(AttributeName = "class")] + public string Class { get; set; } + } +} diff --git a/DvdCollection/Pages/Dvd/Data/DvdSeason.cs b/DvdCollection/Pages/Dvd/Data/DvdSeason.cs new file mode 100644 index 0000000..bcbfcf0 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdSeason.cs @@ -0,0 +1,28 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "season", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdSeason + { + [XmlElement(ElementName = "air_date", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Air_date { get; set; } + [XmlElement(ElementName = "episodes", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public DvdEpisodes Episodes { get; set; } + [XmlElement(ElementName = "poster_path", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Poster_path { get; set; } + [XmlElement(ElementName = "season_name", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Season_name { get; set; } + [XmlAttribute(AttributeName = "res_id")] + public string Res_id { get; set; } + [XmlAttribute(AttributeName = "format_id")] + public string Format_id { get; set; } + [XmlAttribute(AttributeName = "id")] + public string Id { get; set; } + [XmlAttribute(AttributeName = "season_number")] + public string Season_number { get; set; } + [XmlAttribute(AttributeName = "tmdb_id")] + public string Tmdb_id { get; set; } + [XmlElement(ElementName = "overview", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Overview { get; set; } + } + +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/DvdSeasons.cs b/DvdCollection/Pages/Dvd/Data/DvdSeasons.cs new file mode 100644 index 0000000..646d819 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdSeasons.cs @@ -0,0 +1,12 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "seasons", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdSeasons + { + [XmlElement(ElementName = "season", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public List Season { get; set; } + [XmlAttribute(AttributeName = "class")] + public string Class { get; set; } + } + +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/DvdSeries.cs b/DvdCollection/Pages/Dvd/Data/DvdSeries.cs new file mode 100644 index 0000000..b1deb94 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdSeries.cs @@ -0,0 +1,40 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "series", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdSeries + { + [XmlElement(ElementName = "backdrop_path", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Backdrop_path { get; set; } + [XmlElement(ElementName = "created_by", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Created_by { get; set; } + [XmlElement(ElementName = "customTitle", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string CustomTitle { get; set; } + [XmlElement(ElementName = "episode_runtime", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Episode_runtime { get; set; } + [XmlElement(ElementName = "genres", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Genres { get; set; } + [XmlElement(ElementName = "homepage", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Homepage { get; set; } + [XmlElement(ElementName = "name", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Name { get; set; } + [XmlElement(ElementName = "networks", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Networks { get; set; } + [XmlElement(ElementName = "season_count", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Season_count { get; set; } + [XmlElement(ElementName = "countries", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Countries { get; set; } + [XmlElement(ElementName = "overview", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Overview { get; set; } + [XmlElement(ElementName = "poster_path", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Poster_path { get; set; } + [XmlElement(ElementName = "rating", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public string Rating { get; set; } + [XmlElement(ElementName = "seasons", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public DvdSeasons Seasons { get; set; } + [XmlAttribute(AttributeName = "id")] + public string Id { get; set; } + [XmlAttribute(AttributeName = "tmdb_id")] + public string Tmdb_id { get; set; } + } + +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/DvdSeriesParent.cs b/DvdCollection/Pages/Dvd/Data/DvdSeriesParent.cs new file mode 100644 index 0000000..1f70856 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdSeriesParent.cs @@ -0,0 +1,12 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "series", Namespace = "market://details?id=de.olbu.android.moviecollection")] + + public class DvdSeriesParent + { + [XmlAttribute(AttributeName = "class")] + public string Class { get; set; } + [XmlElement(ElementName = "series", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public List Series { get;set; } + } +} diff --git a/DvdCollection/Pages/Dvd/Data/DvdTag.cs b/DvdCollection/Pages/Dvd/Data/DvdTag.cs new file mode 100644 index 0000000..b457345 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdTag.cs @@ -0,0 +1,11 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "tag", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdTag + { + [XmlAttribute(AttributeName = "id")] + public string Id { get; set; } + [XmlAttribute(AttributeName = "name")] + public string Name { get; set; } + } +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/DvdTags.cs b/DvdCollection/Pages/Dvd/Data/DvdTags.cs new file mode 100644 index 0000000..63aab52 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/DvdTags.cs @@ -0,0 +1,11 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + [XmlRoot(ElementName = "tags", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public class DvdTags + { + [XmlElement(ElementName = "tag", Namespace = "market://details?id=de.olbu.android.moviecollection")] + public List Tag { get; set; } + [XmlAttribute(AttributeName = "class")] + public string Class { get; set; } + } +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/IMovieCollectionService.cs b/DvdCollection/Pages/Dvd/Data/IMovieCollectionService.cs new file mode 100644 index 0000000..4a2f609 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/IMovieCollectionService.cs @@ -0,0 +1,9 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + public interface IMovieCollectionService + { + DvdMoviecollection GetDvdMoviecollection(); + List GetDvdMovies(); + List GetDvdSeries(); + } +} \ No newline at end of file diff --git a/DvdCollection/Pages/Dvd/Data/MovieCollectionService.cs b/DvdCollection/Pages/Dvd/Data/MovieCollectionService.cs new file mode 100644 index 0000000..a646702 --- /dev/null +++ b/DvdCollection/Pages/Dvd/Data/MovieCollectionService.cs @@ -0,0 +1,29 @@ +namespace DvdCollection.Pages.Dvd.Data +{ + public class MovieCollectionService : IMovieCollectionService + { + public DvdMoviecollection GetDvdMoviecollection() + { + DvdMoviecollection dvdMoviecollection; + using (FileStream fs = new("moviecollection.xml", FileMode.Open, FileAccess.Read)) + { + XmlSerializer xmlSerializer = new(typeof(DvdMoviecollection)); + dvdMoviecollection = (DvdMoviecollection)xmlSerializer.Deserialize((Stream)fs); + } + return dvdMoviecollection; + } + public List GetDvdMovies() + { + DvdMoviecollection moviecollection = GetDvdMoviecollection(); + return moviecollection.Lists.List.FirstOrDefault(s => s.Table == "movies") + .Movies.Movie.OrderBy(s => s.Custom_title ?? s.Title).ToList(); + } + public List GetDvdSeries() + { + DvdMoviecollection dvdcollection = GetDvdMoviecollection(); + return dvdcollection.Lists.List.First(s => s.Table == "series") + .Series.Series.OrderBy(s => s.CustomTitle ?? s.Name).ToList(); + + } + } +} diff --git a/DvdCollection/Pages/Dvd/DvdIndex.razor b/DvdCollection/Pages/Dvd/DvdIndex.razor new file mode 100644 index 0000000..568744e --- /dev/null +++ b/DvdCollection/Pages/Dvd/DvdIndex.razor @@ -0,0 +1,17 @@ +@using Data +@inject IMovieCollectionService movieCollectionService + +@foreach (DvdMovie movie in movies) +{ + +} + +@code { + private IEnumerable movies { get; set; } + + protected override Task OnInitializedAsync() + { + movies = movieCollectionService.GetDvdMovies(); + return base.OnInitializedAsync(); + } +} diff --git a/DvdCollection/Pages/Dvd/EpisodeComponent.razor b/DvdCollection/Pages/Dvd/EpisodeComponent.razor new file mode 100644 index 0000000..12b32ae --- /dev/null +++ b/DvdCollection/Pages/Dvd/EpisodeComponent.razor @@ -0,0 +1,17 @@ +@using DvdCollection.Pages.Dvd.Data; +
+
+

@Episode.Episode_name

+
+
@Episode.Episode_number
+

@Episode.Overview

+
+
+
+ + +@code { + [Parameter] + public DvdEpisode Episode { get; set; } + +} diff --git a/DvdCollection/Pages/Dvd/EpisodesPopup.razor b/DvdCollection/Pages/Dvd/EpisodesPopup.razor new file mode 100644 index 0000000..1b2fd90 --- /dev/null +++ b/DvdCollection/Pages/Dvd/EpisodesPopup.razor @@ -0,0 +1,40 @@ +@using Dvd.Data +@{ + var showClass = IsVisible ? "d-block" : "d-none"; +} +@if (Series != null) +{ +
+
+ +
+
+} + +@code { + [Parameter] + public DvdSeries Series { get; set; } + private bool IsVisible { get; set; } = false; + + public void Close() + { + Series = null; + } + protected override void OnParametersSet() + { + IsVisible = Series != null; + base.OnParametersSet(); + } +} diff --git a/DvdCollection/Pages/Dvd/MovieComponent.razor b/DvdCollection/Pages/Dvd/MovieComponent.razor new file mode 100644 index 0000000..4f208fd --- /dev/null +++ b/DvdCollection/Pages/Dvd/MovieComponent.razor @@ -0,0 +1,16 @@ +@using DvdCollection.Pages.Dvd.Data; +
+
+

@title

+
+
@Movie.Genre
+

@Movie.Description

+
+
+
+@code { + [Parameter] + public DvdMovie Movie { get; set; } + + string title { get => Movie.Custom_title == null ? Movie.Title : Movie.Custom_title; } +} diff --git a/DvdCollection/Pages/Dvd/SeriesComponent.razor b/DvdCollection/Pages/Dvd/SeriesComponent.razor new file mode 100644 index 0000000..e558306 --- /dev/null +++ b/DvdCollection/Pages/Dvd/SeriesComponent.razor @@ -0,0 +1,28 @@ +@using DvdCollection.Pages.Dvd.Data; +
+
+

@Series.Name

+
+
@Series.Season_count seasonsEpisodes
+

@Series.Overview

+
+
+
+ +@if (_showDialog) +{ + +} +@code { + [Parameter] + public Dvd.Data.DvdSeries Series { get; set; } + + private EpisodesPopup _episodesPopup; + private bool _showDialog = false; + + public void ShowEpisodes() + { + _showDialog = true; + StateHasChanged(); + } +} diff --git a/DvdCollection/Pages/Dvd/SeriesIndex.razor b/DvdCollection/Pages/Dvd/SeriesIndex.razor new file mode 100644 index 0000000..d8f17dc --- /dev/null +++ b/DvdCollection/Pages/Dvd/SeriesIndex.razor @@ -0,0 +1,14 @@ +@page "/series" +@inject DvdCollection.Pages.Dvd.Data.IMovieCollectionService movieService + +@foreach (Dvd.Data.DvdSeries dvdSeries in series) +{ } +@code { + public IEnumerable series { get; set; } + + protected override Task OnInitializedAsync() + { + series = movieService.GetDvdSeries(); + return base.OnInitializedAsync(); + } +} diff --git a/DvdCollection/Pages/Error.cshtml b/DvdCollection/Pages/Error.cshtml new file mode 100644 index 0000000..50a7db1 --- /dev/null +++ b/DvdCollection/Pages/Error.cshtml @@ -0,0 +1,42 @@ +@page +@model DvdCollection.Pages.ErrorModel + + + + + + + + Error + + + + + +
+
+

Error.

+

An error occurred while processing your request.

+ + @if (Model.ShowRequestId) + { +

+ Request ID: @Model.RequestId +

+ } + +

Development Mode

+

+ Swapping to the Development environment displays detailed information about the error that occurred. +

+

+ The Development environment shouldn't be enabled for deployed applications. + It can result in displaying sensitive information from exceptions to end users. + For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development + and restarting the app. +

+
+
+ + + diff --git a/DvdCollection/Pages/Error.cshtml.cs b/DvdCollection/Pages/Error.cshtml.cs new file mode 100644 index 0000000..f5bbba2 --- /dev/null +++ b/DvdCollection/Pages/Error.cshtml.cs @@ -0,0 +1,27 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; +using System.Diagnostics; + +namespace DvdCollection.Pages +{ + [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] + [IgnoreAntiforgeryToken] + public class ErrorModel : PageModel + { + public string RequestId { get; set; } + + public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); + + private readonly ILogger _logger; + + public ErrorModel(ILogger logger) + { + _logger = logger; + } + + public void OnGet() + { + RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier; + } + } +} \ No newline at end of file diff --git a/DvdCollection/Pages/FetchData.razor b/DvdCollection/Pages/FetchData.razor new file mode 100644 index 0000000..0b145d7 --- /dev/null +++ b/DvdCollection/Pages/FetchData.razor @@ -0,0 +1,47 @@ +@page "/fetchdata" +@using DvdCollection.Data +@inject WeatherForecastService ForecastService + +Weather forecast + +

Weather forecast

+ +

This component demonstrates fetching data from a service.

+ +@if (forecasts == null) +{ +

Loading...

+} +else +{ + + + + + + + + + + + @foreach (var forecast in forecasts) + { + + + + + + + } + +
DateTemp. (C)Temp. (F)Summary
@forecast.Date.ToShortDateString()@forecast.TemperatureC@forecast.TemperatureF@forecast.Summary
+} + +@code { + private WeatherForecast[] forecasts; + + protected override async Task OnInitializedAsync() + { + forecasts = await ForecastService.GetForecastAsync(DateOnly.FromDateTime(DateTime.Now)); + } +} diff --git a/DvdCollection/Pages/Index.razor b/DvdCollection/Pages/Index.razor new file mode 100644 index 0000000..32c55ad --- /dev/null +++ b/DvdCollection/Pages/Index.razor @@ -0,0 +1,5 @@ +@page "/" + +Index + + \ No newline at end of file diff --git a/DvdCollection/Pages/_Host.cshtml b/DvdCollection/Pages/_Host.cshtml new file mode 100644 index 0000000..39eb3f9 --- /dev/null +++ b/DvdCollection/Pages/_Host.cshtml @@ -0,0 +1,34 @@ +@page "/" +@using Microsoft.AspNetCore.Components.Web +@namespace DvdCollection.Pages +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers + + + + + + + + + + + + + + + + +
+ + An error has occurred. This application may no longer respond until reloaded. + + + An unhandled exception has occurred. See browser dev tools for details. + + Reload + 🗙 +
+ + + + diff --git a/DvdCollection/Program.cs b/DvdCollection/Program.cs new file mode 100644 index 0000000..0b5d22d --- /dev/null +++ b/DvdCollection/Program.cs @@ -0,0 +1,44 @@ +global using System.Xml.Serialization; +using DvdCollection.Data; +using DvdCollection.Pages.Dvd.Data; +using Microsoft.AspNetCore.Components; +using Microsoft.AspNetCore.Components.Web; + + +namespace DvdCollection +{ + public class Program + { + public static void Main(string[] args) + { + var builder = WebApplication.CreateBuilder(args); + + // Add services to the container. + builder.Services.AddRazorPages(); + builder.Services.AddServerSideBlazor(); + builder.Services.AddSingleton(); + builder.Services.AddScoped(); + + var app = builder.Build(); + + // Configure the HTTP request pipeline. + if (!app.Environment.IsDevelopment()) + { + app.UseExceptionHandler("/Error"); + // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. + app.UseHsts(); + } + + app.UseHttpsRedirection(); + + app.UseStaticFiles(); + + app.UseRouting(); + + app.MapBlazorHub(); + app.MapFallbackToPage("/_Host"); + + app.Run(); + } + } +} \ No newline at end of file diff --git a/DvdCollection/Properties/launchSettings.json b/DvdCollection/Properties/launchSettings.json new file mode 100644 index 0000000..afba8fa --- /dev/null +++ b/DvdCollection/Properties/launchSettings.json @@ -0,0 +1,37 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:50129", + "sslPort": 44372 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://localhost:5222", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7172;http://localhost:5222", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/DvdCollection/Shared/MainLayout.razor b/DvdCollection/Shared/MainLayout.razor new file mode 100644 index 0000000..54c0332 --- /dev/null +++ b/DvdCollection/Shared/MainLayout.razor @@ -0,0 +1,14 @@ +@inherits LayoutComponentBase + +DvdCollection + +
+ +
+
+ @Body +
+
+
diff --git a/DvdCollection/Shared/MainLayout.razor.css b/DvdCollection/Shared/MainLayout.razor.css new file mode 100644 index 0000000..551e4b2 --- /dev/null +++ b/DvdCollection/Shared/MainLayout.razor.css @@ -0,0 +1,70 @@ +.page { + position: relative; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.sidebar { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row ::deep a, .top-row .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + } + + .top-row a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row:not(.auth) { + display: none; + } + + .top-row.auth { + justify-content: space-between; + } + + .top-row a, .top-row .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page { + flex-direction: row; + } + + .sidebar { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row, article { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} diff --git a/DvdCollection/Shared/NavMenu.razor b/DvdCollection/Shared/NavMenu.razor new file mode 100644 index 0000000..da18a18 --- /dev/null +++ b/DvdCollection/Shared/NavMenu.razor @@ -0,0 +1,32 @@ + + + + +@code { + private bool collapseNavMenu = true; + + private string NavMenuCssClass => collapseNavMenu ? "collapse" : null; + + private void ToggleNavMenu() + { + collapseNavMenu = !collapseNavMenu; + } +} diff --git a/DvdCollection/Shared/NavMenu.razor.css b/DvdCollection/Shared/NavMenu.razor.css new file mode 100644 index 0000000..604b7a1 --- /dev/null +++ b/DvdCollection/Shared/NavMenu.razor.css @@ -0,0 +1,68 @@ +.navbar-toggler { + background-color: rgba(255, 255, 255, 0.1); +} + +.top-row { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand { + font-size: 1.1rem; +} + +.oi { + width: 2rem; + font-size: 1.1rem; + vertical-align: text-top; + top: -2px; +} + +.nav-item { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type { + padding-top: 1rem; + } + + .nav-item:last-of-type { + padding-bottom: 1rem; + } + + .nav-item ::deep a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item ::deep a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item ::deep a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .navbar-toggler { + display: none; + } + + .collapse { + /* Never collapse the sidebar for wide screens */ + display: block; + } + + .nav-scrollable { + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/DvdCollection/Shared/SurveyPrompt.razor b/DvdCollection/Shared/SurveyPrompt.razor new file mode 100644 index 0000000..ec64baa --- /dev/null +++ b/DvdCollection/Shared/SurveyPrompt.razor @@ -0,0 +1,16 @@ +
+ + @Title + + + Please take our + brief survey + + and tell us what you think. +
+ +@code { + // Demonstrates how a parent component can supply parameters + [Parameter] + public string? Title { get; set; } +} diff --git a/DvdCollection/_Imports.razor b/DvdCollection/_Imports.razor new file mode 100644 index 0000000..4c8592e --- /dev/null +++ b/DvdCollection/_Imports.razor @@ -0,0 +1,11 @@ +@using System.Net.Http +@using Microsoft.AspNetCore.Authorization +@using Microsoft.AspNetCore.Components.Authorization +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.JSInterop +@using DvdCollection +@using DvdCollection.Shared +@using System.Xml.Serialization; diff --git a/DvdCollection/appsettings.Development.json b/DvdCollection/appsettings.Development.json new file mode 100644 index 0000000..770d3e9 --- /dev/null +++ b/DvdCollection/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "DetailedErrors": true, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/DvdCollection/appsettings.json b/DvdCollection/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/DvdCollection/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/DvdCollection/moviecollection.xml b/DvdCollection/moviecollection.xml new file mode 100644 index 0000000..5a56309 --- /dev/null +++ b/DvdCollection/moviecollection.xml @@ -0,0 +1,23512 @@ + + 2023-02-06 + + + + + $ +190#Clint Eastwood#Harry Callahan +11066#Hal Holbrook#Lieutenant Briggs +14312#Mitchell Ryan#Ofc. Charlie McCoy +15956#David Soul#Ofc. John Davis +21561#Tim Matheson#Ofc. Phil Sweet +151447#Kip Niven#Ofc. Red Astrachan +64119#Robert Urich#Ofc. Mike Grimes +44042#Felton Perry#Early Smith +13307#Margaret Avery#Prostitute +3414#Tony Giorgio#Frank Palancio +103716#Christine White#Carol McCoy + /bdQf4GBBb9NKHGGBibuW6oUifOi.jpg + US|R + 10456 + Warner Bros. Pictures + "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. + Ted Post + 124 + Action - Crime - Thriller - Drama - Mystery + /3gqV4jpKNFqxUWug3BRD6yUzSL1.jpg + Robert Daley + United States of America + 7.1 + Magnum Force + 1973 + + + $ +190#Clint Eastwood#Insp. Harry Callahan +66223#Sondra Locke#Jennifer Spencer +3798#Pat Hingle#Chief Jannings +18647#Bradford Dillman#Captain Briggs +197907#Paul Drake#Mick +77100#Audrie Neenan#Ray Parkins +14320#Jack Thibeau#Kruger +66200#Michael Currie#Lt. Donnelly +21925#Albert Popwell#Horace King +548089#Mark Keyloun#Officer Bennett +8657#Kevyn Major Howard#Hawkins + /oopJgSxY9UooC4asQtWOADpxI6h.jpg + 10456 + Warner Bros. Pictures + 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. + Clint Eastwood + 117 + Action - Crime - Thriller - Drama - Mystery + /pXRSzPXFOCKDisLO9jWJhm8Jr47.jpg + Clint Eastwood + United States of America + 6.5 + Sudden Impact + 1983 + + + $ +190#Clint Eastwood#Insp. Harry Callahan +66221#Tyne Daly#Insp. Kate Moore +14785#Harry Guardino#Lt. Al Bressler +18647#Bradford Dillman#Captain McKay +14786#John Mitchum#DiGiorgio +548085#DeVeren Bookwalter#Bobby Maxwell +15693#John Crawford#The Mayor +548087#Samantha Doane#Wanda +151442#Robert F. Hoy#Buchinski +45470#Jocelyn Jones#Miki +197500#M.G. Kelly#Father John + /yVJTG4nXUxdUJVK2y3md4miS6NN.jpg + 10456 + Warner Bros. Pictures + 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. + James Fargo + 96 + Action - Crime - Thriller + /mpiX5JtQc0zXnoMQpolaFwBP5Uf.jpg + Robert Daley + United States of America + 6.7 + The Enforcer + 1976 + + + $ +190#Clint Eastwood#Insp. Harry Callahan +14785#Harry Guardino#Lt. Al Bressler +14784#Reni Santoni#Insp. Chico Gonzalez +17580#John Vernon#The Mayor +14782#Andrew Robinson#Scorpio Killer +95564#John Larch#Chief +14786#John Mitchum#Insp. Frank DiGiorgio +14787#Mae Mercer#Mrs. Russell +14788#Lyn Edgington#Norma +14789#Ruth Kobart#Bus Driver +13263#Woodrow Parfrey#Mr. Jaffe + /t3OZS8yMs0NL4YgWWc04eXHTn1X.jpg + US|R + 10456 + Warner Bros. Pictures +Malpaso Productions + 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. + Don Siegel + 102 + Action - Crime - Thriller + http://www.warnerbros.com/dirty-harry/ + /2TADKc4GMMPdMrLXj0xJVgTvZJM.jpg + Don Siegel + United States of America + 7.5 + Dirty Harry + 1971 + + + $ +27763#Casper Van Dien#Johnny Rico +2133#Dina Meyer#Dizzy Flores +9205#Denise Richards#Carmen Ibañez +28410#Jake Busey#Private Ace Levy +41686#Neil Patrick Harris#Colonel Carl Jenkins +6574#Clancy Brown#Career Sergeant Zim +11086#Michael Ironside#Lieutenant Jean Rasczak +41687#Patrick Muldoon#Zander Barcalow +41688#Seth Gilliam#Private Sugar Watkins +41689#Rue McClanahan#Biology Teacher +41690#Blake Lindsley#Katrina McIntire + /cYWI1lnHEvoVKDdlrRt2b5et3Bj.jpg + 10522 + Touchstone Pictures +TriStar Pictures +Big Bug Pictures + 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". + Paul Verhoeven + 129 + Adventure - Action - Thriller - Science Fiction + /zeCD9WkhABFJmPq3SlTozXJGEtr.jpg + Jon Davison +Alan Marshall + United States of America + 6.8 + Starship Troopers + 1997 + + + $ +201838#Luci Christian#Captain Carmen Ibanez +149565#Justin Doran#Dr Carl Jenkins +207012#David Matranga#General Johnny Rico +159277#David Wald#Major Henry "Hero" Varro +1081918#Emily Neves#Trig +1083869#Sam Roman#Lieutenant Tony Daugherty (voice) +1083870#Jovan Jackson#Mech (voice) +1083871#Kalob Martinez#Holyman (voice) +1327613#Karl Glusman#Gunfodder (voice) + /4u7lPYOCxQxNPrSYJP8VGIYaBn7.jpg + 10522 + Sola Digital Arts +Stage 6 Films + 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.... + Shinji Aramaki + 89 + Animation - Action - Science Fiction + http://www.starshiptroopersinvasion-movie.com/ + /3znAWfEzXzR1slLKc9VQwtD6XmD.jpg + Joseph Chou + Japan +United States of America + 5.7 + Starship Troopers: Invasion + 2012 + + + $ +64805#Billy Brown#Pvt. Ottis Brick +25849#Richard Burgi#Capt. V.J. Dax +56447#Kelly Carlson#Pvt. Charlie Soda +64806#Cy Carter#Pvt. Billie Otter +65345#Sandrine Holt#Pvt. Jill Sandee +21523#Ed Lauter#Gen. Jack Gordon Shepherd +88702#J.P. Manoux#TSgt. Ari Peck +106752#Lawrence Monoson#Lt. Pavlov Dill +83983#Colleen Porch#Pvt. Lei Sahara +173995#Drew Powell#Pvt. Kipper Tor +53922#Ed Quinn#Cpl. Joe Griff + /elCm3CYwflEV6EaZdyf9zgS699i.jpg + 10522 + Startroop Pictures Inc. +Tippett Studio + 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. + Phil Tippett + 88 + Adventure - Horror - Action - Science Fiction + /xoQpKbnmGPuZub5NAPQq18hDEWA.jpg + Jon Davison + United States of America + 3.9 + Starship Troopers 2: Hero of the Federation + 2004 + + + $ +27763#Casper Van Dien#Johnny Rico +68276#Jolene Blalock#Lola Beck +76415#Stephen Hogan#Sky Marshal Omar Anoke +80758#Boris Kodjoe#Gen. Dix Hauser +18191#Amanda Donohoe#Admiral Enolo Phid +71519#Marnette Patterson#Holly Little +93919#Danny Keogh#Dr. Wiggs +37403#Stelio Savante#Chief Bull Brittles +59292#Cécile Breccia#Lt. Link Manion +1042811#Garth Breytenbach#Pvt. Slug Skinner +964159#Graeme Richards#Lt. A. Danner + /qGpwDDiKKKfAiwwsM1TaNDRLkq6.jpg + 10522 + Sony Pictures Home Entertainment +ApolloMovie Beteiligungs +Bold Films + 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. + Edward Neumeier + 105 + Adventure - Science Fiction - Action + /1ZAnyXWOlY0oz1zXaLs0quogUD2.jpg + David Lancaster + United States of America +South Africa +Germany + 4.4 + Starship Troopers 3: Marauder + 2008 + + + $ +62#Bruce Willis#John McClane +4566#Alan Rickman#Hans Gruber +7674#Alexander Godunov#Karl +7673#Bonnie Bedelia#Holly Gennero McClane +7672#Reginald VelJohnson#Sgt. Al Powell +7675#Paul Gleason#Deputy Police Chief Dwayne T. Robinson +7677#De'voreaux White#Argyle +7676#William Atherton#Richard Thornburg +51581#Clarence Gilyard Jr.#Theo +7678#Hart Bochner#Harry Ellis +4995#James Shigeta#Joseph Yoshinobu Takagi + /q4NRgTyah0KfxXB0P4DBk0lJR7P.jpg + US|R + 1570 + Gordon Company +Silver Pictures +20th Century Fox + 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. + John McTiernan + 131 + Action - Thriller + https://www.foxmovies.com/movies/die-hard + /mc7MubOLcIw3MDvnuQFrO9psfCa.jpg + Lawrence Gordon +Beau Marks +Joel Silver + United States of America + 7.6 + Die Hard + 1988 + + + $ +62#Bruce Willis#John McClane +7673#Bonnie Bedelia#Holly McClane +7676#William Atherton#Richard Thornburg +7672#Reginald VelJohnson#Sgt. Al Powell +22383#Franco Nero#General Ramon Esperanza +6573#William Sadler#Colonel Stuart +22384#John Amos#Major Grant +11901#Dennis Franz#Captain Carmine Lorenzo +56183#Art Evans#Leslie Barnes +17874#Fred Dalton Thompson#Trudeau +19453#Tom Bower#Marvin + /kywkOlRpYtfVlar41R1s8lO46vD.jpg + US|R + 1570 + Gordon Company +Silver Pictures +20th Century Fox + 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. + Renny Harlin + 124 + Action - Thriller + https://www.foxmovies.com/movies/die-hard-2 + /zSgL998DXaljsCmwQuwDM8Ak4rV.jpg + Joel Silver +Lawrence Gordon +Charles Gordon + United States of America + 6.8 + Die Hard 2 + 1990 + + + $ +62#Bruce Willis#John McClane +16940#Jeremy Irons#Simon Peter Gruber +2231#Samuel L. Jackson#Zeus Carver +6804#Graham Greene#Joe Lambert +13023#Colleen Camp#Connie Kowalski +17351#Larry Bryggman#Chief Cobb +141747#Anthony Peck#Ricky Walsh +91421#Nicholas Wyman#Targo +45337#Sam Phillips#Katya +34395#Kevin Chamberlin#Charles Weiss +141748#Sharon Washington#Officer Jane + /aJCEQFFXNcfg5YneJzTG15qzxF7.jpg + 1570 + Cinergi Pictures Entertainment +20th Century Fox + 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. + John McTiernan + 128 + Action - Thriller + https://www.foxmovies.com/movies/die-hard-with-a-vengeance + /ivpXGcsPZglyYrN65THWSD7JM3q.jpg + John McTiernan +Michael Tadross + United States of America + 7.1 + Die Hard: With a Vengeance + 1995 + + + $ +62#Bruce Willis#John McClane +15033#Justin Long#Matthew 'Matt' Farrell +18082#Timothy Olyphant#Thomas Gabriel +7248#Cliff Curtis#Bowman +21045#Maggie Q#Mai Linh +17628#Mary Elizabeth Winstead#Lucy McClane +19303#Kevin Smith#The Warlock +21049#Yancey Arias#Agent Johnson +1215689#Christina Chang#Taylor +21051#Yorgo Constantine#Russo +74124#Andrew Friedman#Casper + /74J904knbahSF7csIEfmRtmdi0t.jpg + 1570 + Dune Entertainment +Ingenious Film Partners +Cheyenne Enterprises + 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. + Len Wiseman + 128 + Action - Thriller + https://www.foxmovies.com/movies/live-free-or-die-hard + /pHWgbaXiQD2nmex7u8Xv6XmhaZS.jpg + Michael Fottrell + United Kingdom +United States of America + 6.5 + Live Free or Die Hard + 2007 + + + $ +62#Bruce Willis#John McClane +224181#Jai Courtney#Jack McClane +8197#Sebastian Koch#Komorov +17628#Mary Elizabeth Winstead#Lucy McClane +80998#Yuliya Snigir#Irina +230400#Radivoje Bukvić#Alik +6614#Cole Hauser#Collins +17341#Amaury Nolasco#Murphy +1150430#Sergey Kolesnikov#Chagarin +130903#Roman Luknár#Anton +64413#Zolee Ganxsta#Russian Mafia Member + /17zArExB7ztm6fjUXZwQWgGMC9f.jpg + US|R + 1570 + Mid Atlantic Films +Ingenious Media +Dune Entertainment + 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. + John Moore + 98 + Action - Thriller + http://www.diehardmovie.com/ + /c2SQMd00CCGTiDxGXVqA2J9lmzF.jpg + Alex Young, Wyck Godfrey + United States of America + 5.2 + A Good Day to Die Hard + 2013 + + + $ +5526#Georgie Henley#Lucy Pevensie +5527#Skandar Keynes#Edmund Pevensie +5528#William Moseley#Peter Pevensie +5529#Anna Popplewell#Susan Pevensie +3063#Tilda Swinton#White Witch +5530#James McAvoy#Mr. Tumnus +388#Jim Broadbent#Professor Kirke +5531#Kiran Shah#Ginarrbrik +2467#James Cosmo#Father Christmas +5532#Judy McIntosh#Mrs. Pevensie +5533#Elizabeth Hawthorne#Mrs. MacReady + /4ZwXJcUT3KdE8Kan9TJ7l0Rg5LG.jpg + US|PG + 420 + Walt Disney Pictures +Walden Media + 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. + Andrew Adamson + 143 + Adventure - Family - Fantasy + file:/storage/emulated/0/MovieCollection/poster/captured/1620869246707.jpg + Philip Steuer, Mark Johnson, David Minkowski, Matthew Stillman + United Kingdom +United States of America + 7.0 + The Chronicles of Narnia: The Lion, the Witch and the Wardrobe + 2005 + + + $ +5527#Skandar Keynes#Edmund Prevensie +5526#Georgie Henley#Lucy Pevensie +25130#Ben Barnes#Caspian +93491#Will Poulter#Eustace +11108#Simon Pegg#Reepicheep (Voice) +75170#Gary Sweet#Lord Drinian +107474#Arthur Angel#Rhince +3063#Tilda Swinton#The White Witch +143270#Tony Nixon#Rynelf +25134#Shane Rangi#Tavros the Minotaur +143271#Colin Moody#Auctioneer + /rB5SbbBEkMZYAS6MgoFp2CTxazo.jpg + 420 + Walden Media +Dune Entertainment +Fox 2000 Pictures + 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. + Michael Apted + 113 + Adventure - Family - Fantasy + /pRzEyrMSyvpHf92EhsVSg9Yr81t.jpg + Andrew Adamson +Mark Johnson +Cort Kristensen +Philip Steuer + United States of America + 6.3 + The Chronicles of Narnia: The Voyage of the Dawn Treader + 2010 + + + $ +25130#Ben Barnes#Prince Caspian +5526#Georgie Henley#Lucy Pevensie +5527#Skandar Keynes#Edmund Pevensie +5528#William Moseley#Peter Pevensie +5529#Anna Popplewell#Susan Pevensie +2166#Sergio Castellitto#King Miraz +22970#Peter Dinklage#Trumpkin +11184#Warwick Davis#Nikabrik +25133#Vincent Grass#Doktor Cornelius +17839#Pierfrancesco Favino#Lord Glozell +25135#Cornell John#Glenstorm + /eiET76GO3xECOic1rL8VcTLuy3L.jpg + US|PG + 420 + Walt Disney Pictures +Walden Media +Stillking Films + 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. + Andrew Adamson + 150 + Adventure - Family - Fantasy + /kSSyzqw9C4wUggicG4D81XmptR1.jpg + Andrew Adamson +Mark Johnson +Philip Steuer + Czech Republic +Poland +Slovenia + 6.5 + The Chronicles of Narnia: Prince Caspian + 2008 + + + $ +2467#James Cosmo#Narrator + Millions of readers have been captivated by C. S. Lewis’s famed Chronicles of Narnia, but why? What is it about these seven books that makes them so appealing? For more than half a century, scholars have attempted to find the organizing key—the “secret code”—to the beloved series, but it has remained a mystery. Until now. - See more at: http://www.narniacode.com/#sthash.JEOFD0cT.dpuf + Norman Stone + 59 + Documentary - Drama + /qO59zF8W5bzyzv8a1zFiIKSC5CQ.jpg + The Narnia Code + 2009 + + + $ +2#Mark Hamill#Luke Skywalker +3#Harrison Ford#Han Solo +4#Carrie Fisher#Princess Leia Organa +24343#Peter Mayhew#Chewbacca +6#Anthony Daniels#C-3PO +24342#David Prowse#Darth Vader (performer) +15152#James Earl Jones#Darth Vader (voice) +5#Peter Cushing#Grand Moff Tarkin +12248#Alec Guinness#Obi-Wan "Ben" Kenobi +33032#Phil Brown#Uncle Owen +131625#Shelagh Fraser#Aunt Beru + /4iJfYYoQzZcONB9hNzg0J0wWyPH.jpg + US|PG + 10 + Lucasfilm +20th Century Fox + 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. + George Lucas + 121 + Adventure - Action - Science Fiction + http://www.starwars.com/films/star-wars-episode-iv-a-new-hope + /btTdmkgIvOi0FFip1sPuZI2oQG6.jpg + Gary Kurtz, Rick McCallum + United States of America + 8.2 + Star Wars: Episode IV - A New Hope + 1977 + + + $ +3#Harrison Ford#Han Solo +4#Carrie Fisher#General Leia Organa +1315036#Daisy Ridley#Rey +1023139#Adam Driver#Kylo Ren +236695#John Boyega#Finn +25072#Oscar Isaac#Poe Dameron +1267329#Lupita Nyong'o#Maz Kanata +1333#Andy Serkis#Supreme Leader Snoke +93210#Domhnall Gleeson#General Armitage Hux +6#Anthony Daniels#C-3PO +24343#Peter Mayhew#Chewbacca + /njv65RTipNSTozFLuF85jL0bcQe.jpg + 10 + Truenorth Productions +Lucasfilm +Bad Robot + 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. + J.J. Abrams + 136 + Action - Adventure - Science Fiction - Fantasy + http://www.starwars.com/films/star-wars-episode-vii + /weUSwMdQIa3NaXVzwUoIIcAi85d.jpg + Bryan Burk +J.J. Abrams +Kathleen Kennedy + United States of America + 7.4 + Star Wars: The Force Awakens + 2015 + + + $ +72855#Felicity Jones#Jyn Erso +8688#Diego Luna#Captain Cassian Andor +77335#Ben Mendelsohn#Director Orson Krennic +1341#Donnie Yen#Chirrut Imwe +1019#Mads Mikkelsen#Galen Erso +21088#Alan Tudyk#K-2SO +53240#Riz Ahmed#Bodhi Rook +77301#Jiang Wen#Baze Malbus +2178#Forest Whitaker#Saw Gerrera +33181#Jimmy Smits#Bail Organa +139654#Genevieve O'Reilly#Mon Mothma + /tZjVVIYXACV4IIIhXeIM59ytqwS.jpg + US|PG-13 + Lucasfilm + A rogue band of resistance fighters unite for a mission to steal the Death Star plans and bring a new hope to the galaxy. + Gareth Edwards + 133 + Action - Adventure - Science Fiction + http://www.starwars.com/films/rogue-one + /qjiskwlV1qQzRCjpV0cL9pEMF9a.jpg + Simon Emanuel +Kathleen Kennedy +Allison Shearmur +Tony To + United States of America + 7.5 + Rogue One: A Star Wars Story + 2016 + + + $ +3896#Liam Neeson#Qui-Gon Jinn +3061#Ewan McGregor#Obi Wan Kenobi +524#Natalie Portman#Padmé Amidala +33196#Jake Lloyd#Anakin Skywalker +27762#Ian McDiarmid#Senator Palpatine +6#Anthony Daniels#C-3PO (voice) +130#Kenny Baker#R2-D2 +33190#Pernilla August#Shmi Skywalker +7908#Frank Oz#Yoda (voice) +31923#Oliver Ford Davies#Governor Sio Bibble +31925#Hugh Quarshie#Capt. Panaka + /v6lRzOActebITc9rizhNAdwQR1O.jpg + 10 + Lucasfilm + 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. + George Lucas + 136 + Adventure - Action - Science Fiction + http://www.starwars.com/films/star-wars-episode-i-the-phantom-menace + /n8V09dDc02KsSN6Q4hC2BX6hN8X.jpg + Rick McCallum + United States of America + 6.4 + Star Wars: Episode I - The Phantom Menace + 1999 + + + $ +2#Mark Hamill#Luke Skywalker +3#Harrison Ford#Han Solo +4#Carrie Fisher#Princess Leia +3799#Billy Dee Williams#Lando Calrissian +6#Anthony Daniels#C-3PO +24342#David Prowse#Darth Vader +130#Kenny Baker#R2-D2 +24343#Peter Mayhew#Chewbacca +7908#Frank Oz#Yoda (Voice) +15152#James Earl Jones#Darth Vader (Voice) +70772#Kathryn Mullen#Yoda (uncredited) + /amYkOxCwHiVTFKendcIW0rSrRlU.jpg + US|PG + 10 + Lucasfilm +20th Century Fox + 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. + Irvin Kershner + 124 + Adventure - Action - Science Fiction + http://www.starwars.com/films/star-wars-episode-v-the-empire-strikes-back + /9SKDSFbaM6LuGqG1aPWN3wYGEyD.jpg + Gary Kurtz, Howard G. Kazanjian + United States of America + 8.3 + Star Wars: Episode V - The Empire Strikes Back + 1980 + + + $ +3061#Ewan McGregor#Obi Wan Kenobi +524#Natalie Portman#Padmé Amidala +17244#Hayden Christensen#Anakin Skywalker +27762#Ian McDiarmid#Chancellor Palpatine +2231#Samuel L. Jackson#Mace Windu +113#Christopher Lee#Count Dooku +6#Anthony Daniels#C-3PO / Dannl Faytonni +130#Kenny Baker#R2-D2 +7908#Frank Oz#Yoda (Voice) +33197#Ahmed Best#Jar Jar Binks / Achk Med-Beq (voice) +33190#Pernilla August#Shmi Skywalker + /1Slt26IGf2XHqv8xjEJ7LMZqCYb.jpg + 10 + Lucasfilm + Ten years after the invasion of Naboo, the galaxy is on the brink of civil war. Under the leadership of a renegade Jedi named Count Dooku, thousands of solar systems threaten to break away from the Galactic Republic. When an assassination attempt is made on Senator Padmé Amidala, the former Queen of Naboo, twenty-year-old Jedi apprentice Anakin Skywalker is assigned to protect her. In the course of his mission, Anakin discovers his love for Padmé as well as his own darker side. Soon, Anakin, Padmé, and Obi-Wan Kenobi are drawn into the heart of the Separatist movement and the beginning of the Clone Wars. + George Lucas + 142 + Adventure - Action - Science Fiction + /2vcNFtrZXNwIcBgH5e2xXCmVR8t.jpg + George Lucas +Rick McCallum + United States of America + 6.5 + Star Wars: Episode II - Attack of the Clones + 2002 + + + $ +3061#Ewan McGregor#Obi-Wan Kenobi +524#Natalie Portman#Padmé Amidala +17244#Hayden Christensen#Anakin Skywalker / Darth Vader +27762#Ian McDiarmid#Chancellor Palpatine / Darth Sidious +2231#Samuel L. Jackson#Mace Windu +113#Christopher Lee#Count Dooku +6#Anthony Daniels#C-3PO +130#Kenny Baker#R2-D2 +7908#Frank Oz#Yoda (Voice) +33181#Jimmy Smits#Senator Bail Organa +24343#Peter Mayhew#Chewbacca + /wUYTfFbfPiZC6Lcyt1nonr69ZmK.jpg + 10 + Lucasfilm + Years after the onset of the Clone Wars, the noble Jedi Knights lead a massive clone army into a galaxy-wide battle against the Separatists. When the sinister Sith unveil a thousand-year-old plot to rule the galaxy, the Republic crumbles and from its ashes rises the evil Galactic Empire. Jedi hero Anakin Skywalker is seduced by the dark side of the Force to become the Emperor's new apprentice – Darth Vader. The Jedi are decimated, as Obi-Wan Kenobi and Jedi Master Yoda are forced into hiding. The only hope for the galaxy are Anakin's own offspring – the twin children born in secrecy who will grow up to become heroes. + George Lucas + 140 + Science Fiction - Adventure - Action + http://www.starwars.com/films/star-wars-episode-iii-revenge-of-the-sith + /tgr5Pdy7ehZYBqBkN2K7Q02xgOb.jpg + Rick McCallum + United States of America + 7.2 + Star Wars: Episode III - Revenge of the Sith + 2005 + + + $ +2#Mark Hamill#Luke Skywalker +3#Harrison Ford#Han Solo +4#Carrie Fisher#Princess Leia +3799#Billy Dee Williams#Lando Calrissian +6#Anthony Daniels#C-3PO +24342#David Prowse#Darth Vader +130#Kenny Baker#R2-D2 / Paploo +24343#Peter Mayhew#Chewbacca +7908#Frank Oz#Yoda (voice) +27762#Ian McDiarmid#The Emperor +15152#James Earl Jones#Voice of Darth Vader (voice) + /koE7aMeR2ATivI18mCbscLsI0Nm.jpg + US|PG + 10 + Lucasfilm +20th Century Fox + As Rebel leaders map their strategy for an all-out attack on the Emperor's newer, bigger Death Star. Han Solo remains frozen in the cavernous desert fortress of Jabba the Hutt, the most loathsome outlaw in the universe, who is also keeping Princess Leia as a slave girl. Now a master of the Force, Luke Skywalker rescues his friends, but he cannot become a true Jedi Knight until he wages his own crucial battle against Darth Vader, who has sworn to win Luke over to the dark side of the Force. + Richard Marquand + 135 + Adventure - Action - Science Fiction + http://www.starwars.com/films/star-wars-episode-vi-return-of-the-jedi + /lrJWyjOVjPhghl4KyAMtOepAxs.jpg + Howard G. Kazanjian + United States of America + 8.0 + Star Wars: Episode VI - Return of the Jedi + 1983 + + + $ +62064#Chris Pine#James T. Kirk +17306#Zachary Quinto#Spock +1749#Leonard Nimoy#Spock Prime +8783#Eric Bana#Nero +21089#Bruce Greenwood#Christopher Pike +1372#Karl Urban#Leonard 'Bones' McCoy +8691#Zoe Saldana#Nyota Uhura +11108#Simon Pegg#Montgomery Scott +68842#John Cho#Hikaru Sulu +21028#Anton Yelchin#Pavel Chekov +29068#Ben Cross#Sarek + /1XOSh6BFZbQ0xN75m4avqgzClyG.jpg + US|PG-13 + 115575 + Paramount +Bad Robot +Spyglass Entertainment + 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. + J.J. Abrams + 127 + Science Fiction - Action - Adventure + /xPihqTMhCh6b8DHYzE61jrIiNMS.jpg + J.J. Abrams +Damon Lindelof + Germany +United States of America + 7.4 + Star Trek + 2009 + + + $ +62064#Chris Pine#Captain James T. Kirk +17306#Zachary Quinto#Commander Spock +1372#Karl Urban#Dr. 'Bones' McCoy +8691#Zoe Saldana#Lieutenant Uhura +11108#Simon Pegg#Montgomery 'Scotty' Scott +68842#John Cho#Sulu +21028#Anton Yelchin#Chekov +17605#Idris Elba#Krall +568657#Sofia Boutella#Jaylah +592496#Joe Taslim#Manas +1095524#Lydia Wilson#Kalara + /mGraqqKJIHe7AzQF1qOseD9BcZx.jpg + 115575 + Skydance Media +Paramount +Bad Robot + 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. + Justin Lin + 122 + Action - Adventure - Science Fiction + http://www.startrekmovie.com/ + /mLrQMqyZgLeP8FrT5LCobKAiqmK.jpg + J.J. Abrams +Bryan Burk +Roberto Orci +Justin Lin + United States of America + 6.7 + Star Trek Beyond + 2016 + + + $ +62064#Chris Pine#James T. Kirk +17306#Zachary Quinto#Spock +8691#Zoe Saldana#Nyota Uhura +1372#Karl Urban#Dr. Leonard 'Bones' McCoy +11108#Simon Pegg#Montgomery 'Scotty' Scott +68842#John Cho#Hikaru Sulu +71580#Benedict Cumberbatch#Khan Noonien Singh +21028#Anton Yelchin#Pavel Chekov +21089#Bruce Greenwood#Christopher Pike +27811#Peter Weller#Alexander Marcus +59860#Alice Eve#Carol Marcus + /ns0IojuqJe24AHTxe8RVcWJUCDM.jpg + 115575 + Bad Robot +Paramount +Kurtzman/Orci + 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. + J.J. Abrams + 132 + Action - Adventure - Science Fiction + /41mhrXASAW3sdn7LBWF49uCX0xi.jpg + J.J. Abrams +Bryan Burk +Alex Kurtzman +Damon Lindelof +Roberto Orci + United States of America + 7.4 + Star Trek Into Darkness + 2013 + + + $ +1748#William Shatner#Admiral/Captain James T. Kirk +2022#Catherine Hicks#Dr. Gillian Taylor +1749#Leonard Nimoy#Captain Spock +1750#DeForest Kelley#Dr. Leonard McCoy +1751#James Doohan#Montgomery Scott +1754#Walter Koenig#Cmdr. Pavel Chekov +1753#Nichelle Nichols#Cmdr. Uhura +1752#George Takei#Cmdr. Hikaru Sulu +2647#Robert Ellenstein#Federation Council President +2112#Brock Peters#Admiral Cartwright +1820#Mark Lenard#Ambassador Sarek + /2SmriSA5l4WE40KnZ8mA0GuqtEJ.jpg + 151 + Paramount + 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! + Leonard Nimoy + 119 + Science Fiction - Adventure + /62nATuMKuaLhd5VHKumHOrJnCZa.jpg + Harve Bennett + United States of America + 7.2 + Star Trek IV: The Voyage Home + 1986 + + + $ +2387#Patrick Stewart#Captain Jean-Luc Picard +2388#Jonathan Frakes#Commander William T. Riker +1213786#Brent Spiner#Lt. Commander Data +2390#LeVar Burton#Commander Geordi La Forge +2391#Michael Dorn#Lieutenant Commander Worf +2392#Gates McFadden#Commander Beverly Crusher +2393#Marina Sirtis#Counselor Deanna Troi +2505#James Cromwell#Dr. Zefram Cochrane +1981#Alfre Woodard#Lily Sloane +2506#Alice Krige#Borg Queen +2203#Neal McDonough#Lieutenant Hawk + /welkOTUozJ968u1KLx33vPpo7aS.jpg + US|PG-13 + 115570 + Digital Image Associates +Paramount + 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. + Jonathan Frakes + 111 + Science Fiction - Action - Adventure - Thriller + http://www.startrek.com/startrek/view/series/MOV/008/index.html + /qhVB8eUGwkdVvd8Fezk0AgcMPDH.jpg + Peter Lauritson +Rick Berman + United States of America + 7.2 + Star Trek: First Contact + 1996 + + + $ +1748#William Shatner#Captain James T. Kirk +1749#Leonard Nimoy#Mr. Spock +1750#DeForest Kelley#Dr. Leonard McCoy +1756#Stephen Collins#Capt./Cmdr. Willard Decker +1757#Persis Khambatta#Lieutenant Ilia / The Probe +1751#James Doohan#Montgomery Scott +1753#Nichelle Nichols#Lt. Cmdr. Uhura +1752#George Takei#Lt. Cmdr. Hikaru Sulu +1754#Walter Koenig#Lt. Pavel Chekov +1755#Majel Barrett#Dr. Christine Chapel +1759#Grace Lee Whitney#CPO Janice Rand + /w9iSKX1GSlaPPASW7jSFkFkkDnz.jpg + 151 + Paramount + 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. + Robert Wise + 132 + Science Fiction - Adventure - Mystery + /ys5Sgpc27mVo3H5zYLPV9LWDq5.jpg + Gene Roddenberry +Jon Povill + United States of America + 6.4 + Star Trek: The Motion Picture + 1979 + + + $ +2387#Patrick Stewart#Captain Jean-Luc Picard +2388#Jonathan Frakes#Commander William T. Riker +1213786#Brent Spiner#Lt. Commander Data +2390#LeVar Burton#Lt. Commander Geordi La Forge +2391#Michael Dorn#Lt. Commander Worf +2392#Gates McFadden#Dr. Beverly Crusher +2393#Marina Sirtis#Counselor Deanna Troi +2524#Tom Hardy#Praetor Shinzon +2372#Ron Perlman#The Reman Viceroy +2525#Shannon Cochran#Senator Tal'aura +2133#Dina Meyer#Commander Donatra + /1SLR0LqYPU3ahXyPK9RZISjI3B7.jpg + 115570 + Paramount +Digital Image Associates + 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. + Stuart Baird + 117 + Science Fiction - Action - Adventure - Thriller + /n4TpLWPi062AofIq4kwmaPNBSvA.jpg + Peter Lauritson +Rick Berman + United States of America + 6.2 + Star Trek: Nemesis + 2002 + + + $ +2387#Patrick Stewart#Captain Jean-Luc Picard +2388#Jonathan Frakes#Commander William T. Riker +1213786#Brent Spiner#Lt. Commander Data +2390#LeVar Burton#Lt. Commander Geordi La Forge +2391#Michael Dorn#Lt. Commander Worf +2392#Gates McFadden#Doctor Beverly Crusher +2393#Marina Sirtis#Counselor Deanna Troi +2518#Gregg Henry#Gallatin +1164#F. Murray Abraham#Ad'har Ru'afo +2516#Anthony Zerbe#Vice-Adm. Dougherty +2517#Donna Murphy#Anij + /yaattgmMQ9dLg6n8XPXAER8WI2C.jpg + 115570 + Paramount +Digital Image Associates + 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. + Jonathan Frakes + 103 + Science Fiction - Action - Adventure - Thriller + /9pbc44kltJhArUNyrdQcantMEvH.jpg + Peter Lauritson +Michael Piller +Patrick Stewart +Rick Berman + United States of America + 6.4 + Star Trek: Insurrection + 1998 + + + $ +1748#William Shatner#Admiral James T. Kirk +1749#Leonard Nimoy#Captain Spock +1750#DeForest Kelley#Dr. Leonard McCoy +1793#Ricardo Montalban#Khan Noonien Singh +1796#Kirstie Alley#Lt. Saavik +1794#Bibi Besch#Dr. Carol Marcus +1795#Merritt Butrick#Dr. David Marcus +1754#Walter Koenig#Cmdr. Pavel Chekov +1751#James Doohan#Montgomery Scott +1753#Nichelle Nichols#Cmdr. Uhura +1752#George Takei#Cmdr. Hikaru Sulu + /gih4L6m9u1yB3PGwyJxB5wjzbqR.jpg + US|PG + 151 + Paramount + 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. + Nicholas Meyer + 113 + Action - Adventure - Science Fiction - Thriller + /7VKpj4Xl3hTzgAS3xpVuOyqNnSv.jpg + Robert Sallin + United States of America + 7.5 + Star Trek II: The Wrath of Khan + 1982 + + + $ +1748#William Shatner#Captain James T. Kirk +1749#Leonard Nimoy#Captain Spock +1750#DeForest Kelley#Dr. Leonard McCoy +2077#Laurence Luckinbill#Sybok +1753#Nichelle Nichols#Cmdr. Uhura +1751#James Doohan#Montgomery Scott +1752#George Takei#Cmdr. Hikaru Sulu +1754#Walter Koenig#Cmdr. Pavel Chekov +2080#Todd Bryant#Capt. Klaa +2078#Charles Cooper#Gen. Korrd +2076#David Warner#St. John Talbot + /nNH43KDwtiXJIie6oviBIEwE8xd.jpg + US|PG + 151 + Paramount + 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. + William Shatner + 107 + Science Fiction - Action - Adventure - Thriller + /kugwPq2E5IkzrgoxRycnoqqUS9H.jpg + Harve Bennett + United States of America + 5.7 + Star Trek V: The Final Frontier + 1989 + + + $ +2387#Patrick Stewart#Captain Jean-Luc Picard +2388#Jonathan Frakes#Commander William T. Riker +1213786#Brent Spiner#Lt. Commander Data +2390#LeVar Burton#Lt. Commander Geordi La Forge +2391#Michael Dorn#Lt. Commander Worf +2392#Gates McFadden#Dr. Beverly Crusher +2393#Marina Sirtis#Counselor Deanna Troi +1748#William Shatner#James T. Kirk +1751#James Doohan#Montgomery Scott +1754#Walter Koenig#Pavel Chekov +56890#Malcolm McDowell#Dr. Tolian Soran + /mmwQBfWmEqJBOwfsjIBJPchXlSP.jpg + 115570 + Paramount + 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. + David Carson + 118 + Science Fiction - Action - Adventure - Thriller + /wjrXjlNpDq9U8vYmAwf420yDFtn.jpg + Peter Lauritson +Rick Berman + United States of America + 6.5 + Star Trek: Generations + 1994 + + + $ +1748#William Shatner#James Tiberius Kirk +1749#Leonard Nimoy#Spock +1750#DeForest Kelley#Dr. Leonard McCoy +2109#Kim Cattrall#Lieutenant Valeris +290#Christopher Plummer#General Chang +1751#James Doohan#Montgomery Scott +1752#George Takei#Hikaru Sulu +1754#Walter Koenig#Pavel Chekov +1753#Nichelle Nichols#Uhura +2111#Rosanna DeSoto#Azetbur +2076#David Warner#Chancellor Gorkon + /qzrOCLviAseY5WOmsgkNVIAHQea.jpg + 151 + Paramount + 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. + Nicholas Meyer + 113 + Science Fiction - Action - Adventure - Thriller + /5PvIZAOFDe63M1oByFEFDoQobkc.jpg + Steven-Charles Jaffe +Ralph Winter + United States of America + 6.9 + Star Trek VI: The Undiscovered Country + 1991 + + + $ +1748#William Shatner#Admiral James T. Kirk +1750#DeForest Kelley#Dr. Leonard McCoy +1819#Robin Curtis#Lt. Saavik +1795#Merritt Butrick#Dr. David Marcus +1062#Christopher Lloyd#Cmdr. Kruge +1751#James Doohan#Montgomery Scott +1752#George Takei#Hikaru Sulu +1754#Walter Koenig#Pavel Chekov +1753#Nichelle Nichols#Cmdr. Uhura +1820#Mark Lenard#Ambassador Sarek +65568#James Sikking#Captain Styles + /vLsXNaLn7xIhwZdq3rUqQtoI8hd.jpg + 151 + Paramount + 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. + Leonard Nimoy + 105 + Science Fiction - Action - Adventure - Thriller + /b9ZaPiD6AaZR7CgQP5P4Kg893QL.jpg + Harve Bennett + United States of America + 6.6 + Star Trek III: The Search for Spock + 1984 + + + $ +10430#Fred Ward#Remo Williams +6748#Joel Grey#Chiun +11065#Wilford Brimley#Harold Smith +1352413#J.A. Preston#Conn MacCleary +14102#George Coe#Gen. Scott Watson +35317#Kate Mulgrew#Maj. Rayner Fleming +6354#Charles Cioffi#George Grove +32286#Patrick Kilpatrick#Stone +15993#Michael Pataki#Jim Wilson +75620#Davenia McFadden#N.Y. Traffic Control Cop +73584#Cosie Costa#Pvt. Damico + /wQAx1JTVURAW9sC0UyLmmtWEITi.jpg + US|PG-13 + Orion Pictures +Dick Clark Productions + An officially "dead" cop is trained to become an extraordinary unique assassin in service of the US President. + Guy Hamilton + 121 + Comedy - Action - Adventure - Thriller + http://www.mgm.com/view/Movie/1621/Remo-Williams:-The-Adventure-Begins/ + /xTSrGyfmr3xbnnlT9d1SVYC4gtt.jpg + Larry Spiegel + United States of America + 6.0 + Remo Williams: The Adventure Begins + 1985 + + + $ +5341#Richard Burton#Maj. Jonathan Smith, MC +190#Clint Eastwood#Lt. Morris Schaffer +67916#Mary Ure#Mary Elison +67917#Patrick Wymark#Col. Wyatt Turner, DSO MC +39741#Michael Hordern#Adm. Rolland +38358#Donald Houston#Christiansen +183207#Peter Barkworth#Berkeley +16271#William Squire#Thomas +251#Robert Beatty#Gen. George Carnaby +102663#Brook Williams#Sgt. Harrod +2601#Neil McCarthy#Sgt. Jock MacPherson + /aAFq5jVHV6RZpLcRXATskNBuEbM.jpg + US|PG-13 + Jerry Gershwin Productions +Elliott Kastner Productions +Winkast Film Productions + World War II is raging, and an American general has been captured and is being held hostage in the Schloss Adler, a Bavarian castle that's nearly impossible to breach. It's up to a group of skilled Allied soldiers to liberate the general before it's too late. + Brian G. Hutton + 155 + Adventure - Drama - Action - History - War + Essential Eastwood Action Collection + /70lTWYeTtQfQ9HVKE12ZS7r89jM.jpg + Elliott Kastner + United Kingdom +United States of America + 7.0 + Where Eagles Dare + 1968 + + + $ +190#Clint Eastwood#Sergeant First Class Kelly +10169#Telly Savalas#Master Sergeant "Big Joe" +7167#Don Rickles#Staff Sergeant "Crapgame" +26512#Carroll O'Connor#Major General Colt +55636#Donald Sutherland#Sgt. Oddball (tank commander) +54450#Gavin MacLeod#Moriarty (tank crewman) +78083#Hal Buckley#Capt. Maitland +41406#Stuart Margolin#Pvt. Little Joe +78084#Jeff Morris#Pvt. Cowboy +2751#Richard Davalos#Pvt. Gutowski +12295#Perry Lopez#Pvt. Petuko + /7vXGETu8EpVIuEcA4ZF0Y70RKdu.jpg + US|PG + Katzka-Loeb +Avala Film +Metro-Goldwyn-Mayer + A misfit group of World War II American soldiers goes AWOL to rob a bank behind German lines. + Brian G. Hutton + 144 + Adventure - Comedy - War + Essential Eastwood Action Collection + /lLFncrtTIz1hcteLbM9eKRflrMd.jpg + Sidney Beckerman, Irving L. Leonard, Harold Loeb, Gabriel Katzka + United States of America + 7.0 + Kelly's Heroes + 1970 + + + $ +190#Clint Eastwood#Mitchell Gant +12517#Freddie Jones#Kenneth Aubrey +66811#David Huffman#Captain Buckholz +2268#Warren Clarke#Pavel Upenskoy +653#Ronald Lacey#Semelovsky +10734#Kenneth Colley#Colonel Kontarsky +9927#Klaus Löwitsch#General Vladimirov +15788#Nigel Hawthorne#Pyotr Baranovich +87457#Stefan Schnabel#First Secretary +124435#Thomas Hill#General Brown +5475#Clive Merrison#Major Lanyev + /yIvxB5Gbq27ZexGgmKLcuDVTq1c.jpg + US|PG + Malpaso Productions + The Soviets have developed a revolutionary new jet fighter, called "Firefox". Naturally, the British are worried that the jet will be used as a first-strike weapon, as rumours say that the jet is indetectable on radar. They send ex-Vietnam War pilot Mitchell Gant on a covert mission into the Soviet Union to steal Firefox. + Clint Eastwood + 136 + Science Fiction - Action - Adventure - Thriller + Essential Eastwood Action Collection + /1QK1xhmvnLLZhDC8DNaFt08psp9.jpg + Clint Eastwood + United States of America + 5.9 + Firefox + 1982 + + + $ +190#Clint Eastwood#Gunnery Sgt. Tom 'Gunny' Highway +19131#Marsha Mason#Aggie +5616#Everett McGill#Major Malcolm A. Powers +6561#Moses Gunn#Staff Sergeant Webster +16214#Mario Van Peebles#Corporal 'Stitch' Jones +40618#Eileen Heckart#Little Mary Jackson +30044#Bo Svenson#Roy Jennings +32389#Boyd Gaines#Lieutenant M.R. Ring +118130#Arlen Dean Snyder#Sergeant Major Choozoo +184217#Vincent Irizarry#Fragetti +150172#Ramón Franco#Private Aponte + /AjE2mqKN5qulD1TOugPiT9kvuZp.jpg + US|R + Jay Weston Productions +Malpaso Productions + 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. + Clint Eastwood + 130 + Action - Comedy - Drama - War + Essential Eastwood Action Collection + /hbKkfRpjtoCYabxEmhklM6MhF7g.jpg + Clint Eastwood + United States of America + 6.7 + Heartbreak Ridge + 1986 + + + $ +2963#Nicolas Cage#Will Montgomery +6413#Danny Huston#Tim Harlend +50463#Malin Åkerman#Riley Jeffers +506085#Sami Gayle#Alison Loeb +136530#Mark Valley#Fletcher +22132#M.C. Gainey#Hoyt +6164#Josh Lucas#Vincent Kinsey +112286#Edrick Browne#Jacobs +8689#Barry Shabaka Henley#Reginald +129868#J.D. Evermore#Rookie +1374150#Garrett Hines#Aaron + /bLOFgTOrqBZI7p7SeS5JwA3T1Pu.jpg + Saturn Films +Nu Image + 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. + Simon West + 96 + Action - Crime - Thriller + http://millennium-media.net/mf-films/stolen/ + /pkJyIiDg8s9zEbmOvm628rRGzC6.jpg + Matthew Joynes +René Besson +Jesse Kennedy + United States of America + 5.3 + Stolen + 2012 + + + $ +2963#Nicolas Cage#Kyle Miller +2227#Nicole Kidman#Sarah Miller +60458#Liana Liberato#Avery Miller +55086#Cam Gigandet#Jonah Collins +39481#Jordana Spiro#Petal +77335#Ben Mendelsohn#Elias +127128#Nico Tortorella#Jake +6066#Dash Mihok#Ty +71815#Emily Meade#Kendra +558902#Terry Milam#Travis +558904#Brandon Belknap#Dylan + /kHNEWn2wnAaqAsLfICIlqa7NU7d.jpg + Nu Image +Winkler Films +Millennium Films + Kyle (Nicolas Cage) and Sarah Miller (Nicole Kidman) have it all: a huge gated house on the water, fancy cars, and the potential for romance in their relationship. He's just back from a business trip (he brokers diamonds) and their teen daughter Avery (Liana Liberato) is sneaking out to a party, when four thugs in security uniforms and ski masks stage a home invasion. They want what's in the safe: cash and diamonds. As Kyle stalls them, trying to negotiate for Sarah's freedom, the fault lines in Kyle and Sarah's marriage and the pasts of the four robbers come into play. Is there room here for heroism? + Joel Schumacher + 91 + Crime - Drama - Thriller - Mystery + /kZ7BE0Ob664ZFuFrWNTm9eu62qW.jpg + René Besson +David Winkler +Irwin Winkler + United States of America + 5.5 + Trespass + 2011 + + + $ +2963#Nicolas Cage#Terence McDonagh +8170#Eva Mendes#Frankie Donnenfeld +5576#Val Kilmer#Stevie Pruit +826#Fairuza Balk#Heidi +52647#Shawn Hatosy#Armand Benoit +38334#Jennifer Coolidge#Genvieve +19453#Tom Bower#Pat McDonagh +6198#Vondie Curtis-Hall#Captain James Brasser +43853#Irma P. Hall#Binnie Rogers +74242#Shea Whigham#Justin +335#Michael Shannon#Mundt + /gRiIVeHX0Qbe4R41RpMahLWsP3V.jpg + Nu Image +Edward R. Pressman Film +Saturn Films + Terrence McDonagh, a New Orleans Police sergeant, who starts out as a good cop, receiving a medal and a promotion to lieutenant for heroism during Hurricane Katrina. During his heroic act, McDonagh injures his back and later becomes addicted to prescription pain medication. McDonagh finds himself involved with a drug dealer who is suspected of murdering a family of African immigrants. + Werner Herzog + 122 + Drama - Crime + /zRULXsd0rb1lVfnSyQkYPi2nLcB.jpg + Edward R. Pressman +Nicolas Cage +Stephen Belafonte +Randall Emmett +Alan Polsky +John Thompson +Melanie Brown +Gabe Polsky + United States of America + 6.1 + The Bad Lieutenant: Port of Call - New Orleans + 2009 + + + $ +1362313#Melanie Stone#Marek +107793#Adam Johnson#Thane +51965#Kevin Sorbo#Gojun Pye +930332#Nicola Posener#Teela +1418422#Jake Stormoen#Dagen +550359#Christopher Robin Miller#Hammerhead +556275#Matthew Mercer#Szorlok +530395#Philip Brodie#Betylla +52141#Robert Jayne#Peregus Mallister +1268136#Evie Brodie#Yuliya +1676178#Dave Bresnahan#Orc + /u8LyPWk2MVe4Up2ZGhVWFG3NXvT.jpg + 363092 + Camera 40 Productions +Arrowstorm Entertainment +Bellpond Films + 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. + A. Todd Smith + 93 + Fantasy - Action - Adventure + http://www.mythicamovie.com/#!blank/y9ake + /pxtb9zC59Cd6jG1qXXcQawcNnSV.jpg + United States of America + 5.9 + Mythica: The Necromancer + 2015 + + + $ +1362313#Melanie Stone#Marek +51965#Kevin Sorbo#Gojun Pye +107793#Adam Johnson#Thane +147382#Eve Mauro#Admiral Borlund Hess +1418422#Jake Stormoen#Dagen +930332#Nicola Posener#Teela / Ana-Sett +550359#Christopher Robin Miller#Hammerhead +1263503#James Gaisford#Thorsten + /nL5ksz7dZxIwUBs03c1f6AOjHfX.jpg + 363092 + Mainstay Productions +Arrowstorm Entertainment +Camera 40 Productions + 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. + John Lyde + 93 + Action - Adventure - Fantasy + http://www.mythicamovie.com/#!blank/mcly4 + /otSfU9MrjYr1bJRhoAO61Pq1csH.jpg + United States of America + 6.0 + Mythica: The Iron Crown + 2016 + + + $ +1362313#Melanie Stone#Marek +51965#Kevin Sorbo#Gojun Pye +107793#Adam Johnson#Thane +1418422#Jake Stormoen#Dagen +1210153#Rocky Myers#Qole +556275#Matthew Mercer#Szorlok +1085735#Kynan Griffin#Gefrorener Zauberer +930332#Nicola Posener#Teela +550359#Christopher Robin Miller#Hammerhead +1828184#Natalie Devine Riskas#Caeryn +52141#Robert Jayne#Peregus Malister + /3KqlM9rJqZPB5XujLuUxDp0e0CY.jpg + 363092 + Arrowstorm Entertainment + 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. + Anne K. Black + 108 + Action - Adventure - Fantasy + http://www.mythicamovie.com/#!blank/wufvh + /f6gVR4Cm6gfiQa6DQquJ2NE5uwX.jpg + Jason Faller +Kynan Griffin + United States of America + 5.7 + Mythica: The Darkspore + 2015 + + + $ +51965#Kevin Sorbo#Gojun Pye +1362313#Melanie Stone#Marek +930332#Nicola Posener#Teela +107793#Adam Johnson#Thane +1418422#Jake Stormoen#Dagen +550359#Christopher Robin Miller#Hammerhead +52141#Robert Jayne#Peregus Malister +1828184#Natalie Devine Riskas#Caeryn +15342#Kee Chan#Mekru Nom +1828185#Jay Beacham#Temple Elder +589468#Sebastian Michael Barr#Egan + /ytZxOUICU5c3kClPwrhEDENEun1.jpg + 363092 + Camera 40 Productions +Arrowstorm Entertainment + 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. + Anne K. Black + 93 + Action - Adventure - Fantasy + http://www.mythicamovie.com/#!blank/vd4nz + /3Wz15vPjgN3avkMMD6nkVjS4Kf7.jpg + Jason Faller +Kynan Griffin + United States of America + 5.9 + Mythica: A Quest for Heroes + 2014 + + + $ +1223792#Kristian Nairn#Tek +556275#Matthew Mercer#Szorlok +107793#Adam Johnson#Thane +1362313#Melanie Stone#Marek +51965#Kevin Sorbo#Gojun Pye +1418422#Jake Stormoen#Dagen +930332#Nicola Posener#Teela +550359#Christopher Robin Miller#Hammerhead +1521888#Paris Warner#Zombie Girl +1029840#Clint Vanderlinden#General Argus + /4nvTmKUpusDki5hSoPyBjys0fQq.jpg + 363092 + Mainstay Productions +Arrowstorm Entertainment + As the Lich King's zombie legions ravage the world, a cursed young sorceress (Marek) embarks on a quest to obtain a weapon from the gods, with her friend Dagen, a self-serving half-elf rogue. But when she joins her sworn enemy in a desperate attempt to save the world, she must recover the good in herself before her friends are all dead, and defeat the Lich King before the gods are destroyed and the world forever enslaved. + John Lyde + 118 + Adventure - Fantasy - Action + http://www.mythicamovie.com/#!blank/iwc9x + /a2RjGmJPfk3Wcb8wMoLe5dkxeMj.jpg + Jennifer Kirkham + United States of America + 5.6 + Mythica: The Godslayer + 2016 + + + $ +1892#Matt Damon#Jason Bourne +679#Franka Potente#Marie Helena Kreutz +2955#Chris Cooper#Alexander Conklin +2296#Clive Owen#The Professor +1248#Brian Cox#Ward Abbott +31164#Adewale Akinnuoye-Agbaje#Nykwana Wombosi +32458#Gabriel Mann#Danny Zorn +27740#Walton Goggins#Research Tech +52419#Josh Hamilton#Research Tech +12041#Julia Stiles#Nicky Parsons +27198#Orso Maria Guerrini#Giancarlo + /2Fr1vqBiDn8xRJM9elcplzHctTN.jpg + 31562 + Universal Pictures +Hypnotic +Kalima Productions GmbH & Co. KG + 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? + Doug Liman + 119 + Action - Drama - Mystery - Thriller + http://www.universalstudiosentertainment.com/the-bourne-identity/ + /bXQIL36VQdzJ69lcjQR1WQzJqQR.jpg + Doug Liman +Patrick Crowley +Richard N. Gladstein + United States of America +Germany +Czech Republic + 7.4 + The Bourne Identity + 2002 + + + $ +1892#Matt Damon#Jason Bourne +679#Franka Potente#Marie Helene Kreutz +1248#Brian Cox#Ward Abbott +12041#Julia Stiles#Nicky Parsons +1372#Karl Urban#Kirill +32458#Gabriel Mann#Danny Zorn +11148#Joan Allen#Pamela Landy +20982#Marton Csokas#Jarda +27030#Tom Gallop#Tom Cronin +60118#John Bedford Lloyd#Teddy +166654#Ethan Sandler#Kurt + /e1svWjxTXMOmdgkVLSPHSfWv90R.jpg + 31562 + Universal Pictures +The Kennedy/Marshall Company +Hypnotic + 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. + Paul Greengrass + 108 + Action - Drama - Thriller + https://www.uphe.com/movies/the-bourne-supremacy + /jXwZgmqOtsqsXuB9oGhocOAegCM.jpg + Frank Marshall +Patrick Crowley +Paul Sandberg + Germany +United States of America + 7.3 + The Bourne Supremacy + 2004 + + + $ +1892#Matt Damon#Jason Bourne +227454#Alicia Vikander#Heather Lee +2176#Tommy Lee Jones#Robert Dewey +1925#Vincent Cassel#Asset +12041#Julia Stiles#Nicky Parsons +53240#Riz Ahmed#Aaron Kalloor +5377#Ato Essandoh#Craig Jeffers +1475960#Scott Shepherd#Director NI Edwin Russell +121718#Bill Camp#Malcolm Smith +19895#Vinzenz Kiefer#Christian Dassault +79991#Stephen Kunken#Baumen + /dtFiuavnsnl0krJAeSmGAOFAhw2.jpg + 31562 + The Kennedy/Marshall Company +Captivate Entertainment +Pearl Street Films + The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past. + Paul Greengrass + 123 + Action - Thriller + http://www.jasonbournemovie.com + /lFSSLTlFozwpaGlO31OoUeirBgQ.jpg + Matt Damon +Paul Greengrass +Gregory Goodman +Frank Marshall +Ben Smith +Jeffrey M. Weiner + United Kingdom +United States of America +China + 6.1 + Jason Bourne + 2016 + + + $ +1892#Matt Damon#Jason Bourne +12041#Julia Stiles#Nicky Parsons +11064#David Strathairn#Noah Vosen +349#Scott Glenn#Ezra Kramer +14887#Paddy Considine#Simon Ross +25616#Edgar Ramírez#Paz +3926#Albert Finney#Dr. Albert Hirsch +11148#Joan Allen#Pamela Landy +27030#Tom Gallop#Tom Cronin +17199#Corey Johnson#Conrad Wills +3872#Daniel Brühl#Martin Kreutz + /6WpDOqkZFmhNJ0rwuLJiZVKlZi1.jpg + 31562 + Universal Pictures +The Kennedy/Marshall Company +Ludlum Entertainment + 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. + Paul Greengrass + 115 + Action - Drama - Mystery - Thriller + http://www.universalstudiosentertainment.com/the-bourne-ultimatum/ + /fHho6JYYY0nRcETWSoeI19iZsNF.jpg + Frank Marshall +Patrick Crowley +Paul Sandberg +Andrew R. Tennenbaum + Germany +United States of America + 7.3 + The Bourne Ultimatum + 2007 + + + $ +7060#Martin Freeman#Bilbo Baggins +1327#Ian McKellen#Gandalf +30315#Richard Armitage#Thorin Oakenshield +71580#Benedict Cumberbatch#Smaug / Necromancer (voice) +112#Cate Blanchett#Galadriel +25136#Ken Stott#Balin +95047#Graham McTavish#Dwalin +207558#Aidan Turner#Kili +152566#Dean O'Gorman#Fili +534336#John Callen#Oin +1193832#Peter Hambleton#Gloin + /uA8Qe2d9bKEdCFakjjdldy3P2pU.jpg + 121938 + Warner Bros. Pictures +WingNut Films +New Line Cinema + 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. + Peter Jackson + 144 + Action - Adventure - Fantasy + http://www.thehobbit.com/ + /9zRzFJuaj0CHIOhAkcCcFTvyu2X.jpg + Carolynne Cunningham +Peter Jackson +Fran Walsh +Zane Weiner + New Zealand +United States of America + 7.2 + The Hobbit: The Battle of the Five Armies + 2014 + + + $ +7060#Martin Freeman#Bilbo +1327#Ian McKellen#Gandalf +30315#Richard Armitage#Thorin +1333#Andy Serkis#Gollum +112#Cate Blanchett#Galadriel +113#Christopher Lee#Saruman +1331#Hugo Weaving#Elrond +71580#Benedict Cumberbatch#Necromancer +80112#Sylvester McCoy#Radagast +65#Ian Holm#Older Bilbo +109#Elijah Wood#Frodo + /LXNMeisGBRDMERehjNQDnz9qKI.jpg + 121938 + Warner Bros. Pictures +WingNut Films +New Line Cinema + 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. + Peter Jackson + 169 + Adventure - Fantasy - Action + http://www.thehobbit.com/ + /ysX7vDmSh5O19vFjAi56WL7l4nk.jpg + Carolynne Cunningham +Peter Jackson +Fran Walsh +Zane Weiner + New Zealand +United States of America + 7.2 + The Hobbit: An Unexpected Journey + 2012 + + + $ +7060#Martin Freeman#Bilbo Baggins +1327#Ian McKellen#Gandalf +30315#Richard Armitage#Thorin Oakenshield +71580#Benedict Cumberbatch#Smaug / The Necromancer +112#Cate Blanchett#Galadriel +25136#Ken Stott#Balin +95047#Graham McTavish#Dwalin +534336#John Callen#Oin +1193832#Peter Hambleton#Gloin +207558#Aidan Turner#Kili +152566#Dean O'Gorman#Fili + /hyR7Fs6Tepgu3yCQGtgO4Ilz9tY.jpg + 121938 + Warner Bros. Pictures +WingNut Films +New Line Cinema + 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. + Peter Jackson + 161 + Adventure - Fantasy + http://www.thehobbit.com/ + /gQCiuxGsfiXH1su6lp9n0nd0UeH.jpg + Carolynne Cunningham +Peter Jackson +Fran Walsh +Zane Weiner + New Zealand +United States of America + 7.6 + The Hobbit: The Desolation of Smaug + 2013 + + + $ +1100#Arnold Schwarzenegger#Conan +15152#James Earl Jones#Thulsa Doom +2201#Max von Sydow#King Osric +45378#Sandahl Bergman#Valeria +98473#Cassandra Gava#The Witch +100563#Ben Davidson#Rexor +4330#Gerry Lopez#Subotai +10134#Mako#The Wizard / Narrator +100564#Valérie Quennessen#The Princess +98102#William Smith#Conan's Father +30963#Luis Barboo#Red Hair + /nvMjK1uiIN5PDHwA6BF7ij8SUFB.jpg + US|R + 43055 + Universal Pictures +Dino De Laurentiis Company + A film adaptation of the classic sword and sorcery hero, Conan the Barbarian. A horde of rampaging warriors massacre the parents of young Conan and enslave the young child for years on The Wheel of Pain. As the sole survivor of the childhood massacre, Conan is released from slavery and taught the ancient arts of fighting. Transforming himself into a killing machine, Conan travels into the wilderness to seek vengeance on Thulsa Doom, the man responsible for killing his family. In the wilderness, Conan takes up with the thieves Valeria and Subotai. The group comes upon King Osric, who wants the trio of warriors to help rescue his daughter who has joined Doom in the hills. + John Milius + 129 + Adventure - Fantasy - Action + /9siMCK6u0TtgDVtCJQGKRQAnAqA.jpg + Raffaella De Laurentiis +Buzz Feitshans + United States of America + 6.7 + Conan the Barbarian + 1982 + + + $ +1100#Arnold Schwarzenegger#Conan +10661#Grace Jones#Zula +58181#Wilt Chamberlain#Bombaata +3801#Tracey Walter#Malak +10134#Mako#Akiro 'The Wizard' +31364#Sarah Douglas#Queen Taramis +46423#Olivia d'Abo#Princess Jehnna +10942#Pat Roach#Man Ape / Toth-Amon +9596#Jeff Corey#Grand Vizier +20761#Sven-Ole Thorsen#Togra +25504#André the Giant#Dagoth + /aoHrTDANGQ05ygmLX49OXhTn9jA.jpg + 43055 + De Laurentiis Entertainment Group (DEG) +Universal Pictures + Based on a character created by Robert E. Howard, this fast-paced, occasionally humorous sequel to Conan the Barbarian features the hero (Arnold Schwarzenegger) as he is commissioned by the evil queen Taramis (Sarah Douglas) to safely escort a teen princess (Olivia D'Abo) and her powerful bodyguard (Wilt Chamberlain) 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 (Mako), the wild woman Zula (Grace Jones), and the inept Malak (Tracey Walter). Together the hero and his allies must defeat both mortal and supernatural foes in this voyage to sword-and-sorcery land. + Richard Fleischer + 103 + Adventure - Fantasy - Action + /wLIpIZ0KBopuAsvPBQRSGNjjFVT.jpg + Raffaella De Laurentiis +Edward R. Pressman + United States of America + 5.9 + Conan the Destroyer + 1984 + + + $ +114#Orlando Bloom#Balian de Ibelin +10912#Eva Green#Sibylla +16940#Jeremy Irons#Tiberias +11207#David Thewlis#Hospitaler +3896#Liam Neeson#Godfrey de Ibelin +70577#Ghassan Massoud#Saladin +2039#Brendan Gleeson#Reynald de Chatillon +20982#Marton Csokas#Guy de Lusignan +819#Edward Norton#King Baldwin +3968#Michael Sheen#Priest +2957#Alexander Siddig#Nasir + /kxRYuGjccUCR1M0ZuG1TbzkMb7Y.jpg + US|R + Studio Babelsberg +Scott Free Productions +Kanzaman + After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades. + Ridley Scott + 144 + Drama - Action - Adventure - History - War + http://www.kingdomofheavendvd.com/ + /aB4urkgTxBURJMUkd0kceDD7FUM.jpg + Ridley Scott + Germany +Morocco +Spain + 6.7 + Kingdom of Heaven + 2005 + + + $ +723#Patrick Swayze#Jed +2878#C. Thomas Howell#Robert +1063#Lea Thompson#Erica +2884#Darren Dalton#Daryl +6952#Charlie Sheen#Matt +722#Jennifer Grey#Toni +19737#Brad Savage#Danny +8258#Ben Johnson#Mr. Mason +5048#Harry Dean Stanton#Mr. Eckert +98102#William Smith#Strelnikov +6280#Powers Boothe#Lt. Col. Andrew 'Andy' Tanner + /9obFHiluXvDaALGsrdJIOhh5HO9.jpg + EN|PG-13 + Valkyrie Films +United Artists + 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. + John Milius + 114 + Action - Thriller - War + /hVyeN1aFmqLsRK9VNElETYBDtnf.jpg + Barry Beckerman +Buzz Feitshans + United States of America + 6.3 + Red Dawn + 1984 + + + $ +4785#Jeff Goldblum#David Levinson +2888#Will Smith#Captain Steven Hiller +8984#Bill Pullman#President Thomas J. Whitmore +1581#Mary McDonnell#First Lady Marilyn Whitmore +6167#Judd Hirsch#Julius Levinson +1162#Robert Loggia#General William Grey +1811#Randy Quaid#Russell Casse +8985#Margaret Colin#Constance Spano +2535#Vivica A. Fox#Jasmine Dubrow +8986#James Rebhorn#Albert Nimzicki +7420#Harvey Fierstein#Marty Gilbert + /4E2xKGrU2qcqUE2S3Nl27hwZdqy.jpg + EN|PG-13 + 304378 + Centropolis Entertainment +20th Century Fox + 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. + Roland Emmerich + 145 + Action - Adventure - Science Fiction + /bqLlWZJdhrS0knfEJRkquW7L8z2.jpg + Dean Devlin + United States of America + 6.8 + Independence Day + 1996 + + + $ +16856#Gabriel Macht#The Spirit/Denny Colt +1245#Scarlett Johansson#Silken Floss +2231#Samuel L. Jackson#Octopuss +8170#Eva Mendes#Sand Saref +3627#Paz Vega#Plaster of Paris +5915#Jaime King#Lorelei Rox +29774#Dan Lauria#Dolan +34490#Sarah Paulson#Ellen Dolan +34408#Stana Katic#Morgenstern +2293#Frank Miller#Liebowitz +34489#Eric Balfour#Mahmoud + /nS3iTWrps56ghHj1NUUml9M3ig6.jpg + EN|PG-13 + DC Comics +Lionsgate +Dark Lot Entertainment + 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. + Frank Miller + 103 + Action - Comedy - Thriller - Crime - Science Fiction + http://www.mycityscreams.com/ + /4TlzgL6yW9zI4Y0rGY0LjpmWWKJ.jpg + Deborah Del Prete +Gigi Pritzker +Michael E. Uslan +F.J. DeSanto +Linda McDonough +Marc Sadeghi + United States of America + 4.8 + The Spirit + 2008 + + + $ +1892#Matt Damon#Roy Miller +17141#Greg Kinnear#Clark Poundstone +2039#Brendan Gleeson#Martin Brown +39388#Amy Ryan#Lawrie Dayne +11355#Jason Isaacs#Maj. Briggs +53480#Khalid Abdalla#Freddy +41316#Igal Naor#General Al Rawi +20562#Antoni Corone#Col. Lyons +109670#Said Faraj#Seyyed Hamza +21710#Michael O'Neill#Colonel Bethel +122281#Jerry Della Salla#Wilkins + /lxxkBvUqfCDTh5o4Ny0RQ3CNwlG.jpg + EN|R + Universal Pictures +StudioCanal +Relativity Media + During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors were dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission. + Paul Greengrass + 115 + War - Action - Adventure - Drama - Thriller + http://www.greenzonemovie.com/ + /7O3IkeHvp1sq5yMN0O8FsTee1C0.jpg + Tim Bevan +Eric Fellner +Paul Greengrass +Lloyd Levin +Michael Bronner +Christopher Rouse +Kate Solomon +Mairi Bett + Spain +United Kingdom +United States of America + 6.4 + Green Zone + 2010 + + + $ +96066#Liam Hemsworth#Jake Morrison +4785#Jeff Goldblum#David Levinson +8984#Bill Pullman#President Whitmore +1094091#Maika Monroe#Patricia Whitmore +6068#Sela Ward#President Lanford +886#William Fichtner#General Adams +2535#Vivica A. Fox#Jasmine +4273#Charlotte Gainsbourg#Dr. Catherine Marceaux +1213786#Brent Spiner#Dr. Brakish Okun +6167#Judd Hirsch#Julius Levinson +117437#Patrick St. Esprit#Secretary of Defense + /mou66QcacavDahfyuaqKfaCLdoI.jpg + US|PG-13 + 304378 + Centropolis Entertainment +Stereo D +TSG Entertainment + 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. + Roland Emmerich + 120 + Action - Adventure - Science Fiction + http://www.warof1996.com + /5CHJs479xWnm3zMDOl94VkKS7MZ.jpg + Dean Devlin +Roland Emmerich +Harald Kloser + United States of America + 5.0 + Independence Day: Resurgence + 2016 + + + $ +72466#Colin Farrell#Doug Quaid/Carl Hauser +3967#Kate Beckinsale#Lori Quaid +10860#Jessica Biel#Melina +17419#Bryan Cranston#Cohaagen +2440#Bill Nighy#Matthias +68842#John Cho#McClane +71913#Bokeem Woodbine#Harry +10884#Will Yun Lee#Marek +43292#Steve Byers#Henry Reed +156590#Currie Graham#Bergen +1021545#Jesse Bond#Lead Federal Police + /orFQbyZ6g7kPFaJXmgty0M88wJ0.jpg + Rekall Productions +Columbia Pictures +Total Recall + 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. + Len Wiseman + 121 + Action - Science Fiction - Adventure - Thriller + http://www.welcometorecall.com/ + /tWBo7aZk3I1dLxmMj7ZJcN8uke5.jpg + Toby Jaffe +Neal H. Moritz +Paula Kucharski + Canada +United States of America + 5.9 + Total Recall + 2012 + + + $ +6193#Leonardo DiCaprio#Dom Cobb +24045#Joseph Gordon-Levitt#Arthur +27578#Ellen Page#Ariadne +2524#Tom Hardy#Eames +3899#Ken Watanabe#Saito +2037#Cillian Murphy#Robert Fischer +8293#Marion Cotillard#Mal +3895#Michael Caine#Miles +95697#Dileep Rao#Yusuf +13022#Tom Berenger#Browning +4935#Pete Postlethwaite#Maurice Fischer + /s2bT29y0ngXxxu2IA8AOzzXTRhd.jpg + EN|PG-13 + Legendary Entertainment +Syncopy +Warner Bros. Pictures + 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. + Christopher Nolan + 148 + Action - Thriller - Science Fiction - Mystery - Adventure + http://inceptionmovie.warnerbros.com/ + /qmDpIHrmpJINaRKAfWQfftjCdyi.jpg + Christopher Nolan +Emma Thomas +Kanjirô Sakura +Yoshikuni Taki + United Kingdom +United States of America + 8.2 + Inception + 2010 + + + $ +10814#Wesley Snipes#James Dial +23775#Eliza Bennett#Emily Day +17286#Lena Headey#DI Annette Ballard +53916#Ralph Brown#Jeremy Collins +4391#Charles Dance#DCS Andrew Windsor +9138#Gemma Jones#Mrs. Day +1231651#Richard Harrington#Terry Winchell +30437#Iain Robertson#Cramston +146784#Ryan McCluskey#Purcell +11282#John Standing#Sir Anthony +559371#Stanimir Stamatov#King + /9ZJORsIPJrZwoklp9bMXLOAQzOk.jpg + EN|R + April Productions +Chaintron +RMA Productions + Former CIA Operative, James Dial is coaxed back into action to kill a terrorist in London, but it all goes wrong and he is forced into hiding, where he meets and befriends a 12 year old girl. + Josef Rusnak + 105 + Action - Adventure - Drama - Thriller + /9xofA45YxJgJwoI4uWR0yWMGpyI.jpg + Bulgaria +United Kingdom +United States of America + 5.7 + The Contractor + 2007 + + + $ +6164#Josh Lucas#Lt. Ben Gannon +10860#Jessica Biel#Lt. Kara Wade +134#Jamie Foxx#Lt. Henry Purcell +9880#Sam Shepard#Capt. George Cummings +12206#Richard Roxburgh#Dr. Keith Orbit +3977#Joe Morton#Capt. Dick Marshfield +21042#Ebon Moss-Bachrach#Tim +62487#Michael Denkha#Naval Controller +62489#Clayton Adams#USS Abraham Lincoln Sailor +62488#Rocky Helton#Master at Arms +62486#Ian Bliss#Lt. Aaron Shaftsbury + /uiw9D7ud7oUsQtTFoXzTkXlc9u3.jpg + EN|PG-13 + Original Film +Phoenix Pictures +Laura Ziskin Productions + 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. + Rob Cohen + 121 + Action + /tiezxIq6TJO4B09c13Z8a675dDy.jpg + Mike Medavoy +Laura Ziskin +Neal H. Moritz + United States of America + 5.1 + Stealth + 2005 + + + $ +9278#Jennifer Garner#Elektra Natchios / Elektra +5725#Goran Visnjic#Mark Miller +10884#Will Yun Lee#Kirigi +11398#Cary-Hiroyuki Tagawa#Roshi +28641#Terence Stamp#Stick +21430#Natassia Malthe#Typhoid Mary / Typhoid +60715#Kirsten Zien#Abby Miller +1218926#Colin Cunningham#McCabe +60718#Edson T. Ribeiro#Kinkou +60717#Chris Ackerman#Tattoo +60716#Bob Sapp#Stone + /iFhGgSli19SEo1ZxZLSJ6sbr5kB.jpg + Regency Enterprises +Epsilon Motion Pictures +New Regency Pictures + Elektra the warrior survives a near-death experience, becomes an assassin-for-hire, and tries to protect her two latest targets, a single father and his young daughter, from a group of supernatural assassins. + Rob Bowman + 97 + Action - Fantasy - Science Fiction + http://marvel.com/movies/movie/13/elektra + /fHwqiCBXLUr61aenmuLGolfKNZY.jpg + Avi Arad +Gary Foster +Arnon Milchan + Canada +United States of America + 4.9 + Elektra + 2005 + + + $ +2888#Will Smith#Del Spooner +18354#Bridget Moynahan#Susan Calvin +21088#Alan Tudyk#Sonny +2505#James Cromwell#Dr. Alfred Lanning +21089#Bruce Greenwood#Lawrence Robertson +10959#Shia LaBeouf#Farber +8687#Chi McBride#Lt. John Bergin +21091#Jerry Wasserman#Baldez +172994#Peter Shinkoda#Chin +11677#Terry Chen#Chin +189001#David Haysom#NS4 Robot and NS5 Robot + /8PUnfgnw615Ii8obYnIdGd4DINU.jpg + EN|PG-13 + Mediastream Vierte Film GmbH & Co. Vermarktungs KG +Davis Entertainment +Laurence Mark Productions + 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. + Alex Proyas + 115 + Action - Science Fiction + /2mkFzf168xJrV6Leqq0bjqOlJCK.jpg + John Davis +Topher Dow +Laurence Mark +Wyck Godfrey +Michael Lee Baron + United States of America +Germany + 6.8 + I, Robot + 2004 + + + $ +1336#Jet Li#Danny +192#Morgan Freeman#Sam +382#Bob Hoskins#Bart +9831#Vincent Regan#Raffles +8032#Dylan Brown#Lefty +39660#Tamer Hassan#Georgie +17787#Phyllida Law#Distinguished Lady +62106#Michael Jenn#Wyeth +62107#Carole Ann Wilson#Maddy +62105#Kerry Condon#Victoria +62108#Mike Lambert#The Stranger + /xd3hJY0064vBH6eUBlK9V3G1TkX.jpg + EN|R + Canal+ +Current Entertainment +Clubdeal + Raised as a slave, Danny is used to fighting for his survival. In fact, his "master," Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart. + Louis Leterrier + 103 + Action - Crime + http://www.universalstudiosentertainment.com/unleashed/ + /hfyZgFOjZAk10YlsRl9krBMuQ9K.jpg + Luc Besson +Steve Chasman +Jet Li +Pierre Spengler +Mehdi Sayah + France +United Kingdom +United States of America + 6.7 + Unleashed + 2005 + + + $ +17604#Jeremy Renner#Hansel +59620#Gemma Arterton#Gretel +10696#Famke Janssen#Muriel +93564#Pihla Viitala#Mina +51300#Derek Mears#Edward +53#Peter Stormare#Berringer +1142720#Thomas Mann#Ben Wosser +87879#Ingrid Bolsø Berdal#Horned Witch +20494#Zoë Bell#Tall Witch +908548#Joanna Kulig#Red Haired Witch +102744#Monique Ganderton#Candy Witch + /plssy6J0zmEmodjiyHVtceZB0yQ.jpg + Paramount +MTV Films +Gary Sanchez Productions + After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches... their past. + Tommy Wirkola + 88 + Fantasy - Horror - Action + http://www.hanselandgretelmovie.com/ + /3bQHHXuzZDu2Ju3VFjIM72E9TSw.jpg + Tommy Wirkola +Kevin Messick +Adam McKay +Will Ferrell + United States of America +Germany + 5.8 + Hansel & Gretel: Witch Hunters + 2013 + + + $ +5530#James McAvoy#Wesley Gibson +11701#Angelina Jolie#Fox +192#Morgan Freeman#Sloan +3491#Thomas Kretschmann#Cross +28641#Terence Stamp#Pekwarsky +4238#Common#The Gunsmith +70903#Marc Warren#The Repairman +73454#Kristen Hager#Cathy +2482#David O'Hara#Mr. X (as David Patrick O'Hara) +23440#Konstantin Khabenskiy#The Exterminator +18283#Dato Bakhtadze#The Butcher + /ilZi36pgWOv6hsqgQiG2CetomoB.jpg + 462400 + Kickstart +Universal Pictures +Spyglass Entertainment + 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. + Timur Bekmambetov + 110 + Action - Thriller - Crime + http://www.wantedmovie.com/ + /mUrkppyahzk6koYFekxeu0tmcPd.jpg + Jim Lemley +Jason Netter +Iain Smith +Marc Platt + United States of America + 6.4 + Wanted + 2008 + + + $ +2963#Nicolas Cage#Joe +74747#Shahkrit Yamnarm#Kong +66762#Charlie Yeung#Fon +76484#Panward Hemmanee#Aom +76485#Nirattisai Kaljaruek#Surat +76478#Dom Hetrakul#Aran +76486#Tuck Napaskorn#Kong's Brother +76487#Steve Baldocchi#Michigan +76488#Chris Heebink#USC +76489#James With#Chicago + /lBVtKWWXH46r7oMLdfT3quioaVb.jpg + Virtual Studios +Saturn Films +International Production Company + When carrying out a hit, assassin Joe (Cage) always makes use of the knowledge of the local population. On arriving in Bangkok, Joe meets street kid Kong and he becomes his primary aide. But when Kong is nearly killed, he asks Joe to train him up in the deadly arts and unwittingly becomes a target of a band of killers. + Oxide Pang Chun +Danny Pang + 99 + Action - Crime - Thriller + http://www.bangkokdangerousmovie.net/ + /eyHn8A0lze1pbCNxv0UsATBOmyv.jpg + Nicolas Cage +William Sherak +Jason Shuman +Matt Summers +Norman Golightly + United States of America + 5.1 + Bangkok Dangerous + 2008 + + + $ +6065#Dennis Quaid#General Hawk +38673#Channing Tatum#Duke +9562#Marlon Wayans#Ripcord +23459#Sienna Miller#Ana Lewis / Baroness +24045#Joseph Gordon-Levitt#The Doctor / Rex +5419#Saïd Taghmaoui#Breaker +2040#Christopher Eccleston#McCullen / Destro +31164#Adewale Akinnuoye-Agbaje#Heavy Duty +25002#Lee Byung-hun#Storm Shadow +50347#Rachel Nichols#Scarlet +11007#Ray Park#Snake Eyes + /ieJ5ImFoJILNULvnIpbulAln7Lr.jpg + 135468 + Paramount +Spyglass Entertainment +Di Bonaventura Pictures + 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. + Stephen Sommers + 118 + Adventure - Action - Thriller - Science Fiction + http://www.gijoemovie.com/ + /29eW5c5DaCFQejdt9V14RrA51yD.jpg + Lorenzo di Bonaventura +Bob Ducsay +Brian Goldner + Czech Republic +United States of America + 5.7 + G.I. Joe: The Rise of Cobra + 2009 + + + $ +18918#Dwayne Johnson#Marvin Hinton / Roadblock +51976#D.J. Cotrona#Dashiell Faireborn / Flint +88995#Adrianne Palicki#Jaye Burnett / Lady Jaye +62#Bruce Willis#Joe Colton +11007#Ray Park#Snake Eyes +38673#Channing Tatum#Conrad Hauser / Duke +25002#Lee Byung-hun#Tommy Arashikage / Storm Shadow +78147#Élodie Yung#Kim Arashikage / Jinx +56614#Ray Stevenson#Firefly +972356#Luke Bracey#Rexford Lewis / Cobra Commander +378#Jonathan Pryce#U.S. President + /b9OVFl48ZV2oTLzACSwBpNrCUhJ.jpg + 135468 + Paramount +Hasbro +Di Bonaventura Pictures + Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence. + Jon M. Chu + 110 + Adventure - Action - Science Fiction - Thriller + http://www.gijoemovie.com + /iFWxbu2LLtfaWv6D1TSrY11huTe.jpg + Lorenzo di Bonaventura +Brian Goldner + United States of America + 5.5 + G.I. Joe: Retaliation + 2013 + + + $ +12835#Vin Diesel#Riddick +1372#Karl Urban#Lord Vaako +51798#Katee Sackhoff#Dahl +31384#Jordi Mollà#Santana +71913#Bokeem Woodbine#Moss +82819#Nolan Gerard Funk#Luna +172915#Noah Danby#Nunez +224227#Keri Hilson#Santana's Prisoner +105496#Neil Napier#Rubio +543530#Dave Bautista#Diaz +123879#Matthew Nable#Boss Johns + /7DlIoyQ3ecGMklVWyKsneZmVnsi.jpg + 2794 + One Race +Riddick Canada Productions +Radar Pictures + 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. + David Twohy + 119 + Science Fiction - Action - Thriller + http://www.riddick-movie.com + /duoN6oNGp1emHkkhlTcY76Wz2ED.jpg + Ted Field +Vin Diesel +Samantha Vincent + United States of America + 6.2 + Riddick + 2013 + + + $ +12835#Vin Diesel#Riddick +9030#Thandie Newton#Dame Vaako +1372#Karl Urban#Vaako +10132#Colm Feore#Lord Marshal +3900#Linus Roache#Purifier +65827#Keith David#Imam +31387#Yorick van Wageningen#The Guv +18461#Nick Chinlund#Toombs +28109#Alexa Davalos#Kyra +25877#Roger Cross#Toal +116575#Kim Hawthorne#Lajjun + /AoLVfcYPziZZQbAFQuKoceHreXD.jpg + US|PG-13 + 2794 + Radar Pictures +One Race + 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. + David Twohy + 119 + Action - Science Fiction + /hVAfGskQdktDwYTqrT7wY1f2M4y.jpg + Vin Diesel +Scott Kroopf + United States of America + 6.4 + The Chronicles of Riddick + 2004 + + + $ +12835#Vin Diesel#Richard B. Riddick +8329#Radha Mitchell#Carolyn Fry +6614#Cole Hauser#William J. Johns +28099#Lewis Fitz-Gerald#Paris P. Ogilvie +26054#Claudia Black#Shazza +65827#Keith David#Abu "Imam" al-Walid +28098#Rhiana Griffith#Jack / Jackie +1235730#John Moore#John 'Zeke' Ezekiel +28100#Simon Burke#Greg Owens +230602#Les Chantery#Suleiman +1357177#Sam Sari#Hassan + /yc0cEEZ9OO6ydyYmCEfY90Q9jII.jpg + US|R + 2794 + Interscope Communications + 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. + David Twohy + 108 + Thriller - Science Fiction - Action + http://www.pitchblack.com/ + /j4iBVA49KDBX4ypfVcZxl1y7CCT.jpg + Tom Engelman + United States of America + 6.8 + Pitch Black + 2000 + + + $ +12835#Vin Diesel#Richard B. Riddick (Voice) +28098#Rhiana Griffith#Jack (Voice) +65827#Keith David#Abu al-Walid (Voice) +18461#Nick Chinlund#Toombs (Voice) +28248#Dwight Schultz#Skiff A.I. (Voice) + /jrZbDux6c99QxpxHqnLS6W8Jffc.jpg + DNA Productions +Universal Pictures +Universal Home Video + After their narrow escape at the end of "Pitch Black," Riddick, Jack and the Imam find themselves at the mercy of a madwoman who intends to entomb Riddick forever as part of a twisted art exhibit. With little but a shiv and Riddick's innate viciousness to aid them, Riddick and his allies must find a way to escape from their captor and her band of mercenaries. + Peter Chung + 34 + Action - Animation - Science Fiction - Thriller + http://www.thechroniclesofriddick.com + /ewqSDOOyjyODmyuVuxHmKGYKZR9.jpg + United States of America + 6.0 + The Chronicles of Riddick: Dark Fury + 2004 + + + $ +5292#Denzel Washington#Eli +64#Gary Oldman#Carnegie +18973#Mila Kunis#Solara +56614#Ray Stevenson#Redridge +3130#Jennifer Beals#Claudia +2887#Tom Waits#Engineer +5658#Michael Gambon#George +47468#Frances de la Tour#Martha +123812#Lateef Crowder#Highjacker #3 +76543#Chris Browning#Highjacker Leader +86237#Joe Pingue#Hoyt + /yT91We6RqDDfM4q7RX1QTHaq5q4.jpg + US|R + Alcon Entertainment +Silver Pictures + A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind. + Albert Hughes +Allen Hughes + 118 + Action - Thriller - Science Fiction + /qL3FnEug9DyBcaBXVb0oT3DJMJu.jpg + Joel Silver +Andrew A. Kosove +Broderick Johnson +Denzel Washington +David Valdes + United States of America + 6.0 + The Book of Eli + 2010 + + + $ +18259#Jason James Richter#Zach Raymond +1244429#Melissa Galianos#Cara +51539#Gordon Currie#M. K. Ultra +2#Mark Hamill#Bob Sheridan +98600#Ivan Rogers#Col. Lewis Teagarden USAF +1298628#Joseph Wynne#Roach +129419#Richard Zeman#Frank Raymond +61947#Susan Almgren#Mrs. Raymond +17236#A.J. Cook#Pretty Girl #1 +216217#Aimée Castle#Tracy Altergot +60907#Larry Day#Captain Moss + /d5fqOEl6MEK8VXMFitLFunY6Z6j.jpg + Alliance Atlantis Communications + 250 million years ago, a carnivorous species 'planted' a crop of humans on an uninhabited planet known as Earth. Now, the alien life form has returned to harvest its yield. With total destruction looming just moments away, a futuristic warrior and a prophetic mental patient join forces against the creatures, but with mortal weapons no match for the superior alien technology, the duo's only hope for victory lies in finding a 250 million year-old spaceship known as Laserhawk. The future of the world depends on it. + Jean Pellerin + 99 + Action - Adventure - Science Fiction + /8r1FIRXvqMl8UMUQ6I0xoHMzGw9.jpg + Canada + 3.0 + Laserhawk + 1997 + + + $ +88816#Noah Ringer#Aang +61186#Nicola Peltz#Katara +84215#Jackson Rathbone#Sokka +76788#Dev Patel#Zuko +17857#Shaun Toub#Uncle Iroh +20644#Aasif Mandvi#Commander Zhao +23680#Dee Bradley Baker#Appa / Momo +11354#Ben Cooke#Avatar Roku +19729#Katharine Houghton#Gran Gran +7248#Cliff Curtis#Fire Lord Ozai +559643#Seychelle Gabriel#Princess Yue + /pKf721WaYpxEdISJ9LYg23fd3wM.jpg + Paramount +Nickelodeon Movies +Blinding Edge Pictures + The story follows the adventures of Aang, a young successor to a long line of Avatars, who must put his childhood ways aside and stop the Fire Nation from enslaving the Water, Earth and Air nations. + M. Night Shyamalan + 103 + Action - Adventure - Family - Fantasy + http://www.thelastairbendermovie.com/ + /zgwRTYWEEPivTwjB9S03HtmMcbM.jpg + United States of America + 4.6 + The Last Airbender + 2010 + + + $ +51797#Nathan Fillion#Mal +54881#Summer Glau#River +9576#Gina Torres#Zoe +21088#Alan Tudyk#Wash +54882#Morena Baccarin#Inara +2059#Adam Baldwin#Jayne +72092#Jewel Staite#Kaylee +55148#Sean Maher#Simon +74570#Ron Glass#Shepherd Book +5294#Chiwetel Ejiofor#The Operative +38582#David Krumholtz#Mr. Universe + /k2qLUz5fymFOOYfehaQt6ewXSth.jpg + Universal Pictures +Barry Mendel Productions + 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. + Joss Whedon + 119 + Science Fiction - Action - Adventure - Thriller + /1Hq659V31ER9pQQvVBUUJbwR7NT.jpg + Barry Mendel + United States of America + 7.5 + Serenity + 2005 + + + $ +33260#Freddie Prinze Jr.#1st Lt. Christopher Blair +9825#Saffron Burrows#Lt. Cmdr. 'Angel' Devereaux +26457#Matthew Lillard#Lt. Todd 'Maniac' Marshall +10698#Tchéky Karyo#Cmmdre. James 'Paladin' Taggart +920#Jürgen Prochnow#Cdr. Paul Gerald +20277#David Suchet#Capt. Jason Sansky +2076#David Warner#Admiral Geoffrey Tolwyn +178579#Ginny Holder#Lt. Rosie Forbes +31925#Hugh Quarshie#Lt. Obutu +91662#Ken Bones#Admiral Bill Wilson +200332#John McGlynn#Richard Bellegarde + /etUHgT80y3KYKZbGdoNTNBN9tUF.jpg + US|PG-13 + Wing Commander Productions +American Entertainment Investors +Carousel Picture Company, The + 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. + Christopher Roberts + 100 + Action - Science Fiction + /pdNhh937iErsAzR6h7pt2mQmclO.jpg + Donna Burkons +Joseph Newton Cohen + Luxembourg +United States of America + 4.3 + Wing Commander + 1999 + + + $ +16483#Sylvester Stallone#John J. Rambo +16554#Richard Crenna#Col. Samuel Trautman +6197#Brian Dennehy#Hope Sheriff Will Teasle +16555#Bill McKinney#State Police Capt. Dave Kern +16556#Jack Starrett#Deputy Sgt. Arthur Galt +16557#Michael Talbott#Deputy Balford +15824#Chris Mulkey#Deputy Ward +16558#John McLiam#Orval the Dog Man +16559#Alf Humphreys#Deputy Lester +16560#David Caruso#Deputy Mitch +16561#David L. Crowley#Deputy Shingleton + /cU3goO0TMNDWxgDwILAARyiblXK.jpg + 5039 + Orion Pictures + 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. + Ted Kotcheff + 93 + Action - Adventure - Thriller - War + /bbYNNEGLXrV3lJpHDg7CKaPscCb.jpg + Buzz Feitshans + United States of America + 7.3 + First Blood + 1982 + + + $ +16483#Sylvester Stallone#John J. Rambo +16554#Richard Crenna#Col. Samuel Trautman +16119#Charles Napier#Marshall Murdock +782#Steven Berkoff#Lt. Col. Podovsky +16578#Julia Nickson#Co Bao +16580#George Cheung#Capt Vinh +16581#Andy Wood#Banks +16582#William Ghent#Capt. Vinh +16583#Voyo Goric#Sgt. Yushin +16584#Dana Lee#Gunboat captain +56117#Martin Kove#Ericson + /2a8Dr2iHznBKjdpXceVRmpxQEgm.jpg + 5039 + TriStar Pictures +Carolco Pictures + 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. + George P. Cosmatos + 96 + Action - Adventure - Thriller - War + /l6zUaYqaQ5TFokesv3BPzBvSN0.jpg + Buzz Feitshans + United States of America + 6.4 + Rambo: First Blood Part II + 1985 + + + $ +16483#Sylvester Stallone#Rambo +16554#Richard Crenna#Trautman +2115#Kurtwood Smith#Griggs +6783#Spiros Focás#Masoud +16604#Sasson Gabai#Mousa +16605#Doudi Shoua#Hamid +16606#Randy Raney#Kourov +11763#Marcus Gilbert#Tomask +16607#Alon Aboutboul#Nissem +16608#Mahmoud Assadollahi#Rahim +16609#Joseph Shiloach#Khalid + /mx0x96S8ZCXXoSxFinMbyI1117f.jpg + 5039 + TriStar Pictures +Carolco Pictures + 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. + Peter MacDonald + 102 + Action - Adventure - Thriller - War + /gWYfUEkExdr0SLY5L2mjnhKgE4C.jpg + Buzz Feitshans + United States of America + 5.8 + Rambo III + 1988 + + + $ +16483#Sylvester Stallone#John Rambo +35551#Julie Benz#Sarah +12793#Matthew Marsden#School Boy +52946#Reynaldo Gallegos#Diaz +52409#Jake La Botz#Reese +52947#Tim Kang#En-Joo +52948#Aung Aay Noi#Lt. Aye +36189#Paul Schulze#Michael Burnett +18328#Ken Howard#Arthur Marsh +95047#Graham McTavish#Lewis +97551#Cameron Pearson#Jeff + /mgSMefETH89UnNWMffevxZPKDnO.jpg + 5039 + Nu Image +Lionsgate +Emmett/Furla Films + 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. + Sylvester Stallone + 92 + Action - Thriller + http://www.rambofilm.com/ + /ec1m7YgBYb4os06OSNW3QBaNYqZ.jpg + Avi Lerner +John Thompson +Kevin King Templeton + Germany +United States of America + 6.4 + Rambo + 2008 + + + $ +12835#Vin Diesel#Sean Vetter +18291#Larenz Tate#Demetrius Hicks +18082#Timothy Olyphant#Hollywood Jack +54864#Geno Silva#Memo Lucero +49818#Jacqueline Obradors#Stacy Vetter +9276#Steve Eastin#Ty Frost +1607#Juan Fernández#Mateo Santos +54865#Jeff Kober#Pomona Joe +73132#Marco Rodríguez#Hondo +100260#Mike Moroff#Gustavo Leon +53257#Emilio Rivera#Garza + /3pAQqMg1bGPKA3OlPl8u8n1glcn.jpg + US|R + Newman/Tooley Films +"DIA" Productions GmbH & Co. KG +Joseph Nittolo Entertainment + 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. + F. Gary Gray + 109 + Action - Drama + http://www.newline.com/properties/manaparta.html + /l9UIm6rCHzfbMy6KY8ynjV4kLHX.jpg + Bob Degus +Vin Diesel +F. Gary Gray +Vincent Newman +Joey Nittolo +Tucker Tooley + Germany +United States of America + 5.0 + A Man Apart + 2003 + + + $ +928943#Marc Ian Barasch#Himself +928944#Coleman Barks#Himself +116488#Noam Chomsky#Himself +27639#John Francis#Himself +928945#Lynne McTaggart#Herself +4499#Tom Shadyac#Himself +128550#Desmond Tutu#Himself +110170#Howard Zinn#Himself + /z7VGR0FZeaOGu9OcsgTmB2RnNKH.jpg + Flying Eye Productions + I AM is an utterly engaging and entertaining non-fiction film that poses two practical and provocative questions: what’s wrong with our world, and what can we do to make it better? The filmmaker behind the inquiry is Tom Shadyac, one of Hollywood’s leading comedy practitioners and the creative force behind such blockbusters as “Ace Ventura,” “Liar Liar,” “The Nutty Professor,” and “Bruce Almighty.” However, in I AM, Shadyac steps in front of the camera to recount what happened to him after a cycling accident left him incapacitated, possibly for good. Though he ultimately recovered, he emerged with a new sense of purpose, determined to share his own awakening to his prior life of excess and greed, and to investigate how he as an individual, and we as a race, could improve the way we live and walk in the world. + Tom Shadyac + 76 + Documentary + http://iamthedoc.com/ + /g3XteS71ycgdAVpoWWLaEUjbM7B.jpg + Dagan Handy + United States of America + 6.0 + I Am + 2011 + + + $ +109#Elijah Wood#9 (voice) +4764#John C. Reilly#5 (voice) +6161#Jennifer Connelly#7 (voice) +290#Christopher Plummer#1 (voice) +1064#Crispin Glover#6 (voice) +2641#Martin Landau#2 (voice) +60279#Fred Tatasciore#8 (voice) / Radio Announcer (voice) +24320#Alan Oppenheimer#Scientist (voice) +71535#Tom Kane#Dictator (voice) +108701#Helen Wilson#News Caster (voice) + /yvrcEy8RUqHpM6mlZSM9ejRAh8Z.jpg + US|PG-13 + Tim Burton Productions +Relativity Media +Arc Productions + 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. + Shane Acker + 79 + Action - Adventure - Animation - Science Fiction - Thriller + /iGMOQt6R88ZuJRtlfpqWRa5268h.jpg + Timur Bekmambetov +Tim Burton +Dana Ginsburg +Mary Clayton +Jinko Gotoh +Jim Lemley +Marci Levine + United States of America + 6.7 + 9 + 2009 + + + $ +82191#Sharlto Copley#Wikus van der Merwe +82193#Jason Cope#Christopher Johnson / Grey Bradnam / Trent +97599#Nathalie Boltt#Sarah Livingstone - Sociologist +230818#Sylvaine Strike#Dr Katrina McKenzie +1086505#Elizabeth Mkandawie#Interviewee +3495#John Sumner#Les Feldman - MIL Engineer +53087#William Allen Young#Dirk Michaels +240024#Nick Blake#Francois Moraneu - CIV Engineer Team +1029046#Greg Melvill-Smith#Interviewer +82190#Robert Hobbs#Ross Pienaar +82192#Vanessa Haywood#Tania Van De Merwe + /yosGyMJ2CkavMSGx6PhcZO6kCAV.jpg + TriStar Pictures +Block / Hanson +WingNut Films + 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. + Neill Blomkamp + 112 + Science Fiction + http://www.d-9.com/ + /axFmCRNQsW6Bto8XuJKo08MPPV5.jpg + Peter Jackson +Carolynne Cunningham + United States of America +New Zealand +Canada + 7.3 + District 9 + 2009 + + + $ +70851#Jack Black#Po (voice) +4483#Dustin Hoffman#Shifu (voice) +11701#Angelina Jolie#Master Tigress (voice) +18897#Jackie Chan#Master Monkey (voice) +140#Lucy Liu#Master Viper (voice) +212#David Cross#Crane (voice) +9462#Randall Duk Kim#Oogway (voice) +20904#James Hong#Mr. Ping (voice) +58873#Dan Fogler#Zeng (voice) +6972#Ian McShane#Tai Lung (voice) +19274#Seth Rogen#Mantis (voice) + /UJwhgwAxU42cm9XKncO9boFAEV.jpg + US|PG + 77816 + DreamWorks Animation + 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. + Mark Osborne, John Stevenson + 90 + Adventure - Animation - Family - Comedy + http://www.kungfupanda.com/ + /2Paj1nufT0jeSY0G4u3RC31HIGT.jpg + United States of America + 7.0 + Kung Fu Panda + 2008 + + + $ +70851#Jack Black#Po (voice) +11701#Angelina Jolie#Tigress (voice) +4483#Dustin Hoffman#Shifu (voice) +64#Gary Oldman#Lord Shen (voice) +18897#Jackie Chan#Monkey (voice) +140#Lucy Liu#Viper (voice) +19274#Seth Rogen#Mantis (voice) +212#David Cross#Crane (voice) +1620#Michelle Yeoh#The Soothsayer (voice) +20904#James Hong#Mr. Ping (voice) +62862#Danny McBride#Wolf Boss (voice) + /eyiE1vuizMKVu8MoZkg2xsramFl.jpg + 77816 + DreamWorks Animation + 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. + Jennifer Yuh Nelson + 91 + Animation - Family + http://www.kungfupanda.com/ + /Fzyy2dauoKxjUzUPYYo3kJkJAW.jpg + Melissa Cobb + United States of America + 6.7 + Kung Fu Panda 2 + 2011 + + + $ +70851#Jack Black#Po (voice) +17419#Bryan Cranston#Li (voice) +4483#Dustin Hoffman#Shifu (voice) +11701#Angelina Jolie#Tigress (voice) +18999#J.K. Simmons#Kai (voice) +18897#Jackie Chan#Monkey (voice) +19274#Seth Rogen#Mantis (voice) +140#Lucy Liu#Viper (voice) +212#David Cross#Crane (voice) +11661#Kate Hudson#Mei Mei (voice) +20904#James Hong#Mr. Ping (voice) + /eHWmEUP4fa7h1Fe7TXfTL7ncDl8.jpg + 77816 + Pearl Studio +China Film Co. +DreamWorks Animation + 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. + Jennifer Yuh Nelson +Alessandro Carloni + 95 + Action - Adventure - Animation - Comedy - Family + http://www.kungfupanda.com/ + /MZFPacfKzgisnPoJIPEFZUXBBT.jpg + Melissa Cobb + China +United States of America + 6.7 + Kung Fu Panda 3 + 2016 + + + $ +1281#Freddie Highmore#Arthur Montgomery +12021#Mia Farrow#Daisy Suchot +61605#Ron Crawford#Archibald Suchot +61604#Penny Balfour#Arthur's Mother +23532#Jason Bateman#Prince Darkos +61609#Doug Rand#Arthur's Father +61607#Adam LeFevre#Davido +61606#Jean Bejote Njamba#Massai Chief +61608#Saul Jephcott#Police Officer #1 +61610#Lee Delong#Saleslady +45849#Christian Erickson#Antique Dealer + /3zpcmA6Lcv2K7kxGV5hQfegQd7Y.jpg + US|PG + 85817 + Canal+ +Sofica Europacorp +Avalanche Productions + Arthur and the Invisibles + Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthur's grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks. + Luc Besson + 94 + Adventure - Fantasy - Animation - Family + /idbP413bzKWrQXJyElrDazcJUFM.jpg + Luc Besson +Emmanuel Prévost +Stéphane Lecomte +Jérome de Baecque + France + 6.0 + Arthur et les Minimoys + 2006 + + + $ +1281#Freddie Highmore#Arthur Montgomery +12021#Mia Farrow#Granny +116088#Logan Miller#Jake +53963#Robert Stanton#Armand +61604#Penny Balfour#Rose +61605#Ron Crawford#Archibald +61606#Jean Bejote Njamba#Chief Matassalai +46392#Lou Reed#Emperor Maltazard (voice) +77948#Selena Gomez#Selenia (voice) +11669#Jimmy Fallon#Prince Betameche (voice) +19767#Snoop Dogg#Max (voice) + /tnQzvoStbtcWTFlY41u6U11F7mc.jpg + US|PG + 85817 + Apipoulaï +Avalanche Productions +Sofica Europacorp + Arthur and the Revenge of Maltazard + Arthur answers a distress call from Princess Selenia, who is menaced by the nefarious Maltazard. + Luc Besson + 93 + Adventure - Fantasy - Animation - Family + /m4PuHaEIT5teXSKu6Mdv7Gl9ORy.jpg + Luc Besson +Emmanuel Prévost +Stéphane Lecomte + France + Arthur et la vengeance de Maltazard + 2009 + + + $ +1281#Freddie Highmore#Arthur Montgomery +12021#Mia Farrow#Granny +53963#Robert Stanton#Armand +61604#Penny Balfour#Rose - Arthur's mother +1237646#David Gasman#The Mechanic +582673#Antony Hickling#Douglas +1217635#Dashiell Eaves#Simon +1668026#Joseph Rezwin#Brad +1668075#Cooper Daniels#George Lucas +61605#Ron Crawford#Archibald +94435#Stuart Rudin#Francis + /hJ7zcIAxY3cfavFmsfz2JetRQ1x.jpg + US|G + 85817 + EuropaCorp +Apipoulaï +Avalanche Productions + Arthur 3: The War of the Two Worlds + Maltazard, the Evil M, is now 7 feet tall and evolving among the humans, causing terror wherever he goes. His goal is simple: forming an army of giant henchmen and ruling over the universe. Meanwhile, Arthur is still a Minimoy, and thus in a state where he's unable to fend him off. With the help of Selenia and Betameche, he hatches a plan to regain his usual size: all they must do is infiltrate Arthur's house through the pipeworks, catch an electric train from his bedroom to his grandfather's study and find an elixir that will make him grow back to his human size. Sounds simple enough, if it weren't for Darkos, Maltazard's own son, hot on their tails. + Luc Besson + 101 + Animation - Adventure - Fantasy - Family + /kcV19OrRiuJKytmoSTuA1gXCTOA.jpg + Luc Besson +Emmanuel Prévost +Stéphane Lecomte + France + Arthur 3: la guerre des deux mondes + 2010 + + + $ +31#Tom Hanks#Dr. Henry Goose / Hotel Manager / Isaac Sachs / Dermot Hoggins / Cavendish Look-a-Like Actor / Zachry +4587#Halle Berry#Native Woman / Jocasta Ayrs / Luisa Rey / Indian Party Guest / Ovid / Meronym +388#Jim Broadbent#Captain Molyneux / Vyvyan Ayrs / Timothy Cavendish / Korean Musician / Prescient 2 +1331#Hugo Weaving#Haskell Moore / Tadeusz Kesselring / Bill Smoke / Nurse Noakes / Boardman Mephi / Old Georgie +38941#Jim Sturgess#Adam Ewing / Poor Hotel Guest / Megan's Dad / Highlander / Hae-Joo Chang / Adam / Zachry Brother-in-Law +21688#Bae Doo-na#Tilda / Megan's Mom / Mexican Woman / Sonmi-451 / Sonmi-351 / Sonmi Prostitute +17064#Ben Whishaw#Cabin Boy / Robert Frobisher / Store Clerk / Georgette / Tribesman +65827#Keith David#Kupaka / Joe Napier / An-kor Apis / Prescient +19655#James D'Arcy#Young Rufus Sixsmith / Old Rufus Sixsmith / Nurse James / Archivist +71057#Zhou Xun#Talbot / Hotel Manager / Yoona-939 / Rose +55411#David Gyasi#Autua / Lester Rey / Duophsyte + /2ZA03KiD4jePTNBTJjGGFTNQPMA.jpg + US|R + Cloud Atlas Productions +Anarchos Productions +Ascension Pictures + 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. + Lilly Wachowski +Lana Wachowski +Tom Tykwer + 172 + Drama - Science Fiction + http://cloudatlas.warnerbros.com/ + /8VNiyIp67ZxhpNgdrwACW0jgvP2.jpg + Lana Wachowski +Lilly Wachowski +Stefan Arndt +Grant Hill +Tom Tykwer +Alexandr Rodnyansky + Germany +Hong Kong +Singapore + 6.0 + Cloud Atlas + 2012 + + + $ +3223#Robert Downey Jr.#Tony Stark +18288#Terrence Howard#Rhodey +1229#Jeff Bridges#Obadiah Stane +12052#Gwyneth Paltrow#Pepper Potts +17857#Shaun Toub#Yinsen +57452#Faran Tahir#Raza +57451#Leslie Bibb#Christine Everhart +9048#Clark Gregg#Agent Coulson +6162#Paul Bettany#Jarvis (voice) +15277#Jon Favreau#Hogan +163671#Will Lyman#Award Ceremony Narrator (voice) + /ZQixhAZx6fH1VNafFXsqa1B8QI.jpg + 131292 + Marvel Studios + After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil. + Jon Favreau + 126 + Action - Science Fiction - Adventure + http://www.ironmanmovie.com/ + /848chlIWVT41VtAAgyh9bWymAYb.jpg + Avi Arad +Kevin Feige + United States of America + 7.5 + Iron Man + 2008 + + + $ +3223#Robert Downey Jr.#Tony Stark / Iron Man +74568#Chris Hemsworth#Thor Odinson +103#Mark Ruffalo#Bruce Banner / Hulk +16828#Chris Evans#Steve Rogers / Captain America +1245#Scarlett Johansson#Natasha Romanoff / Black Widow +1896#Don Cheadle#James 'Rhodey' Rhodes / War Machine +71580#Benedict Cumberbatch#Stephen Strange / Doctor Strange +1136406#Tom Holland#Peter Parker / Spider-Man +172069#Chadwick Boseman#T'Challa / Black Panther +8691#Zoe Saldana#Gamora +543261#Karen Gillan#Nebula + /bOGkgRGdhrBYJSLpXaxhXVstddV.jpg + 86311 + Marvel Studios + 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. + Joe Russo +Anthony Russo + 149 + Adventure - Action - Fantasy + http://marvel.com/movies/movie/223/avengers_infinity_war_part_1 + /7WsyChQLEftFiDOVTGkv3hFpyyt.jpg + Kevin Feige + United States of America + 8.3 + Avengers: Infinity War + 2018 + + + $ +172069#Chadwick Boseman#T'Challa / Black Panther +135651#Michael B. Jordan#N'Jadaka / Erik Killmonger +1267329#Lupita Nyong'o#Nakia +82104#Danai Gurira#Okoye +7060#Martin Freeman#Everett K. Ross +206919#Daniel Kaluuya#W'Kabi +1083010#Letitia Wright#Shuri +1447932#Winston Duke#M'Baku +9780#Angela Bassett#Ramonda +2178#Forest Whitaker#Zuri +1333#Andy Serkis#Ulysses Klaue / Klaw + /b6ZJZHUdMEFECvGiDpJjlfUWela.jpg + 529892 + Marvel Studios +Walt Disney Pictures + 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. + Ryan Coogler + 134 + Action - Adventure - Fantasy - Science Fiction + https://marvel.com/movies/movie/224/black_panther + /uxzzxijgPIY7slzFvMotPv8wjKA.jpg + Kevin Feige +David J. Grant + United States of America + 7.3 + Black Panther + 2018 + + + $ +71580#Benedict Cumberbatch#Stephen Strange / Doctor Strange +5294#Chiwetel Ejiofor#Karl Mordo +53714#Rachel McAdams#Dr. Christine Palmer +1019#Mads Mikkelsen#Kaecilius +3063#Tilda Swinton#The Ancient One +30082#Benedict Wong#Wong +72873#Michael Stuhlbarg#Dr. Nicodemus West +4589#Benjamin Bratt#Jonathan Pangborn +78110#Scott Adkins#Lucian / Strong Zealot +1070721#Zara Phythian#Brunette Zealot +126802#Alaa Safi#Tall Zealot + /tFI8VLMgSTTU38i8TIsklfqS9Nl.jpg + US|PG-13 + Marvel Studios + 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. + Scott Derrickson + 115 + Action - Adventure - Fantasy - Science Fiction + http://marvel.com/doctorstrange + /4PiiNGXj1KENTmCBHeN6Mskj2Fq.jpg + Kevin Feige + United States of America + 7.3 + Doctor Strange + 2016 + + + $ +65524#Ioan Gruffudd#Reed Richards / Mr. Fantastic +56731#Jessica Alba#Sue Storm / Invisible Woman +16828#Chris Evans#Johnny Storm / Human Torch +19654#Michael Chiklis#Ben Grimm / The Thing +20402#Julian McMahon#Victor von Doom / Doctor Doom +11703#Kerry Washington#Alicia Masters +184581#Hamish Linklater#Leonard +8332#Laurie Holden#Debbie McIlvane +77036#David Parker#Ernie +27111#Kevin McNulty#Jimmy O'Hoolihan +74353#Maria Menounos#Sexy Nurse + /2yBWCL0RPJ6Av8LWxcrhuMRlZyG.jpg + US|PG-13 + 9744 + Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 3 KG +1492 Pictures +Constantin Film Produktion + 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. + Tim Story + 106 + Action - Adventure - Fantasy - Science Fiction + /aJwUBmUA11lkNVSJ3if3h3xHSFd.jpg + Avi Arad +Bernd Eichinger +Ralph Winter + Germany +United States of America + 5.7 + Fantastic Four + 2005 + + + $ +996701#Miles Teller#Reed Richards / Mr. Fantastic +51072#Kate Mara#Sue Storm / The Invisible Woman +135651#Michael B. Jordan#Johnny Storm / The Human Torch +20286#Toby Kebbell#Victor Domashev / Doctor Doom +38951#Reg E. Cathey#Dr. Franklin Storm +478#Jamie Bell#Ben Grimm / The Thing +1462#Tim Blake Nelson#Harvey Elder +1529004#Joshua Montes#Quarterback Speech School Kid +198#Dan Castellaneta#Mr. Kenny +1529010#Owen Judge#Young Reed +1502947#Kylen Davis#Teasing School Kid + /3Kgu3ys6W6UZWWFty7rlTWgST63.jpg + US|PG-13 + Moving Picture Company +Marvel Entertainment +TSG Entertainment + 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. + Josh Trank + 100 + Action - Adventure - Science Fiction + http://www.fantasticfourmovie.com/ + /g23cs30dCMiG4ldaoVNP1ucjs6.jpg + Gregory Goodman +Matthew Vaughn +Simon Kinberg +Robert Kulzer +Hutch Parker + United States of America + 4.0 + Fantastic Four + 2015 + + + $ +82191#Sharlto Copley#Chappie +76788#Dev Patel#Deon Wilson +985041#Ninja#Ninja +985040#Yolandi Visser#Yo-Landi +20191#Jose Pablo Cantillo#Yankie (Amerika) +6968#Hugh Jackman#Vincent Moore +10205#Sigourney Weaver#Michelle Bradley +1029029#Brandon Auret#Hippo +1467496#Johnny Selema#Pitbull +1217309#Anderson Cooper#Anderson Cooper +1484650#Maurice Carpede#Police Chief + /y5lG7TBpeOMG0jxAaTK0ghZSzBJ.jpg + US|R + Columbia Pictures +Media Rights Capital +LStar Capital + 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. + Neill Blomkamp + 120 + Crime - Action - Science Fiction + http://www.chappie-movie.com + /saF3HtAduvrP9ytXDxSnQJP3oqx.jpg + Neill Blomkamp +Simon Kinberg + Mexico +South Africa +United States of America + 6.0 + Chappie + 2015 + + + $ +1892#Matt Damon#Max +1038#Jodie Foster#Delacourt +82191#Sharlto Copley#Kruger +8602#Alice Braga#Frey +8688#Diego Luna#Julio +52583#Wagner Moura#Spider +886#William Fichtner#John Carlyle +57452#Faran Tahir#President Patel +20191#Jose Pablo Cantillo#Sandro +206928#Maxwell Perry Cotton#Young Max +1029029#Brandon Auret#Drake + /vSbjlX9y8S2hKNURHEO4GsoIOay.jpg + Genre Films +TriStar Pictures +Media Rights Capital + 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. + Neill Blomkamp + 109 + Science Fiction - Action - Drama - Thriller + /tHkjoAxmhp3Eau1h0Ir7maKMwUz.jpg + Simon Kinberg +Bill Block +Neill Blomkamp + United States of America + 6.4 + Elysium + 2013 + + + $ +15111#Jean-Claude Van Damme#Sam Gillen +2165#Rosanna Arquette#Clydie Anderson +18793#Kieran Culkin#Mike 'Mookie' Anderson +15854#Ted Levine#Mr. Dunston +65036#Tiffany Taubman#Bree Anderson +1066171#Edward Blatchford#Sheriff Lonnie Cole +10682#Anthony Starke#Billy +14324#Joss Ackland#Franklin Hale +33017#Allan Graf#Bus Driver +7140#Leonard Termo#Bus Guard +1785844#Peter Malota#Prisoner + /9snG3oqEgPMjkhTazqbjfOU454d.jpg + US|R + Columbia Pictures + Escaped convict Sam Gillen single-handedly takes on ruthless developers who are determined to evict a widow with two young children. + Robert Harmon + 94 + Action - Adventure - Drama - Thriller + /mpEJ955gAHB5pGHbFGd7J4hW3lk.jpg + Gary Adelson +Craig Baumgarten + United States of America + 5.0 + Nowhere to Run + 1993 + + + $ +15111#Jean-Claude Van Damme#Rudy Cafmeyer / Charles Le Vaillant +2719#Brian Thompson#Cyrus Jacob +10017#Charlton Heston#Prof. Walter Finley +52628#Sofia Milos#Lt. Dalia Barr +29068#Ben Cross#Maj. Ben Ner +1170096#Shalom Sharon Raginiano#Bassam +1542122#Joseph J. Tomaska#Goldman +1785844#Peter Malota#Amnon + /hkBJyQuIFQ6KSJQIfsI9k5IyvEm.jpg + 777 Films Corporation + When Rudy, an artifacts smuggler, goes to Jerusalem to rescue his kidnapped archeologist father, he faces deportation by a scheming police chief. Now, to find his dad and recover a sacred scroll, he'll have to outwit officials and a ruthless sect. With the help of a beautiful Israeli cop, Rudy battles a faction of religious zealots determined to see a holy war at all costs. + Sheldon Lettich + 89 + Adventure - Action - Comedy + /woezfJ5SQdDK9Qnbkm7IQb3uAaq.jpg + Aruba +United States of America + 4.4 + The Order + 2001 + + + $ +10980#Daniel Radcliffe#Harry Potter +10989#Rupert Grint#Ron Weasley +10990#Emma Watson#Hermione Granger +5658#Michael Gambon#Albus Dumbledore +5469#Ralph Fiennes#Lord Voldemort +10993#Tom Felton#Draco Malfoy +1923#Robbie Coltrane#Rubeus Hagrid +4566#Alan Rickman#Severus Snape +10978#Maggie Smith#Minerva McGonagall +1283#Helena Bonham Carter#Bellatrix Lestrange +2039#Brendan Gleeson#Alastor 'Mad­Eye' Moody + /gGt4ePOhD8ilxd3FYhKB06L2CyG.jpg + 1241 + Warner Bros. Pictures +Heyday Films + 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. + David Yates + 138 + Adventure - Fantasy - Family - Mystery + http://www.harrypotterorderofthephoenix.com/ + /4YnLxYLHhT4UQ8i9jxAXWy46Xuw.jpg + David Heyman + United Kingdom +United States of America + 7.6 + Harry Potter and the Order of the Phoenix + 2007 + + + $ +10980#Daniel Radcliffe#Harry Potter +10989#Rupert Grint#Ron Weasley +10990#Emma Watson#Hermione Granger +4566#Alan Rickman#Severus Snape +5469#Ralph Fiennes#Lord Voldemort +10978#Maggie Smith#Minerva McGonagall +1283#Helena Bonham Carter#Bellatrix Lestrange +10991#Bonnie Wright#Ginny Weasley +140367#Evanna Lynch#Luna Lovegood +96841#Matthew Lewis#Neville Longbottom +10993#Tom Felton#Draco Malfoy + /6n0DAcyjTHS6888mt8U9ZsLy9nR.jpg + US|PG-13 + 1241 + Warner Bros. Pictures +Heyday Films + 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. + David Yates + 130 + Family - Fantasy - Adventure + http://hpwishlist.warnerbros.com/ + /fTplI1NCSuEDP4ITLcTps739fcC.jpg + David Barron + United Kingdom +United States of America + 8.0 + Harry Potter and the Deathly Hallows: Part 2 + 2011 + + + $ +10980#Daniel Radcliffe#Harry Potter +10990#Emma Watson#Hermione Granger +10989#Rupert Grint#Ron Weasley +5469#Ralph Fiennes#Lord Voldemort +1283#Helena Bonham Carter#Bellatrix Lestrange +4566#Alan Rickman#Severus Snape +2440#Bill Nighy#Rufus Scrimgeour +5658#Michael Gambon#Albus Dumbledore +2039#Brendan Gleeson#Alastor 'Mad-Eye' Moody +5049#John Hurt#Mr. Ollivander +8785#Ciarán Hinds#Aberforth Dumbledore + /8YA36faYlkpfp6aozcGsqq68pZ9.jpg + US|PG-13 + 1241 + Warner Bros. Pictures +Heyday Films + 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. + David Yates + 146 + Adventure - Fantasy - Family + http://www.harrypotter.com + /maP4MTfPCeVD2FZbKTLUgriOW4R.jpg + David Barron +David Heyman +J.K. Rowling + United Kingdom +United States of America + 7.0 + Harry Potter and the Deathly Hallows: Part 1 + 2010 + + + $ +10980#Daniel Radcliffe#Harry Potter +10989#Rupert Grint#Ron Weasley +10990#Emma Watson#Hermione Granger +10993#Tom Felton#Draco Malfoy +5658#Michael Gambon#Albus Dumbledore +388#Jim Broadbent#Horace Slughorn +1283#Helena Bonham Carter#Bellatrix Lestrange +1923#Robbie Coltrane#Rubeus Hagrid +10978#Maggie Smith#Minerva McGonagall +4566#Alan Rickman#Severus Snape +9191#Timothy Spall#Peter Pettigrew + /kRyojLYtWPsBKfDhphhhl1FdM5a.jpg + US|PG + 1241 + Warner Bros. Pictures +Heyday Films + 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. + David Yates + 153 + Adventure - Fantasy - Family + http://harrypotter.warnerbros.com/harrypotterandthehalf-bloodprince/dvd/index.html + /bFXys2nhALwDvpkF3dP3Vvdfn8b.jpg + David Barron +David Heyman +Tim Lewis + United Kingdom +United States of America + 7.0 + Harry Potter and the Half-Blood Prince + 2009 + + + $ +10980#Daniel Radcliffe#Harry Potter +10989#Rupert Grint#Ron Weasley +10990#Emma Watson#Hermione Granger +5469#Ralph Fiennes#Lord Voldemort +5658#Michael Gambon#Albus Dumbledore +4566#Alan Rickman#Severus Snape +1923#Robbie Coltrane#Rubeus Hagrid +2039#Brendan Gleeson#Alastor "Mad-Eye" Moody +64#Gary Oldman#Sirius Black +11288#Robert Pattinson#Cedric Diggory +11291#Clémence Poésy#Fleur Delacour + /gzKW3emulMxIHzuXxZoyDB1lei9.jpg + US|PG-13 + 1241 + Patalex IV Productions Limited +Warner Bros. Pictures +Heyday Films + 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. + Mike Newell + 157 + Adventure - Fantasy - Family + http://harrypotter.warnerbros.com/ + /6sASqcdrEHXxUhA3nFpjrRecPD2.jpg + David Heyman + United Kingdom +United States of America + 7.0 + Harry Potter and the Goblet of Fire + 2005 + + + $ +10980#Daniel Radcliffe#Harry Potter +10989#Rupert Grint#Ron Weasley +10990#Emma Watson#Hermione Granger +64#Gary Oldman#Sirius Black +11207#David Thewlis#Remus Lupin +4566#Alan Rickman#Severus Snape +5658#Michael Gambon#Albus Dumbledore +1923#Robbie Coltrane#Rubeus Hagrid +10993#Tom Felton#Draco Malfoy +7056#Emma Thompson#Sybill Trelawney +10978#Maggie Smith#Minerva McGonagall + /wUpBH6RIH4uOiWoPjj8MKUemu9F.jpg + US|PG + 1241 + 1492 Pictures +Heyday Films +Warner Bros. Pictures + 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. + Alfonso Cuarón + 141 + Adventure - Fantasy - Family + /jUFjMoLh8T2CWzHUSjKCojI5SHu.jpg + David Heyman +Mark Radcliffe +Lorne Orleans + United Kingdom +United States of America + 7.0 + Harry Potter and the Prisoner of Azkaban + 2004 + + + $ +10980#Daniel Radcliffe#Harry Potter +10989#Rupert Grint#Ron Weasley +10990#Emma Watson#Hermione Granger +194#Richard Harris#Albus Dumbledore +4566#Alan Rickman#Severus Snape +10993#Tom Felton#Draco Malfoy +11181#Kenneth Branagh#Gilderoy Lockhart +1923#Robbie Coltrane#Rubeus Hagrid +10978#Maggie Smith#Minerva McGonagall +11180#David Bradley#Argus Filch +10991#Bonnie Wright#Ginny Weasley + /avqzwKn89VetTEvAlBePt3Us6Al.jpg + US|PG + 1241 + 1492 Pictures +Heyday Films +Warner Bros. Pictures + Ignoring threats to his life, Harry returns to Hogwarts to investigate – aided by Ron and Hermione – a mysterious series of attacks. + Chris Columbus + 161 + Adventure - Fantasy - Family + /sdEOH0992YZ0QSxgXNIGLq1ToUi.jpg + David Heyman + Germany +United Kingdom +United States of America + 7.0 + Harry Potter and the Chamber of Secrets + 2002 + + + $ +10980#Daniel Radcliffe#Harry Potter +10989#Rupert Grint#Ron Weasley +10990#Emma Watson#Hermione Granger +194#Richard Harris#Albus Dumbledore +10993#Tom Felton#Draco Malfoy +1923#Robbie Coltrane#Rubeus Hagrid +4566#Alan Rickman#Severus Snape +10978#Maggie Smith#Minerva McGonagall +10983#Richard Griffiths#Vernon Dursley +10985#Ian Hart#Professor Quirrell/Voldemort +10981#Fiona Shaw#Petunia Dursley + /hziiv14OpD73u9gAak4XDDfBKa2.jpg + US|PG + 1241 + Warner Bros. Pictures +Heyday Films + 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. + Chris Columbus + 152 + Adventure - Fantasy - Family + http://harrypotter.warnerbros.com/harrypotterandthedeathlyhallows/mainsite/index.html + /dCtFvscYcXQKTNvyyaQr2g2UacJ.jpg + David Heyman + United Kingdom +United States of America + 7.0 + Harry Potter and the Philosopher's Stone + 2001 + + + $ +15111#Jean-Claude Van Damme#Jack Robideaux +83674#Stephen Lord#Benjamin Meyers +72312#Gary McDonald#Billy Pawnell +152265#Natalie J. Robb#Capt. Ramona Garcia +131102#Daniel Perrone#Felix Nestor +78110#Scott Adkins#Karp +156381#Andrée Bernard#Lexxi +65885#Miles Anderson#Arthur Pennigton +58794#Todd Jensen#Wray +90112#Ivaylo Geraskov#Gallery +105834#Velislav Pavlov#The Contact + /hhLmKRdIrdo0xpcsnKlUz2aIE8m.jpg + Sony Pictures Home Entertainment + A Texas cop battles ex-navy seals who are trying to traffic drugs from Mexico into the USA. + Isaac Florentine + 95 + Action - Crime - Thriller + /ztRg9oXk0tc6pltahjDSXRFKNOQ.jpg + Moshe Diamant + United States of America + 5.0 + The Shepherd: Border Patrol + 2008 + + + $ +1892#Matt Damon#Mark Watney +83002#Jessica Chastain#Melissa Lewis +41091#Kristen Wiig#Annie Montrose +8447#Jeff Daniels#Teddy Sanders +454#Michael Peña#Rick Martinez +48#Sean Bean#Mitch Henderson +51072#Kate Mara#Beth Johanssen +60898#Sebastian Stan#Chris Beck +76547#Aksel Hennie#Alex Vogel +5294#Chiwetel Ejiofor#Venkat Kapoor +30082#Benedict Wong#Bruce Ng + /sy3e2e4JwdAtd2oZGA2uUilZe8j.jpg + Scott Free Productions +Mid Atlantic Films +International Traders + 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. + Ridley Scott + 141 + Drama - Adventure - Science Fiction + http://www.foxmovies.com/movies/the-martian + /5aGhaIHYuQbqlHWvWYqMCnj40y2.jpg + Simon Kinberg +Ridley Scott +Mark Huffam +Michael Schaefer + United Kingdom +United States of America + 7.7 + The Martian + 2015 + + + $ +31#Tom Hanks#Robert Langdon +72855#Felicity Jones#Dr. Sienna Brooks +78423#Omar Sy#Christoph Bouchard +76793#Irrfan Khan#Harry Sims / The Provost +32683#Sidse Babett Knudsen#Dr. Elizabeth Sinskey +11107#Ben Foster#Bertrand Zobrist +971726#Ana Ularu#Vayentha +1668468#Ida Darvish#Marta Alvarez +1753718#Paolo Antonio Simioni#Dr. Marconi +1753719#Alessandro Grimaldi#Florence Hospital Taxi Driver +231143#Fausto Maria Sciarappa#Parker + /anmLLbDx9d98NMZRyVUtxwJR6ab.jpg + 115776 + Mid Atlantic Films +Columbia Pictures +Sony Pictures Releasing + After waking up in a hospital with amnesia, professor Robert Langdon and a doctor must race against time to foil a deadly global plot. + Ron Howard + 121 + Mystery - Thriller - Drama + http://www.infernothemovie.com/ + /oFOG2yIRcluKfTtYbzz71Vj9bgz.jpg + Brian Grazer +Ron Howard + Hungary +United States of America + 5.8 + Inferno + 2016 + + + $ +38559#Christopher Lambert#Connor 'The Highlander' MacLeod +29021#Roxanne Hart#Brenda J. Wyatt +6574#Clancy Brown#Victor 'The Kurgan' Kruger +738#Sean Connery#Juan Sanchez Villa-Lobos Ramirez +53515#Beatie Edney#Heather MacLeod +53584#Alan North#Lieutenant Frank Moran +4253#Jon Polito#Det. Walter Bedsoe +53585#Sheila Gish#Rachel Ellenstein +31925#Hugh Quarshie#Sunda Kastagir +53587#Peter Diamond#Aman Fasil +53588#Billy Hartman#Dugal MacLeod + /q6jg0cSixdEGUsyzkuh2qqL6iVq.jpg + 8050 + Davis-Panzer Productions +Thorn EMI Screen Entertainment +Highlander Productions Limited + He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal. + Russell Mulcahy + 116 + Adventure - Action - Fantasy + /6l4t1vWAFMuAiOpDT0mDWlrr5Mp.jpg + Peter S. Davis +William N. Panzer + United Kingdom +United States of America + 6.9 + Highlander + 1986 + + + $ +38559#Christopher Lambert#Connor MacLeod +27422#Bruce Payne#Jacob Kell +71900#Adrian Paul#Duncan MacLeod +1341#Donnie Yen#Jin Ke +9146#Lisa Barbuscia#Kate MacLeod / Faith +53515#Beatie Edney#Heather MacLeod +1760088#David Nicholls#Drunk Friend + /xYdzbB3TksChZLuZ9qq7iq5fFux.jpg + 8050 + Davis-Panzer Productions +Dimension Films + Immortals Connor and Duncan Macleod join forces against a man from Connor's distant past in the highlands of Scotland, Kell, an immensely powerful immortal who leads an army of equally powerful and deadly immortal swordsmen and assassins. No immortal alive has been able to defeat Kell yet, and neither Connor nor Duncan are skilled enough themselves to take him on and live. The two of them eventually come to one inevitable conclusion; one of them must die so that the combined power of both the Highlanders can bring down Kell for good. There can be only one... the question is, who will it be? + Douglas Aarniokoski + 87 + Action - Fantasy - Science Fiction + /fmDt68Pj9OiR3pfvNL9qkuhKvi2.jpg + Bob Weinstein +Peter S. Davis +William N. Panzer + United States of America + 4.6 + Highlander: Endgame + 2000 + + + $ +38559#Christopher Lambert#Connor 'The Highlander' MacLeod +16214#Mario Van Peebles#Kane +13549#Deborah Kara Unger#Alex Johnson / Sarah +10134#Mako#Nakano +53596#Martin Neufeld#Stenn +53597#Daniel Do#Takamura +29069#Michael Jayston#Jack Donovan +53598#Louis Bertignac#Pierre Bouchet + /opz4bVpTa6zViVovC3l0SarIDJI.jpg + 8050 + Trans-Film +Fallingcloud +Initial Groupe + Highlander: The Final Dimension + Starts off in the 15th century, with Connor McLeod (Christopher Lambert) training with another immortal swordsman, the Japanese sorcerer Nakano (Mako). When an evil immortal named Kane (Mario Van Peebles) kills the old wizard, the resulting battle leaves him buried in an underground cave. When Kane resurfaces in the 20th century to create havoc, it's up to McLeod to stop him. + Andrew Morahan + 99 + Action - Fantasy - Science Fiction + /8ZeckjmtObR3QPjzSm4X656vFS2.jpg + Canada +France +United Kingdom + 4.6 + Highlander III: The Sorcerer + 1994 + + + $ +71900#Adrian Paul#Duncan MacLeod +45749#Thekla Reuten#Anna Teshemka +47670#Cristian Solimeno#The Guardian +60462#Peter Wingfield#Methos +52288#Jim Byrnes#Joe Dawson +74414#Stephen Rahman Hughes#Zai Jie +69592#Stephen Wight#Reggie Weller +61937#Thom Fell#Cardinal Giovanni +74415#Patrice Naiambana#The Elder +74416#Sakalas Uždavinys#Security Guard +74417#Geoffrey T. Bersey#Brother Radu + /35DjHtfZF9grTz5Mq0aXADSgwAr.jpg + 8050 + Davis-Panzer Productions +Sequence Film + The world is falling into chaos. As he roams a crumbling city, Duncan MacLeod, the Highlander, remembers happier times before the love of his life left... Hopeless and alone, MacLeod finds his way to a band of immortal companions, including his mysterious friend Methos, and a mortal, Watcher Joe Dawson. Together this small group sets out on a quest to find the origin of the first Immortal. + Brett Leonard + 86 + Action - Fantasy - Science Fiction + /rlpEljiu8ZvjVhpuvgCqU9MvddJ.jpg + Adrian Paul +Peter S. Davis +William N. Panzer + United Kingdom +Lithuania +United States of America + 3.8 + Highlander V: The Source + 2007 + + + $ +2395#Whoopi Goldberg#Celie +13307#Margaret Avery#Shug Avery +2047#Danny Glover#Albert +13308#Akosua Busia#Netti +13309#Oprah Winfrey#Sofia +13310#Willard E. Pugh#Harpo +13311#Desreta Jackson#Young Celie Harris +13312#Rae Dawn Chong#Squeak +13313#Adolph Caesar#Old Mister +13314#Dana Ivey#Miss Millie +13315#Leonard Jackson#Pa + /mGzHgeXhGSRVMfwq0oo7VAltiZH.jpg + Amblin Entertainment +The Guber-Peters Company +Warner Bros. Pictures + An epic tale spanning forty years in the life of Celie, an African-American woman living in the South who survives incredible abuse and bigotry. After Celie's abusive father marries her off to the equally debasing "Mister" Albert Johnson, things go from bad to worse, leaving Celie to find companionship anywhere she can. She perseveres, holding on to her dream of one day being reunited with her sister in Africa. Based on the novel by Alice Walker. + Steven Spielberg + 154 + Drama + /2a50LyRInWGLWq3u3DeGBQnvBHR.jpg + Steven Spielberg +Frank Marshall +Kathleen Kennedy +Quincy Jones +Carole Isenberg + United States of America + 7.8 + The Color Purple + 1985 + + + $ +1100#Arnold Schwarzenegger#Major Alan "Dutch" Schaefer +1101#Carl Weathers#Al Dillon +1102#Elpidia Carrillo#Anna Gonsalves +1103#Bill Duke#Mac Eliot +1106#Richard Chaves#Jorge "Poncho" Ramirez +1104#Jesse Ventura#Blain Cooper +1105#Sonny Landham#Billy Sole +1108#Shane Black#Rick Hawkins +1107#R.G. Armstrong#Major General Homer Phillips +1109#Kevin Peter Hall#Helicopter Pilot / Predator +19540#Peter Cullen#The Predator (voice) (uncredited) + /ib247UzpzFwZp5XW2RZtwSHqLf0.jpg + 399 + Amercent Films +American Entertainment Partners L.P. +Davis Entertainment + 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. + John McTiernan + 107 + Science Fiction - Action - Adventure - Thriller + /p6fhq04t75yCfE0kSTNZGQvWuQ1.jpg + Joel Silver +Lawrence Gordon +John Davis + United States of America + 7.4 + Predator + 1987 + + + $ +1109#Kevin Peter Hall#The Predator +2047#Danny Glover#Lieutenant Mike Harrigan +2048#Gary Busey#Peter Keyes +2049#Rubén Blades#Danny Archuleta +2051#María Conchita Alonso#Leona Cantrell +2053#Bill Paxton#Jerry Lambert +2059#Adam Baldwin#Garber +2055#Robert Davi#Captain Phil Heinemann +2062#Kent McCord#Captain B. Pilgrim +2064#Morton Downey, Jr.#Tony Pope +2067#Calvin Lockhart#King Willie + /bXYpV6XAQnspjHaKPLtVclFdugD.jpg + 399 + Davis Entertainment +Lawrence Gordon Productions +Silver Pictures + 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. + Stephen Hopkins + 108 + Science Fiction - Action - Thriller + /4cAQgbIPislEeBJahLO5BsqAUZN.jpg + John Davis +Lawrence Gordon +Joel Silver + United States of America + 6.0 + Predator 2 + 1990 + + + $ +17052#Topher Grace#Edwin +8602#Alice Braga#Isabelle +2975#Laurence Fishburne#Noland +3490#Adrien Brody#Royce +11160#Danny Trejo#Cuchillo +27740#Walton Goggins#Stans +77351#Oleg Taktarov#Nikolai +113308#Louis Ozawa Changchien#Hanzo +1015924#Carey Jones#Tracker Predator +12359#Brian Steele#Berserker Predator / Falconer Predator +51300#Derek Mears#Classic Predator + /aBLsGBlDnDMgoKn3jmcVpiyUqGV.jpg + 399 + Troublemaker Studios +Davis Entertainment +Dune Entertainment III + 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. + Nimród Antal + 107 + Action - Science Fiction - Adventure - Thriller + /gsnUhWMYLSD8VZS7nrMT9mj9BYr.jpg + Robert Rodriguez +Elizabeth Avellan +John Davis + United States of America + 6.0 + Predators + 2010 + + + $ +56389#Steven Pasquale#Dallas Howard +25869#Reiko Aylesworth#Kelly O'Brien +40543#John Ortiz#Sheriff Eddie Morales +76414#Ariel Gade#Molly O'Brien +131006#Sam Trammell#Tim +73454#Kristen Hager#Jesse +19976#Robert Joy#Col. Stevens +33293#David Paetkau#Dale +109870#Tom Woodruff Jr.#Alien +946696#Ian Whyte#Predator +70175#Chelah Horsdal#Darcy + /t3KsaZTvSIEGEsf3hII8PbKzMBi.jpg + 115762 + Dune Entertainment +Davis Entertainment +Brandywine Productions + 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. + Colin Strause +Greg Strause + 94 + Fantasy - Action - Science Fiction - Thriller - Horror + http://www.avp-r.com/ + /xR4Mslyum7bjzAF1rlUX2HrlwhZ.jpg + John Davis +David Giler +Walter Hill + United States of America + 4.9 + Aliens vs Predator: Requiem + 2007 + + + $ +235814#Anton Pampushnyy#Arseniy / Arsus +1602696#Sanzhar Madiyev#Temirkhan / Khan +1602695#Sebastien Sisak#Ler / Lernik +1602697#Alina Lanina#Kseniya +1523621#Valeriya Shkirando#Maj. Elena Larina +235424#Vyacheslav Razbegaev#Gen. Nikolay Dolgov +1765146#Nikolay Shestak#Fedor +1826991#Vladimir Butenko#S.W.A.T +1582602#Stanislav Shirin#Avgust Kuratov + /97EfqyIH06AqZldcedkB1y4mKN0.jpg + Renovatio Entertainment +Enjoy Movies +Big Cinema House + Guardians + During the Cold War, an organization called "Patriot" created a super-hero squad, which includes members of multiple soviet republics. For years, the heroes had to hide their identities, but in hard times they must show themselves again. + Sarik Andreasyan + 100 + Action - Fantasy - Science Fiction + /r1cJPzC85XsVOzai8MMG9Qe4AH6.jpg + Gevond Andreasyan +Sarik Andreasyan +Vladimir Polyakov +Aleksey Ryazantsev + Russia + 4.4 + Защитники + 2017 + + + $ +14528#Yul Brynner#Chris Adams +3265#Eli Wallach#Calvera +13565#Steve McQueen#Vin +4960#Charles Bronson#Bernardo O'Reilly +14060#Robert Vaughn#Lee +14529#Brad Dexter#Harry Luck +5563#James Coburn#Britt +5789#Horst Buchholz#Chico +14532#Jorge Martínez de Hoyos#Hilario +14533#Vladimir Sokoloff#Old man +14534#Rosenda Monteros#Petra + /oRSocDAAADYnCkI4jiUeRnlCnwG.jpg + US|Approved + 110021 + Alpha Productions +The Mirisch Corporation + An oppressed Mexican peasant village hires seven gunfighters to help defend their homes. + John Sturges + 128 + Western + /7w3JmmyL8GpBvW6BusQfQCSm2h0.jpg + John Sturges + United States of America + 7.6 + The Magnificent Seven + 1960 + + + $ +90633#Gal Gadot#Diana Prince / Wonder Woman +62064#Chris Pine#Steve Trevor +935#Connie Nielsen#Queen Hippolyta +32#Robin Wright#Antiope +6413#Danny Huston#Erich Ludendorff +11207#David Thewlis#Sir Patrick Morgan / Ares +5419#Saïd Taghmaoui#Sameer +1125#Ewen Bremner#Charlie +1823591#Eugene Brave Rock#Chief Napi +11111#Lucy Davis#Etta Candy +3623#Elena Anaya#Isabel Maru / Doctor Poison + /6iUNJZymJBMXXriQyFZfLAKnjO6.jpg + 468552 + Dune Entertainment +Atlas Entertainment +DC Entertainment + 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. + Patty Jenkins + 141 + Action - Adventure - Fantasy - War + http://www.warnerbros.com/wonder-woman + /imekS7f1OuHyUP2LAiTEM0zBzUz.jpg + Charles Roven +Deborah Snyder +Zack Snyder +Richard Suckle + United States of America + 7.3 + Wonder Woman + 2017 + + + $ +16483#Sylvester Stallone#Raymond 'Ray' Tango +6856#Kurt Russell#Gabriel 'Gabe' Cash +10742#Teri Hatcher#Katherine 'Kiki' Tango +3785#Jack Palance#Yves Perret +591#Brion James#Requin +20904#James Hong#Quan +80579#Robert Z'Dar#Face +6451#Michael J. Pollard#Owen +702#Philip Tan#Chinese Gunman +12888#Roy Brocksmith#Fed. Agent Davis +160474#Marc Alaimo#Lopez + /oeEBJtwDdB5kGumLwv8IvC9InMV.jpg + The Guber-Peters Company +Warner Bros. Pictures + 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. + Andrei Konchalovsky +Albert Magnoli + 104 + Action - Adventure - Comedy + /mHDDTtNMyDkjy807KmNsuSJyIQK.jpg + Peter Guber +Jon Peters + United States of America + 6.3 + Tango & Cash + 1989 + + + $ +16483#Sylvester Stallone#John Spartan +10814#Wesley Snipes#Simon Phoenix +18277#Sandra Bullock#Lt. Lenina Huxley +15788#Nigel Hawthorne#Dr. Raymond Cocteau +4589#Benjamin Bratt#Alfredo Garcia +5724#Denis Leary#Edgar Friendly +4029#Bob Gunton#Chief George Earle +13243#Glenn Shadix#Associate Bob +6326#Pat Skipper#Helicopter Pilot +14328#Steve Kahan#Captain Healy +1464789#Mark Colson#Warden William Smithers - Young + /fj6nbVd7FVENNLtusyd1U8bcUFu.jpg + Silver Pictures +Warner Bros. Pictures + 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. + Marco Brambilla + 115 + Crime - Action - Science Fiction + http://www.warnerbros.com/demolition-man + /k0PN3Ho12cGGIVJW7SCS7apLYaP.jpg + Howard G. Kazanjian +Michael Levy +Joel Silver + United States of America + 6.5 + Demolition Man + 1993 + + + $ +16483#Sylvester Stallone#Lincoln Hawk +1162#Robert Loggia#Jason Cutler +22553#Susan Blakely#Christina Hawk +33011#Rick Zumwalt#Bob Hurley +33012#David Mendenhall#Michael Cutler/Michael Hawk +33015#Chris McCarty#Tim Salanger +33016#Terry Funk#Ruker +1998308#Bob Beattie#Announcer +33017#Allan Graf#Collins +87406#Magic Schwarz#Smasher +33013#Bruce Way#John Grizzly + /eVNncB9SOjMdO9E1E85kEySRLi9.jpg + Cannon Group +Warner Bros. Pictures +Golan-Globus Productions + Sylvester Stallone stars as hard-luck big-rig trucker Lincoln Hawk and takes us under the glaring Las Vegas lights for all the boisterous action of the World Armwrestling Championship. Relying on wits and willpower, Hawk tries to rebuild his life by capturing the first-place prize money, and the love of the son he abandoned years earlier into the keeping of his rich, ruthless father-in-law. + Menahem Golan + 93 + Action - Drama + /cOqpo9vsrhLyAA0aSv5VCOZQaBG.jpg + Yoram Globus +Menahem Golan + United States of America + 6.0 + Over the Top + 1987 + + + $ +16483#Sylvester Stallone#Ray Quick +4430#Sharon Stone#May Munro +4512#James Woods#Ned Trent +522#Rod Steiger#Joe Leon +21315#Eric Roberts#Tomas Leon +26651#Mario Ernesto Sánchez#Charlie +26652#Sergio Doré Jr.#Strongarm +26653#Chase Randolph#Stan Munro +26654#Jeana Bell#Alice Munro +26655#Brittany Paige Bouck#Young May +26656#Emilio Estefan#Pianoplayer + /dcHU8hCNqo5TEPLJSX4nFW2jDVY.jpg + Jerry Weintraub Productions +Iguana Producciones +Warner Bros. Pictures + 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. + Luis Llosa + 110 + Action - Thriller + /flK0OtdFRvfbs5BixEqU327H8ZB.jpg + Jerry Weintraub + Peru +United States of America + 5.6 + The Specialist + 1994 + + + $ +1100#Arnold Schwarzenegger#U.S. Marshal John 'The Eraser' Kruger +3085#James Caan#U.S. Marshal Robert Deguerin +27011#Vanessa Williams#Lee Cullen +5563#James Coburn#WitSec Chief Beller +7866#Robert Pastorelli#Johnny Casteleone +2505#James Cromwell#William Donohue +8540#Danny Nucci#WitSec Deputy Monroe +18461#Nick Chinlund#WitSec Agent Calderon +20582#Michael Papajohn#WitSec Agent Schiffer +60023#Joe Viterelli#Tony Two-Toes +6576#Mark Rolston#J. Scar + /gxl0eDEu2IJkubxu6UL0UN7ieYb.jpg + US|R + Kopelson Entertainment +Warner Bros. Pictures + 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. + Chuck Russell + 115 + Action - Drama - Mystery - Thriller + http://www.warnerbros.com/eraser + /bmOG5k07nrnS8T49NVPM1LnrOf1.jpg + Anne Kopelson +Arnold Kopelson + Canada +United States of America + 5.0 + Eraser + 1996 + + + $ +62#Bruce Willis#Joe Hallenbeck +22675#Damon Wayans#James Alexander 'Jimmy' Dix +27008#Chelsea Field#Sarah Hallenbeck +31005#Noble Willingham#Sheldon Marcone +4587#Halle Berry#Cory +21320#Danielle Harris#Darian Hallenbeck +14888#Bruce McGill#Mike Matthews +8335#Kim Coates#Chet +37043#Taylor Negron#Milo +107009#Badja Djola#Alley Thug +10486#Chelcie Ross#Senator Baynard + /7crRVZFSGSrDk0wR3Lahxr1Fb7P.jpg + US|R + Geffen Pictures +Silver Pictures +Warner Bros. Pictures + When the girl that detective Joe Hallenback is protecting gets murdered, the boyfriend of the murdered girl (ex-football player Jimmy Dix) 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. + Tony Scott + 105 + Action - Thriller + https://www.warnerbros.com/last-boy-scout + /cTl2WqsERuZ5vYmAmtfsPIJBLr0.jpg + Michael Levy +Joel Silver +Steve Perry +Carmine Zozzora + United States of America + 6.0 + The Last Boy Scout + 1991 + + + $ +10814#Wesley Snipes#John Cutter +27422#Bruce Payne#Charles Rane +3197#Tom Sizemore#Sly Delvecchio +46924#Alex Datcher#Marti Slayton +21089#Bruce Greenwood#Stuart Ramsey +88094#Robert Hooks#Dwight Henderson +13918#Elizabeth Hurley#Sabrina Ritchie +175468#Michael Horse#Forget +6908#Marc Macaulay#Vincent +59184#Ernie Lively#Chief Biggs +128123#Duchess Tomasello#Mrs. Edwards + /w9ecomJahB1UlVkXWFgnFtRAgkc.jpg + US|R + Warner Bros. Pictures + An infamous terrorist has evaded capture for a long time by being extremely clever and ruthless. Things get interesting when he hijacks a plane carrying famous security expert John Cutter, who isn't about to stand this sort of thing. + Kevin Hooks + 84 + Action - Adventure - Thriller + /mOh1t38TkW6JVg6ylQusKBPxxqa.jpg + Dan Paulson +Lee Rich +Dylan Sellers + United States of America + 5.0 + Passenger 57 + 1992 + + + $ +2233#Bridget Fonda#Maggie Hayward - Claudia Anne Doran - Nina +5168#Gabriel Byrne#Bob +20212#Dermot Mulroney#J. P. +15860#Miguel Ferrer#Kaufman +10774#Anne Bancroft#Amanda +46423#Olivia d'Abo#Angela +2557#Richard Romanus#Fahd Bahktiar +1037#Harvey Keitel#Victor the Cleaner +81726#Lorraine Toussaint#Beth +18071#Geoffrey Lewis#Drugstore Owner +18889#Mic Rodgers#Cop + /mhtB1jPCQoIXGhBJHwtswvGPFbg.jpg + Warner Bros. Pictures +The Linson Company + Hardened criminal Maggie Hayward's consistent violence, even in police custody, ends in the execution chamber. However, top-secret US government agent 'Bob' arranges a staged death, so Maggie can be elaborately trained as a phantom killer and subdued into obedience. She gets a new cover identity as saleswoman Claudia Anne Doran. She also gets a wonderful house-mate, building super J.P., a broad-minded, gentle photographer. The two fall in love, and that complicates hit jobs. His good influence extends to breeding in her a conscience that places love over business, unlike Bob's agency. + John Badham + 108 + Crime - Drama - Thriller + /kOfSTm2cftavsyB49amnhW3is9y.jpg + Art Linson + United States of America + 5.9 + Point of No Return + 1993 + + + $ +51576#Chuck Norris#John T. Booker +10427#Anne Archer#Margaret +127601#Lloyd Haynes#Murray Saunders +18643#James Franciscus#Conrad Morgan +13578#Dana Andrews#Edgar Harolds +10345#Soon-Tek Oh#Mhin +2771#Jim Backus#Albert, the Doorman +55263#Larry Casey#Mike Potter +1401495#Tony Mannino#Gordie Jones +103231#Virginia Wing#Mhin's Wife +84328#Stack Pierce#Holly Washington - The Black Tigers + /8O0EB5FhwI8kG8suuwvmcQGvkPW.jpg + The former leader of a commando rescue attempt into Vietnam tries to discover why his squad members are being murdered, one-by-one, after the war is over. + Ted Post + 95 + Action - Thriller + /hh4tz7QSRHYack5Y2lGIouLy5Nk.jpg + United States of America + 5.0 + Good Guys Wear Black + 1978 + + + $ +51576#Chuck Norris#Matt Logan +26662#Jennifer O'Neill#Mandy Rust +62019#Clu Gulager#Dunne +55841#Ron O'Neal#Rollins +87471#Bill Wallace#Sparks +47020#Eric Laneuville#Charlie Logan +87472#James Whitmore Jr.#Moskowitz +87473#Clint Ritchie#Melrose +1169#Pepe Serna#Orlando +87474#Ray Vitte#Newton +87475#Taylor Lacher#Bishop + /aSZTTdfOx16ty7Zw7iPCn5ZkD9G.jpg + American Cinema Productions + Karate champion Matt Logan is enlisted by the police to train officers in self-defense after narcotics agents are killed by an assailant using the martial arts. + Paul Aaron + 90 + Action - Adventure - Crime - Drama - Thriller + /A1xwmtxohyAKPVloYoBL1Apj8WI.jpg + United States of America + 4.4 + A Force of One + 1979 + + + $ +51576#Chuck Norris#Major Scott McCoy +18391#Lee Marvin#Colonel Nick Alexander +7632#Shelley Winters#Edie Kaplan +1936#Martin Balsam#Ben Kaplan +4361#Joey Bishop#Harry Goldman +5694#Robert Forster#Abdul +53647#Lainie Kazan#Sylvia Goldman +12950#George Kennedy#Father O'Malley +3734#Hanna Schygulla#Ingrid +30043#Susan Strasberg#Debra Levine +30044#Bo Svenson#Capt. Campbell + /hw0CSbY5ciKQzv715oGrarpoOan.jpg + US|R + 126166 + Cannon Group +Golan-Globus Productions + A 707 aircraft jetliner on its way from Athens to Rome and then to New York City is hijacked by Lebanese terrorists. The terrorists demand that the pilot take them to Beirut. What the terrorists don't realize is that an elite team of commandoes led by Major McCoy (Norris) and by Colonel Alexander (Marvin) has been called into service to eliminate all terrorists on the jetliner. + Menahem Golan + 125 + Action - Thriller + /jow8Hr4leajhYkryoqqIeSMkxbX.jpg + Yoram Globus +Menahem Golan + Israel +United States of America + 5.6 + The Delta Force + 1986 + + + $ +51576#Chuck Norris#Col. Scott McCoy +1275#Billy Drago#Ramon Cotta +15213#John P. Ryan#Gen. Taylor +58423#Richard Jaeckel#DEA Agent John Page +181343#Begonya Plaza#Quiquina Esquintla +17933#Paul Perri#Maj. Bobby Chavez +105106#Héctor Mercado#Miguel +1173#Mark Margolis#Gen. Olmedo +130741#Mateo Gómez#Ernesto Flores +214991#Ruth de Sosa#Rita Chavez +152927#Gerald Castillo#George Fogarty - DEA Director + /24RhacFiXzPL8laShu7kxwr5qyB.jpg + 126166 + Golan-Globus Productions +Cannon Group +Metro-Goldwyn-Mayer + 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. + Aaron Norris + 111 + Action - Adventure + /kQ5SPSRFgaLWQSyXOzxk3e2yud8.jpg + Yoram Globus +Christopher Pearce + United States of America + 5.3 + Delta Force 2: The Colombian Connection + 1990 + + + $ +51576#Chuck Norris#Eddie Cusack +86499#Mike Genovese#Tony Luna +14731#Henry Silva#Luis Comacho +30621#Bert Remsen#Commander Kates +1244120#Ralph Foody#Cragie +156592#Nathan Davis#Felix Scalese +554391#Allen Hamilton#Ted Pirelli +194567#Ron Henriquez#Victor Comacho +146307#Joe Guzaldo#Det. Nick Kopalas +58045#Molly Hagan#Diana Luna +57597#Ron Dean#Det. Brennan + /gJkM7JEWZqGQbEfpEOnw2IKUuVF.jpg + Raymond Wagner Productions +Orion Pictures + A Chicago cop is caught in a middle of a gang war while his own comrades shun him because he wants to take an irresponsible cop down. + Andrew Davis + 101 + Action - Thriller - Crime - Drama + /8A8RMFGxhBHO97mjbV4HYqpP3S7.jpg + Raymond Wagner + United States of America + 6.1 + Code of Silence + 1985 + + + $ +51576#Chuck Norris#Frank Shatter +77589#Calvin Levels#Calvin Jackson +58860#Christopher Neame#Lockley +51577#Sheree J. Wilson#Leslie +102375#David Robb#King Richard +158777#Cherie Franklin#Captain Hull +136253#Jack Adalist#Krieger +108611#Jack Messinger#Mahoney +233285#Albert Iluz#Achmed +105003#Zoe Trilling#Hooker + /gzz4UYPWTTkyRldmkan1AWX8gzH.jpg + Cannon Group + Two Chicago police officers are sent to investigate the brutal murder of a rabbi. As the investigation begins, Shatter and Jackson are summoned to Israel for questioning. Upon arrival they realize that they are, in fact, pursuing a supernatural being. + Aaron Norris + 95 + Horror - Action - Thriller + /mS6sHScxLVy4WiEuIvSokplwwgo.jpg + United States of America + 4.6 + Hellbound + 1994 + + + $ +51576#Chuck Norris#Jedidiah McKenna +590#William Sanderson#Paul Carpio +116579#Max Gail#Sheriff Ramsey +238399#Michael Friedman#Lewis Burdette +24368#Roscoe Lee Browne#Clovis Madison +137391#Jordan Brower#Brian Anderson +183645#Trenton Knight#Justin Franklin +181661#Josh Wolford#Logan Anderson +55267#Terry Kiser#Travis Thorne +180728#Megan Paul#Austene Slaighter + /rX7oODyZn3fiWNUET4RYSw1Ew9Q.jpg + US|PG + Nu Image +LOT Productions + John McKenna is a spiritual being who is able to transform into bear, wolf or eagle. He lives in the forests of Tanglewood and has dedicated his life to protect them. One day a gang of evil lumberjacks led by Travis Thorne arrive Tanglewood to chop the forest down. McKenna cannot let this happen, and together with his new friends - Lords of the Tanglewood, a band of children who love to play in the forest - he battles against Thorne and his evil gang. + Aaron Norris + 93 + Action - Family + 947|Erin Everett|2019-06-25 + /26GyJZxvZwz10leu5LZfl4AnMGP.jpg + United States of America + 3.6 + Forest Warrior + 1996 + + + $ +51576#Chuck Norris#J.J. McQuade +141#David Carradine#Rawley Wilkes +10938#Barbara Carrera#Lola Richardson +543349#Leon Isaac Kennedy#Jackson +58799#Dana Kimmell#Sally McQuade +50880#Robert Beltran#Kayo +8262#L.Q. Jones#Dakota +1107#R.G. Armstrong#T. Tyler +940922#Jorge Cervera Jr.#Jefe +19434#Sharon Farrell#Molly +19751#Daniel Frishman#Falcon + /Ahtd9xJTiLyprNjImZrAzUuUsVr.jpg + US|PG + 1818 +Lone Wolf McQuade Associates +Topkick Productions + The archetypical renegade Texas Ranger wages war against a drug kingpin with automatic weapons, his wits and martial arts after a gun battle leaves his partner dead. All of this inevitably culminates a martial arts showdown between the drug lord and the ranger, and involving the woman they both love. + Steve Carver + 107 + Action - Crime - Drama - Romance - Thriller - Western + /3QGDrHvlnl2OawvEWQWFCVVN4PF.jpg + Yoram Ben-Ami +Steve Carver + United States of America + 6.0 + Lone Wolf McQuade + 1983 + + + $ +51576#Chuck Norris#Danny O'Brien +1216971#Brynn Thayer#Kay +55271#Steve James#Robinson +41224#Jack O'Halloran#Simon Moon +8609#Jeffrey Kramer#Dwight +55841#Ron O'Neal#Mayor +7178#Murphy Dunne#Theater Manager +1275249#Heather Blodgett#Betsy +138116#Tony DiBenedetto#Dobeny +1275#Billy Drago#Dr. Highwater +100613#Karen Lorre#Ginger + /gdRqKlLWYM5fobnZeaA2zz4O4vv.jpg + US|R + Golan-Globus Productions +Cannon Group + Danny O'Brien is back in action fighting the notorious Simon Moon, also known as The Terror. Three years earlier O'Brien had single-handedly captured The Terror and was called Hero by the people of L.A. Now Simon has escaped and has started killing women again, and O'Brien is the only man who can stop him. + William Tannen + 96 + Drama - Action - Thriller - Crime + /jaq58dnB6TYR6S8dtuNrHtus7dp.jpg + Raymond Wagner + United States of America + 5.0 + Hero and the Terror + 1988 + + + $ +2081#George Murdock#Judge Trimmings +51576#Chuck Norris#John David 'J.D.' Dawes +1653779#Terry O'Connor#Arlene Trimmings +1789028#Don Gentry#Sgt. Strode +1789029#John Di Fusco#Arney +1789030#Ron Cedillos#Deputy Bowles +1789031#Michael Augenstein#Billy Dawes +6718#Jack Nance#Burton + /zNhg5czF3pPn3viSefEKLdsoCev.jpg + US|PG + Paragon Films +American International Pictures (AIP) + Truck driver searches for his brother, who has disappeared in a town run by a corrupt judge. + Don Hulette + 86 + Action - Adventure - Crime - Thriller + /tlcagN2rFREGgRm8GyL5ylnoco4.jpg + United States of America + 4.0 + Breaker! Breaker! + 1977 + + + $ +51576#Chuck Norris#Col. James Braddock +588#M. Emmet Walsh#Tuck +78183#David Tress#Sen. Porter +78184#Lenore Kasdorf#Ann +20904#James Hong#Gen. Trau +136420#Ernie Ortega#Vinh +33153#Pierrino Mascarino#Jacques +58813#Erich Anderson#Masucci +90339#Joseph Carberry#Carter +72546#Avi Kleinberger#Dalton +136421#Willie Williams#Randall + /3veOJjrDpkGfdOJhsjPJuwYGF3z.jpg + 46512 + Cannon Group +Golan-Globus Productions + American servicemen are still being held captive in Vietnam and it's up to one man to bring them home in this blistering, fast-paced action/adventure starring martial arts superstar Chuck Norris.Following a daring escape from a Vietnamese POW camp, Special Forces Colonel James Braddock (Norris) is on a mission to locate and save remaining MIAs. + Joseph Zito + 101 + Action - Adventure - Thriller - War + /tUGyhiQXDcCPvt0H6zVG2vcZJnU.jpg + Menahem Golan +Yoram Globus + United States of America + 5.4 + Missing in Action + 1984 + + + $ +51576#Chuck Norris#Colonel James Braddock +10345#Soon-Tek Oh#Colonel Yin +51579#Steven Williams#Captain David Nester +73583#Bennett Ohta#Captain Ho +73584#Cosie Costa#Mazilli +73585#Joe Michael Terry#Opelka +73586#John Wesley#Frankie +99848#David Chung#Dou Chou +13006#Professor Toru Tanaka#Lao +102576#John Otrin#Soldier +19427#Christopher Cary#Emerson + /3zENQycuQKTQnSFXd0bdJwRH80m.jpg + 46512 + Golan-Globus Productions +Cannon Group + 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. + Lance Hool + 100 + Action - Adventure - War + /fXCXuj3zaigyGTo8oXP82M5ykf9.jpg + Yoram Globus +Menahem Golan + United States of America + 5.5 + Missing in Action 2: The Beginning + 1985 + + + $ +51576#Chuck Norris#Col. James Braddock +41757#Aki Aleong#Gen. Quoc +129610#Roland Harrah III#Van Tan Cang +129611#Miki Kim#Lin Tan Cang +39784#Yehuda Efroni#Rev. Polanski +136521#Ron Barker#Mik +58927#Floyd Levine#Gen. Duncan +79477#Jack Rader#Littlejohn +136522#Melinda Betron#Thuy +87481#Rick Prieto#CIA Agent +136523#Jan Michael Shultz#CIA Agent + /uhPJwyU18EdiwVEZpjbFILZ5hDu.jpg + 46512 + Golan-Globus Productions +Cannon Group + When Colonel James Braddock is told that his Asian wife and 12-year-old son are still alive in Communist Vietnam, he mounts a one-man assault to free them. Armed with the latest high-tech firepower, Braddock fights his way into the heart of the country and ends up battling his way out with several dozen abused Amerasian children in tow! Struggling to keep them alive while outmaneuvering a sadistic Vietnamese officer, Braddock ignites the jungle in a blazing cross-country race for freedom. + Aaron Norris + 101 + Action - War + /fMZOIzwjAD8tbPTncBzoCDYkNAx.jpg + Menahem Golan +Yoram Globus + United States of America + 5.5 + Braddock: Missing in Action III + 1988 + + + $ +51576#Chuck Norris#Jake Fallon +8192#Joe Spano#Special Agent John Downing +54865#Jeff Kober#Sal Mercado +55541#Eddie Cibrian#Logan Fallon + /1OwgkCJIEK9l0vRkqKRWBibU1HQ.jpg + US|G + Chuck Norris stars as martial arts extraordinaire Jake Fallon, who, after the death of his brother and sister-in-law, adopts (and trains) his orphaned nephew. Logan (Eddie Cibrian, TV's Invasion). After fifteen years of careful instruction, Logan is determined to avenge his parents Death... And, he'll need Uncle Jake's help to do it. + Michael Preece + 90 + Action - Adventure - TV Movie + /a4FSVgCrAQCClcbl3yk5YxTTVo7.jpg + 5.0 + Logan's War: Bound by Honor + 1998 + + + $ +51576#Chuck Norris#Joshua McCord +79149#Dylan Neal#Deke Slater +108074#Jennifer Tung#Que +8853#Ralph Waite#President Mathews +38761#Stuart Whitman#George Williams +10345#Soon-Tek Oh#General Vinh Tran +111701#Marla Adams#Pierwsza Lady Matthews + /ziH9QubXF8oTBszwJWAdqqRycRy.jpg + 257899 + To many, Joshua McCord is a charismatic Asian studies professor. To the President of the United States, he's America's greatest secret weapon; a covert operative charged with only the most sensitive and dangerous missions. + Michael Preece +Eric Norris + 90 + Action - Adventure - Drama - Thriller + /hTijeiCLQipQ5npy1Kxnr8sogtF.jpg + 3.8 + The President's Man + 2000 + + + $ +4960#Charles Bronson#Paul Fein +15276#Angela Featherstone#Jackie Fein +107491#Sebastian Spence#Eddie Fein +59794#Kate Trotter#Mrs. Novacek #1 +178446#Caroline Barclay#Celia Brent +24743#Simon MacCorkindale#Adam Novacek +17580#John Vernon#Frank Rampola +35340#Barbara Williams#Kate Fein +57399#Lesley-Anne Down#Anna Novacek +256346#Kim Weeks#Anna Meyer +130432#Cynthia Belliveau#Melanie Fein + /d9LGFsxTOnpqgo67FzKSX3ISVGq.jpg + 437795 + Alliance Communications Corporation +Cramer Co. + Paul Fein is a veteran police detective whose son Eddie is also a cop. Paul is assigned to investigate the murder of a prominent businessman, and he soon learns that the field of suspects has been narrowed down to two—the victim's sexually freewheeling wife Anna, and Paul's wild-child daughter Jackie. Neither Paul nor Eddie believe that Jackie could have committed the murder, and soon Paul is using himself as a decoy in a bid to find out more about what Anna does and doesn't know about her husband's death. + Ted Kotcheff + 87 + Action - Crime - TV Movie + /rejnraZlN3yxUf2sVJUIiaH8jKz.jpg + Peter Bray + United States of America +Canada + 7.1 + Family of Cops + 1995 + + + $ +4960#Charles Bronson#Commissioner Paul Fein +15276#Angela Featherstone#Jackie Fein +35340#Barbara Williams#Kate Fein +107491#Sebastian Spence#Eddie Fein +166463#Wendy Lyon#Mrs. Baskin + /ekkENfute1hH7MyoEW2KNe2k9dZ.jpg + 437795 + Trimark Pictures + The family of cops is back, this time dealing with the murder of a priest tied in with the Russian Mafia, who proceed to try to draw the family off the case. + David Greene + 88 + Action - Drama - Crime - TV Movie + /AmgCt85aXHsS8bPeXc91Ui0laY7.jpg + Canada +United States of America + 6.5 + Family of Cops II - Breach of Faith + 1997 + + + $ +190#Clint Eastwood#Joe +16309#Marianne Koch#Marisol +14276#Gian Maria Volonté#Ramón Rojo +16310#Wolfgang Lukschy#John Baxter +16311#José Calvo#Silvanito +16312#Sieghardt Rupp#Esteban Rojo +16313#Antonio Prieto#Don Miguel Rojo +16314#Margarita Lozano#Consuelo Baxter +16316#Daniel Martín#Julián +16317#Bruno Carotenuto#Antonio Baxter +4661#Benito Stefanelli#Rubio + /mndYimxcima4Z5YxH8XngTEGi5L.jpg + US|R + 48317 + United Artists +Constantin Film Produktion +Jolly Film + A Fistful of Dollars + 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. + Sergio Leone + 99 + Western + /sFLgxvtK9vxbNq502peVJ847Owp.jpg + Arrigo Colombo +Giorgio Papi + Italy +Germany +Spain + 7.0 + Per un pugno di dollari + 1964 + + + $ +190#Clint Eastwood#Monco +4078#Lee Van Cleef#Col. Douglas Mortimer +14276#Gian Maria Volonté#El Indio +16318#Mario Brega#Nino, Member of Indio's Gang +14277#Klaus Kinski#Wild +5814#Luigi Pistilli#Groggy +49895#Aldo Sambrell#Cuchillio +4661#Benito Stefanelli#Yuri +1139165#Luis Rodríguez#Manuel, Member of Indio's Gang +14280#Panos Papadopulos#Sancho Perez +14278#Mara Krupp#Mary + /f61COvOzOOIwx7whPl5Yj78s9gY.jpg + US|R + 48317 + Constantin Film Produktion +Produzioni Europee Associati (PEA) + For a Few Dollars More + Two bounty hunters are in pursuit of "El Indio," one of the most wanted fugitives in the western territories, and his gang. + Sergio Leone + 132 + Western + /o4y1dlqXFETChi1QW2TspfrCJ8e.jpg + Arturo González +Alberto Grimaldi + Italy +Spain +Germany + 7.0 + Per qualche dollaro in più + 1965 + + + $ +190#Clint Eastwood#Blondie +3265#Eli Wallach#Tuco Ramirez +4078#Lee Van Cleef#Sentenza / Angel Eyes +5813#Aldo Giuffrè#Alcoholic Union Captain +5814#Luigi Pistilli#Father Pablo Ramirez +5815#Rada Rassimov#Maria +1077276#Enzo Petito#Storekeeper +1077277#Claudio Scarchilli#Tuco Henchman +5817#Livio Lorenzon#Baker +5818#Antonio Casale#Bill Carson / Jackson +1077278#Sandro Scarchilli#Tuco Henchman + /xGC2fY5KFmtuXnsuQwYQKFOLZFy.jpg + US|R + 48317 + United Artists +Constantin Film Produktion +Produzioni Europee Associati (PEA) + The Good, the Bad and the Ugly + 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. + Sergio Leone + 161 + Western + http://www.mgm.com/#/our-titles/766/The-Good,-the-Bad-and-the-Ugly + /wfPHdfofBD5PN96dV96a51B3Ja2.jpg + Alberto Grimaldi + United States of America +Italy +Spain + 8.3 + Il buono, il brutto, il cattivo + 1966 + + + $ +190#Clint Eastwood#Marshal Jed Cooper +40056#Inger Stevens#Rachel Warren +39816#Ed Begley#Captain Wilson +3798#Pat Hingle#Judge Adam Fenton +8258#Ben Johnson#Marshal Dave Bliss +6905#Bruce Dern#Miller +8233#Charles McGraw#Sheriff Ray Calhoun +8493#Ruth White#Madame Sophie +35322#Alan Hale Jr.#Matt Stone +8262#L.Q. Jones#Loomis +40154#Michael O'Sullivan#Francis Elroy Duffy + /b9ysOV6lBXY4cZen5AM7Z2r75io.jpg + US|PG-13 + United Artists + Marshall Jed Cooper survives a hanging, vowing revenge on the lynch mob that left him dangling. To carry out his oath for vengeance, he returns to his former job as a lawman. Before long, he's caught up with the nine men on his hit list and starts dispensing his own brand of Wild West justice. + Ted Post + 114 + Western + /qcs3Cv8C899kUazP6rN1bWIY5a2.jpg + Leonard Freeman + United States of America + 6.0 + Hang 'em High + 1968 + + + $ +190#Clint Eastwood#Preacher +21030#Michael Moriarty#Hull Barret +44831#Carrie Snodgress#Sarah Wheeler +2969#Chris Penn#Josh LaHood +15413#Richard Dysart#Coy LaHood +158833#Sydney Penny#Megan Wheeler +10460#Richard Kiel#Club +62033#Doug McGrath#Spider Conway +4304#John Russell#Stockburn +15414#Charles Hallahan#McGill +13003#Marvin J. McIntyre#Jagou + /2Sjgpf8XLtphbfCTPS8ZU96b2J1.jpg + US|R + Warner Bros. Pictures +Malpaso Productions + 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. + Clint Eastwood + 115 + Romance - Western + /kuW0c9bdxjeQ52O5AzXmR3LVRbZ.jpg + Clint Eastwood + United States of America + 7.0 + Pale Rider + 1985 + + + $ +190#Clint Eastwood#Ben Shockley +66223#Sondra Locke#Gus Mally +3798#Pat Hingle#Joesphson +46099#William Prince#Blakelock +16555#Bill McKinney#Constable +101172#Michael Cavanaugh#Feyderspiel +41730#Carole Cook#Waitress +56923#Mara Corday#Jail Matron +62033#Doug McGrath#Bookie +78084#Jeff Morris#Desk Sergeant +1025796#Mildred Brion#Old Lady on Bus + /AqLSm9sl2Oe46XvqhoRBhKI3wXi.jpg + US|R + Malpaso Productions +Warner Bros. Pictures + Phoenix cop Ben Shockley is well on his way to becoming a derelict when he is assigned to transport a witness named Gus Mally from Vegas. Mally turns out to be a belligerent prostitute with mob ties and incriminating information regarding a high-placed figure. + Clint Eastwood + 109 + Drama - Action - Crime - Thriller + /oC2fFc56wJmxD1Y40dyEj9etCh6.jpg + Robert Daley + United States of America + 6.0 + The Gauntlet + 1977 + + + $ +1063#Lea Thompson#Beverly Switzler +4004#Jeffrey Jones#Dr. Walter Jenning +504#Tim Robbins#Phil Blumburtt +1471#Ed Gale#Howard T. Duck +168581#Holly Robinson Peete#K.C., Cherry Bomb +19839#David Paymer#Larry, Scientist +925#Paul Guilfoyle#Lieutenant Welker +6396#Richard Edson#Ritchie +1012338#Dominique Davalos#Cal, Cherry Bomb +1027773#Liz Sagal#Ronette, Cherry Bomb +90039#Chip Zien#Howard T. Duck (voice) + /rOzFJMPj1h5AFO1SzQtGWmyaNjV.jpg + US|PG + Lucasfilm +Universal Pictures + A scientific experiment unknowingly brings extraterrestrial life forms to the Earth through a laser beam. First is the cigar smoking drake Howard from the duck's planet. A few kids try to keep him from the greedy scientists and help him back to his planet. But then a much less friendly being arrives through the beam... + Willard Huyck + 110 + Comedy - Fantasy - Science Fiction + /f2pj3SSj1GdFSrS5bUojT56umL6.jpg + Gloria Katz + United States of America + 5.0 + Howard the Duck + 1986 + + + $ +5443#Vincent Lindon#Lian-Chu +41526#Patrick Timsit#Gwizdo +5444#Philippe Nahon#Le Seigneur Arnold +66872#Amanda Lear#Gildas +965900#Marie Drion#Zoé +1444806#Jeremy Prevost#Hector (voice) +1444807#Jean-Marc Lentretien#Mamular (voice) +31531#John DiMaggio#Fat John (voice) +1442269#Elias Eliot#Gildas (voice) +84495#Jess Harnell#Gildas (voice) +39214#Nick Jameson#Lord Arnold (voice) + /yPyZCG5JE8bzvYfBuijF0jhKhz6.jpg + Futurikon + Dragon Hunters + Dragon Hunters is a fantastic tale telling the adventures of two dragon hunters: the world has become a vast conglomerate of islands of varying size and shape. This babbling universe is mainly peopled with ruthless rogues, surly peasants and illiterate, petty lords Their main concerns revolve around two fundamental rules : Eat and don't get eaten. + Guillaume Ivernel +Arthur Qwak + 80 + Animation - Family + /mrshOKZBPoOmulzLZjZEbvENHJh.jpg + Tilo Seiffert +Philippe Delarue + France + 6.5 + Chasseurs de dragons + 2008 + + + $ +33235#Logan Lerman#Percy Jackson +53336#Brandon T. Jackson#Grover Underwood +109513#Alexandra Daddario#Annabeth Chase +105727#Jake Abel#Luke Castellan +48#Sean Bean#Zeus +517#Pierce Brosnan#Mr. Brunner / Chiron +4581#Steve Coogan#Hades +5916#Rosario Dawson#Persephone +25972#Melina Kanakaredes#Athena +2229#Catherine Keener#Sally Jackson +9013#Kevin McKidd#Poseidon + /uHQzRMqhs1bA1fLEP6J1Qc19Nfg.jpg + 179919 + TCF Vancouver Productions +Fox 2000 Pictures +1492 Pictures + 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. + Chris Columbus + 118 + Adventure - Fantasy - Family + /5NhyXkodMzDRW8uqtPqlxJsoBhf.jpg + Michael Barnathan +Chris Columbus +Mark Radcliffe +Karen Rosenfelt + Canada +United States of America + 6.1 + Percy Jackson & the Olympians: The Lightning Thief + 2010 + + + $ +33235#Logan Lerman#Percy Jackson +109513#Alexandra Daddario#Annabeth Chase +60077#Douglas Smith#Tyson +207401#Leven Rambin#Clarisse La Rue +53336#Brandon T. Jackson#Grover Underwood +105727#Jake Abel#Luke Castellan +130769#Grey Damon#Chris Rodriguez +1257753#Paloma Kwiatkowski#Thalia Grace +34257#Anthony Stewart Head#Chiron +2283#Stanley Tucci#Mr. D / Dionysus +51797#Nathan Fillion#Hermes + /3NK02PLJSs01SY1hsXUAcqbG3WP.jpg + 179919 + Dune Entertainment III +Fox 2000 Pictures +Sunswept Entertainment + 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. + Thor Freudenthal + 106 + Adventure - Family - Fantasy + http://www.percyjacksonthemovie.com/us/#!/home + /k1bhUW7XM5X0yD3iewAEvloFBEo.jpg + Michael Barnathan +Chris Columbus +Karen Rosenfelt + United States of America + 5.9 + Percy Jackson: Sea of Monsters + 2013 + + + $ +57147#Paul Hogan#Michael J. 'Crocodile' Dundee +57166#Linda Kozlowski#Sue Charlton +14103#Mark Blum#Richard Mason +53023#David Gulpilil#Neville Bell +13938#Michael Lombard#Sam Charlton +42841#John Meillon#Walter Reilly +1040112#Ritchie Singer#Con +7672#Reginald VelJohnson#Gus +164669#Rik Colitti#Danny +152408#John Snyder#Pimp +954286#Steve Rackman#Donk + /61M78jSCrNrb2cAE583ZL5AzQ0V.jpg + 9332 + Paramount +Rimfire Films + 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. + Peter Faiman + 97 + Adventure - Comedy + /uQyFHP0BBQcOVAbfpmiTnj5rKDm.jpg + John Cornell + Australia + 6.3 + Crocodile Dundee + 1986 + + + $ +57147#Paul Hogan#Michael J. 'Crocodile' Dundee +57166#Linda Kozlowski#Sue Charlton +42841#John Meillon#Walter Reilly +57593#Ernie Dingo#Charlie +17764#Charles S. Dutton#Leroy Brown +40481#Luis Guzmán#Jose +17401#Stephen Root#DEA Agent +118937#Dennis Boutsikaris#Bob Tanner +4996#Tatyana Ali#Park Girl +1219901#Colin Quinn#Onlooker at Mansion + /rmFgu0cYwKiWB3rPlMztCUz6ACc.jpg + 9332 + Paramount + Australian outback expert protects his New York love from gangsters who've followed her down under. + John Cornell + 110 + Adventure - Comedy + /m8DRsyNMD1pzWIgOb7X6XN7R3y0.jpg + John Cornell +Jane Scott + Australia +United States of America + 5.6 + Crocodile Dundee II + 1988 + + + $ +2395#Whoopi Goldberg#Terry Dolittle +1756#Stephen Collins#Marty Phillips +378#Jonathan Pryce#Jack +8937#John Wood#Jeremy Talbott +10556#Carol Kane#Cynthia +24368#Roscoe Lee Browne#Archer Lincoln +16165#Jon Lovitz#Doug, 1st National Bank +14104#Phil Hartman#Fred, 1st National Bank +26485#James Belushi#Sperry Repairman / Furious Cab Driver / Injured Cop +30364#Tracey Ullman#Fiona + /vFcnggrbnrrm4Yg6s7btwDfGu4r.jpg + Lawrence Gordon Productions +Silver Pictures +20th Century Fox + Terry works for a bank, and uses computers to communicate with clients all over the world. One day she gets a strange message from an unknown source. The message is coded. After decoding the message, Terry becomes embroiled in an espionage ring. People are killed, and Terry is chased. Throughout she remains in contact with this unknown person, who needs Terry to help save his life. + Penny Marshall + 100 + Romance - Comedy - Thriller + /nZcBdD3HRA6PPvfDY9UL0PWS5hi.jpg + Lawrence Gordon +Joel Silver + United States of America + 6.1 + Jumpin' Jack Flash + 1986 + + + $ +1245#Scarlett Johansson#Major Mira Killian / Motoko Kusanagi +90060#Pilou Asbæk#Batou +10692#Michael Pitt#Kuze / Hideo +101015#Chin Han#Togusa +1137#Juliette Binoche#Dr. Ouélet +3317#Takeshi Kitano#Chief Daisuke Aramaki +109833#Peter Ferdinando#Cutter +1179243#Rila Fukushima#Geisha robot +213202#Daniel Henshall#Skinny Man +75748#Yutaka Izumihara#Saito +20699#Anamaria Marinca#Dr. Dahlin + /jGPSVArC0GS2VVc0aGAqGTjfFOG.jpg + 23026 + Weying Galaxy Entertainment +Paramount +Shanghai Film Group + In the near future, Major is the first of her kind: a human saved from a terrible crash, then cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals. + Rupert Sanders + 107 + Action - Science Fiction - Thriller - Drama + http://www.ghostintheshellmovie.com/ + /myRzRzCxdfUWjkJWgpHHZ1oGkJd.jpg + Ari Arad +Avi Arad +Maguy R. Cohen +Steven Paul + Australia +New Zealand +United States of America + 5.9 + Ghost in the Shell + 2017 + + + $ +1532#Bill Murray#Dr. Peter Venkman +707#Dan Aykroyd#Dr. Raymond Stantz +10205#Sigourney Weaver#Dana Barrett +1524#Harold Ramis#Dr. Egon Spengler +8872#Rick Moranis#Louis Tully +8873#Annie Potts#Janine Melnitz +7676#William Atherton#Walter Peck +8874#Ernie Hudson#Winston Zeddmore +8875#David Margulies#Mayor +101652#Jennifer Runyon#Female Student +1080265#Michael Ensign#Hotel Manager + /lIQKmTXxBM0SjdA4lJyV8aFZ6tg.jpg + 2980 + Delphi Films +Black Rhino Productions +Columbia Pictures + 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. + Ivan Reitman + 107 + Comedy - Fantasy + http://www.ghostbusters.com/ + /3FS3oBdorgczgfCkFi2u8ZTFfpS.jpg + Ivan Reitman +Michael C. Gross +Joe Medjuck + United States of America + 7.4 + Ghostbusters + 1984 + + + $ +55536#Melissa McCarthy#Abby Yates +41091#Kristen Wiig#Erin Gilbert +1240487#Kate McKinnon#Jillian Holtzmann +168452#Leslie Jones#Patty Tolan +74568#Chris Hemsworth#Kevin Smith +1267216#Neil Casey#Rowan North +4391#Charles Dance#Harold Fillmore +39390#Michael Kenneth Williams#Agent Hawkins +1093919#Cecily Strong#Jennifer Lynch +1271#Andy García#Mayor Bradley +59841#Matt Walsh#Agent Rorke + /lbtG9MTb8i13KhXuyl3bmnqt7Lt.jpg + US|PG-13 + 2980 + Ghostcorps +Columbia Pictures +Village Roadshow Pictures + 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. + Paul Feig + 116 + Action - Fantasy - Comedy + http://www.ghostbusters.com/ + /4qnJ1hsMADxzwnOmnwjZTNp0rKT.jpg + Ivan Reitman +Amy Pascal + United States of America + 5.0 + Ghostbusters + 2016 + + + $ +56265#Dale Midkiff#Det. Steve Carella +532#Joe Pantoliano#Det. Meyer Meyer +73035#Paul Johansson#Det. Bert Kling +119171#Andrea Parker#Det. Eileen Burke +65771#Dean McDermott#Tim Moore + Once she'd been a dancer. Now she lies on a sidewalk, her blood seeping into the snow. The detectives of the 87th precinct are learning about ice: in a mulitimillion dollar showbiz scam, in the glittering diamonds that spill out of a dead man's vest, in the veins of a small time pusher. As the detectives scramble for evidence, as the city shivers, a killer is one step ahead, and the heat is still on. + 93 + Mystery - Drama + /vTnnty8NzHNw22KEyRXCCtVmejx.jpg + Ed McBain's 87th Precinct: Ice + 1996 + + + $ +2878#C. Thomas Howell#Mark Goddard +20495#Jeff Fahey#Dale Goddard +21523#Ed Lauter#Molls +18475#Kristen Dalton#Rachel Gill +56984#Janet Gunn#Melissa +75027#Michael Edwards#Ramirez + PM Entertainment Group + A young renegade undercover cop with a propensity for violence and a past history involving the murder of his cop father and the remainder of his family is recruited by a vigilante group with a leader who wants only to kill all criminals and those associated with them. + Joseph Merhi + 90 + Action - Drama - Thriller + /yPyQqu4J4V2nxGQSFqqL9alqmN3.jpg + United States of America + 3.0 + The Sweeper + 1996 + + + $ +6197#Brian Dennehy#Paul Hobart +593#Joanna Cassidy#Barbara Hobart +107336#Anthony Valentine#Vickers +21399#Ron Silver#Max Greenwald +27320#Christoph M. Ohrt#Wolfgang Donner +1139930#Helen Patton#Karen Hobart + US|R + Rosco Film GmbH +Phoenix Entertainment Group (PEG) + A Father's Revenge + German terrorists kidnap the crew of an aeroplane as they leave the airport. The terrorists demand the release of two of their colleagues, who are to be extradited to the USA. The father of one of the stewardesses decides he can no longer wait for diplomacy, and so flies out to Germany. There, frustration leads him to hire a former SAS counter-terrorism expert. Together they hunt down the terrorists. + John Herzfeld + Thriller + /2cJGkrMAzNHAeEMs3E6YrCbSiCU.jpg + Hans Proppe + Germany +United States of America + 6.0 + Das Rattennest + 1988 + + + $ +9811#Fred Williamson#Cal +4774#Jim Brown#J +82832#Jim Kelly#Chuck +6487#Richard Roundtree#Ralph +589811#Paula Sills#Teri +1329271#Laura Loftus#SalIy +16525#Joe Spinell#Joe Spangler +71347#Tom Signorelli#Mario +120296#Victoria Hale#Mrs. Rossi +1329274#Warrington Winters#Sheriff Lucas +142159#Frank Ferrara#Show Thug + US|R + Po' Boy Productions + A pair of tough cops go after the mob who jinxed the martial arts tournament and injured their buddy. + Fred Williamson + 84 + Action - Crime + /8NqF6OhCvSgBxhQ34LgI91mgZlt.jpg + Fred Williamson + United States of America + 5.5 + One Down, Two to Go + 1982 + + + $ +103492#Robert Horton#John Smith +21877#Sebastian Cabot#Max +10190#Jill St. John#Mary Harper +33092#Eleanor Summerfield#Mrs. Roberts +24699#Lee Montague#Igor +202229#Douglas Sheldon#Alworthy +1125461#Robert Russell#Police Sergeant +101478#Barbara Shelley#Danielle +26120#Harvey Hall +199914#Donald Morley#Dunning +97679#Kenneth J. Warren#Diaman + US|Not Rated + American Broadcasting Company (ABC) + Spy Killer stars Robert Horton as a secret agent turned private eye. Framed for murder, Horton is released, but only after promising that he'll track down a book containing a list of government agents who are operating covertly in Red China. The reluctant spy discovers that he can't completely trust anyone in this endeavor--not even his former chief + Roy Ward Baker + 75 + Action - Drama + /e086DFNHBP1Q4mHQ5VQ3s8T5Jvt.jpg + United Kingdom + The Spy Killer + 1969 + + + $ +23880#Steven Seagal#Ruslan Drachev +29878#Dmitry Chepovetsky#Stephan +52761#Igor Jijikine#Mikhail +37432#Robert Wisden#Terry +101255#Inna Korobkina#Catherine Goldstein +52705#Zak Santiago#Detective Lavastic +58393#Crystal Lowe#Tanya +107809#Alexander Rafalski#Alex +19301#Yevgeni Lazarev#Bartender +79343#Laura Mennell#Lanie Drachev +107810#Aleks Paunovic#Tony Links + /4OrG7SXu6oHP4Z9WnzzI2SSzE5t.jpg + US|R + Steamroller Productions + A former Russian mobster named Ruslan, who is now a crime novelist, returns home and discovers his daughter is marrying his arch nemesis. His past also comes back to haunt him when his family is threatened. Hungry for justice, Ruslan returns to the life he once knew...with a vengeance. + Jeff King + 98 + Action - Adventure - Thriller + /wfJyaY7IRWNWgTQByXzFypqCuL4.jpg + Canada +United States of America + 5.0 + Driven To Kill + 2009 + + + $ +147#Michael Madsen#J. Marcone +141#David Carradine#Mr. Hover +143206#Michael Blain-Rozgay#Foreigner +232249#Ernest Anthony#Blacky +76028#Shane Woodson#Whitey +53889#Carlie Westerman#Katie +232250#Sandy Kanan + /5dGGqizZTabasBVPKULBApOmSbd.jpg + Road of no Return follows the final nine days in the lives of four atypical hit men who are secretly brought together in a covert operation to fight the drug trafficking epidemic in the country. + Parviz Saghizadeh + 94 + Action - Drama - Thriller + /k6gQweSzZgMDJGx1kh0FWMjfnRu.jpg + 4.8 + Road of No Return + 2008 + + + $ +1309471#Yu Misaki#Yui Asahina +35642#Ken'ichi Endô#Genichiro Aramaki +1190955#Kenji Takechi#Rou Kunimto +138435#Kenji Ohba#Katagari +19592#Tatsuya Gashûin +76165#Kentarô Shimazu + /9bTYCqADVpm22xU5xmKbXHgMp4I.jpg + GP Museum Soft +Eleven Arts + The Legend of Red Dragon + This is a story of a woman, amid in her sorrow, seeking for vengeance... + Toru Ichikawa + 77 + Action + http://www.elevenarts.net/th_gallery/the-legend-of-red-dragon-a-woman-with-vengeance/ + /8aVSNigJavFjY2BGb8hvahKCtrZ.jpg + Shintaro Oka +Eikichi Hasegawa + Japan + 6.3 + Sekiryû no onna + 2006 + + + $ +139997#Cristos#Gabriel Alera +84208#Ion Overman#Detective Cynthia Grier +1347308#Courtney Ray Geigle#Lance +87954#Scott Haze#Jolson + /gRleOKP2MKWMEeYmLhyWhHWh2BG.jpg + When a jury fails to convict the serial killer who savagely murdered his family, one man must rise above his desire for revenge and descend into the deranged world of a sadistic predator to uncover the truth and finally get justice. What begins as a classic revenge tale takes a dramatic turn into a haunting land of horror and murder. + 82 + Crime - Drama - Thriller + http://www.tunnelvisionthemovie.com + /bIZbZhMR9Xq4vmYPrVIv2i8oOAE.jpg + 6.0 + Tunnel Vision + 2013 + + + $ +1158112#Tommy Lee Thomas#John Woodrow +21315#Eric Roberts#Officer Hopkins +56117#Martin Kove#Redick +1158113#Sheila Campbell#Jeanette +1158114#Tiffany Brouwer#Britney Woodrow + A decorated Army veteran goes undercover as a prison inmate to investigate the death of a Senator's grandson, who was killed while behind bars. Once under lock and key, he finds himself at the mercy of an all-powerful guard whose deadly influence reaches far beyond the prison walls. His only chance for freedom now is to escape ... or die. + Jefferson Edward Donald + 88 + /zz8Qe3sXX8FkOOh8IXJhAHsnGz0.jpg + Con Games + 2001 + + + $ +51576#Chuck Norris#Joshua McCord +22113#Judson Mills#Deke Slater +108074#Jennifer Tung#Que +29021#Roxanne Hart#Lydia Mayfield +156136#Joel Swetow#Abdul Rashid +8175#Thom Barry#Gen. Gates +2252#Maziyar Jobrani#Ali Faisal +198886#Philip Casnoff#Jack Stanton +64119#Robert Urich#President Adam Mayfield +571230#Dameon Clarke#Andy Shelby +205039#Jeff Grays#T.C. + /yf3SKklhw1q2RUQc21472zp6rbp.jpg + 257899 + Washo Brothers Entertainment +Norris Brothers Entertainment + A counterterrorism specialist is assigned by the President to track down a terrorist who is suspected of planning to set off a nuclear device in the U.S. + Eric Norris + 90 + Thriller - Drama - Action + /5oH7iAnRknuILV8hpdmHIiY0AB4.jpg + United States of America + 4.0 + The President's Man: A Line in the Sand + 2002 + + + $ +44222#Antonio Sabàto, Jr.#Jack Poynt +10430#Fred Ward#Max Camden +53924#Kelly Rutherford#Jodi +8655#R. Lee Ermey#Col. Ben Wilder +1051811#Susie Park#Kim +65205#Sean Kanan#Jay + US|R + An American army intelligence officer discovers corruption and murder by American soldiers in Vietnam. + Terry Cunningham + 93 + Drama - Action - Thriller + /pe8MvPf9Eivd75FfBZVFYKVrmpv.jpg + United States of America + 3.0 + The Chaos Factor + 2000 + + + $ +11366#Lorenzo Lamas#Mark Graver +69130#Kathleen Kinmont#Alexa +47879#John Savage#Franz Kluge +1214048#John Saint Ryan#Ralph Straker (as John Ryan) +1377056#Lori Fetrick#Lana + /eSOPAJa1yKhxcDnXYrbpHPSSOXU.jpg + US|R + 336051 + PM Entertainment Group + Movie Info When a top secret nuclear guidance system is stolen by an ex-CIA operative looking to sell the deadly device to the top bidder, it's up to a determined CIA agent and the international terrorist who he has vowed to capture to team up and stop the madman from destabilizing the world in the feature directorial debut of action icon Lorenzo Lamas. CIA Agent Mark Graver (Lamas) was living a quiet life when word came down that a government facility had been breached and a valuable device stolen. Now forced to team with former terrorist Alexa (Kathleen Kinmont) to retrieve the guidance system from international terrorist Franz Kluge (John Savage) + Lorenzo Lamas + 90 + Thriller - Action + http://www.imdb.com/title/tt0109360/ + /zSn0L3hD9dKfvVylMMCrO3jqEJl.jpg + United States of America + 4.0 + CIA II: Target Alexa + 1993 + + + $ +21246#Corbin Bernsen#Rob Preston +147830#Jameson Baltes#Kyle Preston +147831#Brittney Bowman#Evie +1116998#Leigh Greyvenstein#Tumbeleen +56890#Malcolm McDowell#Ian +1099144#Anne Curteis#Elizabeth +55708#Ron Smerczak#PC Jim Blythe +1116999#Amanda Lane#Cashier +231650#Helene Lombard#Pam +1222446#Glynis Barber#Nancy Preston +140117#Byron Taylor#Goblin King + /fDZjNp8sUVcHoDwGIqTLLBBlaNr.jpg + Bridge Entertainment Group + When Kyle (Jameson Baltes) and Evie (Brittney Bowman) Preston start exploring the grounds of their late grandmother's house they discover an old, abandoned mine shaft and soon find that the old lady's stories about fairies trapped underground were true. Imprisoned many years ago by two battling giants, the fairies now risk being lost forever unless Kyle and Evie can find a way to help them. The task becomes even more urgent when the children's father (Corbin Bernsen) is taken ill, and they need the fairies to cure him with their magic + Paul Matthews + 91 + Fantasy - Adventure - Family + /v0R2ZWl6Srs7xYGgUkV2Fcg1Wbe.jpg + Christopher Atkins +Janet Blandford +Elizabeth Matthews +Richard Green + United States of America + 2.0 + The Fairy King Of Ar + 1998 + + + $ +140116#Brittney Bomann#Polly Evans +140117#Byron Taylor#Toby Cooper +47901#Emma Samms#Lucy Regan +2076#David Warner#Ted Regan +135184#Big Mick#Mighty +117164#Joe Penny#Tiny +140118#Julie Hartley#Maisie +140119#Lynne White#Emily Pimpton-Brown +140120#Emily McArthur#Penny Pimpton-Brown +42740#Christopher Atkins#PC Sid Edwards +55708#Ron Smerczak#Sam The Vet + /z1ZoJcTkqn8rSdGYWIsXICeJx8.jpg + Peakviewing Transatlantic Plc + Polly Regan (Brittney Bomann) has a good life on the farm with her grandfather (David Warner, Time Bandits). Unfortunately, one day Polly learns that her favorite mare is suffering with a difficult pregnancy and soon dies giving birth. Heartbroken, Polly finally comes around when she sees the new foal, who incredibly is born a real live unicorn, and soon earns the love of Polly and her grandfather. + Paul Matthews + 81 + Family + /bP9eRCcj9Csay8X9acQY4Rnhak4.jpg + Elizabeth Matthews +Paul Matthews + 3.0 + The Little Unicorn + 2002 + + + $ +34257#Anthony Stewart Head#George +14326#Patsy Kensit#Rachel +27428#Aaron Taylor-Johnson#Flip +14464#Jenny Agutter#The Black Witch +1561507#Emma Ford#Fairy Princess +1561510#Lorna Rose Harris#Fairy +231208#Chris Alexander#les chercheurs +110491#Brian Anderson#les chercheurs +231209#Christopher Andrews#les elfes guerriers +1561545#Liam Matthews#Liam +135184#Big Mick#Raglin + /ozmFWadIInRXHAyNtG1jki7X6Z8.jpg + bear island films + A magic Troll aims to defeat the Black Witch and find the magic door that will lead him home with the help of the Elf Flip, and the Boy Liam. + Paul Matthews + 90 + Fantasy + /waid0YPuoDxh3RcBuYJpYFOZFFw.jpg + Peter Matthews +Patricia Chesney + United Kingdom + 4.0 + The Magic Door + 2007 + + + $ +42176#Veronica Hamel#Laura Duvann +58792#Jack Scalia#Henry Barridge +2076#David Warner#Simpson +135184#Big Mick#Finn Regan McCool +140116#Brittney Bomann#Ethel Barridge + /zNqgPSHqXeptmU3pVF51Oy8Q0LW.jpg + Eithel and Tommy discover that their father's new fiance is actually an evil spirit. To defeat her they'll need the help of a leprechaun and a little bit of luck. + David Lister + Fantasy + /thZ569pIBpc5Xp2YV9Brl2XSNZ9.jpg + 5.0 + The Last Leprechaun + 1998 + + + $ +18023#Robert Carlyle#John MacCormick +3064#Peter Mullan#Ian's dad +1329#Billy Boyd#Bill Craig +23458#Charlie Cox#Ian Hamilton +51072#Kate Mara#Kay Matheson + /nxP9fzuq0lvIts9EGZFbp6NcXQE.jpg + Tells of the daring heist of The Stone of Destiny in the 1950s by a charming group of idealistic Scottish undergraduates, whose action rekindled Scottish nationalistic pride. + Charles Martin Smith + 96 + Drama - Adventure - Crime + /rZWhnQY4Efi0iYQpnagP4vyaYps.jpg + Canada +United Kingdom + 6.0 + Stone of Destiny + 2008 + + + $ +52270#A.J. Trauth#Ben +52271#Brianna Brown#Kim +52272#Megan Lusk#Casey +52273#Michael Lee Gogin#Palmay +52274#John Duerler#Monty +52275#Adrian Neil#Falco +52268#David Schmoeller#Dad + US|PG + Moonbeam Entertainment +The Kushner-Locke Company + While visiting a museum, two siblings Ben and Kim a fierce electrical storm creates a passage between the real world and worlds within the paintings. They are magically whisked through time to the 1600's and find they must square off against a wicked magician and also locate a valuable jewel in order to return to the present day. + David Schmoeller + 91 + Fantasy - Family + /muXP2meJ3r9XCaIco07PdLZz126.jpg + Vlad Paunescu + Romania +United States of America + 8.0 + Search for the Jewel of Polaris: Mysterious Museum + 1999 + + + $ +198539#Jason McSkimming#Zack +259271#Francois Klanfer#Merlin +62671#Mac Fyfe#Arthur +188631#Francesca Scorsone#Morgause +1378461#Natalie Ester#Gwyneth +62506#Serban Celea#Sir Ector +1088213#Theodor Danetti#Old Man at Court +1059157#George Duta#Jeffy +67032#Camelia Maxim#Gail +31639#Claudiu Trandafir#Jim + /lHSNDMIFc8HtBZeTtE9QNRiEtZV.jpg + US|PG + The Kushner-Locke Company +Canarom Productions +Castel Film + Zack doesn't have your ordinary adolescent problems. Transported back in time to medieval England, he lands in the middle of a vicious battle between an evil witch and Merlin, the master sorcerer, for control of Arthur's kingdom. It's up to Zack to help Merlin and Arthur reclaim the magic sword Excalibur and return Arthur to his rightful place on the throne. + James Head + 88 + Adventure - Fantasy + /dLqBYvxB2ztf9lxaQNpgkLDEbb8.jpg + Cris Andrei + Romania +Canada +United States of America + 3.0 + The Excalibur Kid + 1999 + + + $ +144075#Billy O'Sullivan#Mark Fremont +178558#Tricia Dickson#Callie Fremont +149511#Andrew Ducote#Zachary Taylor Fremont +119485#Gerald S. O'Loughlin#Chartwell +155397#Jamieson Price#The Regent + The Kushner-Locke Company +Castel Film +Moonbeam Entertainment + Three kids discover a tiny kingdom beneath their kitchen sink and are drawn inside, becoming involved with the miniature world's civil war. + David Schmoeller + 90 + /qi9TySDnSmVfcPaJ20C1W2Nhwnw.jpg + United States of America +Romania + 4.0 + The Secret Kingdom + 1998 + + + $ +167219#Michael Malota#George +51536#Agnes Bruckner#Lori +1072377#Jules Mandel#Prime +78311#Steve Valentine#Ood Leader +155977#Ray Laska#Lieutenant Morgan +102016#Dorina Lazar#Ramona +33140#Christopher Landry#Sergeant Bobby +1188699#Lula Malota#George's Mom +1188700#Andreea Macelaru#Lori's Mom +555532#Ion Haiduc#Truck Driver + US|PG + The Kushner-Locke Company +Castel Film + Two teenaged kids discover a miniature bottled city buried beneath a construction site. They must protect the tiny civilization within from reptilian alien hunters after its everlasting power supply. + Ted Nicolaou + 79 + Science Fiction - Family + /5RgGPDE1Nve8wlA6wV9mT6akjvb.jpg + Vlad Paunescu + Romania + 4.0 + The Shrunken City + 1998 + + + $ +1564846#Auli'i Cravalho#Moana (voice) +18918#Dwayne Johnson#Maui (voice) +15298#Rachel House#Gramma Tala (voice) +7242#Temuera Morrison#Chief Tui (voice) +55936#Jemaine Clement#Tamatoa (voice) +151246#Nicole Scherzinger#Sina (voice) +21088#Alan Tudyk#Heihei / Villager #3 (voice) +1716550#Louise Bush#Toddler Moana (voice) +1307751#Christopher Jackson#Chief Tui (singing voice) +89843#Oscar Kightley#Fisherman (voice) +1349600#Troy Polamalu#Villager #1 (voice) + /rPCvRf72tkMCao9mRT99DYJUZLE.jpg + US|PG + Walt Disney Pictures +Walt Disney Animation Studios + In Ancient Polynesia, when a terrible curse incurred by Maui reaches an impetuous Chieftain's daughter's island, she answers the Ocean's call to seek out the demigod to set things right. + Ron Clements, John Musker + 107 + Adventure - Comedy - Family - Animation + http://movies.disney.com/moana + /z4x0Bp48ar3Mda8KiPD1vwSY3D8.jpg + Osnat Shurer + United States of America + 7.5 + Moana + 2016 + + + $ +18892#Goldie Hawn#Joanna Stayton +6856#Kurt Russell#Dean Proffitt +52995#Edward Herrmann#Grant Stayton III +381#Katherine Helmond#Edith Mintz +15105#Mike Hagerty#Billy Pratt +7505#Roddy McDowall#Andrew +57422#Jared Rushton#Charlie Proffitt +1037633#Jamie Wild#Greg Proffitt +1542824#Jeffrey Wiseman#Joey +214#Brian Price#Travis +159555#Frank Campanella#Captain Karl + /x9TEwiJroWfh7Ado3wiIG4K7Z8I.jpg + Star Partners +Hawn / Sylbert Movie Company +Metro-Goldwyn-Mayer + 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. + Garry Marshall + 106 + Comedy - Romance + /bqLXZlLJcsYDn7JZIAkYGnJAUeb.jpg + Alexandra Rose +Anthea Sylbert + United States of America + 6.8 + Overboard + 1987 + + + $ +2877#Ralph Macchio#Daniel LaRusso +23915#Pat Morita#Mr. Miyagi +1951#Elisabeth Shue#Ali Mills +56117#Martin Kove#John Kreese +23916#Randee Heller#Lucille LaRusso +56124#William Zabka#Johnny Lawrence +23920#Chad McQueen#Dutch +23918#Ron Thomas#Bobby Brown +23919#Rob Garrison#Tommy +102435#Tony O'Dell#Jimmy +157488#Israel Juarbe#Freddy Fernandez + /gV4hrwc62LivwxmU3mzuM40CUzs.jpg + 8580 + Delphi Films +Jerry Weintraub Productions +Columbia Pictures + 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. + John G. Avildsen + 126 + Drama + /5kKor5pZ3ov08CAstSyk7FGDKVN.jpg + Jerry Weintraub + United States of America + 7.0 + The Karate Kid + 1984 + + + $ +2877#Ralph Macchio#Daniel LaRusso +23915#Pat Morita#Kesuke Miyagi +29381#Nobu McCarthy#Yukie +3134#Tamlyn Tomita#Kumiko +56120#Yuji Okumoto#Chozen +56121#Joey Miyashima#Toshio +56122#Marc Hayashi#Taro +56123#Danny Kamekona#Sato +56117#Martin Kove#John Kreese +56124#William Zabka#Johnny Lawrence +102435#Tony O'Dell#Jimmy + /dRoRqvQahkeGsOKuCNdx4nPGfF.jpg + 8580 + Delphi V Productions +Columbia Pictures + 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. + John G. Avildsen + 113 + Adventure - Drama - Action - Romance - Family + /4zmEPGKrD3sgjHZUs99tknEBaJy.jpg + Jerry Weintraub + United States of America + 6.0 + The Karate Kid, Part II + 1986 + + + $ +2877#Ralph Macchio#Daniel LaRusso +23915#Pat Morita#Mr. Keisuke Miyagi +56117#Martin Kove#John Kreese +60705#Thomas Ian Griffith#Terry Silver +15905#Robyn Lively#Jessica Andrews +65205#Sean Kanan#Mike Barnes +1340974#Jonathan Avildsen#Snake +23916#Randee Heller#Lucille LaRusso +1325314#William Christopher Ford#Dennis +114628#Pat E. Johnson#Referee +1215961#Rick Hurst#Announcer + /3VZwYb2N46lHsTrXVxk3KcbPyxw.jpg + 8580 + Weintraub International Group +Columbia Pictures + 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. + John G. Avildsen + 112 + Family - Adventure + /2Z0EJl11kOSPMMvHqZ4r5Csh7Ph.jpg + Jerry Weintraub + United States of America + 5.7 + The Karate Kid, Part III + 1989 + + + $ +23915#Pat Morita#Sgt. Kesuke Miyagi +448#Hilary Swank#Julie Pierce +11086#Michael Ironside#Colonel Dugan +20276#Constance Towers#Louisa Pierce +227199#Chris Conrad#Eric McGowen +1080062#Arsenio 'Sonny' Trinidad#Abbot +112150#Michael Cavalieri#Ned +27740#Walton Goggins#Charlie +1217015#Jim Ishida#Tall Monk +129463#Rodney Kageyama#Monk +1382045#Seth Sakai#Buddhist Monk + /qY1B8hoc6AABiFg6nL4vopomRlU.jpg + 8580 + Columbia Pictures + 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. + Christopher Cain + 107 + Adventure + /gu5SOBWsoxDy6mWKAkOt20zTXOb.jpg + Jerry Weintraub + United States of America + 5.0 + The Next Karate Kid + 1994 + + + $ +1328#Sean Astin#Mikey Walsh +16851#Josh Brolin#Brand Walsh +57371#Jeff Cohen#Lawrence "Chunk" Cohen +3034#Corey Feldman#Clark "Mouth" Devereaux +57372#Kerri Green#Andy Carmichael +17495#Martha Plimpton#Stephanie "Stef" Steinbrenner +690#Jonathan Ke Quan#Richard "Data" Wang +64120#John Matuszak#Sloth +2055#Robert Davi#Jake Fratelli +532#Joe Pantoliano#Francis Fratelli +49944#Anne Ramsey#Mama Fratelli + /5JFJjrWraRix9uHrDDcWR0NJBvf.jpg + Amblin Entertainment +Warner Bros. Pictures + 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. + Richard Donner + 114 + Adventure - Comedy - Family + /bZUbpjwnarSHJK40W9sGpyedWhx.jpg + Harvey Bernhard +Richard Donner + United States of America + 7.5 + The Goonies + 1985 + + + $ +18269#Brendan Fraser#Trevor Anderson +27972#Josh Hutcherson#Sean Anderson +70785#Anita Briem#Hannah Ásgeirsson +62856#Seth Meyers#Professor Alan Kitzens +70786#Jean Michel Paré#Max Anderson +110887#Jane Wheeler#Elizabeth +60910#Frank Fontaine#Old Man +110888#Giancarlo Caltabiano#Leonard +70787#Kaniehtiio Horn#Gum-Chewing Girl +110889#Garth Gilker#Sigurbjörn Ásgeirsson + /tBMh4ig85nU6EC57pXhWfosSGlW.jpg + 72547 + New Line Cinema +Walden Media + On a quest to find out what happened to his missing brother, a scientist, his nephew and their mountain guide discover a fantastic and dangerous lost world in the center of the earth. + Eric Brevig + 93 + Action - Science Fiction - Adventure - Comedy - Family + /nlYk34gpPfM6KFujxB9HTHZyeiL.jpg + Beau Flynn + United States of America + 5.9 + Journey to the Center of the Earth + 2008 + + + $ +11510#Macaulay Culkin#Richard Tyler +1062#Christopher Lloyd#Mr. Dewey +2387#Patrick Stewart#Adventure (voice) +2395#Whoopi Goldberg#Fantasy (voice) +947355#Canan J. Howell#Neighborhood Kid +947356#Alexis Kirschner#Neighborhood Kid +951963#Jessica Kirschner#Neighborhood Kid +1077936#Guy Mansker#Neighborhood Kid +1077937#Brandon S. McKay#Neighborhood Kid +42157#Ed Begley Jr.#Alan Tyler +25306#Mel Harris#Claire Tyler + /eCycNSli1RGn5YBCB6qTjP3eShp.jpg + US|G + Turner Pictures (I) +20th Century Fox + Tyler knows a lot about accidents. So much so, he is scared to do anything that might endanger him, like riding his bike, or climbing into his treehouse. While in an old library, he is mystically transported into the unknown world of books, and he has to try and get home again. Along the way he meets some interesting characters, like Fantasy, Adventure, and Horror... Written by Colin Tinto + Pixote Hunt +Joe Johnston +Maurice Hunt + 80 + Fantasy - Science Fiction - Family - Animation + /yMnDgWeFQP903aPJvh5HAvyQycw.jpg + United States of America + 6.0 + The Pagemaster + 1994 + + + $ +1204871#Nalita Murray#Nadia +1204872#Alan Collett#Adam +1204873#Elizabeth O'Brick#Catherine +1038297#Vaz Andreas#Jack +1204874#Jennifer Boarini#Rachael +1204875#Lainnie Felan#Elena +1204876#George O'Kreenke#Cobra + /uHJ72q4EAlJnOKE7vlz4diM317u.jpg + Marooned on a mysterious lighthouse island during a storm, five friends are forced to reveal their secrets and face their darkest fears. + Sabrina Mansfield + 84 + Horror - Mystery + http://www.votp.us/Shadows/index.html + /6oiVTt2svQgXMUzNxaczESg0RLi.jpg + Paul Collett + 2.0 + The Shadows + 2011 + + + $ + + Awkward, but friendly and handsome bartender Joey allows a group of vacationers to seek refuge in his house on the eve of a big storm. The vacationers soon discover that there's a crazed killer in their midst, but unfortunately are trapped inside the house by the fierce storm that's raging outside. + Josh Stoddard + 84 + /ngn98ZkdXMwdbiLFYs8OQ8cToAH.jpg + 4.0 + Sheltered + 2010 + + + $ +19143#Jason Priestley#Caleb Smith +38560#Lou Diamond Phillips#Dr. Daniel Winter +46899#Garwin Sanford#Quinn +60292#Gary Hudson#Martin +52396#Stefanie von Pfetten#Claire Smith +59313#Erin Karpluk#Allison Curran +67979#Michael Eklund#Liam +98661#Bradley Stryker#Van Elden +27588#Michael Benyaer#Tesslor +1582007#Ashley Whillans#Sarah Smith +169469#Jesse Hutch#Mark + /3d1PKS3ZqHOspd1OZrSwOK75Zlq.jpg + US|PG-13 + CineTel Films +Eagle Pictures +Insight Film Studios + Top secret government experiments with time travel have been shut down and declared as too dangerous to continue. The lead scientist has disappeared with the technology and a government manhunt is underway. When his name appears on an airline manifest after the flight has departed, the government orders the plane to turn back. But the plane drops from the radar, disappearing into thin air! As special agents try to locate the plane, scientists must deal with the repercussions from the time ripples that threaten to destroy the Earth. + Jason Bourque + 90 + Action - Adventure - Science Fiction - Thriller - TV Movie + http://www.insightfilm.com/termination.html + /ld5iAnwQQz9clNg9Jfgq2O9KFAI.jpg + Lindsay MacAdam + Canada + 4.0 + Termination Point + 2007 + + + $ +450#Mike Colter#Jameson Locke +1211540#Alexis Rodney#Arris +1387727#Alexander Bhat#Estrin +1387728#Sarah Armstrong#Jordan Gaines +1387729#Shaun Blaney#Mason Hundley +472632#Christina Chong#Talitha Macer +27764#Steven Waddington#Randall Alken +1052603#Luke Neal#Michael Bradley Horrigan +989603#Christian Contreras#Gregory Aio Ramos +1441678#Jennie Gruner#Samabtha Wisner + /tcdsFrdg2VWFfb2e66bWCGYUnft.jpg + Set between the events of Halo 4 and Halo 5: Guardians… Halo: Nightfall tells the dramatic story of legendary man hunter and Naval Intelligence Officer Jameson Locke and his team as they are caught in a horrific biological attack while investigating terrorist activity on the distant colony world of Sedra. As they unravel a plot that draws them to an ancient, hellish artifact, they will be forced to fight for their survival, question everything and ultimately choose between their loyalty and their lives. + Sergio Mimica-Gezzan + 119 + Science Fiction + /xaJtfesBGzQNrjsIhWfhqTkGshG.jpg + Aidan Elliott +Mark Huffam + 5.3 + Halo: Nightfall + 2014 + + + $ +449#Jay Baruchel#Hiccup (voice) +17276#Gerard Butler#Stoick (voice) +24264#Craig Ferguson#Gobber (voice) +59174#America Ferrera#Astrid (voice) +21007#Jonah Hill#Snotlout (voice) +54691#Christopher Mintz-Plasse#Fishlegs (voice) +51990#T.J. Miller#Tuffnut (voice) +41091#Kristen Wiig#Ruffnut (voice) +130081#Robin Atkin Downes#Ack (voice) +138619#Philip McGrade#Starkard (voice) +138620#Kieron Elliott#Hoark the Haggard (voice) + /3eR9HOkPZUbrGWDRdKHeKoiMLc4.jpg + 89137 + DreamWorks Animation +Mad Hatter Entertainment +Vertigo Entertainment + 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 + Dean DeBlois +Chris Sanders + 98 + Fantasy - Adventure - Animation - Family + http://www.howtotrainyourdragon.com/ + /hIXX3IRFy0InUOmYeWjvhCAgQNj.jpg + Bonnie Arnold + United States of America + 7.7 + How to Train Your Dragon + 2010 + + + $ +449#Jay Baruchel#Hiccup (voice) +112#Cate Blanchett#Valka (voice) +17276#Gerard Butler#Stoick (voice) +24264#Craig Ferguson#Gobber (voice) +59174#America Ferrera#Astrid (voice) +21007#Jonah Hill#Snotlout (voice) +54691#Christopher Mintz-Plasse#Fishlegs (voice) +51990#T.J. Miller#Tuffnut (voice) +41091#Kristen Wiig#Ruffnut (voice) +938#Djimon Hounsou#Drago (voice) +239019#Kit Harington#Eret (voice) + /kxMnGToxk5EtDhTBuz3kkZPzg1b.jpg + 89137 + Mad Hatter Entertainment +DreamWorks Animation + 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. + Dean DeBlois + 102 + Fantasy - Action - Adventure - Animation - Comedy - Family + http://www.howtotrainyourdragon.com/ + /lRjOR4uclMQijUav4OjeZprlehu.jpg + Bonnie Arnold + United States of America + 7.6 + How to Train Your Dragon 2 + 2014 + + + $ +449#Jay Baruchel#Hiccup Horrendous Haddock III (voice) +17276#Gerard Butler#Stoick (voice) +24264#Craig Ferguson#Gobber (voice) +59174#America Ferrera#Astrid Hofferson (voice) +21007#Jonah Hill#Snotlout Jorgenson (voice) +54691#Christopher Mintz-Plasse#Fishlegs Justin Ingerman (voice) +41091#Kristen Wiig#Ruffnut Thorston (voice) +51990#T.J. Miller#Tuffnut Thorston (voice) +31531#John DiMaggio#Gobber's Father (voice) +24362#Kevin Michael Richardson#Thor (voice) + /7ZAUeJEbkTsFchCbHPuTQiyzAUi.jpg + DreamWorks Animation + The film follows Hiccup and his young fellows accompanying their mentor, Gobber, on a quest to kill the legendary Boneknapper Dragon. An extra that accompanies the film "How to Train Your Dragon". + John Puglisi + 16 + TV Movie - Animation - Fantasy + /kQXniShyRw5b0aEppkaWhesRelD.jpg + United States of America + 6.5 + Legend of the BoneKnapper Dragon + 2010 + + + $ +449#Jay Baruchel#Hiccup (voice) +12077#Jim Cummings#Bork (voice) +24264#Craig Ferguson#Gobber (voice) +59174#America Ferrera#Astrid (voice) +54691#Christopher Mintz-Plasse#Fishlegs (voice) +34983#Tress MacNeille#Bork's Wife (voice) + /ggAipUIL71Zp4QixySvWqx6kqg9.jpg + DreamWorks Animation + So you want to be a dragon trainer do you? Prepare yourself for adventure, excitement and training as Hiccup, Astrid, Toothless and Gobber tell the legend behind the Book of Dragons and reveal insider training secrets about new, never-before-seen dragons. + Steve Hickner + 18 + Fantasy - Animation - Action - Comedy + http://www.dreamworksdragons.com/ + /yDHcJcMV28IaLLikRETxuHjKMVt.jpg + United States of America + 6.4 + Book of Dragons + 2011 + + + $ +449#Jay Baruchel#Hiccup (voice) +59174#America Ferrera#Astrid (voice) +54691#Christopher Mintz-Plasse#Fishlegs (voice) +83414#Tim Conway#Mulch (voice) +1216346#Chris Edgerly#Gobber (voice) +19508#Nolan North#Stoick (voice) +130535#Zack Pearlman#Snotlout (voice) +1194195#Andree Vermeulen#Ruffnut (voice) +78798#Tom Kenny#Silent Sven (voice) +51990#T.J. Miller#Tuffnut (voice) + /fun3feexCauMBlCd4oFWRRp77wS.jpg + DreamWorks Animation + A hunt for a lost sheep turns into a competition between Hiccup and friends as they compete to become the first Dragon Racing champion of Berk. This is the history about how did Dragon Racing start and how it became the most popular sport on Berk. An extra that accompanies the film "How to Train Your Dragon 2". + Elaine Bogan +John Sanford + 26 + Adventure - Animation - Comedy - Family - Fantasy + /3BD6C4ex9pAvUfOLZrs4gujZ6KE.jpg + United States of America + 7.0 + Dragons: Dawn Of The Dragon Racers + 2014 + + + $ +11701#Angelina Jolie#Maleficent +18050#Elle Fanning#Princess Aurora +82191#Sharlto Copley#Stefan +32987#Sam Riley#Diaval +36594#Juno Temple#Thistletwit +11356#Imelda Staunton#Knotgrass +72305#Lesley Manville#Flittle +1017347#Brenton Thwaites#Prince Phillip +1355733#Isobelle Molloy#Young Maleficent +8436#Miranda Richardson#Queen Ulla +1833#Jamie Sives#Shepherd + /tO4xw0P4mdia3EcS6pHkox3cOIy.jpg + 531331 + Walt Disney Pictures +Roth Films + 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. + Robert Stromberg + 97 + Fantasy - Adventure - Action - Family - Romance + http://movies.disney.com/maleficent + /4FYu1AAu14tuBU0lns0hbKiHUcH.jpg + Don Hahn + United States of America + 7.0 + Maleficent + 2014 + + + $ +9642#Jude Law#Sky Captain +12052#Gwyneth Paltrow#Polly Perkins +1771#Giovanni Ribisi#Dex +5658#Michael Gambon#Paley +11701#Angelina Jolie#Franky +39126#Bai Ling#Mysterious Woman +41379#Omid Djalili#Kaji +3359#Laurence Olivier#Dr. Totenkopf +62233#Trevor Baxter#Dr Walter Jennings +41380#Peter Law#Dr. Kessler +986518#Khan Bonfils#Creepy + /fMakUN0qcOZzzSTkdh6xWGimJnN.jpg + Natural Nylon Entertainment +Paramount +Brooklyn Films II + When gigantic robots attack New York City, "Sky Captain" uses his private air force to fight them off. His ex-girlfriend, reporter Polly Perkins, has been investigating the recent disappearance of prominent scientists. Suspecting a link between the global robot attacks and missing men, Sky Captain and Polly decide to work together. They fly to the Himalayas in pursuit of the mysterious Dr. Totenkopf, the mastermind behind the robots. + Kerry Conran + 107 + Mystery - Action - Thriller - Science Fiction - Adventure + http://www.skycaptain.com/ + /7tO8s7n6Hga2y0NIUT0aoGQelPG.jpg + Sadie Frost +Jude Law +Marsha Oglesby +Jon Avnet + United Kingdom +United States of America + 5.0 + Sky Captain and the World of Tomorrow + 2004 + + + $ +613#Sumi Shimamoto#Nausicaä (voice) +617#Ichirō Nagai#Mito (voice) +616#Gorō Naya#Yupa (voice) +622#Yōji Matsuda#Asbel (voice) +624#Yoshiko Sakakibara#Kushana (voice) +625#Iemasa Kayumi#Kurotowa (voice) +615#Hisako Kyouda#Oh-Baba (voice) +614#Mahito Tsujimura#Jihl (voice) +623#Mîna Tominaga#Lastel (voice) +618#Kōhei Miyauchi#Goru (voice) +619#Jōji Yanami#Gikkuri (voice) + /qKIldRZ3jy3uGWdrNIt3P7QA5J3.jpg + Topcraft + Nausicaä of the Valley of the Wind + After a global war, the seaside kingdom known as the Valley of the Wind remains one of the last strongholds on Earth untouched by a poisonous jungle and the powerful insects that guard it. Led by the courageous Princess Nausicaä, the people of the Valley engage in an epic struggle to restore the bond between humanity and Earth. + Hayao Miyazaki + 117 + Adventure - Animation - Fantasy + http://movies.disney.com/nausicaa-of-the-valley-of-the-wind + /hnYowHwLq0iUWriAHtiiCWsI2dP.jpg + Isao Takahata + Japan + 7.8 + 風の谷のナウシカ + 1984 + + + $ +27972#Josh Hutcherson#Walter Budwing +51297#Jonah Bobo#Danny Budwing +51298#Dax Shepard#Astronaut +37917#Kristen Stewart#Lisa Budwing +504#Tim Robbins#Mr. Budwing +7908#Frank Oz#Robot (voice) +51300#Derek Mears#Lead Zorgon +51301#Douglas Tait#Zorgon +51302#Joe Bucaro III#Zorgon +51303#Jeff Wolfe#Zorgon +443770#John Alexander#Robot + /jzcOVeydNYF4hX0OiNftWC8QZJz.jpg + Teitler Film +Michael De Luca Productions +Columbia Pictures + 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. + Jon Favreau + 101 + Family - Fantasy - Science Fiction - Adventure - Comedy + https://zmoviescorner.com/Online/zathura-a-space-adventure-2005-hindi-dubbed/ + /amqgIuISRBt8tsZM6cTT6gO9WLR.jpg + Michael De Luca +Scott Kroopf +William Teitler + United States of America + 6.2 + Zathura: A Space Adventure + 2005 + + + $ +2157#Robin Williams#Alan Parrish +8537#Jonathan Hyde#Samuel Alan Parrish / Van Pelt +205#Kirsten Dunst#Judy Shepherd +145151#Bradley Pierce#Peter Shepherd +5149#Bonnie Hunt#Sarah Whittle +10739#Bebe Neuwirth#Nora Shepherd +58563#David Alan Grier#Carl Bentley +1276#Patricia Clarkson#Carol Anne Parrish +46530#Adam Hann-Byrd#Young Alan +56523#Laura Bell Bundy#Young Sarah +51551#James Handy#Exterminator + /7k4zEgUZbzMHawDaMc9yIkmY1qR.jpg + 495527 + TriStar Pictures +Interscope Communications +Teitler Film + 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. + Joe Johnston + 104 + Adventure - Fantasy - Family + http://www.sonypictures.com/movies/jumanji/ + /vgpXmVaVyUL7GGiDeiK1mKEKzcX.jpg + William Teitler +Scott Kroopf + United States of America + 7.1 + Jumanji + 1995 + + + $ +2157#Robin Williams#Bob Munro +57854#Cheryl Hines#Jamie Munro +57855#Joanna 'JoJo' Levesque#Cassie Munro +27972#Josh Hutcherson#Carl Munro +8447#Jeff Daniels#Travis Gornicke +52775#Kristin Chenoweth#Mary Jo Gornicke +35236#Hunter Parrish#Earl Gornicke +978698#Chloe Sonnenfeld#Moon Gornicke +59243#Alex Ferris#Billy Gornicke +21200#Will Arnett#Todd Mallory +25147#Tony Hale#Frank + /hY3MIfukrNWveQlAiP0bQJzCqL3.jpg + RV Camping Productions Ltd. +Columbia Pictures +Relativity Media + Climbing aboard their mammoth recreational vehicle for a cross-country road trip to the Colorado Rockies, the McNeive family – led by dysfunctional patriarch, Bob – prepares for the adventure of a lifetime. But spending two weeks together in one seriously small space has a way of cramping their style. + Barry Sonnenfeld + 99 + Comedy + /eqV0JjfwcEJuK3JPZ2rsNvS1p30.jpg + Bobby Cohen +Douglas Wick + Germany +United Kingdom +United States of America + 5.7 + RV + 2006 + + + $ +2176#Tommy Lee Jones#Agent K +2888#Will Smith#James Edwards / Agent J +9625#Linda Fiorentino#Dr. Laurel Weaver / Agent L +7132#Vincent D'Onofrio#Edgar / The Bug +9626#Rip Torn#Chief Zed +4252#Tony Shalhoub#Jack Jeebs +6751#Siobhan Fallon Hogan#Beatrice +9628#Mike Nussbaum#Gentle Rosenburg the Arquillian Jeweler +9629#Jon Gries#Van driver +9630#Sergio Calderón#Jose +9631#Carel Struycken#Arquillian + /agCihVGrXk3hmmwMIgsn2ao1eEa.jpg + 86055 + Parkes+MacDonald Image Nation +Amblin Entertainment +Columbia Pictures + 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. + Barry Sonnenfeld + 98 + Action - Adventure - Comedy - Science Fiction + http://www.sonypictures.com/homevideo/meninblack + /f24UVKq3UiQWLqGWdqjwkzgB8j8.jpg + Laurie MacDonald +Walter F. Parkes + United States of America + 7.0 + Men in Black + 1997 + + + $ +2176#Tommy Lee Jones#Kevin Brown, Agent Kay +2888#Will Smith#Agent Jay +9626#Rip Torn#Zed +6684#Lara Flynn Boyle#Serleena +9656#Johnny Knoxville#Scrad/Charlie +5916#Rosario Dawson#Laura Vasquez +4252#Tony Shalhoub#Jack Jeebs +9657#Patrick Warburton#Agent Tee +1240#Jack Kehler#Ben +212#David Cross#Newton +9658#Colombe Jacobsen-Derstine#Hailey + /cITp4EM8HEKrlhXDEeGNy2IB8D9.jpg + 86055 + Parkes+MacDonald Image Nation +Columbia Pictures +Amblin Entertainment + 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. + Barry Sonnenfeld + 88 + Action - Adventure - Comedy - Science Fiction + http://www.sonypictures.com/homevideo/meninblackii/ + /qWjRfBwr4VculczswwojXgoU0mq.jpg + Laurie MacDonald +Walter F. Parkes + United States of America + 6.2 + Men in Black II + 2002 + + + $ +2888#Will Smith#Agent J +2176#Tommy Lee Jones#Agent K +16851#Josh Brolin#Young Agent K +72873#Michael Stuhlbarg#Griffin +7056#Emma Thompson#Agent O +55936#Jemaine Clement#Boris The Animal +151246#Nicole Scherzinger#Boris's Girlfriend +59860#Alice Eve#Young Agent O +19278#Bill Hader#Andy Warhol +87070#Michael Chernus#Jeffrey Price +33533#David Rasche#Agent X + /mhokitPCejvcZb0r3SHURZDp7OO.jpg + 86055 + Amblin Entertainment +Hemisphere Media Capital +Imagenation Abu Dhabi FZ + 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. + Barry Sonnenfeld + 106 + Action - Comedy - Science Fiction + http://www.sonypictures.com/movies/meninblack3/ + /l9hrvXyGq19f6jPRZhSVRibTMwW.jpg + Laurie MacDonald +Walter F. Parkes + United States of America + 6.4 + Men in Black 3 + 2012 + + + $ +6065#Dennis Quaid#Frank Towns +8169#Tyrese Gibson#A.J. +1771#Giovanni Ribisi#Elliott +502#Miranda Otto#Kelly +41419#Hugh Laurie#Ian +49623#Jared Padalecki#John Davis +2220#Tony Curran#Alex Rodney +86462#Sticky Fingaz#Jeremy +16429#Jacob Vargas#Sammi +65728#Scott Michael Campbell#James Liddle +743#Kevork Malikyan#Rady + /fpS0JNCrqwfF0jWEV0gXjVJjsiA.jpg + Optional Pictures +Davis Entertainment +Aldrich Group + When an Amacor oil rig in the Gobi Desert of Mongolia proves unproductive, Captain Frank Towns and copilot "A.J." are sent to shut the operation down. However, on their way to Beijing, a major dust storm forces them to ditch their C-119 Flying Boxcar in an uncharted area of the desert. + John Moore + 113 + Action - Adventure - Drama - Thriller + /g1wvC9RyapnPQBgKcFJ3FChPEeC.jpg + William Aldrich +Alex Blum +John Davis +Wyck Godfrey + United States of America + 5.9 + Flight of the Phoenix + 2004 + + + $ +1229#Jeff Bridges#Roy Pulsipher +10859#Ryan Reynolds#Nick Walker +4724#Kevin Bacon#Bobby Hayes +121953#Stephanie Szostak#Julia +18248#Mary-Louise Parker#Proctor +209197#Marisa Miller#Roy's Avatar +17343#Robert Knepper#Nawlicki +20904#James Hong#Nick's Avatar / Jerry Chen +87192#Mike O'Malley#Elliot +11516#Devin Ratray#Pulaski +1186622#Kachina Dechert#Goth Chick + /aTjMXroOL6f3FObPvwcA5hpWtXm.jpg + US|PG-13 + Universal Pictures +Dark Horse Entertainment +Original Film + 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. + Robert Schwentke + 96 + Fantasy - Action - Comedy - Crime + http://www.ripd.com/ + /ldBBulVDkifYnT501PWXIvtCgmO.jpg + Michael Fottrell +Neal H. Moritz +Mike Richardson + United States of America + 5.0 + R.I.P.D. + 2013 + + + $ +6968#Hugh Jackman#Van Helsing +3967#Kate Beckinsale#Anna Valerious +12206#Richard Roxburgh#Count Vladislaus Dracula +1371#David Wenham#Carl +96892#Shuler Hensley#Frankenstein's Monster +3623#Elena Anaya#Aleera +54500#Will Kemp#Velkan +18916#Kevin J. O'Connor#Igor +2629#Alun Armstrong#Cardinal Jinette +141492#Silvia Colloca#Verona +74651#Josie Maran#Marishka + /sib4pGrwKQUbFRyHlhXv03HXoHj.jpg + US|PG-13 + 109608 + Universal Pictures +Stillking Films +Sommers Company, The + 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. + Stephen Sommers + 132 + Horror - Adventure - Action + https://www.uphe.com/movies/van-helsing + /s2OPT5CZsZBQYAIlO9Mv4AimHvV.jpg + Bob Ducsay +Stephen Sommers + Czech Republic +United States of America + 6.0 + Van Helsing + 2004 + + + $ +5292#Denzel Washington#Whip Whitaker +1896#Don Cheadle#Hugh Lang +21089#Bruce Greenwood#Charlie Anderson +17521#Kelly Reilly#Nicole +1230#John Goodman#Harling Mays +49271#Brian Geraghty#Ken Evans +65196#Nadine Velazquez#Katerina Marquez +42694#Tamara Tunie#Margaret Thomason +6832#Melissa Leo#Ellen Block +31647#Garcelle Beauvais#Deana +208956#Justin Martin#Will Whitaker Jr. + /yogIqTNfrDIybDQTGPDawi409PD.jpg + Parkes/MacDonald Productions +Paramount +ImageMovers + 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. + Robert Zemeckis + 138 + Drama + http://www.paramount.com/flight + /8XEbkjgorAm9xk15mF63jqJ4ByV.jpg + Laurie MacDonald +Walter F. Parkes +Jack Rapke +Steve Starkey +Robert Zemeckis + United States of America + 6.6 + Flight + 2012 + + + $ +2888#Will Smith#John Hancock +6885#Charlize Theron#Mary Embrey +23532#Jason Bateman#Ray Embrey +66658#Jae Head#Aaron Embrey +1665#Eddie Marsan#Red +66634#David Mattey#Man Mountain +539#Thomas Lennon#Mike +16478#Johnny Galecki#Jeremy +66623#Hayley Marie Norman#Hottie +61835#Trieu Tran#Jr exec +49921#Darrell Foster#Police Sergeant + /x9a4Q6Qlgh9Fk1f5z6K4r5OeLd9.jpg + GH Three +Columbia Pictures +Relativity Media + 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? + Peter Berg + 92 + Fantasy - Action + http://www.sonypictures.com/movies/hancock/ + /dsCxSr4w3g2ylhlZg3v5CB5Pid7.jpg + Akiva Goldsman +James Lassiter +Michael Mann +Will Smith + United States of America + 6.2 + Hancock + 2008 + + + $ +18181#David Keith#Andrew 'Andy' McGee +69597#Drew Barrymore#Charlene 'Charlie' McGee +12517#Freddie Jones#Doctor Joseph Wanless +58691#Heather Locklear#Victoria 'Vicky' Tomlinson McGee +8349#Martin Sheen#Captain Hollister +862#George C. Scott#John Rainbird +40176#Art Carney#Irv Manders +7071#Louise Fletcher#Norma Manders +6561#Moses Gunn#Doctor Pynchot +84878#Antonio Fargas#Taxi Driver +52188#Drew Snyder#Orville Jamieson + /xnhtgpptVPY2KeNJkG1sDSjoZEF.jpg + Dino De Laurentiis Company +Universal Pictures + As youths, Andy McGee and his future wife, Vicky, participated in secret experiments, allowing themselves to be subjected to mysterious medical tests. Years later, the couple's daughter, Charlie, begins to exhibit the ability of setting fires solely with her mind. This volatile talent makes the youngster extremely dangerous and soon she becomes a target for the enigmatic agency known as "The Shop." + Mark L. Lester + 114 + Action - Drama - Fantasy - Horror - Thriller + /2ux5lqNuibd8eOkwwUhzfzAJBqD.jpg + Frank Capra, Jr. + United States of America + 6.0 + Firestarter + 1984 + + + $ +1100#Arnold Schwarzenegger#Wade Vogel +17140#Abigail Breslin#Maggie Vogel +20810#Joely Richardson#Caroline +60881#Douglas M. Griffin#Ray +129868#J.D. Evermore#Holt +1485159#Rachel Whitman Groves#Bonnie +204845#Jodie Moore#Dr. Kaplan +1415436#Bryce Romero#Trent +1123886#Raeden Greer#Allie +1465051#Aiden Flowers#Bobby +1797595#Carson Flowers#Molly + /uCI4vNT4u9xOIU3pKV3qeaFcuO9.jpg + Sly Predator +Lionsgate +Grindstone Entertainment Group + There's a deadly zombie epidemic threatening humanity, but Wade, a small-town farmer and family man, refuses to accept defeat even when his daughter Maggie becomes infected. As Maggie's condition worsens and the authorities seek to eradicate those with the virus, Wade is pushed to the limits in an effort to protect her. Joely Richardson co-stars in this post-apocalyptic thriller. + Henry Hobson + 95 + Horror - Drama - Mystery + http://www.maggiethefilm.com/ + /mFt7Oo3pf8f1BZAdWLyUpYM63aT.jpg + Matthew Baer +Trevor Kaufman +Pierre-Ange Le Pogam +Arnold Schwarzenegger +Joey Tufaro +Ara Keshishian +Bill Johnson +Colin Bates + Switzerland +United States of America + 5.2 + Maggie + 2015 + + + $ +2395#Whoopi Goldberg#Deloris Van Cartier/Sister Mary Clarence +10978#Maggie Smith#Mother Superior +11074#Kathy Najimy#Sister Mary Patrick +20623#Wendy Makkena#Sister Mary Robert +20624#Mary Wickes#Sister Mary Lazarus +1037#Harvey Keitel#Vince LaRocca +5502#Bill Nunn#Lt. Eddie Souther +20625#Robert Miranda#Joey +4255#Richard Portnow#Willy +85171#Ellen Albertini Dow#Choir Nun +152716#Carmen Zapata#Choir Nun + /oaLqlJxt8TJSjsdfMpSkLexZ4l5.jpg + 103573 + Touchstone Pictures + A Reno singer witnesses a mob murder and the cops stash her in a nunnery to protect her from the hitmen. The mother superior does not trust her, and takes steps to limit her influence on the other nuns. Eventually the singer rescues the failing choir and begins helping with community projects, which gets her an interview on TV. + Emile Ardolino + 100 + Music - Comedy + /7wQxLtybiUbtC6tsJh9htFEmqq3.jpg + Teri Schwartz + United States of America + 6.7 + Sister Act + 1992 + + + $ +2395#Whoopi Goldberg#Deloris Van Cartier +11074#Kathy Najimy#Sister Mary Patrick +4244#Lauryn Hill#Rita Louise Watson +33613#Sheryl Lee Ralph#Florence Watson +10978#Maggie Smith#Mother Superior +2549#Barnard Hughes#Father Maurice +20624#Mary Wickes#Sister Mary Lazarus +5563#James Coburn#Mr. Crisp +2169#Michael Jeter#Father Ignatius +20623#Wendy Makkena#Sister Mary Robert +7866#Robert Pastorelli#Joey Bustamente + /tCAvkUjZqUVWBo2zHIuNKnSTsdU.jpg + 103573 + Touchstone Pictures + Deloris Van Cartier is again asked to don the nun's habit to help a run-down Catholic school, presided over by Mother Superior. And if trying to reach out to a class full of uninterested students wasn't bad enough, the sisters discover that the school is due to be closed by the unscrupulous local authority chief Mr. Crisp. + Bill Duke + 107 + Music - Comedy + /tLbvfUYw8Pr7DMI5TGL5DX1bx5S.jpg + United States of America + 6.2 + Sister Act 2: Back in the Habit + 1993 + + + $ +1269#Kevin Costner#Mariner +2778#Dennis Hopper#Deacon +10478#Jeanne Tripplehorn#Helen +49832#R. D. Call#Enforcer +151943#Gerard Murphy#Nord +3432#Rick Aviles#Gatesman +2169#Michael Jeter#Old Gregor +8335#Kim Coates#Drifter +59350#Chaim Girafi#Drifter +59352#Zitto Kazann#Elder / Survivor +70851#Jack Black#Pilot + /2WZjxBC95ZVRqc0rxbV8a2NdPHt.jpg + Gordon Company +Davis Entertainment +Universal Pictures + 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. But the trio soon becomes the target of a menacing pirate who covets the map to 'Dryland' – which is tattooed on Enola's back. + Kevin Reynolds + 135 + Action - Adventure - Science Fiction + /yordVJcPLh3VNRL7bXzFIBEhXRr.jpg + Kevin Costner +John Davis +Charles Gordon +Lawrence Gordon + United States of America + 6.0 + Waterworld + 1995 + + + $ +2296#Clive Owen#Theo Faron +3895#Michael Caine#Jasper +1231#Julianne Moore#Julian +5294#Chiwetel Ejiofor#Luke +56365#Charlie Hunnam#Patric +64986#Clare-Hope Ashitey#Kee +6413#Danny Huston#Nigel +11213#Pam Ferris#Miriam +3064#Peter Mullan#Syd +58587#Phaldut Sharma#Ian +81134#Oana Pellea#Marichka + /c5jNuPA19oGiEmbh8iFeAi6aHMI.jpg + Universal Pictures +Strike Entertainment +Hit & Run Productions + 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. + Alfonso Cuarón + 109 + Drama - Action - Thriller - Science Fiction + http://www.universalstudiosentertainment.com/children-of-men/ + /gZ6i32Da76EUxta06GL2BxpC4Cn.jpg + Marc Abraham +Pablo Casacuberta +Eric Newman +Hilary Shor +Iain Smith +Tony Smith +Kristel Laiblin + United Kingdom +United States of America + 7.5 + Children of Men + 2006 + + + $ +34489#Eric Balfour#Jarrod +128628#Scottie Thompson#Elaine +22821#David Zayas#Oliver +49002#Donald Faison#Terry +35476#Brittany Daniel#Candice +128629#Crystal Reed#Denise +59755#Neil Hopkins#Ray +128630#J. Paul Boehmer#Colin +128631#Tanya Newbould#Jen +128632#Pam Levin#Cindy +128633#Phet Mahathongdy#Mandy + /8c6K1UdDn5dJgj1Tjq05AIwfP3g.jpg + 484312 + Rat Entertainment +Rogue Pictures +Hydraulx + 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. + Colin Strause +Greg Strause + 92 + Science Fiction - Action + /AdadT2HuwHkYWxbzme4QP77M6Wt.jpg + Kristian James Andresen +Liam O'Donnell +Colin Strause +Greg Strause +Paul Barry + United States of America + 4.8 + Skyline + 2010 + + + $ +25702#Rhona Mitra#Major Eden Sinclair +382#Bob Hoskins#Bill Nelson +56890#Malcolm McDowell#Dr. Marcus Kane +2957#Alexander Siddig#Prime Minister John Hatcher +2482#David O'Hara#Michael Canaris +94956#Craig Conway#Sol Kane +1352080#Lee-Anne Liebenberg#Viper +76215#Adrian Lester#Sergeant Norton +57578#MyAnna Buring#Cally Kane +28848#Sean Pertwee#Dr. Talbot +107378#Darren Morfitt#Dr. Stirling + /7JbI86bSgpGEyZ3X4BKN9LiY3s5.jpg + US|R + Rogue Pictures +Intrepid Pictures +Crystal Sky Pictures + A lethal virus spreads throughout the British isles, infecting millions and killing hundreds of thousands. To contain the threat, acting authorities brutally quarantine the country as it succumbs to fear and chaos. The quarantine is successful. Three decades later, the Reaper virus violently resurfaces in a major city. An elite group of specialists is urgently dispatched into the still-quarantined country to retrieve a cure by any means necessary. Shut off from the rest of the world, the unit must battle through a landscape that has become a waking nightmare. + Neil Marshall + 108 + Action - Thriller - Science Fiction + /fTwyePFDgcJVCL02GndcnZT3mvt.jpg + Steven Paul +Benedict Carver + Germany +United Kingdom +United States of America + 5.0 + Doomsday + 2008 + + + $ +934#Russell Crowe#Robin Longstride +112#Cate Blanchett#Marion Loxley +2201#Max von Sydow#Sir Walter Loxley +227#William Hurt#William Marshal +2983#Mark Strong#Godfrey +25072#Oscar Isaac#Prince John +6413#Danny Huston#King Richard the Lionheart +20300#Eileen Atkins#Eleanor of Aquitaine +13633#Mark Addy#Friar Tuck +15576#Matthew Macfadyen#Sheriff of Nottingham +79072#Kevin Durand#Little John + /avhEibZxIr8NzHQFBjw3FjLjN7u.jpg + Scott Free Productions +Universal Pictures +Imagine Entertainment + 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. + Ridley Scott + 140 + Action - Adventure - Drama + http://www.robinhoodthemovie.com/ + /4gH0vhyOcl7QV3t81653CpWjEB6.jpg + Brian Grazer +Russell Crowe +Ridley Scott + United Kingdom +United States of America + 6.3 + Robin Hood + 2010 + + + $ +15111#Jean-Claude Van Damme#Christopher Dubois +10222#Roger Moore#Lord Edgar Dobbs +1736#James Remar#Maxie Devine +10489#Jack McGee#Harry Smythe +54649#Louis Mandylor#Riggi +93345#Ryan Cutrona#Officer O'Keefe +74604#Ze'ev Revach#Turk Captain +56984#Janet Gunn#Carrie Newton +41757#Aki Aleong#Khao +947361#Abdel Qissi#Khan (Mongolian Fighter) +130935#Shane Meier#Red + /m4YwE8eChe6X57VgFmVFKCu5ObZ.jpg + Universal Pictures +Signature Pictures +MDP Worldwide + Ghang-gheng, the ancient winner-take-all competition in which the deadliest fighters from around the world employ the most spectacular feats of martial arts skills ever displayed in order to win the prized Golden Dragon. But fighting prowess alone will not be enough for Chris to triumph over such daunting foes. + Jean-Claude Van Damme + 95 + Action - Adventure + /z05SPecyjaryEedxX9noKQdqIFH.jpg + Canada +United States of America + 5.5 + The Quest + 1996 + + + $ +20746#Justin Chambers#D'Artagnan +3129#Tim Roth#Febre the Man in Black +50#Catherine Deneuve#The Queen +8211#Mena Suvari#Francesca Bonacieux +9029#Stephen Rea#Cardinal Richelieu +43680#Bill Treacher#Bonacieux +3593#Daniel Mesguich#King Louis XIII +939#David Schofield#Rochefort, Richelieu Henchman +975#Nick Moran#Aramis +25441#Steve Speirs#Porthos +17545#Jan-Gregor Kremp#Athos + /28pIv9QDIdlEEL4laBsNCGghJwQ.jpg + Crystal Sky Worldwide +MDP Worldwide +ApolloMedia Distribution + In Peter Hyams's adaptation of the famous Alexander Dumas story The Three Musketeers, the young D'Artagnan seeks to join the legendary musketeer brigade and avenge his father's death - but he finds that the musketeers have been disbanded. + Peter Hyams + 104 + Action - Adventure - Drama + /1UTpbZXldVJ0cV5fLWNOxU4Olab.jpg + Moshe Diamant + United Kingdom +United States of America +Germany + 5.2 + The Musketeer + 2001 + + + $ +6065#Dennis Quaid#Bowen +11207#David Thewlis#King Einon +4935#Pete Postlethwaite#Gilbert of Glockenspur +2133#Dina Meyer#Kara +1666#Julie Christie#Queen Aislinn +738#Sean Connery#Draco (voice) +11857#John Gielgud#King Arthur (voice) (uncredited) +59075#Lee Oakes#Young Einon +2719#Brian Thompson#Brok +11355#Jason Isaacs#Lord Felton +260536#Wolf Christian#Hewe + /1VWsgfwm3cJ4vZnKEWxOj9cv7q.jpg + US|PG-13 + 169452 + Universal Pictures + 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. + Rob Cohen + 103 + Fantasy + /5bqI54aIyPDzPKkScwJprzbAsIi.jpg + Raffaella De Laurentiis + United States of America + 6.5 + DragonHeart + 1996 + + + $ +500#Tom Cruise#Ethan Hunt +10127#Jon Voight#Jim Phelps +15319#Henry Czerny#Eugene Kittridge +4885#Emmanuelle Béart#Claire Phelps +1003#Jean Reno#Franz Krieger +10182#Ving Rhames#Luther Stickell +5470#Kristin Scott Thomas#Sarah Davies +13333#Vanessa Redgrave#Max +2880#Emilio Estevez#Jack Harmon +14593#Ingeborga Dapkūnaitė#Hannah Williams +231246#Karel Dobrý#Matthias + /tjQHn6xW5BiB1RJ3OZIPDzIOSkF.jpg + 87359 + Paramount +Cruise/Wagner Productions + 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. + Brian De Palma + 110 + Adventure - Action - Thriller + http://www.missionimpossible.com/ + /vmj2PzTLC6xJvshpq8SlaYE3gbd.jpg + Tom Cruise +Paula Wagner + United States of America + 6.8 + Mission: Impossible + 1996 + + + $ +500#Tom Cruise#Ethan Hunt +17604#Jeremy Renner#William Brandt +11108#Simon Pegg#Benjamin "Benj"i Dunn +933238#Rebecca Ferguson#Ilsa Faust +10182#Ving Rhames#Luther Stickell +16702#Sean Harris#Solomon Lane +7447#Alec Baldwin#Alan Hunley +16358#Simon McBurney#Atlee +2441#Tom Hollander#Prime Minister of the United Kingdom +41894#Zhang Jingchu#Lauren +92429#Jens Hultén#Janik "Bone Doctor" Vinter + /8XeLfNQrDmFQmPTqxapfWUnKiLf.jpg + 87359 + Paramount +China Movie Channel +Bad Robot + 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. + Christopher McQuarrie + 131 + Action - Adventure - Thriller + http://www.missionimpossible.com + /z2sJd1OvAGZLxgjBdSnQoLCfn3M.jpg + J.J. Abrams +Tom Cruise +David Ellison +Bryan Burk +Don Granger + United States of America + 7.1 + Mission: Impossible - Rogue Nation + 2015 + + + $ +500#Tom Cruise#Ethan Hunt +17604#Jeremy Renner#William Brandt +11108#Simon Pegg#Benjamin "Benji" Dunn +52851#Paula Patton#Jane Carter +6283#Michael Nyqvist#Kurt Hendricks +72118#Anil Kapoor#Brij Nath +121529#Léa Seydoux#Sabine Moreau +86151#Vladimir Mashkov#Anatoly Sidorov +92428#Samuli Edelmann#Marius Wistrom +6079#Ivan Shvedoff#Leonid Lisenker +142636#Josh Holloway#Trevor Hanaway + /pc7a2qrIkIxzqWGqcexd3mHzIxy.jpg + 87359 + Paramount +Bad Robot +TC Productions + 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. + Brad Bird + 133 + Action - Thriller - Adventure + http://www.missionimpossible.com/ + /khlcsYHr7Hi4Tkymc7UGDvcUcx.jpg + J.J. Abrams +Tom Cruise +Bryan Burk + Czech Republic +United States of America +United Arab Emirates + 6.9 + Mission: Impossible - Ghost Protocol + 2011 + + + $ +500#Tom Cruise#Ethan Hunt +15336#Dougray Scott#Sean Ambrose +9030#Thandiwe Newton#Nyah Nordoff-Hall +10182#Ving Rhames#Luther Stickell +12206#Richard Roxburgh#Hugh Stamp +15337#John Polson#Billy Baird +2039#Brendan Gleeson#John C. McCloy +1118#Rade Šerbedžija#Dr. Nekhorvich +15338#William Mapother#Wallis +10862#Dominic Purcell#Ulrich +15339#Mathew Wilkinson#Michael + /bDdVZNvxb670EMlZqeIy6RdyJ4V.jpg + US|PG-13 + 87359 + Paramount +Cruise/Wagner Productions +Munich Film Partners & Company (MFP) MI2 Productions + 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. + John Woo + 123 + Adventure - Action - Thriller + http://www.missionimpossible.com/ + /eRaEC0vf5q5TSvaoJPwGTt2wa9T.jpg + Tom Cruise +Paula Wagner + Germany +United States of America + 6.0 + Mission: Impossible II + 2000 + + + $ +500#Tom Cruise#Ethan Hunt +1233#Philip Seymour Hoffman#Owen Davian +10182#Ving Rhames#Luther Stickell +8289#Billy Crudup#John Musgrave +11705#Michelle Monaghan#Julia Meade +1244#Jonathan Rhys Meyers#Declan Gormley +41292#Keri Russell#Lindsey Farris +21045#Maggie Q#Zhen Lei +2975#Laurence Fishburne#Theodore Brassel +11108#Simon Pegg#Benjamin "Benji" Dunn +1665#Eddie Marsan#Brownway + /kOELgNnVt6EGCjtDXx85YUw6p8X.jpg + 87359 + Studio Babelsberg +Paramount +Cruise/Wagner Productions + 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. + J.J. Abrams + 126 + Adventure - Action - Thriller + http://www.missionimpossible.com/ + /qjy8ABAbWooV4jLG6UjzDHlv4RB.jpg + Tom Cruise +Paula Wagner + China +Germany +United States of America + 6.6 + Mission: Impossible III + 2006 + + + $ +500#Tom Cruise#Jack Reacher +71189#Cobie Smulders#Susan Turner +83860#Aldis Hodge#Espin +1466613#Danika Yarosh#Samantha +1223163#Patrick Heusinger#The Hunter +7497#Holt McCallany#Col. Morgan +990136#Judd Lormand#Local Deputy +1173099#Christopher Berry#Onlooker at Diner +1374151#Hunter Burke#Onlooker at Diner +20496#Jason Douglas#Sheriff +1711523#Lizeth Hutchings#Smuggled Woman + /nDS8rddEK74HfAwCC5CoT6Cwzlt.jpg + 403374 + TC Productions +Paramount +Skydance Media + 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. + Edward Zwick + 118 + Action - Adventure - Crime + http://www.jackreachermovie.com/ + /IfB9hy4JH1eH6HEfIgIGORXi5h.jpg + Tom Cruise +Don Granger +Christopher McQuarrie + China +United States of America + 5.5 + Jack Reacher: Never Go Back + 2016 + + + $ +287#Brad Pitt#Gerry Lane +175826#Mireille Enos#Karen Lane +1027850#Abigail Hargrove#Rachel Lane +1186840#Sterling Jerins#Constance Lane +18473#James Badge Dale#Captain Speke +78050#Elyes Gabel#Andrew Fassbach +7219#David Andrews#Navy Captain Mullenaro +1180907#Daniella Kertesz#Segen +119297#Ludi Boeken#Jurgen Warmbrunn +2607#Fana Mokoena#Thierry Umutoni +1180908#Fabrizio Guido#Tomas + /xMOQVYLeIKBXenJ9KMeasj7S64y.jpg + 416468 + GK Films +Paramount +Hemisphere Media Capital + 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. + Marc Forster + 116 + Action - Drama - Horror - Science Fiction - Thriller + http://www.worldwarzmovie.com + /Ha5t0J21eyiq6Az1EXzx0iwsGH.jpg + Ian Bryce +Dede Gardner +Jeremy Kleiner +Brad Pitt + United States of America +Malta + 6.7 + World War Z + 2013 + + + $ +8784#Daniel Craig#Jake Lonergan +59315#Olivia Wilde#Ella Swenson +3#Harrison Ford#Col. Woodrow Dolarhyde +6807#Sam Rockwell#Doc +27740#Walton Goggins#Hunt +6574#Clancy Brown#Meacham +30613#Keith Carradine#Sheriff Taggart +33527#Adam Beach#Nat Colorado +17142#Paul Dano#Percy Dolarhyde +57409#Ana de la Reguera#Maria +123725#Abigail Spencer#Alice + /gTDwoJBCu7scwYQoykIlLNpkCes.jpg + EN|PG-13 + Universal Pictures +Reliance Entertainment +Relativity Media + 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. + Jon Favreau + 119 + Action - Science Fiction - Thriller - Western + http://www.cowboysandaliensmovie.com/ + /9uZsGCP4rvOHVGCpMpYq5gNCuNI.jpg + Damon Lindelof +Brian Grazer +Ron Howard +Alex Kurtzman + United States of America + 5.5 + Cowboys & Aliens + 2011 + + + $ +56159#Dana Carvey#Pistachio Disguisey +1213786#Brent Spiner#Devlin Bowman +18285#Jennifer Esposito#Jennifer Baker +14833#Harold Gould#Grandfather Disguisey +9274#James Brolin#Fabbrizio Disguisey +139759#Austin Wolff#Barney Baker +3202#Edie McClurg#Mother Disguisey +85759#Maria Canals-Barrera#Sophia (as Maria Canals) +139760#Robert Machray#Texas Man +37008#Michael Bailey Smith#Henchman +139761#Rachel Lederman#Texas Wife + /gHFsTZ07AcM88c0w6zmyxrZ6yLj.jpg + EN|PG + Columbia Pictures +Revolution Studios +Happy Madison Productions + A sweet-natured Italian waiter named Pistachio Disguisey at his father Fabbrizio's restaurant, who happens to be a member of a family with supernatural skills of disguise. But moments later the patriarch of the Disguisey family is kidnapped Fabbrizio's former arch-enemy, Devlin Bowman, a criminal mastermind in an attempt to steal the world's most precious treasures from around the world. And it's up to Pistachio to track down Bowman and save his family before Bowman kills them! + Perry Andelin Blake + 80 + Comedy - Family + /aB6MRUfsRqagviKHsbDE7UAXRjZ.jpg + Barry Bernardi +Sid Ganis +Todd Garner +Alex Siskin + United States of America + 3.6 + The Master of Disguise + 2002 + + + $ +15112#Tom Selleck#Matthew Quigley +1212#Laura San Giacomo#Crazy Cora +4566#Alan Rickman#Elliott Marston +3070#Chris Haywood#Major Ashley-Pitt +58100#Ron Haddrick#Grimmelman +45207#Tony Bonner#Dobkin +77335#Ben Mendelsohn#O'Flynn +68321#Michael Carman#Deserter + /hCRKwCg58HpQsPpkHdQmE9oQ2bk.jpg + EN|PG-13 + Pathe +Metro-Goldwyn-Mayer + American Matt Quigley answers Australian land baron Elliott Marston's ad for a sharpshooter to kill the dingoes on his property. But when Quigley finds out that Marston's real target is the aborigines, Quigley hits the road. Now, even American expatriate Crazy Cora can't keep Quigley safe in his cat-and-mouse game with the homicidal Marston. + Simon Wincer + 119 + Romance - Action - Adventure - Western - Drama + /zaWZMk9t12lvb23hRrDmlmWgFKF.jpg + Stanley O'Toole +Alexandra Rose + Australia +United States of America + 6.5 + Quigley Down Under + 1990 + + + $ +1043754#Don Ohlmeyer#Réalisateur +24516#Daniel Baldwin#Sgt. Ben Pennington +9780#Angela Bassett#Lt. Phoebe Jeter +790#Michael Champion#Warrant Officer Hunter +127098#Gary Hershberger#Capt. Steve Tate +15070#Ken Foree#Gunnery Sgt. Leroy Ford +1231497#Laura Leigh Hughes#SP4 Beverly Clark +114021#Kevin Kilner#Capt. Shupp +55538#Tim Russ + The first Iraq war saw many tragedies and acts of heroism. This is the story seen through the eyes of the men and women involved. + Don Ohlmeyer + 92 + /qhxZLC61Utjjx26wGgECDH6S5ZD.jpg + Johanna Persons + 3.0 + The Heroes of Desert Storm + 1991 + + + $ +20959#Louis Gossett, Jr.#Morgan +3710#Jaimz Woolvett#Vince +56890#Malcolm McDowell#Seward + US|R + On the eve of the new millennium, a nervous military leader assembles a team to help him deal with an unforeseen problem, as they are being alerted of a long missing nuclear missile hidden somewhere deep in the jungle which is set to go off in January 2000, due to the millennium bug! It's up to them to race against time to stop it before it is too late and they are doomed! + Richard Pepin + 106 + Action - Thriller + /zwRbuRcgObc1JNAaFmOi3Yv2kb1.jpg + United States of America + 6.0 + Terminal Countdown + 1999 + + + $ +35031#Ken Berry#Lt. Parnell Murphy +94550#Jim Hutton#Cpl. Bill Lukens +108655#Trini López#Pvt. Sam Rivera +15692#Don Marshall#Pvt. Carver LeMoyne +14562#Ralph Meeker#Capt. Luke Danvers +44728#Cameron Mitchell#Sgt. Marion Bryce +8255#Warren Oates#Cpl. Leroy Sprague +745#Richard Young#Pvt. Golden +1388455#Michael St. George#Cpl. Bates +10345#Soon-Tek Oh#Korean Officer + An army tale about an egghead ninety-day-wonder who relies on ancient tactics he remembers from the history books to save his beleaguered squad on an important mission in Korea. + Robert Day + 73 + War - Drama + /uGO7qlCPzz6er3hoIsEx56scLWD.jpg + Robert Mirisch + The Reluctant Heroes + 1971 + + + $ +12422#Dennis Weaver#Lt. Joe Hardy +89043#Lois Nettleton#Anne Wilson +12309#Anne Francis#Marie Hardy Forrest +86368#Andrew Duggan#William Forrest +20904#James Hong#Maj. Thon + ABC Circle Films + A Marine officer reported as killed in Vietnam but was actually a POW returns home. Instead of being welcomed home, however, he discovers that his father has died, his wife has remarried, his daughter has been adopted, his business has been sold and his life has completely changed. + Walter Grauman + 73 + Drama - War + /k8cn3TIPILiW5RfSLM6z7h00u97.jpg + United States of America + The Forgotten Man + 1971 + + + $ +10826#Traci Lords#Ellen Reed +16170#Zach Galligan#Rick Corbit +95738#Jorge Rivero#Vito Malta +1137015#Jaime Alba#Det. Alan Little +58927#Floyd Levine#Det. Prine +158045#Phillip Troy Linger#Charley Reed +37008#Michael Bailey Smith#Jimmy the Courier +154395#Jean St. James#Jeweler +101615#Frank Pesce#Mobster + /4j4jFh4YpkxUKzsy77nEcHAhshS.jpg + PM Entertainment Group + A married couple of cat burglars scheme to rob a set of stolen diamonds from the local mafia only to be hampered by persistent police detectives, another scam artist, and a rival mob group. + Brook Yeaton + 91 + Action - Thriller + /1hBjSdhMlPj0GuHtgdRSmWzE7P7.jpg + Joseph Merhi +Richard Pepin + United States of America + 5.0 + Ice + 1994 + + + $ +38026#Chris Noth#Steve Lynde +84500#Carl T. Evans#David Secca +79999#Kristen Ruhlin#Wendy +33432#Arija Bareikis#Jennifer Secca +15183#Tony Lo Bianco#Mouthman +1216876#Barbara Barrie#Thelma + /pANlBImdHULLH9OfhTy9bFZXNhN.jpg + What happens when the truth is not enough? A New Jersey police detective comes across new evidence in the Kennedy assassination + Carl T. Evans + 90 + Mystery - Thriller + /8oy9YG1c4jD7kICqE8TTCEmOQyi.jpg + United States of America + 6.0 + Frame Of Mind + 2009 + + + $ +6837#Walter Matthau#Jack Martin +246939#Carol Grace#Carol Logan +1003567#Bruce MacFarlane#Earl J. Dawson +1184610#Garry Walberg#Adolph +2577292#Raikin Ben-Ari#"Plumber" +126658#David Leonard#W. Palmer +115992#John Albright#Henchman +168061#Clegg Hoyt#Caretaker at Country Club +115079#Leonard Bremen#FBI Agent (uncredited) +14069#Vic Tayback#Norm (uncredited) + /1Ba4o1UtQCAODV29aPR2b5MfFo1.jpg + US|Not Rated + Actor Walter Matthau directed his first and only feature film with the black-and-white crime drama Gangster Story. In an unusual noncomedic role, Matthau plays Jack Martin, a local gangster who wants to run his own crime syndicate in the neighborhood run by Earl Dawson (Bruce McFarlan). They eventually team up and plan a heist. Carol Grace plays the reform-minded girlfriend. + Walter Matthau + 65 + Drama - Action - Crime + /iZbKuaaXl8VS6ujHSysmv2mmXRs.jpg + United States of America + 5.0 + Gangster Story + 1959 + + + $ +39549#Dale Robertson#Melvin Purvis +12410#Bo Hopkins#Charles Arthur 'Pretty Boy' Floyd +14847#Scott Brady#Police Commissioner Herbert Tucker McElwaine +2454#Matt Clark#Verne Miller +30048#John Karlen#Sam Cowley +102859#Lynn Loring#Vi Morland +13729#Robert Walden#Adam Richette +29362#Elliott Street#Lester Gillis 'Baby Face' Nelson +140345#Mills Watson#Frank 'Jelly' Nash +1166#Harris Yulin#John Lazia +31117#Philip Bruns#Capt. Jackson + ABC Circle Films +American Broadcasting Company (ABC) + Gangsters free one of their colleagues being escorted to prison and kill several FBI agents and local police officers in the attempt. FBI agent Melvin Purvis puts together a special squad to track down and capture the men responsible. + Dan Curtis + 99 + TV Movie - Crime - Drama + /w3RFKLKnVfNOSNT4vRJblRaj3gn.jpg + Dan Curtis + United States of America + 6.0 + The Kansas City Massacre + 1975 + + + $ +155322#Mia Korf#Carol Rembrandt +166430#Richard Chevolleau#Sly Crawford +1087577#Richard Yearwood#T-Bear +1087579#Amir Williams#Darryl Crawford +1087580#Ndehru Roberts#Little Puppet +1087583#Byron Abalos#Gary Rembrandt +1087584#Linda Sorensen#Judge Goldberg +1087589#Deborah Burgess#Newscaster +1087591#Taborah Johnson#Michele Dunbar +5502#Bill Nunn#William Crawford + Power Pictures + Bruce Pittman + 80 + Drama + Julian Marks + United States of America + 5.0 + Blood Brothers + 1993 + + + $ +42373#Grayson McCouch#Tom Weaver +71900#Adrian Paul#Gavin Matheson +21412#Amy Locane#Molly Weaver + /iDfQnaDAjG7WKeppJNvGdK0W71U.jpg + Park Evil + Every day, millions of people descend into underground parking garages, get into their cars and drive to the safety of their homes. But tonight, five levels down in a deserted corporate parking structure, financial analyst Tom Weaver won't be going home. + James Seale + 87 + Action - Thriller + /6oBGsnHpPLfl9GXXVUfGOsbzZXe.jpg + 5.0 + Throttle + 2005 + + + $ +84021#Paul Gross#Michael Dunne +31383#Caroline Dhavernas#Sarah Mann +81098#Joe Dinicol#David Mann +84022#Meredith Bailey#Cassie Walker +106965#Adam Harrington#Colonel Ormand +6575#Gil Bellows#Royster +1389677#James Kot#Skinner +1389678#Jesse Frechette#Peters +1389679#Robert Nogier#Mr Harper +1098450#David LeReaney#Colonel McAndrew +117436#Jayson Therrien#MP + /pzZGI7NgwVT6442Kzol4dgonrag.jpg + US|NR + Bell Broadcast and New Media Fund +Damberger Film & Cattle Co +Rhombus Media + Sergeant Michael Dunne fights in the 10th Battalion, AKA The "Fighting Tenth" with the 1st Canadian Division and participated in all major Canadian battles of the war, and set the record for highest number of individual bravery awards for a single battle + Paul Gross + 114 + Drama - Romance - War - History + http://www.passchendaelethemovie.com + /mVsf8Z8FalO7Tn0GyFWpAcidVQP.jpg + Francis Damberger +Niv Fichman +Paul Gross +Frank Siracusa + Canada + 6.0 + Passchendaele + 2008 + + + $ +1207762#Nicky Wright#Nick +1207763#Renny Holder#Renny +1207764#Zero Murray#Zero +1207765#Dave Purton#Dave +77701#Philip Holder#Deberg +1207766#Michael Plumb#Michael +108945#Paula Duncan#Madam +213183#Megan Drury#Russian Diamond +1207767#Nicholas Baldas#Nick +1207768#Stephanie Bendixsen#Stephanie + Nick's blindness is symbolic to his regret for leaving his friend Michael behind during a diamond heist in Sierra Leone. He is unable to 'face his own reflection'. The 'black' world that Nick lives in becomes a punishment he places upon himself, almost like an extended prison sentence. He has lived in this world for so long that, he is afraid to see the 'light'. This is until the day he sets out to right his wrongs. Upon returning back to Australia after the incident in Sierra Leone, Nick is arrested for diamond smuggling. Undiscovered by the authorities, the most precious diamond is hidden inside him. Once incarcerated, he hides the diamond in his prison cell. This is where he is blinded by the people he stole the diamond from. 15 years on he lives alone and forgotten. The day he realizes he has cancer is the day he faces the regret and remorse for his friend Michael. He decides to finish what he started, to get back the diamond he once hid in the prison cell + Matthew Chuang + 90 + Action + /zTHNAGwRbpT4b64jlPdtlSKZbvk.jpg + Luke Graham + Braille + 2011 + + + $ +216867#Stephen Ouimette#Capt. John Adam +16349#Robin Renucci#Capt. Philippe Dumont +110498#Cedric Smith#Lt. Col. Harfield +27110#Malcolm Stewart#Maj. Tom McGuire +58805#David Hemblen#Sgt. Mortlake +55923#Simon de La Brosse#Private Denis Fremont +184488#Albert Schultz#Capt. Aubrey Bruxton +69751#Charley Boorman#Private Sammy Macartney +134671#David Gow#Lt. Wilson +535168#Philippe Dormoy#Sgt. Konzuk +1179150#Hume Baugh#Cpl. Rameau + Firing Squad + Based on the controversial case of Pvt. Joseph Pringle, a Canadian soldier convicted of murder in Italy in 1945 and executed by firing squad. + Michel Andrieu + 97 + Le peloton d'exécution + 1991 + + + $ +13578#Dana Andrews#Kolya Simonov +10606#Anne Baxter#Marina Pavlov +8630#Erich von Stroheim#Dr. von Harden +19020#Walter Huston#Dr. Kurin +4302#Walter Brennan#Karp +103441#Ann Harding#Sophia Pavlov +18736#Jane Withers#Clavdia Kurin +12497#Farley Granger#Damian Simonov +29313#Dean Jagger#Rodion Pavlov +440123#Eric Roberts#Grisha Kurin +81180#Carl Benton Reid#Boris Simonov + /bHXKxHd0ccvXvaS7FBKdZlyiknN.jpg + Samuel Goldwyn Productions + A Ukrainian village must suddenly contend with the Nazi invasion of June 1941. + Lewis Milestone + 108 + Action - Adventure - Drama + /9Il6A6lkCsOcHWzxQdlzmJUpv1V.jpg + Samuel Goldwyn + United States of America + 6.0 + The North Star + 1943 + + + $ +938767#Ron Gans#Ken +102787#Richard Devon#Moe + /daxPX2sQtWdXOOTfZbekryBr3Y9.jpg + US|Not Rated + The Filmgroup + Two American GIs are the only survivors of a unit wiped out in a battle with Japanese troops on an isolated island. The two, who don't like each other, find try to put aside their differences in order to evade the Japanese and survive. + Joel Rapp + 64 + Drama - War + /hHyrs6dZFQb296lsgpNI3eyy5hS.jpg + United States of America + 5.0 + Battle of Blood Island + 1960 + + + $ +12811#Ken Marshall#Prince Colwyn +12812#Lysette Anthony#Princess Lyssa +12513#Francesca Annis#Lyssa, Widow of the Web +2629#Alun Armstrong#Torquil +3475#David Battley#Ergo +12815#Bernard Bresslaw#Rell the Cyclops +3896#Liam Neeson#Kegan +12816#John Welsh#The Seer +12817#Graham McGrath#Titch +12818#Tony Church#Turold +12819#Bernard Archard#Eirig + /lNxD2BA4gOR9ymmqeLVxn2QEqJl.jpg + Barclays Mercantile Industrial Finance +Columbia Pictures + A prince and a fellowship of companions set out to rescue his bride from a fortress of alien invaders who have arrived on their home planet. + Peter Yates + 117 + Action - Adventure - Fantasy - Science Fiction + /4gBMeO66KOXLyYfm1uri04a6kKG.jpg + Geoffrey Helman +Ron Silverman + Spain +United Kingdom +Italy + 5.9 + Krull + 1983 + + + $ +21368#Peter Strauss#Wolff +21625#Molly Ringwald#Nikki +11086#Michael Ironside#OverDog +8874#Ernie Hudson#Washington +169979#Deborah Pratt#Meagan +18859#Andrea Marcovicci#Chalmers +44155#Hrant Alianak#Chemist +158977#Beeson Carroll#Grandman Patterson + /c13HB8G9MOcDBSSbbQifbw2bc8h.jpg + US|PG + Delphi Productions +Zone Productions +Columbia Pictures + Three women makes an emergency landing on a planet plagued with a fatal disease, but are captured by dictator Overdog. Adventurer Wolff goes there to rescue them and meets Niki, the only Earthling left from a medical expedition. Combining their talents, they try to rescue the women. + Lamont Johnson + 90 + Adventure - Science Fiction + /3Yl3HQD451x9UF81oZb2yVWWzsS.jpg + Don Carmody +John Dunning +André Link + United States of America + 5.0 + Spacehunter: Adventures in the Forbidden Zone + 1983 + + + $ +62064#Chris Pine#Jack Ryan +116#Keira Knightley#Cathy Muller +1269#Kevin Costner#William Harper +11181#Kenneth Branagh#Viktor Cherevin +12766#Lenn Kudrjawizki#Constantin +1196960#Alec Utgoff#Aleksandr Borovsky +21193#Peter Andersson#Dimitri Lemkov +43547#Nonso Anozie#Embee +10132#Colm Feore#Rob Behringer +97576#Gemma Chan#Amy Chan +1106755#Deborah Rosan#Customer + /7WURHOyx05AWAoNcBGp72clvB49.jpg + 192492 + Di Bonaventura Pictures +Etalon film +Paramount + Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack. + Kenneth Branagh + 105 + Action - Drama - Thriller + /jBibISmRBUO35p0Picv0nOo33sc.jpg + Lorenzo di Bonaventura +Alexander Dostal +Mace Neufeld +David Ready +David Barron +Mark Vahradian + Russia +United States of America + 6.0 + Jack Ryan: Shadow Recruit + 2014 + + + $ +9777#Cuba Gooding Jr.#David Wolfe +18999#J.K. Simmons#Sergeant Mitchell +8659#John Terry#Secretary of Defence +171732#Jaclyn DeSantis#Sophia +129101#Lance Reddick#The Black Man +15864#Clarence Williams III#Mac +1514474#Jayson Warner Smith#Seven +58793#Sarah Ann Schultz#Eleven +206027#J. Omar Castro#Sanchez +237404#Vernel Bagneris#Samir / Ace of Spades +112286#Edrick Browne#Snow + /nXZLxoqh03rrZBt1B3EQK9K6TWQ.jpg + Paramilitary operative David Wolfe stumbles upon an international conspiracy connecting presidential cabinet members to a Middle Eastern terrorist plot. Wanting to expose the truth, Wolfe defies orders and returns to the US as an army of one fighting for American security and integrity + John Carter + 90 + Action - Thriller + /nSLmUWom20GbU02dsBvR40zxwdv.jpg + United States of America + 3.6 + The Way of War + 2009 + + + $ +62#Bruce Willis#Korben Dallas +64#Gary Oldman#Jean-Baptiste Emmanuel Zorg +65#Ian Holm#Father Vito Cornelius +63#Milla Jovovich#Leeloo +66#Chris Tucker#Ruby Rhod +8395#Luke Perry#Billy +591#Brion James#General Munro +8396#Tom Lister Jr.#President Lindberg +7400#Lee Evans#Fog +8397#Charlie Creed-Miles#David +183500#Tricky#Right Arm + /qlGoGQSVMzIjGbpvXzZUOH1FjNu.jpg + US|PG-13 + Columbia Pictures +Gaumont + 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. + Luc Besson + 126 + Adventure - Fantasy - Action - Thriller - Science Fiction + /zaFa1NRZEnFgRTv5OVXkNIZO78O.jpg + Patrice Ledoux + France + 7.0 + The Fifth Element + 1997 + + + $ +18897#Jackie Chan#Old Hop / Lu Yan +1336#Jet Li#The Silent Monk / The Monkey King +11665#Michael Angarano#Jason Tripitikas +122503#Liu Yifei#Golden Sparrow / Chinatown Girl +109432#Li Bingbing#Ni Chang a.k.a White-Haired Witch +52908#Collin Chou#Jade Warlord +122504#Morgan Benoit#Lupo +234984#Thomas McDonell#Young Southie +122515#Jack Posobiec#Southie +122514#Juana Collignon#Southie Girl +1075061#Zhi Ma Gui#Old Woman + /owoPx8ldvh07NZBy5wG0UTY0Uuj.jpg + Casey Silver Productions +China Film Co-Production Corporation +Huayi Brothers + An American teenager who is obsessed with Hong Kong cinema and kung-fu classics makes an extraordinary discovery in a Chinatown pawnshop: the legendary stick weapon of the Chinese sage and warrior, the Monkey King. With the lost relic in hand, the teenager unexpectedly finds himself travelling back to ancient China to join a crew of warriors from martial arts lore on a dangerous quest to free the imprisoned Monkey King. + Rob Minkoff + 104 + Action - Adventure - Fantasy + http://www.forbiddenkingdommovie.com/ + /4jTVS5uij49cqzLKXjaQywIp7cV.jpg + Casey Silver +Scott Fischer +Philip Lee + China +United States of America + 6.4 + The Forbidden Kingdom + 2008 + + + $ +10814#Wesley Snipes#Blade +10822#Stephen Dorff#Deacon Frost +10823#Kris Kristofferson#Whistler +10824#N'Bushe Wright#Karen +10825#Donal Logue#Quinn +1646#Udo Kier#Dragonetti +66147#Arly Jover#Mercury +10826#Traci Lords#Racquel +10827#Kevin Patrick Walls#Krieger +40275#Tim Guinee#Curtis Webb +5411#Sanaa Lathan#Vanessa + /dGnDGHD5vmaRow4BzAiuJaGwIz3.jpg + 735 + Marvel Enterprises +New Line Cinema +Amen Ra Films + 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 Whistler battle an evil vampire rebel (Deacon Frost) who plans to take over the outdated vampire council, capture Blade and resurrect voracious blood god La Magra. + Stephen Norrington + 120 + Horror - Action + http://www.warnerbros.com/blade + /r0RQ9ZOEZglLOeYDNJTehVTRoR6.jpg + Robert Engelman +Peter Frankfurt +Wesley Snipes + United States of America + 6.5 + Blade + 1998 + + + $ +10814#Wesley Snipes#Blade +10823#Kris Kristofferson#Whistler +10862#Dominic Purcell#Drake +10860#Jessica Biel#Abigail Whistler +10859#Ryan Reynolds#Hannibal King +7489#Parker Posey#Danica Talos +143382#Mark Berry#Chief Martin Vreede +8265#John Michael Higgins#Dr. Edgar Vance +540#Callum Keith Rennie#Asher Talos +115788#Paul Michael Lévesque#Jarko Grimwood +1052900#Paul Anthony#Wolfe + /ysLIi9nzMbUqi4dQh3tqblUb27o.jpg + 735 + Marvel Enterprises +New Line Cinema +Amen Ra Films + 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. + David S. Goyer + 123 + Science Fiction - Action - Horror - Thriller - Adventure - Fantasy + http://www.warnerbros.com/blade-trinity + /4WinsdHQBdh5aTt7Bd7T7dbUXbb.jpg + Peter Frankfurt +David S. Goyer +Lynn Harris +Wesley Snipes + United States of America + 5.8 + Blade: Trinity + 2004 + + + $ +10814#Wesley Snipes#Blade +10823#Kris Kristofferson#Whistler +2372#Ron Perlman#Reinhardt +10839#Leonor Varela#Nyssa +4886#Norman Reedus#Scud +3491#Thomas Kretschmann#Damaskinos +10843#Luke Goss#Nomak +31841#Matt Schulze#Chupa +115787#Danny John-Jules#Asad +1341#Donnie Yen#Snowman +10841#Karel Roden#Kounen + /2n0kjNEI3uF0ju9H5jiE3rBk5C0.jpg + 735 + Marvel Enterprises +New Line Cinema +Amen Ra Films + 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. + Guillermo del Toro + 117 + Fantasy - Horror - Action - Thriller + http://www.warnerbros.com/blade-ii + /jlURNpXCMK830CsGRd939PJLh8c.jpg + Peter Frankfurt +Patrick J. Palmer +Wesley Snipes + Germany +United States of America + 6.3 + Blade II + 2002 + + + $ +86462#Sticky Fingaz#Blade +82943#Jill Wagner#Krista Starr +109019#Nelson Lee#Shen +20289#Neil Jackson#Marcus Van Sciver +109020#Jessica Gower#Chase + /6PUyuXAOZRaiyxnT6E09PTbxcBf.jpg + New Line Television + The brutal hunt for the pure bloods continues as the ultimate vampire hunter, Blade, battles to defeat the House of Chthon, an ancient evil sect of vampires that is growing stronger everyday. Led by the vampire overlord Marcus, their objective is to create a vaccine that will give rise to a new breed of super vampires, immune to vampire weaknesses. In order to stop them, Blade joins forces with th + Peter O'Fallon + 88 + Action - Horror - TV Movie + http://www.newline.com/properties/bladehouseofchthon.html + /hHuPdEFJXSCUKkSdxGuW5lGIWTO.jpg + United States of America + 5.3 + Blade: House of Chthon + 2008 + + + $ +38559#Christopher Lambert#John Henry Brennick +2115#Kurtwood Smith#Prison Director Poe +51641#Loryn Locklin#Karen B. Brennick +5365#Clifton Collins Jr.#Nino Gomez +27993#Jeffrey Combs#D-Day, the Computer Geek +104907#Lincoln Kilpatrick#Abraham +27736#Tom Towles#Stiggs +26491#Vernon Wells#Maddox +37028#Carolyn Purdy-Gordon#Zed-10 +1282301#Alan Zitner#Claustrophobic Prisoner +1090466#Deni Gordon#Karen's Cellmate + /csGyWqK4dTAtSPpreU26TzoY9ua.jpg + 86341 + Dimension Films +Village Roadshow Pictures +Davis Entertainment + A futuristic prison movie. Protagonist and wife are nabbed at a future US emigration point with an illegal baby during population control. The resulting prison experience is the subject of the movie. The prison is a futuristic one run by a private corporation bent on mind control in various ways + Stuart Gordon + 95 + Action - Thriller - Science Fiction + /evjpqWPUY4VpOdyLpeRfkGU8DiR.jpg + John Davis +John Flock + Australia +United States of America + 5.8 + Fortress + 1992 + + + $ +31#Tom Hanks#Robert Langdon +3061#Ewan McGregor#Camerlengo Patrick McKenna +8786#Ayelet Zurer#Vittoria Vetra +1640#Stellan Skarsgård#Commander Richter +17839#Pierfrancesco Favino#Inspector Olivetti +12647#Armin Mueller-Stahl#Cardinal Strauss +20258#Thure Lindhardt#Chartrand +74487#David Pasquesi#Claudio Vincenzi +74488#Cosimo Fusco#Father Simeon +74494#Victor Alfieri#Lieutenant Valenti +966875#Franklin Amobi#Cardinal Lamasse + /wjrTJhDQEqmmaEfbM2Qo8ibzvSS.jpg + US|PG-13 + 115776 + Columbia Pictures +Imagine Entertainment +Skylark Productions + Harvard symbologist Robert Langdon investigates a mysterious symbol seared into the chest of a murdered physicist. He discovers evidence of the unimaginable, the rebirth of an ancient secret brotherhood known as the Illuminati, the most powerful underground organization ever to walk the earth. + Ron Howard + 138 + Thriller - Mystery + http://www.angelsanddemons.com/ + /j77ci1pofRm5uzxF40TJvZSj2Ti.jpg + Brian Grazer +John Calley +William M. Connor +Anna Culp +Ron Howard +Kathleen McGill +Louisa Velis + Italy +United States of America + 6.0 + Angels & Demons + 2009 + + + $ +31#Tom Hanks#Robert Langdon +2405#Audrey Tautou#Sophie Neveu +1327#Ian McKellen#Sir Leigh Teabing +6162#Paul Bettany#Silas +1003#Jean Reno#Captain Bezu Fache +658#Alfred Molina#Manuel Aringarosa +920#Jürgen Prochnow#André Vernet +34259#Jean-Yves Berteloot#Rémy Jean +20795#Jean-Pierre Marielle#Jacques Saunier +38885#Marie-Françoise Audollent#Sœur Sandrine +28186#Agathe Natanson#Ritual Priestress + /hcAMO4LF6G2hvsTpNgmY1kFj3jJ.jpg + US|PG-13 + 115776 + Columbia Pictures +Imagine Entertainment +Skylark Productions + When the curator of the Louvre is found murdered in the famed museum's hallowed halls, Harvard professor, Robert Langdon and cryptographer, Sophie Neve must untangle a deadly web of deceit involving the works of Leonardo da Vinci. + Ron Howard + 149 + Thriller - Mystery + http://www.sonypictures.com/homevideo/thedavincicode/index.html + /5IqaT3fza0Y9vKazjGwDGsNuuS8.jpg + John Calley +Brian Grazer +Ron Howard +Kathleen McGill +Louisa Velis + United States of America +Malta +France + 6.0 + The Da Vinci Code + 2006 + + + $ +4724#Kevin Bacon#Sebastian Caine / Hollow Man +1951#Elisabeth Shue#Linda McKay +16851#Josh Brolin#Matthew Kensington +21165#Kim Dickens#Sarah Kennedy +25702#Rhona Mitra#Sebastian's Neighbor +17305#Greg Grunberg#Carter Abbey +9998#Joey Slotnick#Frank Chase +1218108#Mary Randle#Janice Walton +21416#William Devane#Dr. Howard Kramer +64515#Pablo Espinosa#Ed, Warehouse Guard +1041923#Jeffrey Scaperrotta#Boy in Car (as Jeffrey George Scaperotta) + /bvVSwx2GL9OorrI7FMdvt7wz0TG.jpg + 166376 + Global Entertainment Productions GmbH & Company Medien KG +Columbia Pictures + 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. + Paul Verhoeven + 112 + Action - Science Fiction - Thriller + /gBQyPpUztIJWt2Q6r1wTqcYeo6x.jpg + Alan Marshall +Douglas Wick + Germany +United States of America + 5.7 + Hollow Man + 2000 + + + $ +2224#Christian Slater#Michael Griffin +56857#Peter Facinelli#Det. Frank Turner +73836#Laura Regan#Dr. Maggie Dalton +31184#David McIlwraith#Dr. William Reisner +51801#William MacDonald#Col. Gavin Bishop +87147#Sarah Deakins#Det. Lisa Martinez +58398#Jessica Harmon#Heather Dalton +103286#Sonya Salomaa#Trophy Wife +127809#Terri Anne Welyki#Pearl Girl +79346#John Shaw#Dr. Devin Villiers +127810#David Abbott#Elderly Husband + /7t9okXhuguoylKwFasAZbE8SHQP.jpg + 166376 + Frontera Productions +Destination Films +Red Wagon Entertainment + 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. + Claudio Fäh + 91 + Horror - Action - Thriller - Science Fiction + /ll6znmkrL8MYtIdYaiv7eGndZYB.jpg + David Lancaster + United States of America + 4.8 + Hollow Man II + 2006 + + + $ +38559#Christopher Lambert#John Henry Brennick +68222#Aidan Rea#Danny Brennick +68223#David Roberson#Nestor Tubman +68224#Liz May Brice#Elena Rivera +68225#Beth Toussaint#Karen Brennick +2230#Pam Grier#Susan Mendenhall +56120#Yuji Okumoto#Sato +1542#Willie Garson#Stanley Nussbaum +8979#Patrick Malahide#Peter Teller +8319#Nick Brimble#Max Polk +234568#Barbara Sarafian#Hart + /ouKq6ktHQhSJjDf5wcvdOljsVIh.jpg + 86341 + Carousel Picture Company + 7 years on from the original Fortress movie, Brennick and his family are still on the run. Finally, they give in, and surrender, only to find themselves imprisoned in a new, more sophisticated fortress prison in outer space. But Brennick's not a man to give in easily, and with a 10 year old son waiting for him back on earth, he's going to pack some serious assault on the evil corporation. + Geoff Murphy + 92 + Science Fiction - Action + /njEYK05hNCKUFJHuJVQlTBDLNZV.jpg + John Flock + Luxembourg +United States of America + 4.7 + Fortress 2 + 2000 + + + $ +15860#Miguel Ferrer#Charlie Pope +10485#Leilani Sarelle#Natalie Caldwell +14731#Henry Silva#Detective Topo +85154#Tony Denison#Noel Guzmann +29712#Tim Thomerson#Steve Mobley +7420#Harvey Fierstein#Bob Lakin +1461#George Clooney#Lip Syncing Transvestite + US|R + THMPC +Curb Musifilm +Ron Stone Productions + A screenwriter is sent to Mexico to develop a story that can be used to wrap up a movie presently in production. Given a very short time allotment, the writer immerses himself in the seamier side of a Mexican beach resort, but soon finds himself involved in a 'body organ for profit' operation. Drugged, he has one of his own kidneys removed, and then, with a woman he isn't sure he can trust, he sets out to expose the ring... + David Marconi + 97 + Thriller + /oxZiBqz7IdCzPY1b5K5h49osRKp.jpg + United States of America + 5.0 + The Harvest + 1992 + + + $ +4690#Christopher Walken#Gabriel +13550#Elias Koteas#Thomas Daggett +12519#Virginia Madsen#Katherine Henley +7036#Eric Stoltz#Simon +6163#Adam Goldberg#Jerry +110#Viggo Mortensen#Lucifer +99#Amanda Plummer#Rachael +1206614#Shawn Nelson#Indian Healer +1525535#Emily Conforto#Sandra + /9YXfkP3NnOAUACiCQvI56L2D2YM.jpg + US|R + 9068 + Overseas FilmGroup +Dimension Films +First Look Pictures + The angel Gabriel comes to Earth to collect a soul which will end the stalemated war in Heaven, and only a former priest and a little girl can stop him. + Gregory Widen + 98 + Fantasy - Horror - Thriller + /4ZWFhQipzBHJze2llzCzhrSIZsn.jpg + Joel Soisson + United States of America + 6.0 + The Prophecy + 1995 + + + $ +4690#Christopher Walken#Gabriel +3130#Jennifer Beals#Valerie Rosales +328#Brittany Murphy#Izzy +21315#Eric Roberts#Michael +56745#Glenn Danzig#Samayel +21354#Russell Wong#Danyael +56576#Steve Hytner#Joseph +27994#Bruce Abbott#Thomas Daggett +102707#William Prael#Rafayel +154004#Renée Victor#Mother +154954#Elizabeth Dennehy#Kathy Kimball + /eIpy4nFQYRmLA9z2JcChflVyVU1.jpg + 9068 + Overseas FilmGroup +Dimension Films +NEO Motion Pictures + Gabriel returns to try to destroy the human race he despises so much, with the help of a suicidal teen and the opposition of the angel Daniel. + Greg Spence + 87 + Fantasy - Horror - Thriller + /76hvqjjfhOBgp7A99YVH50uID8d.jpg + United States of America + 5.9 + The Prophecy II + 1998 + + + $ +6383#Aaron Eckhart#Dr. Josh Keyes +448#Hilary Swank#Maj. Rebecca Childs +18792#Delroy Lindo#Dr. Ed 'Braz' Brazzleton +2283#Stanley Tucci#Dr. Conrad Zimsky +10698#Tchéky Karyo#Serge +132078#DJ Qualls#Theodore Donald 'Rat' Finch +28633#Richard Jenkins#Gen. Thomas Purcell +21089#Bruce Greenwood#Cmdr. Robert Iverson +83777#Christopher Shyer#Dave Perry +172851#Ray Galletti#Paul +52457#Eileen Pedde#Lynne + /wDbRly7L34PcvzPlbUqgsttubAU.jpg + Paramount +David Foster Productions +HorsePower Entertainment + 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. + Jon Amiel + 136 + Action - Thriller - Adventure - Science Fiction + /xPhO4FuZbbjZrN4LxTDeK45hgfT.jpg + Sean Bailey +David Foster +Cooper Layne + United States of America +Canada +Germany + 5.0 + The Core + 2003 + + + $ +13240#Mark Wahlberg#Max Payne +18973#Mila Kunis#Mona Sax +2222#Beau Bridges#BB Hensley +8171#Ludacris#Jim Bravura +5577#Chris O'Donnell#Jason Colvin +10825#Donal Logue#Alex Balder +17341#Amaury Nolasco#Jack Lupino +20879#Kate Burton#Nicole Horne +18182#Olga Kurylenko#Natasha +63813#Rothaford Gray#Joe Salle +74122#Joel Gordon#Owen Green + /qC0gb4cvExJiYU5FFzab0jnG2ul.jpg + Dune Entertainment +Abandon Entertainment +Collision Entertainment + Coming together to solve a series of murders in New York City are a DEA agent whose family was slain as part of a conspiracy and an assassin out to avenge her sister's death. The duo will be hunted by the police, the mob, and a ruthless corporation. + John Moore + 100 + Action - Drama - Crime - Thriller + http://www.maxpaynethemovie.com + /7zb2UsXRhcJn0NVk0wGBD2F7ML6.jpg + Scott Faye +John Moore +Julie Yorn +Peter Veverka + United States of America +Canada + 5.2 + Max Payne + 2008 + + + $ +12835#Vin Diesel#Toorop +1620#Michelle Yeoh#Schwester Rebecca +59373#Mélanie Thierry#Aurora +2192#Lambert Wilson#Darquandier +44079#Charlotte Rampling#Hohepriesterin +16927#Gérard Depardieu#Gorsky +2983#Mark Strong#Finn +47825#Jérôme Le Banner#Killa +25677#Joel Kirby#Dr. Newton +72270#Souleymane Dicko#Jamal +59374#Radek Bruna#Karl + /jnrvQO04kdoxYzxzIc7VM1meads.jpg + US|PG-13 + Babylon +MNP Entreprise +StudioCanal + In Babylon A.D Vin Diesel stars as a veteran-turned-mercenary who is hired to deliver a package from the ravages of post-apocalyptic Eastern Europe to a destination in the teeming megalopolis of New York City. The "package" is a mysterious young woman with a secret. + Mathieu Kassovitz + 101 + Action - Adventure - Science Fiction - Thriller + http://www.babylonadmovie.com/ + /eeoB2u438Z8b14HJn8TVe8X9F1U.jpg + Alain Goldman +Benoît Jaubert + France +United Kingdom + 5.0 + Babylon A.D. + 2008 + + + $ +6065#Dennis Quaid#Jack Hall +131#Jake Gyllenhaal#Sam Hall +4730#Emmy Rossum#Laura Chapman +6066#Dash Mihok#Jason Evans +6067#Jay O. Sanders#Frank Harris +6068#Sela Ward#Dr. Lucy Hall +6069#Austin Nichols#J.D. +6070#Arjay Smith#Brian Parks +3134#Tamlyn Tomita#Janet Tokada +6071#Sasha Roiz#Parker +65#Ian Holm#Terry Rapson + /6cX77zv88I7acchSvbO9Qx4dqxc.jpg + Mel's Cite du Cinema +Lions Gate Films +Centropolis Entertainment + 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. + Roland Emmerich + 124 + Action - Adventure - Science Fiction - Thriller + http://www.thedayaftertomorrow.com/ + /pRmpaFjtegy8PnUvSBDyT9dm7c.jpg + Roland Emmerich +Mark Gordon + United States of America + 6.3 + The Day After Tomorrow + 2004 + + + $ +10959#Shia LaBeouf#Jerry Shaw +11705#Michelle Monaghan#Rachel Holloman +5916#Rosario Dawson#Zoe Perez +19654#Michael Chiklis#Defense Secretary Callister +53650#Anthony Mackie#Major William Bowman +879#Billy Bob Thornton#Thomas Morgan +58019#Ethan Embry#Agent Toby Grant +165263#Anthony Azizi#Ranim Khalid +75041#Cameron Boyce#Sam Holloman +8792#Lynn Cohen#Mrs. Wierzbowski +17200#Bill Smitrovich#Admiral Thompson + /ryQdOW2Dz8kpO8IfN6BvHVl2jH7.jpg + Goldcrest Pictures +KMP Film Invest +K/O Paper Products + Jerry Shaw and Rachel Holloman are two strangers whose lives are suddenly thrown into turmoil by a mysterious woman they have never met. Threatening their lives and family, the unseen caller uses everyday technology to control their actions and push them into increasing danger. As events escalate, Jerry and Rachel become the country's most-wanted fugitives and must figure out what is happening to them. + D.J. Caruso + 118 + Mystery - Thriller - Action + /ej1yxLuhME7PJyGsXJjEMcQGI37.jpg + Patrick Crowley +Alex Kurtzman +Roberto Orci + United States of America +Germany + 6.3 + Eagle Eye + 2008 + + + $ +17276#Gerard Butler#Kable +53820#Michael C. Hall#Ken Castle +33235#Logan Lerman#Simon +38425#Amber Valletta#Angie +53256#Terry Crews#Hackman +26467#Kyra Sedgwick#Gina Parker Smith +8171#Ludacris#Humanez Brother +8291#Alison Lohman#Trace +16501#Milo Ventimiglia#Rick Rape +54247#Aaron Yoo#Humanez Dude +5723#John Leguizamo#Freek + /gCVAvKhsD5BrGZhyj1sNnwsqCY5.jpg + Lakeshore Entertainment +Lionsgate + Mind-control technology has taken society by a storm, a multiplayer on-line game called "Slayers" allows players to control human prisoners in mass-scale. Simon controls Kable, the online champion of the game. Kable's ultimate challenge becomes regaining his identity and independence by defeating the game's mastermind. + Mark Neveldine +Brian Taylor + 95 + Action - Thriller - Science Fiction + http://gamerthemovie.com + /csbqdb7VUhGDkNsS3hjV16pwZ9e.jpg + Gary Lucchesi +Tom Rosenberg +Skip Williamson +Richard S. Wright + United States of America + 5.6 + Gamer + 2009 + + + $ +6065#Dennis Quaid#Thomas Barnes +28657#Matthew Fox#Kent Taylor +2178#Forest Whitaker#Howard Lewis +10205#Sigourney Weaver#Rex Brooks +227#William Hurt#President Ashton +8786#Ayelet Zurer#Veronica +25616#Edgar Ramírez#Javier +17093#Eduardo Noriega#Enrique +5419#Saïd Taghmaoui#Suarez +8691#Zoe Saldana#Angie Jones +6474#James Le Gros#Ted Heinkin + /7DwOjEHdJ3dc3kBNaN7XQ0yE258.jpg + US|PG-13 + Kanzaman +Columbia Pictures +Relativity Media + The attempted assassination of the American President is told and re-told from several different perspectives. + Pete Travis + 90 + Drama - Action - Thriller - Crime + http://www.vantagepoint-movie.com/index.php + /2PnFsTzmFC3Ydhj0uBEYjPqHWHO.jpg + Neal H. Moritz + United States of America + 6.0 + Vantage Point + 2008 + + + $ +16828#Chris Evans#Nick Gant +501#Dakota Fanning#Cassie Holmes +38670#Camilla Belle#Alyssa English +938#Djimon Hounsou#Agent Henry Carver +74537#Maggie Siff#Teresa Stowe +7248#Cliff Curtis#Hook +25376#Joel Gretsch#Nick's Father +20289#Neil Jackson#Victor Budarin +74538#Nate Mooney#Pinky Stein +74539#Colin Ford#Young Nick +65728#Scott Michael Campbell#Agent Holden + /cta0YLPKH1Xb9EHmZAWFmLVQHeS.jpg + Summit Entertainment +Icon Productions +Infinity Features Entertainment + 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. + Paul McGuigan + 111 + Science Fiction - Action + http://www.push-themovie.com/ + /qN73wDiyplutRKOHiXaLYFgPhwK.jpg + Bruce Davey +Amy Gilliam +Kyle Mann +David M. Richardson +Kerry Rock +Christa Vausbinder +William Vince +Glenn Williamson + United States of America +Canada + 6.0 + Push + 2009 + + + $ +521#Michael J. Fox#Marty McFly +1062#Christopher Lloyd#Dr. Emmett Brown +1063#Lea Thompson#Lorraine Baines +1064#Crispin Glover#George McFly +1065#Thomas F. Wilson#Biff Tannen +1066#Claudia Wells#Jennifer Parker +1067#Marc McClure#Dave McFly +1068#Wendie Jo Sperber#Linda McFly +1069#George DiCenzo#Sam Baines +1070#Frances Lee McCain#Stella Baines +1072#James Tolkan#Mr. Strickland + /x4N74cycZvKu5k3KDERJay4ajR3.jpg + 264 + U-Drive Productions +Universal Pictures +Amblin Entertainment + 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. + Robert Zemeckis + 116 + Adventure - Comedy - Science Fiction - Family + http://www.backtothefuture.com/movies/backtothefuture1 + /pTpxQB1N0waaSc3OSn0e9oc8kx9.jpg + Bob Gale +Neil Canton + United States of America + 8.2 + Back to the Future + 1985 + + + $ +521#Michael J. Fox#Marty McFly Sr. / Marty McFly Jr. / Marlene McFly +1062#Christopher Lloyd#Dr. Emmett Brown +1063#Lea Thompson#Lorraine +1951#Elisabeth Shue#Jennifer Parker / Jennifer McFly +1072#James Tolkan#Mr. Strickland +1952#Jeffrey Weissman#George McFly +1953#Casey Siemaszko#3-D +1954#Billy Zane#Match +1955#Darlene Vogel#Spike +109#Elijah Wood#Video Game Boy +58319#Jason Scott Lee#Whitey + /snLFUFzWUZCdYkAbhZlaGJxiY3I.jpg + 264 + U-Drive Productions +Universal Pictures +Amblin Entertainment + 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. + Robert Zemeckis + 108 + Adventure - Comedy - Family - Science Fiction + http://www.backtothefuture.com/movies/backtothefuture2 + /k5dzvCQkXU2CAhLtlj9BHE7xmyK.jpg + Neil Canton +Bob Gale + United States of America + 7.6 + Back to the Future Part II + 1989 + + + $ +521#Michael J. Fox#Marty McFly / Seamus McFly +1062#Christopher Lloyd#Dr. Emmett Brown +2453#Mary Steenburgen#Clara Clayton +1065#Thomas F. Wilson#Buford 'Mad Dog' Tannen/Biff Tannen +1063#Lea Thompson#Maggie McFly / Lorraine McFly +1951#Elisabeth Shue#Jennifer Parker +1072#James Tolkan#Marshal James Strickland +2454#Matt Clark#Chester the Bartender +2455#Christopher Wynne#Buford Tannen's Gang / Needles' Gang +2456#Sean Sullivan#Buford Tannen's Gang +2457#Mike Watson#Buford Tannen's Gang + /pP2a4MBQbIeZMbErBWMjxTT5Npb.jpg + 264 + Universal Pictures +Amblin Entertainment +U-Drive Productions + 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. + Robert Zemeckis + 118 + Adventure - Comedy - Family - Science Fiction + http://www.backtothefuture.com/movies/backtothefuture3 + /6DmgPTZYaug7QNDjOhUDWyjOQDl.jpg + Neil Canton +Bob Gale + United States of America + 7.3 + Back to the Future Part III + 1990 + + + $ +514#Jack Nicholson#Jack Torrance +10409#Shelley Duvall#Wendy Torrance +10410#Danny Lloyd#Danny Torrance +7077#Scatman Crothers#Dick Hallorann +10411#Barry Nelson#Stuart Ullman +694#Philip Stone#Delbert Grady +592#Joe Turkel#Lloyd the Bartender +10412#Anne Jackson#Doctor +16504#Tony Burton#Larry Durkin +72742#Barry Dennen#Bill Watson +1413939#Lia Beldam#Young Woman in Bath + /h4DcDCOkQBENWBJZjNlPv3adQfM.jpg + 530064 + Hawk Films +Peregrine +Warner Bros. Pictures + 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. + Stanley Kubrick + 144 + Horror - Thriller + /9fgh3Ns1iRzlQNYuJyK0ARQZU7w.jpg + Stanley Kubrick + United Kingdom +United States of America + 8.2 + The Shining + 1980 + + + $ +62#Bruce Willis#Tom Greer +8329#Radha Mitchell#Jennifer Peters +10882#Rosamund Pike#Maggie Greer +2505#James Cromwell#Dr. Lionel Canter +10182#Ving Rhames#Prophet +113676#Helena Mattsson#JJ the Blonde +80758#Boris Kodjoe#Andrew Stone +587701#Ian Novick#Andre +11516#Devin Ratray#Bobby Saunders +22133#Jack Noseworthy#Miles Strickland +172303#Danny F. Smith#Victim + /lQ872mmHvHXip5sC1t0cvCSP8IO.jpg + Wintergreen Productions +Touchstone Pictures +Mandeville Films + 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. + Jonathan Mostow + 89 + Action - Science Fiction - Thriller + http://chooseyoursurrogate.com/ + /pHAnrezPCpWzNYYceLivTMcQ4jM.jpg + Max Handelman +David Hoberman +Todd Lieberman + United States of America + 6.0 + Surrogates + 2009 + + + $ +6968#Hugh Jackman#Logan / Wolverine +5530#James McAvoy#Charles Xavier / Professor X (Young) +17288#Michael Fassbender#Erik Lehnsherr / Magneto (Young) +72129#Jennifer Lawrence#Raven Darkholme / Mystique +4587#Halle Berry#Ororo Munroe / Storm +10690#Anna Paquin#Marie D'Ancanto / Rogue +27578#Ellen Page#Katherine "Kitty" Pryde / Shadowcat +22970#Peter Dinklage#Bolivar Trask +1327#Ian McKellen#Erik Lehnsherr / Magneto (Old) +2387#Patrick Stewart#Charles Xavier / Professor X (Old) +3292#Nicholas Hoult#Hank McCoy / Beast + /5LBcSLHAtEIIgvNkA2dPmYH5wR7.jpg + 748 + Revolution Sun Studios +The Donners' Company +Marvel Entertainment + 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. + Bryan Singer + 131 + Action - Adventure - Fantasy - Science Fiction + http://www.x-menmovies.com/ + /pb1IURTkK5rImP9ZV83lxJO2us7.jpg + Lauren Shuler Donner +Bryan Singer +Simon Kinberg +Hutch Parker + United Kingdom +United States of America + 7.5 + X-Men: Days of Future Past + 2014 + + + $ +6968#Hugh Jackman#Logan / Wolverine / Weapon X +23626#Liev Schreiber#Victor Creed / Sabretooth +6413#Danny Huston#Stryker +21044#Lynn Collins#Kayla Silverfox / Silver Fox +10859#Ryan Reynolds#Wade Wilson / Deadpool / Weapon XI +82092#Will.i.am#John Wraith / Kestrel +60900#Taylor Kitsch#Remy LeBeau / The Gambit +79072#Kevin Durand#Fred Dukes / Blob +1330#Dominic Monaghan#Chris Bradley / Bolt +82093#Daniel Henney#David North / Agent Zero +82094#Tim Pocock#Scott Summers / Cyclops + /mEuDxpLNBCarVgXRqDznHT7bdS8.jpg + 453993 + Marvel Entertainment +The Donners' Company +Dune Entertainment + 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. + Gavin Hood + 107 + Adventure - Action - Thriller - Science Fiction + http://www.x-menorigins.com/ + /kqO36IYvWbRKMPiUeiVZUFH06Rc.jpg + Hugh Jackman +Lauren Shuler Donner + United States of America + 6.2 + X-Men Origins: Wolverine + 2009 + + + $ +6968#Hugh Jackman#Logan / Wolverine +2387#Patrick Stewart#Professor Charles Xavier +1327#Ian McKellen#Eric Lehnsherr / Magneto +10696#Famke Janssen#Jean Grey +11006#James Marsden#Scott Summers / Cyclops +4587#Halle Berry#Ororo Munroe / Storm +10690#Anna Paquin#Rogue +9832#Tyler Mane#Sabretooth +11007#Ray Park#Toad +11008#Rebecca Romijn#Mystique +52374#Bruce Davison#Senator Kelly + /psgFJzsb6ae49PeWqINqGEIZZBt.jpg + 748 + Marvel Enterprises +The Donners' Company +Bad Hat Harry Productions + 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. + Bryan Singer + 104 + Adventure - Action - Science Fiction + /hJ09SIDACUvRg3RLQRT2jUfDy7W.jpg + Lauren Shuler Donner +Ralph Winter + United States of America + 6.9 + X-Men + 2000 + + + $ +6968#Hugh Jackman#Logan / Wolverine +4587#Halle Berry#Ororo Munroe / Storm +1327#Ian McKellen#Eric Lehnsherr / Magneto +2387#Patrick Stewart#Charles Xavier / Professor X +10696#Famke Janssen#Jean Grey / Phoenix +10690#Anna Paquin#Marie / Rogue +7090#Kelsey Grammer#Dr. Henry 'Hank' McCoy / Beast +11006#James Marsden#Scott Summers / Cyclops +11008#Rebecca Romijn#Raven Darkholme / Mystique +11023#Shawn Ashmore#Bobby Drake / Iceman +11022#Aaron Stanford#John Allerdyce / Pyro + /w3Yc8wi2jYLaOyCW6b6svf1B0MG.jpg + 748 + Marvel Enterprises +The Donners' Company +Dune Entertainment + When a cure is found to treat mutations, lines are drawn amongst the X-Men and The Brotherhood, a band of powerful mutants organized under Xavier's former ally, Magneto. + Brett Ratner + 104 + Adventure - Action - Science Fiction - Thriller + /9jsW4RurucTwCEtA5iWV2PmIv11.jpg + Avi Arad +Lauren Shuler Donner +Ralph Winter + Canada +United Kingdom +United States of America + 6.3 + X-Men: The Last Stand + 2006 + + + $ +2387#Patrick Stewart#Professor Charles Xavier +6968#Hugh Jackman#Logan / Wolverine +1327#Ian McKellen#Eric Lehnsherr / Magneto +4587#Halle Berry#Ororo Munroe / Storm +10696#Famke Janssen#Jean Grey +11006#James Marsden#Scott Summers / Cyclops +10690#Anna Paquin#Rogue +11008#Rebecca Romijn#Raven Darkholme / Mystique / Grace +1248#Brian Cox#William Stryker +10697#Alan Cumming#Kurt Wagner / Nightcrawler +52374#Bruce Davison#Senator Kelly + /u2FxA8fDt0uQAnHKTwWGgkPShoL.jpg + 748 + XM2 Productions +Marvel Enterprises +The Donners' Company + 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. + Bryan Singer + 133 + Adventure - Action - Science Fiction - Thriller + /2ucMY4dPE4gGLPgDdYgyggYHBkF.jpg + Lauren Shuler Donner +Ralph Winter + United States of America + 6.9 + X2 + 2003 + + + $ +6968#Hugh Jackman#Logan / Wolverine +9195#Hiroyuki Sanada#Shingen +10696#Famke Janssen#Jean Grey / Phoenix +10884#Will Yun Lee#Harada +1156024#Tao Okamoto#Mariko Yashida +1179243#Rila Fukushima#Yukio +94064#Svetlana Khodchenkova#Madame Hydra / Viper +74540#Haruhiko Yamanouchi#Yashida +116278#Brian Tee#Noburo Mori +2387#Patrick Stewart#Charles Xavier / Professor X +1327#Ian McKellen#Erik Lehnsherr / Magneto + /oFyaTmJ5ZPPl16uB4Ry9pWKvtDc.jpg + 453993 + The Donners' Company +Marvel Entertainment +Bad Hat Harry Productions + Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan. + James Mangold + 126 + Action - Science Fiction - Adventure - Fantasy + http://www.thewolverinemovie.com + /iTST6DcLhfufWYUKCOskkusaYUq.jpg + Hugh Jackman +Hutch Parker +Lauren Shuler Donner + United Kingdom +United States of America + 6.3 + The Wolverine + 2013 + + + $ +18976#Ashton Kutcher#Evan Treborn +4766#Melora Walters#Andrea Treborn +20189#Amy Smart#Kayleigh Miller +20220#Elden Henson#Lenny Kagan +10128#William Lee Scott#Tommy Miller +7036#Eric Stoltz#George Miller +33235#Logan Lerman#Evan Treborn age 7 +824#Ethan Suplee#Thumper +20221#Nathaniel DeVeaux#Dr. Redfield +85140#Kevin G. Schmidt#Lenny age 13 +10135#Jesse James#Tommy age 13 + /zXTUrm0BIrrZn3nEhybg0hlY275.jpg + 52749 + FilmEngine +Katalyst Films +BenderSpink + 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. + Eric Bress +J. Mackye Gruber + 113 + Science Fiction - Thriller + /3PAQy3CyNNJPES772OFMx47lFEE.jpg + Chris Bender +A.J. Dix +J.C. Spink +Anthony Rhulen + Canada +United States of America + 7.5 + The Butterfly Effect + 2004 + + + $ +53116#Eric Lively#Nick Larson +46897#Erica Durance#Julie Miller +53117#Dustin Milligan#Trevor Eastman +33336#Gina Holden#Amanda +4095#David Lewis#Dave Bristol +41436#Andrew Airlie#Ron Callahan +53119#Chris Gauthier#Ted +71763#Susan Hogan#Katherine Larson +62911#JR Bourne#Malcolm Williams +53118#Lindsay Maxwell#Grace Callahan +173059#Zoran Vukelic#Christopher + /qY1ReLHdCtEsSrsLj5YrcJB8zZl.jpg + US|R + 52749 + BenderSpink +New Line Cinema +FilmEngine + 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. + John R. Leonetti + 95 + Drama - Science Fiction - Thriller + http://www.newline.com/properties/butterflyeffect2the.html + /nw0qNvyIGiGMvQOTNpxYeERyCn8.jpg + Chris Bender +A.J. Dix +J.C. Spink +Brendan Ferguson +Michael Stirling + United States of America + 4.0 + The Butterfly Effect 2 + 2006 + + + $ +17183#Jackie Earle Haley#Walter Kovacs / Rorschach +17178#Patrick Wilson#Dan Dreiberg / Nite Owl II +47296#Jeffrey Dean Morgan#Edward Blake / The Comedian +8289#Billy Crudup#Jon Osterman / Dr. Manhattan +1247#Matthew Goode#Adrian Veidt / Ozymandias +50463#Malin Åkerman#Laurie Jupiter / Silk Spectre II +17832#Carla Gugino#Sally Jupiter / Silk Spectre +40009#Matt Frewer#Edgar Jacobi / Moloch the Mystic +230#Stephen McHattie#Hollis Mason / Nite Owl +79343#Laura Mennell#Janey Slater +42708#Rob LaBelle#Wally Weaver + /ok6Ws65nDSLAIKkKgIjqyM5OGCc.jpg + Paramount +DC Comics +Lawrence Gordon Productions + 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. + Zack Snyder + 163 + Action - Mystery - Science Fiction + https://www.warnerbros.com/watchmen + /1QqwJBv5a6ddgzaT6cLytJioyrJ.jpg + Wesley Coller +Lawrence Gordon +Lloyd Levin +Deborah Snyder + United States of America + 7.2 + Watchmen + 2009 + + + $ +2963#Nicolas Cage#John Koestler +9827#Rose Byrne#Diana Wayland +77334#Chandler Canterbury#Caleb Koestler +77335#Ben Mendelsohn#Phil Bergman +77336#Nadia Townsend#Grace Koestler +84963#D.G. Maloney#The Stranger +84964#Lara Robinson#Lucinda Embry / Abby Wayland +44842#Alan Hopgood#Rev. Koestler +37292#Adrienne Pickering#Allison +84965#Joshua Long#Younger Caleb +79106#Alethea McGrath#Miss Taylor (2009) + /p6WG7DkWT7VmUwgQuEZyPpKXWyX.jpg + Summit Entertainment +Escape Artists +Mystery Clock Cinema + A teacher opens a time capsule that has been dug up at his son's elementary school; in it are some chilling predictions -- some that have already occurred and others that are about to -- that lead him to believe his family plays a role in the events that are about to unfold. + Alex Proyas + 121 + Action - Adventure - Drama - Mystery - Science Fiction - Thriller + http://knowing-themovie.com/ + /5XnNteYoOQ727JoZqyVcENT28Dv.jpg + Todd Black +Jason Blumenthal +Ryne Douglas Pearson +Alex Proyas +Steve Tisch + United Kingdom +United States of America +Australia + 5.9 + Knowing + 2009 + + + $ +2963#Nicolas Cage#Seth +5344#Meg Ryan#Maggie Rice +6861#Andre Braugher#Cassiel +11901#Dennis Franz#Nathaniel Messinger +10132#Colm Feore#Jordan +11902#Robin Bartlett#Anne +11903#Joanna Merlin#Teresa Messinger +11911#Sarah Dampf#Susan +11913#Rhonda Dotson#Susan's Mother +11915#Nigel Gibbs#Doctor +21475#John Putch#Man in Car + /oCDZpKpCNAxLpyInUDZxFKqQDiU.jpg + Atlas Entertainment +Monarchy Enterprises B.V. +Regency Enterprises + When guardian angel Seth -- who invisibly watches over the citizens of Los Angeles -- becomes captivated by Maggie, a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth. + Brad Silberling + 114 + Drama - Fantasy - Romance + /dMvup91Svpns2SfCtZ4jiSFiouV.jpg + Charles Roven +Dawn Steel +Robert Cavallo +Alan Glazer +Arnon Milchan + United States of America +Germany + 6.6 + City of Angels + 1998 + + + $ +8891#John Travolta#Michael +1533#Andie MacDowell#Dorothy Winters +227#William Hurt#Frank Quinlan +382#Bob Hoskins#Vartan Malt +28933#Jean Stapleton#Pansy Milbank +7866#Robert Pastorelli#Huey Driscoll +8437#Teri Garr#Judge Esther Newberg +17421#Wallace Langham#Bruce Craddock +16484#Joey Lauren Adams#Anita +942976#John Hussey#Minister + /kvTwGW1bdu46pP5FmizId07CazQ.jpg + Alphaville Films +Turner Pictures +Warner Bros. Pictures + 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. + Nora Ephron + 105 + Comedy - Drama - Fantasy + /xof1HmoI3NrSrmzHByjK6W7dU8E.jpg + Sean Daniel +Nora Ephron +James Jacks + United States of America + 5.6 + Michael + 1996 + + + $ +6384#Keanu Reeves#John Constantine +3293#Rachel Weisz#Angela Dodson / Isabel Dodson +10959#Shia LaBeouf#Chas Kramer +938#Djimon Hounsou#Midnite +10960#Max Baker#Beeman +3201#Pruitt Taylor Vince#Father Hennessy +10961#Gavin Rossdale#Balthazar +3063#Tilda Swinton#Gabriel +53#Peter Stormare#Lucifer +10962#Jesse Ramirez#Scavenger +10963#José Zúñiga#Detective Weiss + /y6UDPkSAcO08O9dmijgZ7tYw4HK.jpg + US|R + Village Roadshow Pictures +DC Comics +Lonely Film Productions GmbH & Co. KG. + 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. + Francis Lawrence + 121 + Drama - Fantasy - Horror + http://constantinemovie.warnerbros.com/ + /9Q6bzCQ19sJkQ9IIfT3ybf24aFL.jpg + Michael E. Uslan +Erwin Stoff +Lauren Shuler Donner +Benjamin Melniker +Akiva Goldsman +Lorenzo di Bonaventura + Germany +United States of America + 6.7 + Constantine + 2005 + + + $ +6384#Keanu Reeves#Klaatu +6161#Jennifer Connelly#Helen Benson +8534#Kathy Bates#Regina Jackson +120724#Jaden Smith#Jacob Benson +8930#John Cleese#Professor Barnhardt +65717#Jon Hamm#Michael Granier +3497#Kyle Chandler#John Driscoll +17343#Robert Knepper#Colonel +20904#James Hong#Mr. Wu +60205#John Rothman#Dr. Myron +91337#Sunita Prasad#Rouhani + /bfRgom0djZB8z7qbtjM542j3xrT.jpg + Dune Entertainment III +Earth Canada Productions +Hammerhead Productions + A representative of an alien race that went through drastic evolution to survive its own climate change, Klaatu comes to Earth to assess whether humanity can prevent the environmental damage they have inflicted on their own planet. When barred from speaking to the United Nations, he decides humankind shall be exterminated so the planet can survive. + Scott Derrickson + 104 + Drama - Science Fiction - Thriller + /7fNFk4EAGbuRFqrSJprgXEIX5Za.jpg + Erwin Stoff +Paul Harris Boardman +Gregory Goodman + Canada +United States of America + 5.3 + The Day the Earth Stood Still + 2008 + + + $ +556275#Matthew Mercer#Leon S. Kennedy (voice) +76029#Courtenay Taylor#Ada Wong (voice) +15030#Robin Sachs#Ataman / Ivan Judanovich (voice) +571300#Dave Wittenberg#Buddy / Alexander 'Sasha' Kozachenko (voice) +79051#Wendee Lee#Svetlana Belikova (voice) +1282652#Val Tasso#JD (voice) +81378#Salli Saffioti#Ingrid Hunnigan (voice) +945403#David Earnest#Secretary / Buddy (voice) +939345#Patrick Seitz#Scarecrow (voice) +81381#Michael McConnohie#Tyrant (voice) +558915#Jolene Andersen#Ada Wong / Ingrid Hunnigan (motion capture) + /sqYyYcKfkgm9ZF6F58O0ZspMwnG.jpg + US|R + 133352 + Capcom Company +Digital Frontier +Sony Pictures + Resident Evil: Damnation + U.S. federal agent Leon S. Kennedy sneaks into the "East Slavic Republic" to verify rumors that Bio-Organic Weapons (BOWs) are being used in the country's civil war, which the U.S. and Russia are making preparations to jointly intervene in. Right after his infiltration, the U.S. government orders him to leave immediately. Determined to uncover the truth, Leon ignores the order and enters the battlefield to end the chain of tragedies caused by the BOWs. + Makoto Kamiya + 100 + Animation - Horror + http://www.sonypictures.com/homevideo/residentevildamnation/ + /hj2xHc35cEscP7oj6DqCK6IbNIC.jpg + Japan + 6.4 + Biohazard: Damnation + 2012 + + + $ +63#Milla Jovovich#Alice +17647#Michelle Rodriguez#Rain +11867#Eric Mabius#Matt +146784#Ryan McCluskey#Mr. Grey +1104994#Oscar Pearce#Mr. Red +232174#Indra Ové#Ms. Black +195535#Anna Bolt#Dr. Green +72100#Joseph May#Dr. Blue +947006#Robert Tannion#Dr. Brown +7059#Heike Makatsch#Lisa +74225#Jaymes Butler#Clarence + /s41Er80jGJf3tNkgYHxUCttjmwv.jpg + 17255 + Screen Gems +Impact Pictures +Davis-Films + 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. + Paul W.S. Anderson + 100 + Horror - Action - Science Fiction + http://www.sonypictures.com/movies/residentevil/index.html + /5jdvEi57WBGuI5n2drG8FLAbYDp.jpg + Paul W.S. Anderson +Jeremy Bolt +Bernd Eichinger +Samuel Hadida + France +Germany +United Kingdom + 6.5 + Resident Evil + 2002 + + + $ +63#Milla Jovovich#Alice +7055#Sienna Guillory#Jill Valentine +18041#Oded Fehr#Carlos Olivera +3491#Thomas Kretschmann#Major Cain +96787#Sophie Vavasseur#Angie Ashford +12801#Razaaq Adoti#Sgt. Peyton Wells +15440#Jared Harris#Dr. Ashford +51944#Mike Epps#L.J. +65345#Sandrine Holt#Terri Morales +59198#Matthew G. Taylor#Nemesis +12714#Zack Ward#Nicholai Ginovaeff + /hSXacpUqjPS7EJ4clG0TTZqJjlH.jpg + 17255 + Screen Gems +Constantin Film +Davis Films/Impact Pictures (RE5) + 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. + Alexander Witt + 94 + Horror - Action - Science Fiction + /zJFZUe1TgvUevJwg2gmSPBbvutF.jpg + Paul W.S. Anderson +Jeremy Bolt +Don Carmody + Canada +France +Germany + 6.2 + Resident Evil: Apocalypse + 2004 + + + $ +63#Milla Jovovich#Alice +18041#Oded Fehr#Carlos Olivera +17303#Ali Larter#Claire Redfield +20508#Iain Glen#Dr. Isaacs +51944#Mike Epps#L.J. +57172#Ashanti#Betty +57192#Spencer Locke#K-Mart +12793#Matthew Marsden#Slater +57251#Linden Ashby#Chaser +183812#Jason O'Mara#Albert Wesker +59264#Joe Hursley#Otto + /mjQoekfYIT1t18j9hf2JSZEi60Y.jpg + 17255 + Screen Gems +Impact Pictures +Davis-Films + 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. + Russell Mulcahy + 94 + Horror - Action - Science Fiction + http://www.sonypictures.com/movies/residentevilextinction/index.html + /84s6e0V8hB87eOI5X3zVtkDboto.jpg + Paul W.S. Anderson +Jeremy Bolt +Bernd Eichinger +Samuel Hadida +Robert Kulzer + Australia +France +Germany + 6.2 + Resident Evil: Extinction + 2007 + + + $ +63#Milla Jovovich#Alice +7055#Sienna Guillory#Jill Valentine +17647#Michelle Rodriguez#Rain Ocampo +90455#Aryana Engineer#Becky +109432#Li Bingbing#Ada Wong +80758#Boris Kodjoe#Luther West +101017#Johann Urb#Leon S. Kennedy +222910#Robin Kasyanov#Sergei +79072#Kevin Durand#Barry Burton +1095911#Ofilio Portillo#Tony +18041#Oded Fehr#Todd / Carlos + /6H1ZMkxCOewI3o4017L2La6wReo.jpg + 17255 + Screen Gems +Davis Films/Impact Pictures (RE5) +Davis-Films + 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. + Paul W.S. Anderson + 95 + Action - Horror - Science Fiction + http://www.residentevil-movie.com/site/ + /qRhi9UDgfstP9aIJTCoO9u13Q7t.jpg + Paul W.S. Anderson +Jeremy Bolt +Don Carmody +Alexander Dostal + Canada +France +Germany + 5.6 + Resident Evil: Retribution + 2012 + + + $ +63#Milla Jovovich#Alice +3972#Wentworth Miller#Chris Redfield +17303#Ali Larter#Claire Redfield +8335#Kim Coates#Bennett +114760#Kacey Clarke#Crystal +81097#Shawn Roberts#Albert Wesker +78994#Sergio Peris-Mencheta#Angel +80758#Boris Kodjoe#Luther West +7055#Sienna Guillory#Jill Valentine +57192#Spencer Locke#K-Mart +970017#Norman Yeung#Kim Yong + /o3P90r3owOlD86e27aC801rk4QI.jpg + 17255 + Screen Gems +Impact Pictures +Davis-Films + 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. + Paul W.S. Anderson + 97 + Action - Adventure - Horror - Science Fiction + http://www.sonypictures.com/movies/residentevilafterlife/site/ + /szUA5nI2209cCQIv8iIP6tOw8Rf.jpg + Paul W.S. Anderson +Jeremy Bolt +Don Carmody +Bernd Eichinger +Samuel Hadida +Robert Kulzer +Hiroyuki Kobayashi + Canada +France +Germany + 5.9 + Resident Evil: Afterlife + 2010 + + + $ +13240#Mark Wahlberg#Leo Handler +73421#Joaquin Phoenix#Willie Gutierrez +6885#Charlize Theron#Erica Soltz +3085#James Caan#Frank Olchin +9560#Ellen Burstyn#Val Handler +6450#Faye Dunaway#Kitty Olchin +52708#Andy Davoli#Raymond Price +20564#Tony Musante#Seymour Korman +2561#Victor Argo#Paul Lazarides +21708#Tomás Milián#Manuel Sequiera +1225998#Robert Montano#Hector Gallardo + /7fttiHd5cBpp9Ftal8Cue0ArvOF.jpg + Miramax +Industry Entertainment + In the rail yards of Queens, contractors repair and rebuild the city's subway cars. These contracts are lucrative, so graft and corruption are rife. When Leo Handler gets out of prison, he finds his aunt married to Frank Olchin, one of the big contractors; he's battling with a minority-owned firm for contracts. + James Gray + 115 + Action - Crime - Drama - Thriller + https://www.miramax.com/movie/the-yards + /AtwXtU8CDWvVADgOwRkOSRZFPWI.jpg + Matt Reeves +Nick Wechsler +Kerry Orent +Paul Webster + United States of America + 6.3 + The Yards + 2000 + + + $ +24045#Joseph Gordon-Levitt#Chris Pratt +8447#Jeff Daniels#Lewis +1247#Matthew Goode#Gary Spargo +52848#Isla Fisher#Luvlee +17832#Carla Gugino#Janet +14888#Bruce McGill#Robert Pratt +19958#Alberta Watson#Barbara Pratt +24357#Alex Borstein#Mrs. Lange +54193#Sergio Di Zio#Deputy Ted +5922#David Huband#Mr. Tuttle +54195#Greg Dunham#Bone + /ya0JrC7rwEzhmy1Gmohg8Egc7gL.jpg + Spyglass Entertainment +Miramax + Chris is a once promising high school athlete whose life is turned upside down following a tragic accident. As he tries to maintain a normal life, he takes a job as a janitor at a bank, where he ultimately finds himself caught up in a planned heist. + Scott Frank + 99 + Crime - Drama - Thriller + http://video.movies.go.com/thelookout/ + /jSJca1tqlj08fGeqngTmr4UJ9ON.jpg + Gary Barber +Roger Birnbaum +Laurence Mark +Ivan Oyco +Walter F. Parkes + United States of America + 6.6 + The Lookout + 2007 + + + $ +3894#Christian Bale#John Preston +17637#Taye Diggs#Brandt +1639#Emily Watson#Mary O'Brien +2464#Angus Macfadyen#Dupont +48#Sean Bean#Errol Partridge +10862#Dominic Purcell#Seamus +43454#Christian Kahrmann#Officer in Charge +28848#Sean Pertwee#Father +886#William Fichtner#Jürgen +49486#John Keogh#Chemist +52399#David Barrash#Evidentiary Storage Officer + /lJz2X8dEM1eiKxupmPUI7WVwEtK.jpg + Blue Tulip Productions +Dimension Films + 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. + Kurt Wimmer + 107 + Action - Science Fiction - Thriller + /nOPW98NU67VN7g0ms5WD5nBVgEv.jpg + Jan de Bont +Lucas Foster +Harvey Weinstein + United States of America + 7.0 + Equilibrium + 2002 + + + $ +8784#Daniel Craig#Barthélémy Karas +2462#Catherine McCormack#Bislane Tasuiev +6979#Romola Garai#Ilona Tasuiev +378#Jonathan Pryce#Paul Dellenbach +65#Ian Holm#Jonas Muller +743#Kevork Malikyan#Nusrat Farfella +1059105#Robert Dauney#Karas +1059106#Crystal Shepherd-Cross#Bislane +544659#Isabelle Van Waes#Ilona +1295637#Max Hayter#Dellenbach +1180477#Clémentine Baert#Nurses (voice) + /1hvIBefVDjAoX58Xvf8C7Tg7z3j.jpg + US|R + Onyx Films +France2 Cinéma +Backup Media + To find Ilona and unlock the secrets of her disappearance, Karas must plunge deep into the parallel worlds of corporate espionage, organized crime and genetic research - where the truth imprisons whoever finds it first and miracles can be bought but at a great price. + Christian Volckman + 105 + Action - Animation - Science Fiction + /qLCgkxWisyDBLLQWaANRiaMG6wn.jpg + Aton Soumache +Alexis Vonarb +Roch Lener + France +United Kingdom +Luxembourg + 6.0 + Renaissance + 2006 + + + $ +17604#Jeremy Renner#Sgt. William James +53650#Anthony Mackie#Sgt. JT Sanborn +49271#Brian Geraghty#Spc. Owen Eldridge +529#Guy Pearce#Sgt. Matt Thompson +5469#Ralph Fiennes#Mercenary Team Leader +52#David Morse#Col. Reed +19034#Evangeline Lilly#Connie James +96438#Christopher Sayegh#Beckham +122029#Christian Camargo#Col. John Cambridge +966353#Suhail Aldabbach#Black Suit Man +1291852#David Gueriera#First Sergeant + /3iPnZOXR9mpcK8RwvAW7b7Axr8v.jpg + US|R + Grosvenor Park Media Ltd. +Film Capital Europe Funds (FCEF ) +First Light + 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. + Kathryn Bigelow + 131 + Drama - Thriller - War + http://www.thehurtlocker-movie.com/ + /tOiWc3mUzHH4gMpmUe9vqxIeWMs.jpg + Kathryn Bigelow +Mark Boal +Nicolas Chartier +Jenn Lee +Greg Shapiro + United States of America + 7.0 + The Hurt Locker + 2008 + + + $ +7517#Kate Bosworth#Anne Marie Chadwick +56045#Matthew Davis#Matt Tollman +17647#Michelle Rodriguez#Eden +57088#Sanoe Lake#Lena +21027#Mika Boorem#Penny Chadwick +57089#Chris Taloa#Drew +1520267#Kala Alexander#Kala +1520268#Ruben Tejada#JJ +1520269#Kaupena Miranda#Kaupena +1520270#Asa Aquino#Asa +62066#Faizon Love#Leslie + /pZmUs1f3t3P0sAySnw8vdFclO4p.jpg + 115839 + Shutt/Jones Productions +Universal Pictures +Imagine Entertainment + Nothing gets between Anne Marie and her board. Living in a beach shack with three roommates, she is up before dawn every morning to conquer the waves and count the days until the Pipe Masters competition. Having transplanted herself to Hawaii with no one's blessing but her own, Anne Marie finds all she needs in the adrenaline-charged surf scene - until pro quarterback Matt Tollman comes along... + John Stockwell + 104 + Adventure - Romance - Drama + /zHCuiNnQu0o84vPK9vuecJ8SLZe.jpg + Brian Grazer +Karen Kehela Sherwood + Germany +United States of America + 5.7 + Blue Crush + 2002 + + + $ +1178861#Ryan Agnew#Dylon +1178862#Gin Fedotov#Patrice Lapierre +1178863#Jeff Graham#Pilot #1 +1178864#Ryan Hatt#? +1178865#Alan Edward Johnson#Kurtis Mikusek +1178866#Kevin Johnson#Greg Baker +1178867#Jon MacBurnie#Brian "Four Eyes" Leise +1178868#Adam Munro#Andrew 'Sweaty' Szwedowicz +1178869#Megan Windle#Tracy Baker + /gVE8aRPOy2F1KiagvxghbzIWf4J.jpg + Rambunxious Entertainment +Multivisionnaire Pictures + Confirmation of extraterrestrial life appears on television screens across the world as a massive spacecraft breaks through the atmosphere on a crash course into the Atlantic Ocean. A young paramedic, Greg Baker, signs up to fight for his planet against the invaders. Baker joins Special Forces members as the squad medic as they escort a classified package by chopper over enemy territory. When their chopper is shot down they find themselves surrounded and outnumbered. Desperate to return to his wife's side and haunted by nightmares, Baker find that his role in the war has quickly become much larger than he could have ever imagined. The mysterious package may be the key to turning the tide of the war, and possibly to saving all of humanity, but Baker must decide whether to protect it or sacrifice it to ensure his own survival. + Aaron Kurmey + 85 + War - Science Fiction + http://www.rambunxious.com/ + /dodToQ0ag0PAagz3u2JYVu7r8JQ.jpg + Canada + 5.2 + Battle Earth + 2013 + + + $ +10843#Luke Goss#Malachy +25438#Ed Speleers#Jason +17291#Andrew Pleavin#Erik +127501#Simon Thorp#Kramer +57578#MyAnna Buring#Jozefa +31364#Sarah Douglas#The Red Queen +63078#Ian Virgo#Hobart +127504#Ava Lyn Koh#Voice of Darian +127505#Gillian Tan#Henchwoman +127506#Lynne Verrall#Baba + /pnKDo8iUBLce6VGyAONmLdPU4yW.jpg + US|N/A + When Prince Malachy returns to his father’s kingdom after the Crusades his first impression is that a bad harvest is the reason that the villagers are sick and hungry. But all is not as it seems and a stranger to the village, warns the new king that a dark force is the cause of their ills. + Pearry Reginald Teo + 87 + Fantasy - Action - Thriller - Science Fiction + /q4cRqdKAPRxGdk6r150hQZv5EU2.jpg + United States of America + 4.0 + Witchville + 2010 + + + $ +3967#Kate Beckinsale#Annie Marchand +6807#Sam Rockwell#Glenn Marchand +11665#Michael Angarano#Arthur Parkinson +52442#Olivia Thirlby#Lila Raybern +12110#Amy Sedaris#Barb Petite +2842#Jeannetta Arnette#Louise Parkinson +2171#Griffin Dunne#Don Parkinson +18070#Nicky Katt#Nate Petite +4738#Connor Paolo#Warren Hardesky +119232#Tom Noonan#Mr. Chervenick + /1NZW8l6OJslXIJkx9PpGCUNJdZn.jpg + Crossroads Films + Waitress Annie has separated from her suicidal alcoholic husband, Glenn. Glenn has become an evangelical Christian, but his erratic attempts at getting back into Annie's life have alarmed her. High school student Arthur works at Annie's restaurant, growing closer to a new kid in town, Lila, after class. When Glenn and Annie's daughter go missing, the whole town searches for her, as he increasingly spirals out of control. + David Gordon Green + 106 + Drama - Romance + /vpQQH3HlzEmhTcwijFG3Py6HN1j.jpg + United States of America + 6.4 + Snow Angels + 2008 + + + $ +21037#Prince#The Kid +191104#Apollonia Kotero#Apollonia +57907#Morris Day#Morris +50744#Olga Karlatos#Mother +15864#Clarence Williams III#Father +110530#Jerome Benton#Jerome +1205357#Billy Sparks#Billy +34061#Wendy Melvoin#Wendy +34060#Lisa Coleman#Lisa +1425531#Bobby Z#Bobby +1168002#Dr. Fink#Matt + /7slVN3DYlBx8VCCp8i7mPk9xmJ6.jpg + Water +Purple Films +Warner Bros. Pictures + A young man with a talent for music meets an aspiring singer, Apollonia, and finds that talent alone isn't all that he needs. + Albert Magnoli + 111 + Drama - Music - Romance + /epUyAfIgsrpIcY0qi6dhnay5rpl.jpg + Robert Cavallo +Steven Fargnoli +Joseph Ruffalo + United States of America + 6.6 + Purple Rain + 1984 + + + $ +1309392#Sam McConkey#John Croix +1309394#Paulino Hemmer#Sotreum +1434386#Mike Lawler#Van Ness +1434387#James Gerardi#Trevor +1162843#Shari Rigby#Maria Croix +1162843#Shari Rigby#Seamus + /zqIZp8DZrpYRbuedzz3lGAz366o.jpg + When his wife is abducted by a group of blood-thirsty Vampires, John Croix is left to die in a forgotten region of the desert. It is here where an unspeakable evil exists. Now, by no choice of his own, Croix will come face-to-face with the most terrifying creatures of the night. Still a man, but possessing all the strength and power of a werewolf when the moon is out, Croix becomes a reluctant hero for mankind when he learns that his wife may still be alive. Croix sets out on a mission to rescue his wife - venturing deeper and deeper into the Vampire's lair- in his quest to save her before she is lost to the world of the undead forever. + Dustin Rikert + 91 + Horror + /tKKZSpjmhMgX2tA9q03uxI8BwK.jpg + 2.5 + Death Hunter + 2010 + + + $ +23880#Steven Seagal#Jonathan Cold +46917#Tamara Davies#Agent Amanda Stuart +95638#John Pyper-Ferguson#James Donovan +95639#Julian Stone#Michael Donovan +95640#Nicholas Davidoff#Nicholi +95641#Roman Varshavsky#Fedor +95642#Noa Hegesh#Julia +93719#Warren Derosa#Sergey +95643#Angela Gots#Stazi +49327#Don Franklin#Max Pierson +17396#Timothy Carhart#Greer + /raZgTeX2hp5VtQRdijof7bbJGYV.jpg + 308645 + Andrew Stevens Entertainment +Steamroller Productions +Sony Pictures Home Entertainment + Jonathan Cold returns, this time he goes Undercover to stop a group of Terrorists before they bomb Los Angeles. + Alexander Gruszynski + 96 + Action + /mXGIa08Gv71ESrVTYNKvH9p8zKS.jpg + United States of America + 3.8 + Black Dawn + 2005 + + + $ +62#Bruce Willis#James Cole +289#Madeleine Stowe#Dr. Kathryn Railly +287#Brad Pitt#Jeffrey Goines +290#Christopher Plummer#Dr. Goines +52#David Morse#Dr. Peters +288#Jon Seda#Jose +22227#Christopher Meloni#Lt. Halperin +1318900#Joey Perillo#Detective Franki +64908#LisaGay Hamilton#Teddy +11154#Matt Ross#Bee +66094#Annie Golden#Woman Cabbie + /6KXbhaxkgExC5EdDqAzRinhmoZ8.jpg + Universal Pictures +Atlas Entertainment +Classico + 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. + Terry Gilliam + 129 + Science Fiction - Thriller - Mystery + /6Sj9wDu3YugthXsU0Vry5XFAZGg.jpg + Charles Roven + United States of America + 7.5 + Twelve Monkeys + 1995 + + + $ +62#Bruce Willis#Art Jeffries +7447#Alec Baldwin#Nicholas Kudrow +8186#Miko Hughes#Simon Lynch +8687#Chi McBride#Tommy B. Jordan +21165#Kim Dickens#Stacey +53963#Robert Stanton#Dean Crandell +154883#Bodhi Elfman#Leo Pedranski +7465#Carrie Preston#Emily Lang +156038#Lindsey Ginter#Peter Burrell +53#Peter Stormare#Shayes +27116#Kevin Conway#Lomax + /pQvqotL0tjP6kuNoxq7eAPXicrk.jpg + Universal Pictures +Imagine Entertainment + Renegade FBI agent Art Jeffries protects a nine-year-old autistic boy who has cracked the government's new "unbreakable" code. + Harold Becker + 111 + Action - Crime - Drama - Thriller + /2vEQLyrH0uKgjvLzYmYc9coNrgI.jpg + Brian Grazer +Karen Kehela Sherwood + United States of America + 6.2 + Mercury Rising + 1998 + + + $ +62#Bruce Willis#The Jackal +1205#Richard Gere#Declan Mulqueen +16897#Sidney Poitier#Carter Preston +6200#Diane Venora#Major Valentina Koslova +18999#J.K. Simmons#FBI Agent T. I. Witherspoon +70851#Jack Black#Ian Lamont +2598#Sophie Okonedo#Jamaican Girl +41742#Ravil Isyanov#Ghazzi Murad +41743#Maggie Castle#Maggie +41744#Karen Kirschenbauer#Speaker +18307#Daniel Dae Kim#Akashi + /ckpSxGKHrzUg8Kh4zVvrDKofdeJ.jpg + Mel's Cite du Cinema +Universal Pictures +Mutual Film Company + Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, the perfectionist Jackal proves an elusive target for the men charged with the task of bringing him down: a deputy FBI boss and a former IRA terrorist. + Michael Caton-Jones + 124 + Action - Thriller - Adventure - Crime + /6Hh2ROGTRKdbUfEXVVv5fNhmXK3.jpg + Michael Caton-Jones +Sean Daniel +James Jacks +Kevin Jarre + United States of America + 6.2 + The Jackal + 1997 + + + $ +5292#Denzel Washington#Creasy +501#Dakota Fanning#Lupita "Pita" Martin Ramos +8329#Radha Mitchell#Lisa +4690#Christopher Walken#Rayburn +47775#Marc Anthony#Samuel +3753#Giancarlo Giannini#Manzano +2295#Mickey Rourke#Jordan +10768#Rachel Ticotin#Mariana +61059#Roberto Sosa#Daniel Sanchez +69865#Jesús Ochoa#Fuentes +55105#Gero Camilo#Aurelio Sanchez + /2cBmeSLCyLqkn6YIERKdRUToqsa.jpg + Epsilon Motion Pictures +Fox 2000 Pictures +Regency Enterprises + 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. + Tony Scott + 146 + Action - Drama - Thriller - Crime + /qAbRLPe8T7ehKzr1Tgo78T7ASrS.jpg + Lucas Foster +Tony Scott +Arnon Milchan + United Kingdom +United States of America + 7.4 + Man on Fire + 2004 + + + $ +6384#Keanu Reeves#Thomas A. Anderson / Neo +2975#Laurence Fishburne#Morpheus +530#Carrie-Anne Moss#Trinity +1331#Hugo Weaving#Agent Smith +532#Joe Pantoliano#Cypher +9364#Gloria Foster#Oracle +9372#Marcus Chong#Tank +9380#Paul Goddard#Agent Brown +39545#Robert Taylor#Agent Jones +7244#Julian Arahanga#Apoc +9376#Belinda McClory#Switch + /7u3pxc0K1wx32IleAkLv78MKgrw.jpg + US|R + 2344 + Village Roadshow Pictures +Groucho II Film Partnership +Silver Pictures + 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. + Lana Wachowski +Lilly Wachowski + 136 + Action - Science Fiction + http://www.warnerbros.com/matrix + /hEpWvX6Bp79eLxY1kX5ZZJcme5U.jpg + Joel Silver + Australia +United States of America + 8.1 + The Matrix + 1999 + + + $ +6384#Keanu Reeves#Thomas A. Anderson / Neo +530#Carrie-Anne Moss#Trinity +2975#Laurence Fishburne#Morpheus +1331#Hugo Weaving#Agent Smith +9443#Helmut Bakaitis#The Architect +9452#Daniel Bernhardt#Agent Johnson +75121#Steve Bastoni#Soren +2192#Lambert Wilson#The Merovingian +1091387#Don Battee#Vector +28782#Monica Bellucci#Persephone +1218802#Valerie Berry#Priestess + /Fp3piEuHXxKnPBO5R0Wj4wjZHg.jpg + US|R + 2344 + Heineken Branded Entertainment +Village Roadshow Pictures +Silver Pictures + 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. + Lilly Wachowski +Lana Wachowski + 138 + Adventure - Action - Thriller - Science Fiction + /ezIurBz2fdUc68d98Fp9dRf5ihv.jpg + Joel Silver + Australia +United States of America + 6.8 + The Matrix Reloaded + 2003 + + + $ +6384#Keanu Reeves#Thomas A. Anderson / Neo +2975#Laurence Fishburne#Morpheus +530#Carrie-Anne Moss#Trinity +1331#Hugo Weaving#Agent Smith +9572#Mary Alice#Oracle +9443#Helmut Bakaitis#The Architect +2192#Lambert Wilson#The Merovingian +9457#Roy Jones Jr.#Captain Ballard +9462#Randall Duk Kim#The Keymaker +9464#Harry Lennix#Commander Lock +9466#Matt McColm#Agent Thompson + /pdVHUsb2eEz9ALNTr6wfRJe5xVa.jpg + US|R + 2344 + Silver Pictures +Village Roadshow Pictures +NPV Entertainment + 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. + Lilly Wachowski +Lana Wachowski + 129 + Adventure - Action - Thriller - Science Fiction + /sKogjhfs5q3azmpW7DFKKAeLEG8.jpg + Joel Silver + United States of America +Australia + 6.5 + The Matrix Revolutions + 2003 + + + $ +6384#Keanu Reeves#Thomas "Neo" Anderson (Voice) +530#Carrie-Anne Moss#Trinity (voice) +56347#Clayton Watson#Kid (voice) +21063#Pamela Adlon#Jue ("Final Flight of the Osiris") / Manabu ("Beyond") (voice) +89251#Melinda Clarke#Alexa ("Matriculated") (voice) +31531#John DiMaggio#Crew Man ("Final Flight of the Osiris") / Kaiser ("Program") (voice) +24362#Kevin Michael Richardson#Thadeus ("Final Flight of Osiris") / Cop ("Kid's Story") / Agent #2 ("World Record") +78798#Tom Kenny#Operator ("Final Flight of Osiris") +123532#Rick Gomez#Pilot ("Final Flight of Osiris") +15762#Tara Strong#Crew Woman ("Final Flight of Osiris") / Nurse ("World Record") / Misha ("Beyond") +1212032#Bette Ford#Old Womand ("Final Flight of Osiris") + /2xudmFFYabaap82va87odz8FCuG.jpg + Silver Pictures +Madhouse +Studio 4°C + 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. + Peter Chung +Yoshiaki Kawajiri +Takeshi Koike +Mahiro Maeda +Koji Morimoto +Shinichiro Watanabe +Andrew R. Jones + 102 + Animation - Science Fiction + http://www.intothematrix.com/ + /1ISkdhJ48PDvETdxjllQ1AswTGv.jpg + Michael Arias +Spencer Lamm +Phil Oosterhouse +Steve Richards +Hiroaki Takeuchi +Eiko Tanaka +Lilly Wachowski +Lana Wachowski + Japan +United States of America + 7.0 + The Animatrix + 2003 + + + $ +2882#Diane Lane#Agent Jennifer Marsh +21029#Billy Burke#Eric Box +3492#Colin Hanks#Griffin Dowd +33528#Joseph Cross#Owen Reilly +54782#Mary Beth Hurt#Stella Marsh +54783#Peter Lewis#Richard Brooks +6585#Perla Haney-Jardine#Annie Haskins +1498511#Tim DeZam#Herbert Miller +20379#Christopher Cousins#David Williams +204815#Jesse Tyler Ferguson#Arthur James Elmer +1524355#Brynn Baron#Mrs. Miller + /eXuIPt9I1xuaVddlgzEQRC2EMnJ.jpg + US|R + Cohen/Pearl Productions +Screen Gems +Lakeshore Entertainment + Special Agent Jennifer Marsh (Diane Lane) works in an elite division of the FBI dedicated to fighting cybercrime. She thinks she has seen it all, until a particularly sadistic criminal arises on the Internet. This tech-savvy killer posts live feeds of his crimes on his website; the more hits the site gets, the faster the victim dies. Marsh and her team must find the elusive killer before time runs out. + Gregory Hoblit + 101 + Mystery - Thriller + http://www.sonypictures.com/movies/untraceable/ + /ySUwDRDEn01lKIMPQorpFCMLWqE.jpg + Andy Cohen +Hawk Koch +Gary Lucchesi +Steven Pearl +Sarah Platt +Eric Reid +Tom Rosenberg +Richard S. Wright + United States of America + 6.0 + Untraceable + 2008 + + + $ +1896#Don Cheadle#Samir Horn +529#Guy Pearce#Roy Clayton +2203#Neal McDonough#Max Archer +5419#Saïd Taghmaoui#Omar +81837#Alyy Khan#Fareed Mansour +73710#Raad Rawi#Nathir +81838#Hassam Ghancy#Bashir +81839#Mozhan Marnò#Leyla +81840#Adeel Akhtar#Hamzi +128645#Archie Panjabi#Chandra Dawkin +52702#Jonathan Walker#Hayes + /nUTwBFGGA3Exz0VnWQSWpamFF8a.jpg + Mandeville Films +Hyde Park Films +Crescendo Productions + When straight arrow FBI agent Roy Clayton heads up the investigation into a dangerous international conspiracy, all clues seem to lead back to former U.S. Special Operations officer, Samir Horn. + Jeffrey Nachmanoff + 114 + Drama - Action - Thriller - Crime + http://www.traitor-themovie.com/ + /euLk9RxsPHfpyWUHzTDNY6Dksch.jpg + Don Cheadle +David Hoberman +Todd Lieberman +Glynis Murray +Richard Schlesinger +Jeffrey Silver + United States of America + 6.6 + Traitor + 2008 + + + $ +500#Tom Cruise#Maj. William "Bill" Cage +5081#Emily Blunt#Sgt. Rita Vrataski +2039#Brendan Gleeson#General Brigham +2053#Bill Paxton#Msg. Farell +119224#Jonas Armstrong#Skinner +147255#Tony Way#Kimmel +93111#Kick Gurry#Griff +1363086#Franz Drameh#Ford +125740#Dragomir Mrsic#Kuntz +115679#Charlotte Riley#Nance +1095404#Masayoshi Haneda#Takeda + /7mgKeg18Qml5nJQa56RBZO7dIu0.jpg + US|PG-13 + RatPac-Dune Entertainment +Village Roadshow Pictures +Viz Media + 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. + Doug Liman + 113 + Action - Science Fiction + http://www.edgeoftomorrowmovie.com/ + /tpoVEYvm6qcXueZrQYJNRLXL88s.jpg + Jason Hoffs +Gregory Jacobs +Tom Lassally +Jeffrey Silver +Erwin Stoff + Australia +United States of America + 7.6 + Edge of Tomorrow + 2014 + + + $ +120724#Jaden Smith#Kitai Raige +2888#Will Smith#Cypher Raige +2598#Sophie Okonedo#Faia Raige +37153#Zoë Kravitz#Senshi Raige +12797#Glenn Morshower#Commander Velan +62879#Chris Geere#Hesper Navigator +142193#Diego Klattenhoff#Veteran Ranger +62562#David Denman#Private McQuarrie +94798#Lincoln Lewis#Running Cadet +1272929#Jaden Martin#Nine Year Old Kitai +1272930#Sincere L. Bobb#Three Year Old Kitai + /79sgOV7YZk846qwy7g5sarYN08O.jpg + Blinding Edge Pictures +Columbia Pictures +Overbrook Entertainment + 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. + M. Night Shyamalan + 100 + Science Fiction - Action - Adventure + /d0vReo0jcMhBjCLYZAFqWHcb7Lj.jpg + Jada Pinkett Smith +Will Smith +Caleeb Pinkett +James Lassiter + United States of America + 5.1 + After Earth + 2013 + + + $ +131#Jake Gyllenhaal#Colter Stevens +11705#Michelle Monaghan#Christina Warren +21657#Vera Farmiga#Colleen Goodwin +82417#Russell Peters#Max Denoff +83874#Michael Arden#Derek Frost +2954#Jeffrey Wright#Dr. Rutledge +59214#Cas Anvar#Hazmi +522169#Brent Skagford#George Troxel +572609#Craig Thomas#Gold Watch Executive +179421#Gordon Masten#Conductor +298091#Susan Bain#Nurse + /x8cIgtcVi9DVrlPuvlsvc43dik9.jpg + The Mark Gordon Company +Vendome Pictures +Summit Entertainment + 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. But can he discover who is responsible for the attack before the next one happens? + Duncan Jones + 93 + Thriller - Science Fiction - Mystery + http://www.enterthesourcecode.com/ + /cpl7R5d3qwWvykRRSxdhQ0htstU.jpg + Philippe Rousselet +Jordan Wynn +Mark Gordon + Canada +United States of America + 7.2 + Source Code + 2011 + + + $ +13472#Tim Curry#Hexxus (voice) +20767#Samantha Mathis#Crysta (voice) +2224#Christian Slater#Pips (voice) +2157#Robin Williams#Batty Koda (voice) +31004#Tone Loc#Goanna (voice) +184498#Jonathan Ward#Zak Young (voice) +6465#Grace Zabriskie#Magi Lune (voice) +148122#Geoffrey Blake#Ralph (voice) +7866#Robert Pastorelli#Tony (voice) +11159#Cheech Marin#Stump (voice) +63208#Tommy Chong#Root (voice) + /aZxUgA9WV4pdjwtY9TtukD6EsoG.jpg + 19160 + Kroyer Films +Youngheart Productions +FAI Films + When a sprite named Crysta shrinks a human boy, Zak, down to her size, he vows to help the magical fairy folk stop a greedy logging company from destroying their home, the pristine rainforest known as FernGully. Zak and his new friends fight to defend FernGully from lumberjacks -- and the vengeful spirit they accidentally unleash after chopping down a magic tree. + Bill Kroyer + 76 + Fantasy - Animation - Science Fiction - Family - Drama + /gU2TbLTJ2s0aL5OsPuYQgZR8y3A.jpg + Australia +United States of America + 6.3 + FernGully: The Last Rainforest + 1992 + + + $ +29508#Barret Oliver#Bastian +29512#Gerald McRaney#Bastian's Father +29509#Noah Hathaway#Atreyu +62870#Chris Eastman#1st Bully +124433#Darryl Cooksey#2nd Bully +124434#Nicholas Gilbert#3rd Bully +124435#Thomas Hill#Carl Conrad Koreander - The Librarian +124443#Frank Lenart#Teeny Weeny (voice) +124445#Silvia Seidel#Fairy +124442#Tami Stronach#The Childlike Empress +12693#Sydney Bromley#Engywook + /sG3Du3Ha6rGeSzFfXme1nh8S2Jl.jpg + US|PG + 91430 + Dieter Geissler Filmproduktion +Bavaria Studios +Westdeutscher Rundfunk (WDR) + The NeverEnding Story + 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. + Wolfgang Petersen + 102 + Drama - Family - Fantasy - Adventure - Science Fiction + /kpgv4C338cFHhDrFyjDVIbJQqp4.jpg + Bernd Schaefers +Bernd Eichinger +Dieter Geissler + Canada +Germany +Spain + 7.1 + The Neverending Story + 1984 + + + $ +6968#Hugh Jackman#Roddy (voice) +204#Kate Winslet#Rita (voice) +1327#Ian McKellen#The Toad (voice) +1003#Jean Reno#Le Frog (voice) +2440#Bill Nighy#Whitey (voice) +1333#Andy Serkis#Spike (voice) +215823#Shane Richie#Sid (voice) +37759#Kathy Burke#Rita's Mum (voice) +20277#David Suchet#Rita's Dad (voice) +6199#Miriam Margolyes#Rita's Grandma (voice) +1075046#Rachel Rawlinson#Tabitha (voice) + /7gvhqD2l8T6qKlD0ec4nysh077y.jpg + US|PG + DreamWorks Animation +Aardman Animations + 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. + David Bowers +Sam Fell + 85 + Adventure - Animation - Comedy - Family + http://www.dreamworksanimation.com/flushed/ + /oCdPDusnJvIZN6OpaF2Yj7211w.jpg + Cecil Kramer +Peter Lord +David Sproxton +Maryann Garger + United States of America +United Kingdom + 6.0 + Flushed Away + 2006 + + + $ +72466#Colin Farrell#Ronin (voice) +27972#Josh Hutcherson#Nod (voice) +71070#Amanda Seyfried#Mary Katherine (M.K.) (voice) +27319#Christoph Waltz#Mandrake (voice) +58224#Jason Sudeikis#Bomba (voice) +86626#Aziz Ansari#Mub (voice) +40477#Chris O'Dowd#Grub (voice) +14386#Beyoncé Knowles#Queen Tara (voice) +52860#Judah Friedlander#Taxi Driver (voice) +37935#Steven Tyler#Nim Galuu (voice) +1009740#Pitbull#Bufo (voice) + /v6w2o3ji8aVLph6zNgR5yDGQfmS.jpg + Blue Sky Studios +Twentieth Century Fox Animation + A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world -- and ours. + Chris Wedge + 102 + Animation - Adventure - Family - Fantasy + /dUeXOJCpfWmZd9KaPkq2122J1ji.jpg + Lori Forte +Jerry Davis + United States of America + 6.4 + Epic + 2013 + + + $ +17605#Idris Elba#Stacker Pentecost +56365#Charlie Hunnam#Raleigh Becket +18054#菊地凛子#Mako Mori +5365#Clifton Collins Jr.#Tendo Choi +94864#Max Martini#Herc Hansen +1038379#Robert Kazinsky#Chuck Hansen +2372#Ron Perlman#Hannibal Chau +95101#Charlie Day#Dr. Newton Geiszler +39659#Burn Gorman#Dr. Hermann Gottlieb +112692#Robert Maillet#Lt. Aleksis Kaidanovsky +83423#Heather Doerksen#Lt. Sasha Kaidanovsky + /iB0RsWVoOXzicPi2Yy5xmTYMbho.jpg + 363369 + Double Dare You Productions +Legendary Entertainment +Warner Bros. Pictures + 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. + Guillermo del Toro + 131 + Action - Science Fiction - Adventure + /xzT2FOoXEFkdI3Himpa0bgUZlCE.jpg + Guillermo del Toro +Jon Jashni +Mary Parent +Thomas Tull + Canada +United States of America + 6.8 + Pacific Rim + 2013 + + + $ +1269#Kevin Costner#Lieutenant Dunbar +1581#Mary McDonnell#Stands With A Fist +6804#Graham Greene#Kicking Bird +7853#Rodney A. Grant#Wind In His Hair +7862#Floyd Red Crow Westerman#Ten Bears +7863#Tantoo Cardinal#Black Shawl +7866#Robert Pastorelli#Timmons +7867#Charles Rocket#Lieutenant Elgin +7868#Maury Chaykin#Major Fambrough +7869#Jimmy Herman#Stone Calf +7871#Nathan Lee Chasing His Horse#Smiles A Lot + /gkW2RMlwl4kqaMIDjaAE73rAPpZ.jpg + EN|PG-13 + Tig Productions +Majestic Films International + Wounded Civil War soldier, John Dunbar tries to commit suicide—and becomes a hero instead. As a reward, he’s assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe. + Kevin Costner + 181 + Adventure - Drama - Western + /uzMI1WbliKbXbjvdiDKnwb2ndsG.jpg + Jim Wilson +Kevin Costner + United Kingdom +United States of America + 7.8 + Dances with Wolves + 1990 + + + $ +19210#James Van Der Beek#Lincoln Rogers Dunnison +38581#Rachael Leigh Cook#Caroline Dukes +18976#Ashton Kutcher#George Durham +32597#Dylan McDermott#Leander McNelly +57108#Usher#Randolph Douglas Scipio +4139#Tom Skerritt#Richard Dukes +55725#Randy Travis#Frank Bones +10839#Leonor Varela#Perdita +74592#Brian Martell#Jean-Pierre Marsele +658#Alfred Molina#John King Fisher +74593#Billy Morton#Abajo + /7UTUi0qzKrBBeRvwhxn4N59dAUK.jpg + Dimension Films + Ten years after the Civil War has ended, the Governor of Texas asks Leander McNelly to form a company of Rangers to help uphold the law along the Mexican border. With a few veterans of the war, most of the recruits are young men who have little or no experience with guns or policing crime. + Steve Miner + 110 + Action - Western + /7zf8lWJAXkLYoMd19nhH7eDPNDv.jpg + Harvey Weinstein + United States of America + 5.7 + Texas Rangers + 2001 + + + $ +85#Johnny Depp#William Blake +15439#Gary Farmer#Nobody +1064#Crispin Glover#Train Fireman +2714#Lance Henriksen#Cole Wilson +7486#Michael Wincott#Conway Twill +342#Eugene Byrd#Johnny 'The Kid' Pickett +5049#John Hurt#John Scholfield +10158#Robert Mitchum#John Dickinson +13604#Iggy Pop#Salvatore 'Sally' Jenko +5168#Gabriel Byrne#Charlie Dickinson +15440#Jared Harris#Benmont Tench + /fpdZe3c07P1FM4TwjvSkGvWocPN.jpg + US|R + JVC Entertainment +Pandora Filmproduktion +Newmarket Capital Group + On the run after murdering a man, accountant William Blake encounters a strange North American man named Nobody who prepares him for his journey into the spiritual world. + Jim Jarmusch + 121 + Drama - Fantasy - Western + /vGobIvxSiFvAmwqH8BlC3SpET0C.jpg + Demetra J. MacBride + Germany +Japan +United States of America + 7.0 + Dead Man + 1995 + + + $ +6383#Aaron Eckhart#Michael Nantz +72985#Ramón Rodríguez#William Martinez +149484#Will Rothhaar#Cpl. Lee Imlay +74302#Cory Hardrict#Cpl. Jason Lockett +83968#Jim Parrack#Peter Kerns +150664#Gino Anthony Pesi#Cpl. Nick Stavrou +31133#Ne-Yo#Kevin Harris +58330#James Hiroyuki Liao#Steven Mottola +18354#Bridget Moynahan#Michelle +80352#Noel Fisher#Pfc. Shaun Lenihan +208096#Adetokumboh M'Cormack#Corpsman Jibril Adukwu + /eBcjJY0o7GErxmm8SYpslvtjRyM.jpg + US|PG-13 + Columbia Pictures +Relativity Media +Original Film + 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. + Jonathan Liebesman + 116 + Action - Science Fiction + http://www.battlela.com + /c7rrF2Cx2d52DFfHsMDgWA4ApTB.jpg + Jeffrey Chernov +Neal H. Moritz +Ori Marmur + United States of America + 5.6 + Battle: Los Angeles + 2011 + + + $ +9642#Jude Law#Remy +2178#Forest Whitaker#Jake +8602#Alice Braga#Beth +23626#Liev Schreiber#Frank +23229#Carice van Houten#Carol +77334#Chandler Canterbury#Peter +150#RZA#T-Bone +86237#Joe Pingue#Ray +51998#Liza Lapira#Alva +211937#Tiffany Espensen#Little Alva +111513#Yvette Nicole Brown#Rhodesia + /kg256KnKNo2wPtiVa5LjxrDabUS.jpg + Relativity Media +Stuber Productions +Universal Pictures + 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. + Miguel Sapochnik + 111 + Action - Science Fiction - Thriller - Crime + http://www.repomenarecoming.com/ + /owCZCoKCutG7cf3Gu2ykrbfyRnl.jpg + Scott Stuber +Mary Parent + Canada +United States of America + 6.2 + Repo Men + 2010 + + + $ +26086#Michael Shanks#Jack Tate +148428#Alexandra Davies#Emma Tate +1232315#Saskia Hampele#Zoe Quinn +52374#Bruce Davison#Winslaw +214556#Indiana Evans#Naomi Tate +83769#Robert Mammone#Charlie Barker +125835#Judith Baribeau#Tammy +1127866#Nick Falk#Brent Durant +1127867#Alan Andrews#Harold Stuart +1127868#Helen Edwards#Margaret Stuart +1127869#Abbey Rose Leed#Sarah + /cY8rDmNUXJNzmpSsYNh005EsO17.jpg + US|PG + F G Film Productions +Premiere Bobine +Screen Tasmania + When a solar eclipse sends a colossal blast of super chilled air towards the earth, it then sets off a catastrophic chain of events that threatens to engulf the world in ice and begin a new Ice Age. + Brian Trenchard-Smith + 92 + Science Fiction + /uFSwN9ku4PoVXqUvkOfDoaBfefS.jpg + Gina Black +Stefan Wodoslawsky + Canada +Australia + 4.0 + Arctic Blast + 2010 + + + $ +31431#Nigel Terry#King Arthur +15735#Helen Mirren#Morgana +31196#Nicholas Clay#Lancelot +20768#Cherie Lunghi#Guenevere +69735#Paul Geoffrey#Perceval +51812#Nicol Williamson#Merlin +13328#Corin Redgrave#Cornwall +2387#Patrick Stewart#Leondegrance +104757#Keith Buckley#Uryens +33108#Clive Swift#Sir Ector +3896#Liam Neeson#Gawain + /lgDDGQh4z1Hat5IRe9xxbjiDiVQ.jpg + EN|R + Orion Pictures +Warner Bros. Pictures + A surreal adaptation of Sir Thomas Malory's "Le Morte d'Arthur", chronicling Arthur Pendragon's conception, his rise to the throne, the search by his Knights of the Round Table for the Holy Grail, and ultimately his death. + John Boorman + 140 + Adventure - Fantasy - Science Fiction + /j8UmbdA1TrIVY4FANymwBSmUuCH.jpg + John Boorman + United Kingdom +United States of America + 7.1 + Excalibur + 1981 + + + $ +500#Tom Cruise#Jack Harper +192#Morgan Freeman#Malcolm Beech +18182#Olga Kurylenko#Julia Rusakova Harper +127558#Andrea Riseborough#Victoria Olsen +12795#Nikolaj Coster-Waldau#Sykes +6832#Melissa Leo#Sally +20494#Zoë Bell#Kara +1171690#Abigail Lowe#Julia's Child +1171689#Isabelle Lowe#Julia's Child +1198939#David Madison#Grow Hall Survivor +1158069#John L. Armijo#NASA Ground Control + /8TE77jL2e4zdERpv8hnBAHUmFRx.jpg + Universal Pictures +Relativity Media +Monolith Pictures (III) + 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. + Joseph Kosinski + 124 + Action - Science Fiction - Adventure - Mystery + https://www.uphe.com/movies/oblivion + /hmOzkHlkGvi8x24fYpFSnXvjklv.jpg + Peter Chernin +Joseph Kosinski +Barry Levine +Dylan Clark +Duncan Henderson + United States of America + 6.5 + Oblivion + 2013 + + + $ +8784#Daniel Craig#James Bond +10912#Eva Green#Vesper Lynd +1019#Mads Mikkelsen#Le Chiffre +5309#Judi Dench#M +2954#Jeffrey Wright#Felix Leiter +3753#Giancarlo Giannini#René Mathis +10916#Caterina Murino#Solange Dimitrios +10917#Simon Abkarian#Alex Dimitrios +4812#Isaach De Bankolé#Steven Obanno +2244#Jesper Christensen#Mr. White +29930#Ivana Miličević#Valenka + /xq6hXdBpDPIXWjtmvbFmtLvBFJt.jpg + 645 + Babelsberg Film +Eon Productions +Stillking Films + 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. + Martin Campbell + 144 + Adventure - Action - Thriller + http://www.mgm.com/#/our-titles/233/Casino-Royale-(2006) + /zlWBxz2pTA9p45kUTrI8AQiKrHm.jpg + Barbara Broccoli +Michael G. Wilson + Italy +United Kingdom +United States of America + 7.4 + Casino Royale + 2006 + + + $ +3896#Liam Neeson#Admiral Shane +60900#Taylor Kitsch#Lieutenant Alex Hopper +28846#Alexander Skarsgård#Commander Stone Hopper +131519#Rihanna#Petty Officer Cora 'Weps' Raikes +13275#Tadanobu Asano#Captain Yugi Nagata +1052162#Gregory D. Gadson#Lieutenant Colonel Mick Canales +131520#Brooklyn Decker#Sam +184581#Hamish Linklater#Cal Zapata +88124#Jesse Plemons#Boatswain Mate Seaman Jimmy "Ordy" Ord +205406#John Tui#Chief Petty Officer Walter "The Beast" Lynch +98953#Jerry Ferrara#Sampson JOOD Strodell + /rLhO767vwqRfUBmJOqvEmt5myIF.jpg + Universal Pictures +Hasbro +Bluegrass Films + 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 his brother, and his fiancée's father, Admiral Shane, expect of him. + Peter Berg + 131 + Thriller - Action - Adventure - Science Fiction + /7hN6WtMepoMZyeHZU2DM21cEj3z.jpg + Sarah Aubrey +Peter Berg +Brian Goldner +Duncan Henderson +Bennett Schneir +Scott Stuber + United States of America + 5.6 + Battleship + 2012 + + + $ +10859#Ryan Reynolds#Hal Jordan / Green Lantern +59175#Blake Lively#Carol Ferris +133#Peter Sarsgaard#Hector Hammond +504#Tim Robbins#Senator Hammond +2983#Mark Strong#Sinestro +7242#Temuera Morrison#Abin Sur +109942#Jenna Craig#Carol Ferris at 11 +4602#Jon Tenney#Martin Jordan +27107#Mike Doyle#Jack Jordan +147719#NicK Jandl#Jim Jordan +147720#Dylan James#Jason Jordan + /gulyiqtyuzFRJCnvNwD6Z786kQi.jpg + DC Entertainment +De Line Pictures +Warner Bros. Pictures + 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. + Martin Campbell + 114 + Adventure - Action - Thriller - Science Fiction + http://greenlanternmovie.warnerbros.com/ + /zUSEYp9G7Hk9GZIfbPoOiSHvwHV.jpg + Greg Berlanti +Donald De Line +Geoff Johns + United States of America + 5.1 + Green Lantern + 2011 + + + $ +132#Scott MacDonald#Deming +1226119#Ryan Francis#Losey +83052#Linda Thorson#Maria +6474#James Le Gros#Soldier +43774#Daniel Roebuck#Soldier +2076#David Warner#Deacon + /oBQbANT75d5wsXIDIfi4KHZdrrq.jpg + The movie encompasses several different elements-the perils of war, a touch of macabre, sadness and redemption. + Jeff Burr + 95 + Action - Adventure - Drama + /kCVO2Ltteirj5VNEl40DQL0bsXU.jpg + 4.0 + Straight Into Darkness + 2004 + + + $ +27763#Casper Van Dien#Capt. Ramsey +42122#Carré Otis#Kathleen +3710#Jaimz Woolvett#Tex +29775#Bobby Hosea#Ray +64517#Joseph Griffin#Red Fuentes +10210#Daniel Kash#Eric +56117#Martin Kove#Father Brazinski +64516#Austin Farwell#Doc Jordan +42191#Kenny Johnson#Jimmy Joe + Under Heavy Fire + A group of Marines return to Vietnam with a news crew to relive their tragic war experiences. + Sidney J. Furie + 113 + /eABY2QHuvKqXcelr6sTx1Am1kxE.jpg + Canada + 4.0 + Going Back + 2001 + + + $ +557551#A.J. Draven#Capt. Kyle Fierson +1159#Steven Bauer#Caine +66881#Finola Hughes#Lilian +557552#Rez Cortez#Daco + /jlf41bEjlXljzvx989pd9plReCP.jpg + US|R + Special Ops + When an American soldier’s Black Ops Unit is ambushed during a raid to rescue a nano-nuclear device that has fallen into the wrong hands, he must run for his life to not only track down the missing device, but also clear his name when he is accused of aiding the terrorists. + Tom Shell + 98 + Action - Thriller + /n1g1Tt6NjSxe4ioZlfquPQ6Jeqq.jpg + 2.0 + Disarmed + 2010 + + + $ +139231#Jeremy Davis#Petty Officer Michael Davis +96097#Ken Gamble#Master Chief Devon Mackefy +62307#Zach McGowan#Chief Petty Officer Roberts +139232#Kristoffer Garrison#Petty Officer Williams +104465#Neto DePaula Pimenta#Petty Officer Sanchez +139233#Amol Shah#Jamal +139234#Jessica Meza#Cassandra Mackefy +139235#Chris Warner#Major Beder +139236#Lisa Carnahan#Sidney Banks + /1rFe3jPdo8dJE41jQAQCr7W3kkI.jpg + US|R + Four Minute Mile Productions +Gamble Entertainment Group + Inspired by actual events: This heroic saga depicts an elite counter-terrorism team's black ops incursion into Iraq four days prior to Operation: Desert Shield and the harrowing consequences its members faced when their covert mission was compromised. + Mark C. Andrews + 99 + Action - Drama + /kBxHUDUymB66uke0xqVu3dgSnNW.jpg + United States of America + 3.0 + SEAL Team VI + 2008 + + + $ +20309#Dwight Yoakam#Reverend Early Pride +51988#Lizzy Caplan#Juliette Flowers +20132#Jon Foster#Champ Pride +297502#Cote de Pablo#Bruja +19143#Jason Priestley#John +100#Scott Speedman#Ransom Pride +10823#Kris Kristofferson#Shepherd Graves +22970#Peter Dinklage#dwarf +6951#W. Earl Brown#Matthew +139621#Alfonso Quijada#Cerce +1828554#Rene Quijada#Solomon + /kn5zvlMiRWyPmFqKztI3Vs0YAXi.jpg + US|R + Horsethief Pictures + When Juliette (Lizzy Caplan) sets out to bring her slain lover -- outlaw Ransom Pride -- home to Texas to be buried, she knows the journey won't be easy, but she has little idea of the dangers that lie ahead in this dark Western drama. The film's cast includes Scott Speedman as the murdered bad boy, Dwight Yoakam as a homicidal reverend, Kris Kristofferson as a rival outlaw, and Jason Priestley and W. Earl Brown as a pair of bounty hunters. + Tiller Russell + 83 + Action - Drama - Western + /vteS71czUhwLbnlssBn7gkSRPUR.jpg + Michael Frislev +Duncan Montgomery +Chad Oakes + Canada + 3.0 + The Last Rites of Ransom Pride + 2010 + + + $ +25527#Jason Connery#Alan Cooper +11886#Francesco Quinn#Captain Franchetti +9221#Donald Pleasence#Colonel Bats +3381#Glenn Ford#Major Gen. Williams +566313#Luisa Maneri#Nanny +1627704#Jinny Steffan#Lt. Lorna Fisher +9762#Jean Sorel#Major Valmore +26617#Manfred Lehmann#Otto Von Tiblis +1058551#Horst Schön#Priest +99539#David Brandon#Jason Lloyd +1074089#Marina Viro#Olga + Dania Film +National Cinematografica +Surf Film + It is 1942 and the conflict between the U.S. and Germany is getting heated, U.S. Intelligence soon discovers that the Natzis are planning to capture Winston Churchill. In order to protect him they send commando Al Cooper to guard Churchill who is going by train to Casablanca where he will meet with Roosevelt and Stalin. + Sergio Martino + 90 + Drama - Action - War + /3tsBMHOHgZlU8F6t9Si2et0gjcA.jpg + Pietro Innocenzi + Italy +Morocco + 4.0 + Casablanca Express + 1989 + + + $ +89162#Ken Clark#Capt. Fritz Schöller +18966#Horst Frank#Lt. Roland Wolf +133053#Jeanne Valérie#Faddja Hassen +27383#Renato Rossini#Willy Mainz +33820#Franco Fantasia#Major Dalio +1275981#Hardy Reichelt#Cpl. Hans Ludwig +132488#Gianni Rizzo#Perrier +50829#Carlo Hintermann#Sgt. Erich Huber +55248#John Stacy#Sir Bryan + US|PG + Terra-Filmkunst +Constantin Film +Produzioni Europee Associati (PEA) + Desert Commandos + German commandos are dropped behind enemy lines in the Sahara Desert tasked with getting to Casablanca in an assassination attempt on allied leaders. + Umberto Lenzi + 96 + Adventure - Drama - War + /ctAElvpr553KXA7AiOPRw651iqx.jpg + Alberto Grimaldi + France +Germany +Italy + 5.3 + Attentato ai tre grandi + 1967 + + + $ +4078#Lee Van Cleef#MSgt. Sullivan +12311#Jack Kelly#Captain Valli +83147#Giampiero Albertini#Aldo +39151#Marino Masé#Tomassini +26395#Götz George#Rudi +33815#Pier Paolo Capponi#Corbi +85984#Ivano Staccioli#Rodolfo +796326#Marilù Tolo#Adriana +16818#Joachim Fuchsberger#Oberleutnant Heitzel Agen (Professor) (als Akim Berg) +38053#Heinz Reincke#Offizier Hans +65321#Helmut Schmid#Miller + /uc1DUVzXCioqLV0oyofeYOBdC9c.jpg + US|PG + Produzione Intercontinentale Cinematografica (PIC) +Central Cinema Company Film (CCC) +G.G.I. SpA Rome + Sgt. Sullivan puts together a group of Italian-Americans into disguise as Italian soldiers in order to infiltrate a North African camp held by the Italians. After the soldiers have knifed the Italians in their beds, they find a hooker living at the camp. Sullivan's commandos are to hold this camp and its weaponry until an American battalion arrives, all the while these Italian-Americans pretend to be Italian soldiers, often hosting the enemy. Lt. Valli is a young, "green," by-the-book officer who constantly argues with Sgt. Sullivan, who tells his superior that he has no idea what he is doing. One man on the base, probably a touch from Argento, is an entomologist who is needlessly killed. Things go terribly wrong after that. + Armando Crispino + 98 + Action - War + /3VmJcx0sJtJObFdsABlvQBPJSkZ.jpg + Henryk Chroscicki +Alfonso Sansone +Artur Brauner + Germany +Italy + 6.5 + Commandos + 1968 + + + $ +5309#Judi Dench +8351#Frederic Forrest +1402697#Chic Murray +5249#E.G. Marshall +14792#Josef Sommer +12900#Wallace Shawn +16407#Roger Rees +61011#Clarke Peters +74762#Bob Sherman +99366#Manning Redwood#Colonel Fielder + The year is 1974, and Barbara Dean (Judi Dench), a British assistant manager in a foreign bank in Saigon, begins a relationship with American Bob Chesneau (Frederic Forrest). She quickly realises that he works for the CIA and he knows that the fall of South Vietnam is very near. + Stephen Frears + 105 + /gETgUijlOP4pZA150DHswux1bL8.jpg + Saigon: Year Of The Cat + 1983 + + + $ +19728#Mark Harmon#Gacel Sayah +136392#Ritza Brown#Gacel's Wife +996571#Luis Prendes#Abdul El Kabir +27384#Paolo Malco#Capt. Razman +49895#Aldo Sambrell#Sgt. Malick +128674#Ennio Girolami +33708#Antonio Sabàto#The Captain +50745#Giovanni Cianfriglia#Mubalak +103980#Claudia Gravy#Mubalak's Wife +100814#Manuel Pereiro +102121#Romano Puppo#Soldier + Tuareg: Desert Warrior + In a desolate section of the Sahara once ruled by the French, two thirsty men stumble into the camp of a Tuareg warrior where they're given water and shelter. Soldiers from the new Arab government now arrive by Jeep and demand the two men be turned over to them. The warrior refuses, citing the sacred laws of hospitality. The soldiers shoot dead one of the men and carry off the other - a political foe of the new government. The warrior mounts his camel and rides off to rescue his kidnapped guest. + Enzo G. Castellari + 95 + Action + /eE5M48XSVGiwe3x3jXEp5C3iQSG.jpg + Vicente Escrivá + 8.0 + Tuareg - Il guerriero del deserto + 1984 + + + $ +28641#Terence Stamp#David Audley +1344230#Dale Martin#Hardwick +1344229#Peter Ivatts#Walton +30980#Mike Lane#Foreman + A missing 1950s era airplane is found 27 years later at the bottom of a lake. British and Soviet spy agencies are intensely interested. + William Brayne + 86 + /8XtHZDHRNkDrAMBUhm5Jy5WQATZ.jpg + The Cold War Killers + 1986 + + + $ +35321#Rex Harrison#Van Osten +41218#Edward Albert#Micael Rogan +8229#Rod Taylor#Jack Bailey +3268#Raf Vallone#Genco Bari + US|R + Carnation International Picture (CIP) + A World War II vet sets out in 1948 to avenge the death of his wife at the hands of Nazis. His targets are four Germans, a Sicilian, and a Hungarian who committed the atrocities. He is aided by a CIA operative, who has another agenda. One of the targeted men is being groomed by the US to become the West German chancellor and is to be protected. Along the way, a third person joins the team. + Matt Cimber +Joe Tornatore + 91 + /nX6AjxNpi26BOzvoJjKfes4C9Ag.jpg + A Time To Die + 1983 + + + $ +23764#Erika Eleniak#Wendy Lane +14700#Richard Tyson#William Stenwick +19384#Tony Todd#Garrett Houtman +24516#Daniel Baldwin#John Lacy + /h0TUiBCy8k9PxL7gLJxUTUPJkaq.jpg + A CIA agent has to stop a former associate who has stolen a weapon which kills people without harming buildings, all before he is to get married in a few days. + John Terlesky +Jim Wynorski + 89 + Thriller - Action + /Aey2WqX67pUauenHOIdWU67E20r.jpg + 3.0 + The Pandora Project + 1998 + + + $ +21594#Chris Klein#Ronnie Reno +29783#Fred Durst#Ledge +28410#Jake Busey#Merle Jones +87118#Michael Beach#Devon +91607#Paul Francis#Ray Jones + /mNPoobKJYF74sZ4FBsbIL4eUbAZ.jpg + US|R + Uncommon Entertainment + The story is about Ronnie Reno, a former TV action star in need of a comeback. After a failed audition, he ends up snowbound in a remote town in Nevada overrun with meth dealers including Merle and their dimwitted henchman. After Reno finds the body of a dead DEA agent, he reunites with his former co-stars including Devon in order to save the town and himself. + Jason Wiles + 88 + Action - Adventure - Comedy + /28h9wLQwUkmcRamiBMomqXs8mSF.jpg + United States of America + 4.0 + Play Dead + 2009 + + + $ +38559#Christopher Lambert#Lemieux +57395#Natasha Henstridge#Delon +6701#Norbert Weisser#Cuzo +61556#Elizabeth Barondes#Wocek +1041314#Xavier Declie#Volker +1163144#Darrell Davis#Suspect +36821#Nicholas Guest#Capt. B. Rennard +36218#Andrew Divoff#Sterns +91897#Jon H. Epstein#General Waxman + /4JOZvYBrtZjsi4wWUC4uJlPsfts.jpg + Dimension Films +Filmwerks + In a not-too-distant future, a lethal virus sweeps across Europe, prompting the creation of quarantine refugee camps in the United States. Police officers Delon (Natasha Henstridge) and Lemieux (Christopher Lambert) learn of a grisly murder in the Boston camp and team up to investigate. Suspecting the ruthless killer is infected with the virus, the pair have just hours to stop him before he becomes contagious and infects the entire population. + Albert Pyun + 77 + Action - Science Fiction - Thriller + /hNoDcwHC86caST3oyTdn2iRSeA0.jpg + United States of America + 4.2 + Adrenalin: Fear the Rush + 1996 + + + $ +64917#Pascale Hutton#Karen Barbarini +36055#Costas Mandylor#Matt McLaughlin +11086#Michael Ironside#Levering +55567#Alexandra Paul#Dr. Susan Foxley +91404#Eric Breker#RJ +77210#Matthew Bennett#Agent Walters +27111#Kevin McNulty#Neil Kavanagh + /gQSdkd5b5bJdfp6EzNymtS2sEFL.jpg + Front Street Pictures +Lava Lane Productions + Illegal experimentation accidentally rips open a previously unknown hidden magma reserve directly under Manhattan! + Robert Lee + 120 + Action - Thriller - Science Fiction + /z4Pmz7yLle1U3ASFv1G8mRxXXBc.jpg + United States of America + 4.1 + Disaster Zone: Volcano in New York + 2006 + + + $ +16377#Jerry Seinfeld#Himself +85363#Orny Adams#Himself +105787#Greg Giraldo#Himself +135855#Jim Norton#Himself +566120#Sherrod Small#Himself +66657#Allan Havey#Himself +1219901#Colin Quinn#Himself +566121#Cynthia Koury#Herself +552139#George Wallace#Himself +26715#Robert Klein#Himself +74686#T. Sean Shannon#Himself + /h8EXA6C4yTu4lmNEju0ijEFbngL.jpg + A look at the work of two stand-up comics, Jerry Seinfeld and a lesser-known newcomer, detailing the effort and frustration behind putting together a successful act and career while living a life on the road. + Christian Charles + 82 + Comedy - Documentary + /qiAnsvHLePX8ZOkPGrQVI0L4LDr.jpg + United States of America + 6.0 + Comedian + 2002 + + + $ +11514#Catherine O'Hara#Cathleen +7499#Jared Leto#Frankie Griffin +6886#Christina Ricci#Erin +5168#Gabriel Byrne#Jack Griffin +9029#Stephen Rea#Cab Driver +17782#Colm Meaney#Jim Davern +8541#Jason Barry#Nelson Fitzgerald +1246#Emily Mortimer#Romy Thomas + /hI0psXjFJrUf3kf7PuHArWzoYGn.jpg + It is 1977, Dublin rocks to the music of Thin Lizzy and the world is stunned by the death of Elvis Presley. Frankie, caught between acne and adulthood, has just completed his final exams in school. Convinced he will fail, he survives the summer organising a beach party, having lustful thoughts about two girls he believes are unobtainable and fending off the advances from a visiting American family friend, all whilst coping with his oddball family. + David Keating + 102 + Drama - Comedy + /zMhtL7emeyMcIHUnbPtrjhoB5jf.jpg + Harvey Weinstein + 5.0 + The Last of the High Kings + 1996 + + + $ +23626#Liev Schreiber#Glenn +18313#Michael Rispoli#Nick +36216#Cynthia Watros#Pam +124909#Danny Hoch#Lenny +10824#N'Bushe Wright#Selena +160332#John Callahan#Scott +44059#Jodi Long#Corey Chang +1014252#David Warren Burke#Lt. Riley + After Carol accidentally chops off Glenn's finger in the kitchen, she decides that she is not giving it back to him until he confesses all his affairs. + 81 + Comedy + /uzME0ZH39Uwx1A98iz8YGbhyeh5.jpg + 5.0 + His and Hers + 1997 + + + $ +26472#Steve Guttenberg#Bill McNeil +48#Sean Bean#Dave Toombs +8335#Kim Coates#Bob Murdoch +5480#Torri Higginson#Sara Gemmel +10132#Colm Feore#Ron Simpson + /p58h6uqwBchzPt5e8ECz4bqf8Aq.jpg + Bill McNeil heads a black ops team called "Mach 1" called in to retrieve a cannister of deadly viral agent which was stolen from the government by an arms dealer. The team retrieve the weapon but the team is setup. Bill knows a traitor is behind things. + Julian Grant + 90 + Action + /tW3fcgVjOqnBXqBmQQrvw7Az94G.jpg + United States of America + 3.0 + Airborne + 1998 + + + $ +880#Ben Affleck#Jack +24967#Alyssa Milano#Chelsea +6807#Sam Rockwell#Rob +64999#Megan Ward#Joanie +67711#French Stewart#Dennis +95852#Vien Hong#Slosh +95853#Vinnie DeRamus#Mickey +90658#Kristin Bauer van Straten#Dina +655#John Rhys-Davies#Luther +95854#Lance Wilson-White#Stew +56785#Tegan West#Doc + /cB7wC5BWjmfA1lvV7ln8Uh0USF8.jpg + US|R + Woodward Productions +Weiny Bro Prods. + It's punk rock meets Animal House in this campus comedy that stars Ben Affleck as Jack, a soon-to-be graduate who finds he's having a difficult time letting go of the college life -- and decides maybe he doesn't have to. Also questioning whether there's life after college are Jack's roommates: Rob, who fears domestication; comic-strip artist Mickey, who's shy around girls; intellectual party animal Slosh; and perpetual student Dennis. + Rich Wilkes + 100 + Comedy + /aZMYmtjim90B5ifnkHPUAVyfQ5L.jpg + United States of America + 5.0 + Glory Daze + 1995 + + + $ +561909#Tina Tanzer#Laura +582181#David Ian Lee#Steady +509656#Thomas Rowen#Eric +561908#Nat Cassidy#Neil +561907#Danielle Quisenberry#Jean +1103680#Kathleen Kwan#Doctor Maschwitz +20632#Maduka Steady#Alpha +1103681#Christopher Frederick#Zombie +164229#Ridley Parson#Zombie +1103682#Karen Sternberg#Pregnant Zombie + /pBAox9ppGjMKfi8vl0tFPDCZOqw.jpg + Laura Sommers is hearing voices in her head and consults with a psychiatrist. The therapy is suddenly cut short when New York City is rocked by an alien invasion... + Andrew Bellware + 91 + Horror - Science Fiction + /xjBXksO7BWh39PnqeMHCuPIoFvi.jpg + Laura Schlachtmeyer + United States of America + 1.0 + Battle: New York, Day 2 + 2011 + + + $ +35350#Marc Singer#Dar +10660#Tanya Roberts#Kiri +9626#Rip Torn#Maax +22384#John Amos#Seth +1073795#Joshua Milrad#Tal +558152#Rod Loomis#King Zed +96913#Ben Hammer#Young Dar's Father +66201#Ralph Strait#Sacco +84164#Billy Jayne#Young Dar +165994#Christine Kellogg#Witchwoman #2 +19257#Janet Jones#Witchwoman #3 + /bXA2NuDoFPFVgFEGv97buLr5BFb.jpg + 106000 + Antares Produzione Cinematografica +Metro-Goldwyn-Mayer + Dar, is the son of a king, who is hunted by a priest after his birth and grows up in another family. When he becomes a grown man his new father is murdered by savages and he discovers that he has the ability to communicate with the animals, which leads him on his quest for revenge against his father's killers. + Don Coscarelli + 118 + Action - Fantasy + /fgbK1YjjC6GM76NQTJ6bHLvLFXu.jpg + United States of America + 6.1 + The Beastmaster + 1982 + + + $ +35350#Marc Singer#Maxim +2719#Brian Thompson#Kirill +25527#Jason Connery#Gurion +86322#Daniel Bonjour#Arkadi +203209#Jennifer Dorogi#Katya +938437#Russell Reynolds#Anson +1381547#Jack Goldenberg#Frank +95988#Jonathan Nation#Rachek +1619599#Nihilist Gelo#Svetka +1619600#Mona Lee Goss#Maxim's Mother +1619601#Elvis Naumovski#General Tolfar + /uEfN7dVfV3wKZ4ObPgfbaw7TVfp.jpg + The Asylum + When an ancient warlord summons a mythological beast, a young hero must complete a series of quests to awaken the dragon that will defeat the monster. + Mark Atkins + 88 + Fantasy - Action - Adventure + /copmFpWEGiLgrnVeg2UkOAxyLlr.jpg + David Michael Latt + United States of America + 2.0 + Dragonquest + 2009 + + + $ +81299#Nia Ann#Lady Nimue +81300#Ceri Bostock#Gwyneth +81301#Simon Lloyd-Roberts#Merlin +81302#Hefin Wyn#King Vortigen +920#Jürgen Prochnow#The Mage +147885#Carys Eleri#Lady Viviane +147886#Iona Thonger#Ingraine +1210765#Joseph Stacey#Vendiger +181647#Dylan Jones#Uther +1184047#William Huw#Torm +1384415#Gary Twomey#King Eringar + /b2TlkheOVZQCZmecRLEowqFt7ks.jpg + The Asylum + In 5th Century Britian, a young Merlin struggles for his place in his known land under the tutelage of The Mage, a local wizard whom sees the young man's potential for magic, as well as face off against his evil former friend, Vendiger, whom plots with a feudal warlord king to conquer all of Britian using an army of flying dragons, and only Merlin with the alliance of the local Prince Uther and Ingraine and a pair of mystical goddesses, can have the power to stop the evil from taking over the land. + Mark Atkins + 90 + Fantasy + /kPMEEqVzFmxvVvOfVYD4SEgBlMG.jpg + United States of America + 3.0 + Merlin and the War of the Dragons + 2008 + + + $ +38559#Christopher Lambert#Beowulf +25702#Rhona Mitra#Kyra +24627#Oliver Cotton#Hrothgar +10744#Götz Otto#Roland +43523#Vincent Hammond#Grendel +43524#Charles Robinson#Weaponsmaster +43525#Brent Jefferson Lowe#Will +42593#Roger Sloman#Karl +18920#Patricia Velásquez#Pendra + /qT5BjgWHlWpNEIdH1WhwWwFvId9.jpg + US|R + Dimension Films +CTV International + Beowulf is a wanderer who learns about a man-eating creature called Grendel which comes in the night to devour warriors trapped at the Outpost. The Outpost is ruled by Hrothgar. He has a daughter, whose husband may have been murdered by the Outpost's master of arms + Graham Baker + 95 + Action - Science Fiction - Thriller - Adventure - Horror - Fantasy + http://www.beowulfmovie.com/ + /t7I4lrFnRGis84MGdZNF3rKLNgj.jpg + Gregory Cascante +Lawrence Kasanoff + France +United States of America + 4.0 + Beowulf + 1999 + + + $ +1004043#Charles Hubbell#Mag Kiln +1127663#Matt Amendt#Gaelen +1127664#Steve Sweere#Morrec +94636#Dawn Brodey#Chuzara +1127665#Sam L. Landman#Kruce + /quZ1ntPkKFlRH2h5KtuAxbIwMUF.jpg + Landroval Studios + In the world of MIDNIGHT, it is a time of overwhelming darkness. After three ages of scheming and war, the dark god Izrador has finally defeated the heroes and armies of the free races. Now, he rules the world of Aryth with an iron fist. Enslaved under the Shadow, the race of men leads an oppressed existence, and the elves and dwarves have retreated to distant forests and mountains. + Christian T. Petersen + 100 + Fantasy + http://www.midnight-chronicles.com/ + /bBtT5viYYxMCFROv8D5CxHoaCyJ.jpg + United States of America + 4.0 + Midnight Chronicles + 2008 + + + $ +80406#Kevin Smith#Dogon +60005#Nathan Phillips#Ryan Jeffers +61634#Nina Liu#Amythis +77799#Shedrack Anderson III#Chucky + US|PG + 174407 + Crawfords Australia + Warriors of Virtue: The Return to Tao is a 2002 fantasy martial arts film and sequel to the 1997 film Warriors of Virtue. Warriors of Virtue: The Return to Tao (set a few years after the original film) sees a new villain, Dogon, seize control of Tao, a parallel universe forming the film's major setting. On Earth, 12–year–old Ryan and his friend Chucky arrive at a martial arts competition in Beijing, whereupon they are unexpectedly taken to Tao. There, it is shown that they are to become Warriors of Virtue. + Michael Vickerman + 93 + Fantasy + /hn26VCNfmiVKuCuWjlGZ1b4OiKV.jpg + Australia + 2.2 + Warriors of Virtue: The Return to Tao + 2002 + + + $ +156859#Jeff Peterson#Andrew +144076#Holly Towne#Catherine +60076#Thad Luckinbill#Gary + /82w2iEk2KnVylcrihJQS3eE9pC2.jpg + US|PG-13 + Kushner-Locke Company, The + When a high school student is abducted by agents who work for a video game company, the government assembles a team of her friends to lead a mission to rescue her, in this action-filled family film. The pals pose as game testers to infiltrate corporate headquarters, where they discover the sinister secret behind the company's next game. Sacha Spencer, Colin Campbell, Heather Chase, Holly Towne and Thad Luckinbill star. + Robert Hays + 80 + Action - Thriller + /5ClJBr3HfDrC3a65d0PEDufWwc4.jpg + United States of America + 4.0 + Task Force 2001 + 2000 + + + $ +10959#Shia LaBeouf#Kelly Ernswiler (as Shia La Beouf) +20220#Elden Henson#Bart Bowland +20189#Amy Smart#Tabby +177219#Billy Kay#Lance +8183#Kathleen Quinlan#Eve +50346#Shiri Appleby#Sarah +6573#William Sadler#Abe +6719#Ray Wise#Harrison +168872#Jesse Heiman#(uncredited) + /sBPLpZ33mMHtitA7HBTLJd7wx5K.jpg + US|PG-13 + Miramax +LivePlanet + A quirky teen with a penchant for war reenactments, Kelly Ernswiler obsesses over military tactics with his buddy Bart. The school bully is one of Kelly's regular headaches, and he also has to deal with a frustrating situation at home, where his father is a recovering drug addict. Kelly's life gets even more complicated when he falls for Tabby, Bart's pretty and soon-to-be-wed older sister. + Kyle Rankin +Efram Potelle + 79 + Comedy - Drama - Romance + /q9SNvRtmmJ19CsFCqQwZ9fBZNuN.jpg + Chris Moore +Jeff Balis + United States of America + 5.0 + The Battle of Shaker Heights + 2003 + + + $ +46948#Kelly LeBrock#Morgana +2055#Robert Davi#Merlin / Milner +140117#Byron Taylor#Ben +1029046#Greg Melvill-Smith#Mike +1150795#Anne Power +35981#Gideon Emery +1088311#Martin Le Maitre +2019925#Roxanne Burger +2019926#Clinton Dooley +1184629#Dale Cutts + /bPjV3GTAPy3mdSVZqZ9y8XcOcdk.jpg + US|NR + Peakviewing Productions +Peakviewing Transatlantic Plc + Every hundred years, the evil sorceress Morgana returns to claim Fingall's talisman from Merlin, with which she intends to destroy the world. For the last fourteen hundred years she has failed... now she intends to conquer all. Young Ben Clark moves with his parents to a new town, where he befriends his elderly magician neighbor, Milner. Ben has a natural talent for magic and wants to learn all that he can from this old man. Ben carries the same scar as the original staff-bearer 1,400 years before. Both Morgana and Milner, who is revealed to be Merlin, see this as a sign that this time, the battle between good and evil will be stronger and harder than ever. Ben must make his own choice between good and evil as he is drawn into a battle and must draw on his own spirit and magic to decide which path to follow and hence, the fate of the world as we know it. + David Lister + Action - Adventure - Drama - Family - Fantasy - Romance + /gfgktvsKGiLmrRqkKNaV0m3TBbH.jpg + United Kingdom + 5.0 + The Sorcerer's Apprentice + 2002 + + + $ +46927#Josh Hammond#Ralph +67850#Riley Smith#Chad +94984#Chris Olivero#Bill +1331541#Dominic Catrambone#Phil +1151279#Kovács Krisztián#Flash +83387#Robert Donavan#Mr. Lipkis +62289#Danielle Hoover#Baxter +90551#Michele Nordin#Felicia + /2nMssZkzbxvahKXIoMSXYGDRoZM.jpg + US|PG-13 + Full Moon Entertainment + Alien Arsenal, also released as Alien Weapons, tells the story of two teenage misfits, Ralph and Baxter, who accidentally discover a bizarre vault full of alien weaponry and body armor in the basement of their high school, with which they harness the power to transform from super geeks...to superheroes. Unfortunately, their discovery signals the arsenal's alien owners who have returned to Earth to reclaim the deadly cache...and destroy the planet! + David DeCoteau + 90 + TV Movie + http://fullmoonstreaming.com/movie/alien-arsenal-movie + /rvZ8o9YtN9zek5XPWkIUQGu4tEf.jpg + Kirk Edward Hansen + United States of America + 3.0 + Alien Arsenal + 1999 + + + $ +971795#Ted Jan Roberts#Stan Dryer +101779#Karen Valentine#Clyda Dryer +56145#Keith Coogan#Eric Graves +25311#John O'Hurley#Lt. Cabrell +56124#William Zabka#Raymond Vonn +105047#Gerald Okamura#Yung +1779429#Tracy Melchior#Sandy Applegate (as Tracy Lindsey) +15500#P.J. Soles#Mrs. Applegate +13592#Irwin Keyes#Mosh +8188#Jean Speegle Howard#Dr. Richman +179976#Karen Kim#Hin-See + /sSY9ikdmL2SMbFkD4X0VwRl3IJ8.jpg + US|PG-13 + Stan Dryer, a teen, afraid to even ask a girl to the prom, finds courage and extreme martial arts skill when he is given a ring by an old man he tried to save from a group of attackers. The ring is a mate to a ring stolen by a double dealing art thief who had been hired to steal it by a criminal mastermind who wanted it for its mystical powers. + Art Camacho + Fantasy - Action - Science Fiction + /vEAxbV6ATCEknBev7MlcN7du9yg.jpg + Joseph Merhi +Richard Pepin + 4.0 + The Power Within + 1995 + + + $ +14469#Rik Mayall#Merlin +29459#Patrick Bergin#King Arthur +4138#Craig Sheffer#Mordred +4138#Craig Sheffer#Guinevere +71900#Adrian Paul#Lancelot +13445#Tia Carrere#Dr. Maxwell +140117#Byron Taylor#Richie Gould + /gmxCLwxpTvI8yQQRi4pUHnHGBCh.jpg + "Merlin: The Return" is the story of the battle between good and evil. The dark forces of Mordred are pitted against the mythical sorcery of Merlin. Mordred and his mother Morgana have been imprisoned in another world for the past 1500 years while Merlin's magical powers kept them at bay. However, in the present, a scientist accidentally finds the gateway to the other world and is about to release Mordred into 20th Century life. Arthur is reawakened from his slumber and together with Merlin, tries to find a way to stop Mordred from re-entering this world + Paul Matthews + 90 + Family - Fantasy - Science Fiction + /rcKWPGq85hvlmlFO64SHcEmhvok.jpg + 2.0 + Merlin: The Return + 2000 + + + $ +20176#Kris Lemche#Peter +81684#Caterina Scorsone#Alison + US|G + A young teenager wins a contest for a "Medeval Adventure" from a soda company. The winners, plus a film crew from the soda company arrive at the castle for the adventure. During the night, a spell cast over 600 years prior brings the castle and all the people in it back to 1383. The evil Lord Drakin plans on retrying to take the castle. It is up to the group to stop him, and thereby return to the 20th century. They enlist the help of the former court magician, Percival, to help them. + Phil Comeau + Adventure + /lyShP8XkDWPOEgSieLfcnzEVHww.jpg + Romania +Canada + Teen Knight + 1999 + + + $ +3896#Liam Neeson#Narrator +135673#Ed Viesturs#Summit Team Leader, USA +86557#David Breashears#Summit Team, USA +136283#Tracy Pfau#Mountain Climber +239171#Lhakpa Dorji + /5M1N9DZJseKjwWPwYfcpyDbn69Q.jpg + MacGillivray Freeman Films +IMAX +Arcturus Motion Pictures + An international team of climbers ascends Mt. Everest in the spring of 1996. The film depicts their lengthy preparations for the climb, their trek to the summit, and their successful return to Base Camp. It also shows many of the challenges the group faced, including avalanches, lack of oxygen, treacherous ice walls, and a deadly blizzard. + David Breashears +Stephen Judson +Greg MacGillivray + 44 + Adventure - Documentary + http://www.everestfilm.com + /lUsTxOMn9xYS9Lt6rV5E7ezgAl3.jpg + United States of America + 6.7 + Everest + 1998 + + + $ +1893#Casey Affleck#Gerry +1892#Matt Damon#Gerry + /2nxWZQegYEeezdAylleaQ53o09m.jpg + Epsilon Motion Pictures +Tango Films +My Cactus + Two friends named Gerry become lost in the desert after taking a wrong turn. Their attempts to find their way home only lead them into further trouble. + Gus Van Sant + 103 + Mystery - Drama - Adventure + /1lu054JL6OPG65N99MaYCdI6y8T.jpg + Dany Wolf + United States of America + 6.2 + Gerry + 2002 + + + $ +2712#Michael Biehn#Taylor Brooks +13525#Matt Craven#Harold Jameson +99424#Annie Grindlay#Lisa +44150#Blu Mankuma#Man on Wheelchair + /uGt3rOBKujbwNfeITbO8taMGZmc.jpg + US|R + Majestic Films International +Trans Pacific Films + They call it the savage mountain. 27 people have perished trying to reach the summit on K2, the world's second highest peak. A U.S. climbing team, funded by millionaire Clairborne is determined to conquer K2. + Franc Roddam + 102 + Thriller - Action - Adventure - Drama + /t2hKGzsSeP6BpnuKvpvKLExdMZB.jpg + Japan +United Kingdom +United States of America + 5.0 + K2 + 1991 + + + $ +60705#Thomas Ian Griffith#Neal Meekin +535284#Caroleen Feeney#Dr. Lia Freeman +8655#R. Lee Ermey#Gary +2878#C. Thomas Howell#Jack +778#John Ashton#Kemp + /FEao6gBs3fJSPkU9CTPKGlrEKw.jpg + Ian Page Productions +Krsochel Films +PM Entertainment Group + Escape from Alaska + A helicopter pilot work with a husband and his wife in the frozen North tagging foxes for the Environmental Protection Agency. When an avalanche hits the group, the husband is killed and only by the pilot's perseverance is the wife saved. Two years later, the wife takes on a corporation which wants to extend an oil pipeline across the tundra above Juneau. She is convinced that this will cause an avalanche on the town. Of course, she is rejected by the corporation executives. She recruits the pilot to try to aid her, but with no success. + Steve Kroschel + 96 + Action - Thriller + /o0zWQ3he7j4rdo3aCEc5vcZzSEM.jpg + Joseph Merhi +Richard Pepin + United States of America + 4.0 + Avalanche + 1999 + + + $ +5563#James Coburn#Martin Tillman +12519#Virginia Madsen#Penny Tillman +98234#Barbara Bain#Anne Tillman +69399#Alexandra Holden#Mia +1292243#Brittany Krall#Murder Victim + /hfbKLZmalQG4myA9kjEXlohZ1gx.jpg + A father uses the serial number on a hand gun in an attempt to track down his daughter's killer. The truth he uncovers is an unsettling reminder of the dangers of keeping handguns. + Alan Jacobs + 89 + Drama + /lrqEY3f5UXhwU72lPVHoQbc5vvl.jpg + Brent Morris + 5.0 + American Gun + 2002 + + + $ +3196#Juliette Lewis#Amanda Sue Bradley +287#Brad Pitt#Billy Canton +56695#Michael Tucker#Buddy Thornton +124131#Alan Fudge#D.A. Mark Calhoun +141046#Emily Longstreth#Jean Glessner +78604#Laurie O'Brien#Wanda Bradley Sledge +141047#Yvette Heyden#Annie Meacham +16857#Tom Everett Scott#Judge Harper +38085#Michael O'Keefe#Mike Medwicki +141048#Dean Abston#Harvey Sledge +141049#J. Stephen Brady#Brian + /2Xcj58udZcOQt8rQMNpvFDB8hCa.jpg + Von Zerneck Sertner Films +Frank & Bob Films II + An abused 15 year old is charged with a murder that carries the death penalty in this fact-based story. + Robert Markowitz + 92 + Crime - Drama + /4L0BapEctIHvneJurG6pUqwF2y2.jpg + Susan Weber-Gold +Julie Anne Weitz + United States of America + 5.3 + Too Young to Die? + 1990 + + + $ +2227#Nicole Kidman#Sophie alias Nadia +21343#Ben Chaplin#John +1925#Vincent Cassel#Alexei +2406#Mathieu Kassovitz#Yuri +21344#Kate Lynn Evans#Clare +21345#Stephen Mangan#Bank Manager +9144#Sally Phillips#Karen +1250#Alexander Armstrong#Robert Mosley +21347#Jo McInnes#Waitress +18025#Ben Miller#Concierge +28477#Jonathan Aris#D.I. O'Fetiger + /9JQSukwnzuiIE1oQa9CKshoSIbW.jpg + US|R + HAL Films +Mirage Enterprises +Film4 Productions + A shy bank clerk orders a Russian mail order bride, and finds his life turned upside down. + Jez Butterworth + 93 + Comedy - Crime - Thriller + /34ps7KL4l3yXeoNnC7vXsIBgZfJ.jpg + Steve Butterworth +Diana Phillips + United Kingdom +United States of America + 6.0 + Birthday Girl + 2001 + + + $ +18702#Mark Dacascos#Maj. John Murphy / Cpl. John Dalton +99235#Tim Abell#Sgt. Michael S. Gammon +100107#Paula Trickey#Lt. Kelly Andrews +157004#Noah Blake#Cpl. Nicholas Castellano +1394153#Darcas Macopson#Cpl. Theodore Knox +172772#Christian Bocher#Cpl. Richard P. Henderson +118756#Madison Mason#Gen. Leo Oxenberg +28416#Frederick Coffin#Brig. Gen. Albert Becker +73132#Marco Rodríguez#Rosato +74596#Joe Renteria#Ray +1492918#Louis Perez#Santos + /1QDQpgbK5nQiEqjQHHpVXkQF2YG.jpg + US|R + Lions Gate Films +American World Pictures (AWP) + Major Murphy, a US Army Investigator, has received a new assignment. Sgt. Gammon is suspected of dealing cocaine from his base, and Murphy must gather enough evidence to shut down Gammon and his entire operation. Along with his partner, Lt. Andrews, the Major goes undercover to infiltrate the gang and find out just how far up the chain of command these activities are going. + Mark L. Lester + 93 + Action - Drama + /xsV84UvoLwQu4choQueNxuuDhHH.jpg + Dana Dubovsky +Mark L. Lester + United States of America + 4.0 + The Base + 1999 + + + $ +44222#Antonio Sabàto, Jr.#Sgt. Hawks +1736#James Remar#Lt. Col. Strauss +62032#Duane Davis#Goose +56120#Yuji Okumoto#Davis +218974#Melissa Lewis#Lee +1036807#Elijah Mahar#Willetts +53257#Emilio Rivera#Pvt. Alberto Ramirerz +1036808#Johnny Urbon#Lt. Daniel Zach +549995#William Jones#Lt. Col. Joe Serano +31368#Deron McBee#Cletus +91333#Randy Mulkey#Col. Howard + US Army Investigator John Murphy (now a Lieutenant, although he was a Major in the previous Base movie) has been sent to look into a series of suspicious deaths that have been going on under the watch of Colonel Strauss. After going undercover and infiltrating Strauss's unit, Murphy discovers that Strauss and his men are leading a vigilante gang to dispense 'justice' to those they feel have been wrongly acquitted of various crimes. + Mark L. Lester + 97 + Action - Adventure + /ps1knGLaOBVrVi7Q8tD3JKzV8WS.jpg + 3.5 + Guilty as Charged + 2000 + + + $ +11867#Eric Mabius#Luke +6407#Marley Shelton#Nicky +1088688#Aidan Campbell#Tyler +1088689#Dale Watson#Jimmy Neil +8655#R. Lee Ermey#Captain Elias +7430#Elizabeth Peña#Connie +977061#Jesse De Luna#Border control officer +32029#Bill Sage#Dean +37027#Lew Temple#Web +162003#Tony Frank#Kane +206795#Richard Nance#Farmhand + /evEBwkgtB97WnoeCTloQIUVLXzL.jpg + US|R + Monochrome Films + A young couple embark on a cross-country journey, only to run into trouble at the Texas/Mexico border. + Michael Oblowitz + 93 + Action + /9qjPNPogajEIIsaEamRLmkpomTO.jpg + Gerry Gershman +Jeffrey Kimball +Michael Oblowitz + United States of America + 6.0 + On the Borderline + 2001 + + + $ +16644#Dolph Lundgren#Jason Price +29880#Maxim Roy#Renee Brooks +145696#Brigitte Paquette#Connie Glenn +190900#Ted Whittall#Sonny Mathis +41746#Serge Houde#Paul Elkert +21293#Alan Fawcett#Sam Turgenson +100650#Francis X. McCarthy#Deputy Director Powell +198662#Harry Standjofski#Kevin +1141258#Christian Paul#Charlie Radisson +102852#Andreas Apergis#Boris Yoesky +59214#Cas Anvar#Agent McCoomb + /zeVvG83s7MEJohgjqaP8pWr5uQx.jpg + EGM Productions +Cinequest Films +Dream Rock + Former government Jason Price (Dolph Lundgren) makes people disappear for a living. But when a top lieutenant for a crime syndicate asks Price to help him drop out of sight, things take a grisly, unexpected turn. A mysterious hit man known as The Cleaner has infiltrated Price's tightly-controlled system, leaving a bloody trail behind. With the help of an enigmatic seductress posing as the mobster's chief assistant, Price methodically works through his network of associates to find out what went wrong, and is plunged headlong into a spiraling gauntlet of half-truths and full-blown lies where nobody is who they appear to be, and everyone has a deadly, hidden agenda + Marc S. Grenier + 94 + Action - Thriller + http://www.egmfilms.com/en/Productions/hiddenagenda/index.html + /an4iIjBk7nOFiptvHKPfAB8LDbm.jpg + Shimon Dotan +Brigitte Germain + Canada + 4.7 + Hidden Agenda + 2001 + + + $ +16644#Dolph Lundgren#Sam Decker +175206#Alex Karzis#Chester Lamb +30436#Kata Dobó#Gloria Waylon +43265#Corey Sevier#Mick Ashton +44176#Dov Tiefenbach#Willy Lopez +74278#K. C. Collins#Hogie Hogarth +59713#Mpho Koaho#Jay Tee Barrow +60907#Larry Day#Earl Hendorf +99182#Jennifer Baxter#Margo Conroy +59928#Danielle Hampton#Alicia Roberts +217739#Nicole Dicker#Charlee Turkle + /3SSm0Sl0i7vWM6ZUbbp1ZwFfy1i.jpg + Nu Image + A heroic high school teacher leads a band of students trapped in school by violent drug-runners. + Sidney J. Furie + 98 + Action - Thriller + /rzZEZuHXEdlcEaTwFpzsfz7bQZs.jpg + Canada + 4.8 + Detention + 2003 + + + $ +16644#Dolph Lundgren#Frank Castle / The Punisher +20959#Louis Gossett, Jr.#Jake Berkowitz +1924#Jeroen Krabbé#Gianni Franco +56182#Kim Miyori#Lady Tanaka +76184#Bryan Marshall#Dino Moretti +64778#Nancy Everhard#Sam Leary +150536#Barry Otto#Shake +214545#Brian Rooney#Tommy Franco +1026588#Zoshka Mizak#Tanaka's Daughter +1086329#Kenji Yamaki#Sato +1086330#Hirofumi Kanayama#Tomio + /uVlIDxjubb3Trk18NhMCf7b3yiN.jpg + US|R + New World Pictures + 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. + Mark Goldblatt + 89 + Action - Thriller + /9OjFAb9r21TNJIbbMVAZtbj3I60.jpg + Robert Mark Kamen + United States of America +Australia + 5.0 + The Punisher + 1989 + + + $ +27811#Peter Weller#Steve Parker +589#Daryl Hannah#Erica Long +13022#Tom Berenger#Gén. Buck Swain + /vND3csfm8A7ThMbJZS0CkWYHoO6.jpg + US|NR + When Steve Mitchell is clandestinely sent to the US embassy in Bucharest, Romania to disarm a nuclear bomb that has secretly remained in the building since the end of the Cold War, little does he know that other problems will soon erupt. He must join Erica Long, a diplomatic attaché who is not all that she appears, to work together on setting the correct computer code that will disable the weapon and accomplish the mission. But while watching video monitors from inside a long-forgotten surveillance room, Steve witnesses a surprising deadly takeover of the building by the Serbian Liberation Front. + Gustavo Graef-Marino + 90 + Action - Thriller + /iAahz2oxMjdDRsXWdebzNKlBdyq.jpg + Robert Levy + 4.0 + Diplomatic Siege + 1999 + + + $ +38560#Lou Diamond Phillips#Jeff Powers +349#Scott Glenn#Dan Vaughn +27008#Chelsea Field#Kelly Daniels +5050#Yaphet Kotto#Larson +36218#Andrew Divoff#Angel +17401#Stephen Root#Max Alvarez +21523#Ed Lauter#Captain Shafer + /xeFeKImK0d4BYHCa6RwGqbhx3ET.jpg + Jeff Powers is the newest member of a very elite and very secret LAPD division. Their mission is to target important criminals and to get them to stop. Police brutality is not a known term for the division and they will stop at nothing to get the job done, even if it means murder. + Mark L. Lester + 96 + Action - Thriller + /jugoDvg2S9LlbQFWdCRnFM3zvqJ.jpg + Frank Sacks + 6.0 + Extreme Justice + 1993 + + + $ +11366#Lorenzo Lamas#Allan Baxter +82497#Debbie Gibson#Emma MacNeil +2472#Sean Lawlor#Lamar Sanders +109423#Vic Chao#Seiji Shimada +95988#Jonathan Nation#Vince +87597#Mark Hengst#Dick Ritchie +125130#Michael Teh#Takeo +1110616#Chris Haley#Kenji +78265#Dustin Harnish#Helmsman +115401#Dean Kreyling#U.S. Sub Captain +85096#Stephen Blackehart#U.S. Sub Sonar Chief + /vyadoLcl6sXNLUSOgtAPOwjAZeE.jpg + 264481 + The Asylum + The California coast is terrorized by two enormous prehistoric sea creatures as they battle each other for supremacy of the sea. + Jack Perez + 90 + Horror - Science Fiction + /7iKy7AS6K4xgL82PFOowI4fRRE6.jpg + David Michael Latt + United States of America + 3.5 + Mega Shark vs. Giant Octopus + 2009 + + + $ +69405#Brian Krause#Kelvin +53891#Najarra Townsend#Tina +22248#Heather McComb#Laura +85096#Stephen Blackehart#Agent Greene + /86lHidbFBuJFSHZ0XYvZne4eE74.jpg + US|PG + The Asylum + Two hundred years ago a supernova exploded somewhere in the Lyra constellation. Now the lethal burst of radiation is headed straight for Earth, and time is swiftly running out. The only thing standing between humanity and complete devastation is astrophysicist Dr. Kelvin (Brian Krause), who heads up a project to save the planet. + Anthony Fankhauser + 87 + Action - Adventure - Science Fiction - Thriller + /84uPq1JQqaW9Vw7tEeDM4tOGRUu.jpg + David Michael Latt + United States of America + 3.0 + 2012: Supernova + 2009 + + + $ +11366#Lorenzo Lamas#Lieutenant Aronnaux +86321#Natalie Stone#Lieutenant Commander Rollins +2472#Sean Lawlor#Captain Nemo +92027#Kim Little#Specialist Sustin +92028#Declan Joyce#Cooper +112020#Victor J. Springer#Captain Farrgut +102384#Emilio Roso#Ramirez +94025#Michael Tower#Captain Anderson +112021#Damien Puckler#Blackwell + /lpEHPJuPoYZNnjwqvVuvZZnlhPm.jpg + US|PG + Anthill Productions +The Asylum + Captain Nemo goes even deeper into insanity in this mesmerizing fantasy tale. Once again at the helm of his fearsome, wildly advanced vessel, the nautical madman endeavors to turn the world above the waves upside down. + Gabriel Bologna + 90 + Action - Adventure - Science Fiction + /3hCJ8x0abSOuXI9MTp4z8rm7V9b.jpg + United States of America + 3.0 + 30,000 Leagues Under The Sea + 2007 + + + $ +98157#Paul Logan#Jason Fitch +105374#Jude Gerard Prest#Dr. Brian Higgins +127472#Cooper Harris#Lt. Julia +102807#Clint Browning#Captain Jonas +109794#William Morse#Lt. Stritch +131740#Matt Lagan#Submarine Captain Jim +95988#Jonathan Nation#Mort +80881#Joseph Porter#Ensign Filbert +148120#Tiffany#Sarah Monroe +1212425#Barry Williams#Bob Grady +229689#Jesse Daly#Dr. Eli Gordon + /fNSxch9HXdUK2YnMnjhPsXkozBJ.jpg + US|R + The Asylum + When a science experiment goes horribly wrong, gigantic fish gain appetites for human flesh. + Eric Forsberg + 92 + Action - Adventure - Horror - Science Fiction + http://www.syfy.com/movies/originals/index.php?pageid=127 + /f7jol00uMdExQWVKY7buBZOiL41.jpg + United States of America + 2.0 + Mega Piranha + 2010 + + + $ +29871#Jacinta Mulcahy#Rachel +101023#Fintan McKeown#Josh +35863#Andrew-Lee Potts +199876#Patrick Monckton#Emilio +985294#Patrick Dreikauss#Leon +141014#Jay Benedict#Mr. Reed + /xvf0RSdIsCZVHRp2bjGGMHfDGyQ.jpg + Lietuvos Kinostudija +Nu Image +GFT Entertainment + An earthquake destroys a Russian Nuclear Power plant. + Tibor Takács + 92 + Action - Adventure - Thriller + /klD6Znr6yRJXqPVpcYHGIdLKPei.jpg + Robertas Urbonas +Gary Howsam +Jamie Brown +Michael P. Flannigan + Canada +Lithuania +United Kingdom + 4.0 + Nature Unleashed: Earthquake + 2005 + + + $ +44301#Cliff DeYoung#Lloyd +56265#Dale Midkiff#Dr. Frank Richards +41273#Ami Dolenz#Susan +95982#Danae Nason#Sarah +95983#Joshua Lee#Alex +95984#Sara Tomko#Wakanna +95985#Caroline Amiguet#Dr. Trish Lane +95986#Shirley Raun#Mrs. Reed +95987#Louis Graham#Dr. Ian Hunter +95988#Jonathan Nation#Uncle Jim +87597#Mark Hengst#Matt + /2eNkH6ulBtS1ZhxyJHwh11Wm9oo.jpg + On December 21, 2012 four strangers on a journey of faith are drawn to an ancient temple in the heart of Mexico. For the Mayans it is the last recorded day. For NASA scientists it is a cataclysmic polar shift. For the rest of us, it is Doomsday. + Nick Everhart + 85 + Action - Adventure - Fantasy - Horror - Science Fiction - Thriller + /mGZqHGUAT1GCQMO4U7hhoJd2vWm.jpg + 2.0 + 2012 Doomsday + 2008 + + + $ +30066#Rhett Giles#Jason +583706#Jill Stapley#Ashley +109941#Kristen Quintrall#Lindsay +64294#Tom Nagel#Andrew + /zwwCdFGFQr6rXGZD5yB9TZN2pxR.jpg + A mother and a father search for their only child as a giant asteroid headed for Earth, triggering a series of apocalyptic events. + Justin Jones + 94 + Action - Science Fiction + /5dhe71FIsgMjrudJHBElm6DDmFx.jpg + United States of America + 1.0 + The Apocalypse + 2007 + + + $ +29459#Patrick Bergin#Blay +12812#Lysette Anthony#Elizabeth +113785#Brian Wimmer#Case +592011#Lysa Apostle#Julie +151025#Adria Dawn#Andrea + US|PG-13 + A scientific expedition to Loch Ness runs into trouble when the group leader is killed in a mysterious diving accident. Soon after, when the unorthodox Professor Howell shows up to take over as leader of the group, more strange incidents and attacks start to occur. While Howell and TV producer Elizabeth Borden are busy investigating the source of the attacks, the body of an enormous sea creature washes up on the lake's shore. + Chuck Comisky + 96 + Action - Horror - Mystery - Science Fiction - Thriller + /zYGdYqsa9dQF5JnBIJPONnBN0aj.jpg + United States of America + 2.0 + Beneath Loch Ness + 2002 + + + $ +62500#Adam Croasdell#Thom Cussler +35863#Andrew-Lee Potts#Jock Cussler +76622#Jessica Brooks#Callie Alkin +1021973#Kate Henry#Katya Tatnova +53591#Steven Grives#George Alkin +66792#Valentin Ganev#Alex Rogov + /8SBY1GaBarmpoEZX7huN6loIite.jpg + It begins on a glacier nestled on a frozen peak high in the wild Ural Mountains of Russia, kissed by clouds, the top of the world. A lonely, forbidding place, it's home to THOM CUSSLER and brother, JOCK, a pair of transplanted westerners seeking their fortune in Russia's new capitalist economy. They run a hard-luck snowmobile tour business that takes adventurous winter tourists up the mountains to experience the ultimate extreme winter thrill. During one such excursion, a massive ledge of snow at the top of the ridge suddenly collapses and an avalanche crashes down! Only the quick thinking and expert driving of Thom and Jock saves them. The tiny village of Dubroz, nestled far below, is not so lucky. Avalanche sirens wail, but the panicked villagers barely have time to act as the avalanche crashes down! A wall of snow smashes into one end of the village, blasting-in windows, collapsing and burying buildings... Written by GFT Entertainment + Mark Roper + Thriller + /9KEegyDNL4zyRTot0nsZSyogaaX.jpg + Canada +Bulgaria +United Kingdom + 2.0 + Nature Unleashed: Avalanche + 2004 + + + $ +89162#Ken Clark#Steve Benton +83811#Jan Shepard#Nan Greyson +134635#Tyler McVey#Doc Greyson +98164#Bruno VeSota#Dave Walker +89163#Yvette Vickers#Liz Walker +89165#Michael Emmet#Cal Moulton +101232#Gene Roth#Sheriff Kovis +94897#Dan White#Porky Reed (as Daniel White) +1032088#Joseph Hamilton#Sam Peters +153387#George Cisar#Lem Sawyer +103101#Walter Kelly#Mike, the scuba expert + /1gDYBtmagI0x7N0rATpG8srRkb4.jpg + US|Approved + American International Pictures (AIP) +Gene Corman Productions +Anglo-Amalgamated Film Distributors + A backwoods game warden and a local doctor discover that giant leeches are responsible for disappearances and deaths in a local swamp, but the local police don't believe them. + Bernard L. Kowalski + 62 + Horror - Science Fiction + /tTuK2rBQBe8QqYcW533TYuOsyeT.jpg + Gene Corman + United States of America + 3.9 + Attack of the Giant Leeches + 1959 + + + $ +62714#Bryan Genesse#Jake +1027001#Josh Cohen#Chris +107033#Anastasia Griffith#Sharon +56366#Ross McCall#Marcus +59544#Melanie Lewis#Mel +67210#Shend#Tiny +27639#John Francis#Lloyd +59692#Ray Charleson#Max + Nu Image +Euroimage EOOD +GFT Entertainment + A rescue goes terribly wrong for a sheriff when trying to save four dirt bikers when they are trapped by growing forest fires. Desperate, they seek shelter in an abandoned mine, never realizing they are headed straight for evil from the sheriff's past + Allan A. Goldstein + 90 + Action + /ukcyfrupgH6BJh8EEzbH2cAhKHh.jpg + Canada +Romania +United Kingdom + 4.0 + Nature Unleashed: Fire + 2004 + + + $ +98102#William Smith#Caribe +94127#Peter Brown#Jim Pendrake +161795#Ahna Capri#Terri Greene +105088#Tom Simcox#Art Greene +1076534#John Villegas#Juan +1076535#Julie Tecca#Girl + /x9RTFbrGtyFPKHwRsuRGMAWgUhj.jpg + US|PG + Wildlife photographer Terry and her brother Art go to Venezuela for a photo shoot. They hire Jim Pendrake to guide them through the jungle. However, the trio run afoul of evil local hunter Caribe. + William Gibson + 90 + Horror - Action - Thriller + /i0ZWqr3svKB14LtC44lJjRRF8uM.jpg + 3.0 + Piranha, Piranha + 1972 + + + $ +56128#Kristy Swanson#Shannon Muir +21624#Judd Nelson#Eric Bryce +56930#David Selby#Ryker +85178#Christa Campbell#Advisor Coldwell +558918#Daniel Buran#Kent +1523313#Heather Dawn Rally#Alicia +1603006#Jennifer Lyn Quackenbush#Elizabeth +1603007#Julia Sinks#Kayley +167764#Tim Snay#Hayes +135263#Chris Nolte#Hendricks +90533#Robert Giardina#James + /2pYHVyLYApYm7cxNETRmOgvlaSW.jpg + US|PG + Active Entertainment +Equity Pictures Medienfonds GmbH & Co. KG III +Millennium Films + 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. + Tibor Takács + 90 + Science Fiction - Thriller - TV Movie + /9Y0uuPVDsE8AePwXg2gATWGFKxS.jpg + Boaz Davidson +Kenneth M. Badish + Germany +United States of America + 3.0 + The Black Hole + 2006 + + + $ +589#Daryl Hannah#Liz Quinlan +6575#Gil Bellows#Lloyd Walker +55152#Campbell Scott#William Phillips +1219536#Suleka Mathew#Marianne +76828#Patrick Gilmore#Spence +55591#Tygh Runyan#Nick +173058#Tina Milo Milivojevic#Bella +41746#Serge Houde#Korshaft + /gbM4nG9f0PuX5OcveN2AUbSnsdZ.jpg + Hallmark Entertainment +Reunion Pictures + An archaeologist discovers that aliens posing as government officials are secretly harvesting human bodies in a bid to take over earth. + Rob Lieberman + 170 + Action - Science Fiction - Drama - Horror + /gHJeOcllD6NWPf81kct3Ta6563L.jpg + Matthew O'Connor +Michael O'Connor + United States of America + 4.0 + Final Days of Planet Earth + 2006 + + + $ +51798#Katee Sackhoff#Girl +71913#Bokeem Woodbine#Anchilles +65827#Keith David#Colonel Norton +86602#Jerry Trimble#Last Human Cop +106745#Don Wilson#Tallis +121868#Booboo Stewart#Young Tallis + /3FgDoUBSDMOBajaFisRA2U61v2j.jpg + US|R + No emotion. No fear. No pain. They were the perfect soldiers to protect civilization until the drone police became the perfect enemy. With little hope left for mankind, Tallis, an electronically enhanced soldier, rescues a survivor from a failed resistance mission. She will have to learn to fight and think like a machine for the final battle to save the human race. + Jesse V. Johnson + 93 + Action - Thriller - Science Fiction + /msRf0ZIRNnMexLOL3WXE7jsLZsk.jpg + United States of America + 4.0 + The Last Sentinel + 2007 + + + $ +13445#Tia Carrere#Lisa Delgado +8949#Peter Fonda#Dr. Austin Shepard +8395#Luke Perry#Dr. Chris Richardson +57144#Clemency Burton-Hill#Ginny McKillip +47901#Emma Samms#Laurie Stephenson +76622#Jessica Brooks#Brooke Richardson +23775#Eliza Bennett#Haley Richardson +1005130#Marcus Jean Pirae#Dr. Marshall Peters +2714#Lance Henriksen#Colonel Harlan Williams +1274177#Patrick John Walton#Agent Means +1302090#Henie Bosman#Angry Driver + /j4Xuq6DY5BOujjg8vW8a2d27r2P.jpg + US|NR + The Department of Trade and Industry of South Africa +Hallmark Entertainment +Silverstar Ltd. + A international science conference is held in Australia when Dr. Austin Shepard mysteriously disappears Dr. Shepard's colleague, Christopher Richardson and other people are soon faced with the reality of an impending crisis and an attempt to keep the information from the public. While a full-blown supernova does not occur, explosions on the sun cause massive damage in Australia, and is shown often in Sydney and in various other cities and countries of the world. + John Harrison + 172 + Science Fiction - Action - Drama + /82AvauFnpTwtBxWyCe2MUPJBFKW.jpg + Steven H. Berman +Brian Gordon +Leanne Moore + South Africa +United States of America + 3.0 + Supernova + 2005 + + + $ +2888#Will Smith#Robert Neville +8602#Alice Braga#Anna Montez +49918#Charlie Tahan#Ethan +53918#Salli Richardson-Whitfield#Zoe Neville +49920#Willow Smith#Marley Neville +7056#Emma Thompson#Dr. Alice Krippin +49921#Darrell Foster#Mike - Military Escort +49922#Joanna Numata#Alpha Female +6066#Dash Mihok#Alpha Male +964035#Samuel Glen#Military Driver - Jay +1075145#Pedro Mojica#Sergeant + /u6Qg7TH7Oh1IFWCQSRr4htFFt0A.jpg + Village Roadshow Pictures +Weed Road Pictures +Original Film + Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone. + Francis Lawrence + 101 + Drama - Horror - Action - Thriller - Science Fiction + http://iamlegend.warnerbros.com/ + /6OA0I8hhW9zftWoCYxJAzXW9UIN.jpg + Akiva Goldsman +James Lassiter +David Heyman +Neal H. Moritz + United States of America + 7.1 + I Am Legend + 2007 + + + $ +10017#Charlton Heston#Robert Neville +2516#Anthony Zerbe#Matthias +43976#Rosalind Cash#Lisa +68681#Paul Koslo#Dutch +104907#Lincoln Kilpatrick#Zach +16060#Brian Tochi#Tommy +47020#Eric Laneuville#Richie +1495416#Jill Giraldi#Little Girl +96914#Anna Aries#Woman in Cemetery Crypt +548085#DeVeren Bookwalter#Family Member +29645#John Dierkes#Family Member + /dtPe0y1F4XtpEEOwTpaZXXxXfNU.jpg + US|PG + Walter Seltzer Productions + Robert Neville, a doctor, due to an experimental vaccine, is the only survivor of an apocalyptic war waged with biological weapons. The plague caused by the war has killed everyone else except for a few hundred deformed, nocturnal people calling themselves "The Family". The plague has caused them to become sensitive to light, as well as homicidally psychotic. + Boris Sagal + 98 + Action - Science Fiction - Thriller - Drama + /kHd0BZtBfOTph7YUggtDF6EoQ9W.jpg + Walter Seltzer + United States of America + 6.0 + The Omega Man + 1971 + + + $ +13919#Michael York#Logan +12518#Richard Jordan#Francis +14464#Jenny Agutter#Jessica +24368#Roscoe Lee Browne#Box +28768#Farrah Fawcett#Holly +14501#Peter Ustinov#Old Man +24808#Michael Anderson Jr.#Doc +179204#Randolph Roberts#2nd Sanctuary Man +136872#Lara Lindsay#The Woman Runner +1217505#Gary Morgan#Billy +166120#Michelle Stacy#Mary 2 + /a68m6hfvFLctuq1IhrefWwHZLa2.jpg + Metro-Goldwyn-Mayer + An idyllic sci-fi future has one major drawback: All citizens get a chance of being 'renewed' in a Civic Ceremony at their 30th birthday, unless they run and escape before their time comes. + Michael Anderson + 119 + Action - Science Fiction + /iBtkwot48QkgYpPfjceCgyK1Rhz.jpg + Saul David + United States of America + 6.7 + Logan's Run + 1976 + + + $ +17328#Rufus Sewell#John Murdoch +227#William Hurt#Inspector Frank Bumstead +2628#Kiefer Sutherland#Dr. Daniel P. Schreber +6161#Jennifer Connelly#Emma Murdoch +13474#Richard O'Brien#Mr. Hand +385#Ian Richardson#Mr. Book +27752#Bruce Spence#Mr. Wall +27753#Colin Friels#Det. Eddie Walenski +8398#John Bluthal#Karl Harris +27754#Mitchell Butel#Officer Husselbeck +27755#Melissa George#May + /rIWui0S2ugwTWlhna6CTS3RYW9q.jpg + New Line Cinema +Mystery Clock Cinema + 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. + Alex Proyas + 100 + Mystery - Science Fiction + /yR7rapBFxBoBT0vkZQIXhLBr726.jpg + Alex Proyas +Andrew Mason + Australia +United States of America + 7.4 + Dark City + 1998 + + + $ +45473#Ian McCulloch#Commander Ian Hubbard +24902#Louise Marleau#Colonel Stella Holmes +39151#Marino Masé#Lieutenant Tony Aris, NYPD +35826#Siegfried Rauch#Hamilton +32370#Gisela Hahn#Perla de la Cruz +101331#Carlo De Mejo#Agent Young +122023#Carlo Monni#Dr. Turner + /lFVchjatYGDhRTZP84Fwtu5JwUG.jpg + US|R + Lisa-Film +Alex Cinematografica +Barthonia Film + A former astronaut helps a government agent and a police detective track the source of mysterious alien pod spores, filled with lethal flesh-dissolving acid, to a South American coffee plantation controlled by alien pod clones. + Luigi Cozzi + 95 + Adventure - Science Fiction - Horror - Romance + /diSSYPayASVx7SzNBxagM5oYnFn.jpg + Claudio Mancini + Germany +Italy + 5.0 + Contamination + 1980 + + + $ +113#Christopher Lee#Father Pergado / Zindar +12445#Sue Lyon#Sylvia Boran +29752#Kirk Scott#Prof. Boran +29313#Dean Jagger#Ray Collins +2007#Lew Ayres#Com. Joseph Beckerman +7665#Macdonald Carey#John Davis +29753#Liz Ross#Patrizia +29754#Jon Van Ness#Mr. Sanchez + /fM3TekhcW5h87cnxpalETJnKeKf.jpg + Charles Band Productions + After witnessing a man's death in a bizzare accident, Father Pergado goes on a spiritual retreat, where he encounters his alien double bent on world conquest. + John Hayes + 88 + Fantasy - Thriller - Science Fiction + /gL8aFUP6nTd6aZ3yEQ7ejecdDo9.jpg + Charles Band + United States of America + 3.0 + End of the World + 1977 + + + $ +1905#Vincent Price#Dr. Robert Morgan +50781#Franca Bettoia#Ruth Collins +91815#Emma Danieli#Virginia Morgan +22479#Giacomo Rossi-Stuart#Ben Cortman +25816#Umberto Raho#Dr. Mercer +91816#Christi Courtland#Kathy Morgan +91817#Antonio Corevi#Governor +91818#Ettore Ribotta#TV Reporter +91820#Carolyn De Fonseca#Ruth Collins (voice) +37748#Giuseppe Mattei#New People Leader +91819#Rolando De Rossi + /9IApWHVAtkXuVdSOnvji3n5zLcq.jpg + Associated Producers (API) +Produzioni La Regina +American International Pictures (AIP) + Robert Morgan is the last man on earth, as far as he can tell. A plague killed everyone else on the planet several years ago. He was immune to it, and can only guess why. Vampires that were formerly human attack Morgan's home every night + Ubaldo Ragona +Sidney Salkow + 86 + Horror - Science Fiction + /u6UvgbuIRSmS1OnPJl6ogErqElW.jpg + Robert L. Lippert + Italy +United States of America + 6.8 + The Last Man on Earth + 1964 + + + $ +33359#Buster Crabbe#Col. Buck Rogers +33774#Constance Moore#Lt. Wilma Deering +33775#Jackie Moran#George 'Buddy' Wade +33777#Anthony Warde#Killer Kane +33776#Jack Mulhall#Capt. Rankin, Hidden City forces + /kQXDiNzeNnb7KWrptkb4gBNcVwa.jpg + Feature version of the film serial BUCK ROGERS (Universal Pictures, 1940). It is the story of an American soldier who wakes up in the future, it is the year 2500... + Saul A. Goodkind +Ford Beebe + 71 + Science Fiction + /nrnG65j6QLACQbooZkRkE6Ko5vN.jpg + United States of America + 4.3 + Planet Outlaws + 1953 + + + $ +97173#Bruce Kellogg#Wright Thompson +14365#Otto Waldis#Dr. Max A. Bauer +84486#Jim Bannon#Andy Ostergaard +97174#Tom Handley#Dr. James Paxton +97175#Dick Cogan#Dr. George Coleman +97176#George Baxter#Carlisle Foundation Chairman +97177#Marilyn Nash#Dr. Joan Lindsey + /2gw7rHfFh2EyAcNGHEdvweaD4PY.jpg + Lippert Pictures + With the cyclotram, an atomic-powered rock-boring vehicle, Dr. Jerimiah Morley leads an expedition into a subterranean world. + Terry O. Morse + 74 + Adventure - Science Fiction + /oKe93tItkIYT15kJS669OVxJvtW.jpg + Irving Block +Jack Rabin + United States of America + 4.2 + Unknown World + 1951 + + + $ +16119#Charles Napier#Sheriff Nate Culver +94653#Hoke Howell#Professor Edgar Chambers +98577#David Homb#Aaron Doyle +564903#Jodi Seronick#Carol Nelson +192412#Marc Robinson#Paul Towers +81466#Robert Thompson#Deputy Ty Larsen +564904#Ashley Semrick#Stacy Chambers +197278#Aaron Jettleson#Max Poindexter +564905#Barbara Fierentino#Holly Capers +564906#Master Dave Johnson#Deputy David Stevens +564907#Roger Gluston#Mr Justice + /xATteL5hmBvAU9HBT7NPzbLISRa.jpg + US|G + Huge Motherships from an alien species sneak ominously into orbit around Earth. Lethal bat-winged fighters descend on the planet. Citizens are abducted. Homes are destroyed. The invasion has begun! A small town sheriff, two deputies and a professor discover the alien plan. With the secret to destroy the attacking ships, there's a chance they could stop the alien invasion... for now!!!! + Peter Maris + 91 + Action - Adventure - Drama - Science Fiction + /dlhptZsf46QU4tuioKp5jmTmt2.jpg + 4.0 + Alien Species + 1996 + + + $ +70625#Yanti Somer#Irene +97684#Gianni Garko#Dirk +99536#Malisa Longo#Bridget +27382#Chris Avram#Shawn +1049841#Ennio Balbo#Professor Mauri +100414#Roberto Dell'Acqua#Norman +5476#Nino Castelnuovo#Lt. Oliver 'Hollywood' Carrera +41166#Pino Ferrara#Prison Warden +67900#Claudio Undari#Galactic Auctioner +51741#Franco Ressel#Commander Barr + /bs1yku385HOrn6evcUmIARtGHAE.jpg + Nais Film + Star Odyssey + Earth is attacked by an intergalactic villain and his army of robotic androids. + Alfonso Brescia + 103 + Science Fiction + /2bBTPOrr7fqFVcZWBQqa6PoPYXQ.jpg + Luigi Alessi + Italy + 1.0 + Sette uomini d'oro nello spazio + 1979 + + + $ +114521#Paul Bentzen#Stan +1057862#Debbi Pick#Sarah +188717#Nick Holt#Jake +1057863#Karl Wallace#Eric +1057864#Robert Arkens#Andy +1057865#Arnold Didrickson#Sam +1973247#James Steadman#Radio Announcer +1973248#David Pray#TV Host +1973249#Mary O'Keefe#Mrs. Murphy +1973250#William Reetz#Mr. Duncan + /2t1sgETZKtKLaQfJWSyjPWVqXCH.jpg + US|G + They + A group of young pilots in a remote region of the Canadian wilderness begin to hear strange reports over their radios about planes crashing, cars stalling and a deadly plague which has gripped the planet. It becomes clear that earth is in the midst of an invasion. The group of pilots decide to barracade themselves in a cabin deep in the woods and wait for their impending doom. + Bill Rebane + 94 + Drama - Science Fiction + /ylb04qD4v3sWQAYTb1s02d6FMU8.jpg + Bill Rebane + United States of America + 1.0 + Invasion from Inner Earth + 1974 + + + $ +33708#Antonio Sabàto#Captain John Boyd +70625#Yanti Somer#Julie +99536#Malisa Longo#Lois +1056322#Patrizia Gori#Trissa Crew +22479#Giacomo Rossi-Stuart#Roger +103613#Aldo Canti#Kuba the Alien +32917#West Buchanan#Herb Julian +98494#Massimo Righi#Dr. Wilkes +1625697#Dino Scandiuzzi#Jack +1625672#Nicole Stoliaroff#Trissi Ship Crew +1625698#Frank Siedlitz#Herb Julian + /f4mnNBkNJ67z7h8xT3o8u4g99Tx.jpg + Nais Film +Koala Cinematografica + The War of the Robots + An alien civilization, which facing eminent extinction, kidnaps two famous genetic scientists from Earth. A troop of soldiers is dispatched to combat the humanoid robots and rescue the victims. + Alfonso Brescia + 99 + Action - Science Fiction + /7J8BcgUcu2yKbpXi1lkME8KX6Uo.jpg + Luigi Alessi + Italy + 2.0 + La guerra dei robot + 1978 + + + $ +7195#Giancarlo Prete#Scorpion +9811#Fred Williamson#Nadir +33807#George Eastman#One +102120#Anna Kanakis#Alma +128674#Ennio Girolami#Shadow +22312#Venantino Venantini#Father Moses +45580#Massimo Vanni#Mako +41342#Iris Peynado#Vinya +123968#Stefania Girolami Goodwin#Radio operator +102013#Giovanni Frezza#Young Mechanic +98774#Fulvio Mingozzi#Amos + /mP8p0qEcgaiYcTrCIHKBdA2mbjK.jpg + US|R + Deaf International +Fulvia Film + Two mercenaries help wandering caravans fight off an evil and aimless band of white-clad bikers after the nuclear holocaust. + Enzo G. Castellari + 91 + Science Fiction - Thriller - Action + /v514GPSebipkq5YwBeyPFoWv4xr.jpg + Fabrizio De Angelis + Italy +United States of America + 4.0 + Warriors of the Wasteland + 1983 + + + $ +118861#Paul Hubschmid#John McLaren +275590#Fiorella Mari#Mary McLaren +563087#Madeleine Fischer#Katy Dandridge +84251#Ivo Garrani#Professor Herbert Weisse +99520#Dario Michaelis#Peter Leduq +994402#Peter Meersman#General van Dorff +238768#Jean-Jacques Delbo#Sergei Boetnikov +994403#Massimo Zeppieri#Dennis McLaren +994404#Sam Galter#Randowsky +994405#Annie Bernal#Lab Assistant + Compagnie Cinématographique de France +Lux Film + The Day the Sky Exploded + Scientists discover that a group of meteors are hurtling on a collison course with Earth, and if they hit, the planet will be destroyed. + Paolo Heusch + 82 + Science Fiction - Action + /4tqBOih4ViduOSZOYrI328y8IuC.jpg + Guido Giambartolomei + Italy + 4.0 + La morte viene dallo spazio + 1958 + + + $ +4113#Claude Rains#Professor Benson +35937#Bill Carter#Cmdr. Robert Cole +27166#Umberto Orsini#Dr. Fred Steele +89190#Maya Brent#Eve Barnett +89191#Jacqueline Derval#Mrs. Collins +38597#Renzo Palmer#Barrington +56729#Carlo D'Angelo#General Varreck +114576#Carol Danell#Cathy Cole +98791#Jim Dolen#Boyd +114418#Joe Pollini#Pat +114578#Aldo D'Ambrosio#United Commission Member + /yjwo4UcdC5j0ZJObc8ujdFzKs26.jpg + Battle of the Worlds + Dr. Fred Steele (Umberto Orsini) and Eve Barnett (Maya Brent) work together at an astronomical station on a bucolic island. The station's scientists learn they must deal with a rogue planet -- "The Outsider" -- that has entered the solar system. which must be controlled by an alien intelligence… Professor Benson's(Claude Rains) expedition discovers a race of humanoid creatures dead... + Antonio Margheriti + 84 + Science Fiction - Thriller + /r0jhcKQ1rqiFPbmiDNcvpfHapTZ.jpg + 5.0 + Il pianeta degli uomini spenti + 1961 + + + $ +251#Robert Beatty#Dr. Paul Rankin +90643#Mervyn Johns#Dr. Bruckner the Beast of Ravensbruck +33268#Margaretta Scott#Sister 'Johnnie' Johnson +27939#Nova Pilbeam#Tracy Heart + /3ltil1xAiRYmyLeNJkcfVFb6iQr.jpg + An escaped World War 2 Nazi doctor, impersonates a murdered English doctor so he can work on a vaccination to protect the Germans in their planned germ warfare. + Paul L. Stein + 99 + Thriller - Drama - Action + /AnGPMlkfGd4WMAwT8ilx76af1cr.jpg + Louis H. Jackson + United Kingdom + 7.0 + Counterblast + 1948 + + + $ +42180#Bobby Van#Danny +10929#Ruta Lee#Dr. Marion Turner +88975#Mala Powers#Maj. Georgianna Bronski +82860#James Craig#Dr. Haines +109406#Grant Williams#Maj. Kurt Mason +51310#Henry Wilcoxon#Dr. Christopher Perry +103796#Essie Lin Chia#Girl Spy +16418#Casey Kasem#Mission Control Officer +200240#Michael Christian + /n52R54J95FJJECQJhgQrKIoEot0.jpg + Spies discover that the Red Chinese have built a "doomsday machine" capable of destroying the surface of the Earth, and that they plan to use it within a matter of days. Meanwhile, Project Astra, a manned U.S. space mission to Venus, is in its final hours before launch when it is taken over by the military and nearly half of its all-male crew is replaced by women. The reason for this becomes apparent when, shortly after Astra leaves orbit, the Earth is completely destroyed in a global cataclysm! Is the human race doomed? What dangers and wonders await the crew of the Astra on their journey to Venus? + Harry Hope +Lee Sholem +Herbert J. Leder + 83 + Science Fiction + /qW90BL76PjM1r48BfJihWB9vu1W.jpg + Harry Hope + United States of America + 3.0 + Doomsday Machine + 1972 + + + $ +153393#Seamon Glass#Deputy Sheriff Dan Colter +380051#Thayer Roberts#Jacob Elliot Saunders +1057873#Aubrey Martin#Juney +1057874#Mary Morlas#Cheryl Hudson +29368#Michael Greene#Joe Baragi +536149#Alan Austin#Al Weston +1057875#Carol Kent#Karen Barnes +1097866#Norman Winston#Sam Barnes +115264#Ron Starr#Clint Delany + /cCgbUXnDyiOtPIayIv0EfiXQQup.jpg + US|Not Rated + GPA Productions + A highway patrolman stops motorists on a highway after he hears news reports of a possible nuclear attack. + Fredric Gadette + 73 + Drama - Action - Thriller - Science Fiction + /5SXG8pSUH8cgEa4sdxPhiRVixKP.jpg + Murray De Atley +Fredric Gadette + United States of America + 5.0 + This Is Not a Test + 1962 + + + $ +29760#Richard Arlen#Johnny Maverick +90384#Arline Judge#Nan Deering +34285#William Frawley#Oliver Westbrook +33359#Buster Crabbe#Mike Rawlins +50971#Arthur Hunnicutt#'Watchfob' Jones +3339#Elisha Cook Jr.#Harold 'Chicopee' Nevins +112009#Ralph Sanford#'Grits' O'Malley +22606#Alec Craig#Joseph D. Campbell +265594#John Dilson#Gus Sloane +34279#Will Wright#John 'Paw' Smithers +1263061#William Benedict#Bud Smithers + /2k7BbqYnvGJ8dqahDHCNmj8Yfu9.jpg + Pine-Thomas Productions +Paramount + Wildcatter Johnny Maverick and his pal go to a town in oil country offering $25,000 to the person who brings in the first well. They find oil on the outskirts but have to sell a share to a promoter who hires Johnny's old enemy. + Frank McDonald + 70 + Drama + /ce8XDq0SElwWxBd0KAoIxFFRm9Z.jpg + William H. Pine +William C. Thomas + United States of America + Wildcat + 1942 + + + $ +21181#Fabio Testi#Renzo +55654#Janet Ågren#Helga +35826#Siegfried Rauch#Der Baron +22531#Herbert Fux#Peter +22635#Rolf Eden#Kurt + The Uranium Conspiracy + This feature was shot in the midst of some of Europe's most stunning scenery. The story focuses on the efforts of an espionage agent, played by Italian heartthrob Fabio Testi, to secure a uranium shipment that has been targeted by an enemy power. + Menahem Golan +Gianfranco Baldanello + 96 + Action - Drama - Thriller - Crime + /1gBSr9ycjR9F5mop6vk2XRSEejJ.jpg + Germany +Israel +Italy + Agenten kennen keine Tränen + 1978 + + + $ +13565#Steve McQueen#George Fowler +46612#David Clarke#Gino +13787#Crahan Denton#John Egan +46613#James Dukas#Willie the Driver +108729#Molly McCarthy#Ann +1866775#Martha Gable#Eddie's Wife +1866776#Larry Gerst#Eddie + /psVERRefMmjRuv07ZXuzEJhJZVH.jpg + Columbia Broadcasting System (CBS) +Charles Guggenheim & Associates + Career criminals (David Clarke, Graham Denton) and a local youth (Steve McQueen) carefully plan and rehearse the robbery of a Missouri bank. + Charles Guggenheim +John Stix + 85 + Crime - Thriller + /jYFyqnfcwWZzuZvH1wl3SiUKhOr.jpg + Charles Guggenheim +Jane Bridges +Katherine Drescher +Helen Hagen +Lee Hammond + United States of America + 6.0 + The Great St. Louis Bank Robbery + 1959 + + + $ +124851#Michael O'Shea#Jack London +30124#Susan Hayward#Charmian Kittredge +89684#Osa Massen#Freda Maloof +11502#Harry Davenport#Prof. Hilliard +107684#Frank Craven#Old Tom +13579#Virginia Mayo#Mamie +103449#Ralph Morgan#George Brett +12502#Jonathan Hale#Kerwin Maxwell +34508#Edward Earle#James Hare + US|Approved + Samuel Broston Productions + The true story of the adventurous and remarkable life of the American novelist Jack London(1876-1916). + Alfred Santell + 94 + Adventure - Drama - Action - Romance + /oqQjDT0Wu13wjHvj0RIinoFBfiE.jpg + Samuel Bronston + United States of America + 6.0 + Jack London + 1943 + + + $ +14502#John Ireland#Frank Webster +10487#Dorothy Malone#Connie Adair +85765#Bruce Carlisle#Faber +34509#Iris Adrian#Wilma Belding +31265#Marshall Bradford#Mr. Hillman +98164#Bruno VeSota#Bob Nielson +85773#Byrd Holland#Doctor +85774#Larry Thor#Detective Sergeant +45164#Henry Rowland#Motorist in Park +85760#Jean Howell#Sally Phillips +85775#Dick Pinner#State Trooper + /bkFbtopurSl540Ci8prGxvVn9G1.jpg + US|Approved + American Releasing Corporation (ARC) (II) +Palo Alto Productions + A man wrongly imprisoned for murder breaks out of jail. He wants to clear his name, but with the police pursuing him, he's forced to take a beautiful young woman, driving a fast sports car, hostage and slip into a cross-border sports car race to try to make it to Mexico before the police get him. + John Ireland +Edward Sampson + 73 + Action - Crime - Drama + /twWJWolTI0UN1DxsmK6pnf14E5D.jpg + Jack Milner +David Kramarsky +Roger Corman + United States of America + 3.0 + The Fast and the Furious + 1955 + + + $ +9208#Robert Wagner#Tony Petrakis +33716#Terry Moore#Gwyneth Rhys +29273#Gilbert Roland#Mike Petrakis +30686#J. Carrol Naish#Socrates Houlis +16420#Richard Boone#Thomas Rhys +89215#Angela Clarke#Mama Petrakis +9111#Peter Graves#Arnold Dix +29285#Jay Novello#Sinan +84559#Jacques Aubuchon#Demetrios Sofotes +132256#Gloria Gordon#Penny Petrakis +4316#Harry Carey, Jr.#Griff Rhys + /3mwUMyZZcufrfLMrRArbwcnNmya.jpg + 20th Century Fox + Mike and Tony Petrakis are a Greek father and son team who dive for sponges off the coast of Florida. After they are robbed by crooks, Arnold and the Rhys brothers, Mike decides to take his men to the dangerous 12-mile reef to dive for more sponges. Mike suffers a fatal accident when he falls from the reef leaving Tony to carry on the business. But now he has a companion, Gwyneth Rhys. + Robert D. Webb + 102 + Adventure + /w1fW94xNdEgFfANbNGCJ7tTaNE8.jpg + Robert Bassler + United States of America + 5.0 + Beneath the 12-Mile Reef + 1953 + + + $ +29260#Wallace Beery#Magua +148527#Barbara Bedford#Cora Munro +123585#Alan Roscoe#Uncas +1384807#Lillian Hall#Alice Munro +1384808#Henry Woodward#Maj. Heyward +1327229#James Gordon#Col. Munro +1042290#George Hackathorne#Capt. Randolph +29272#Nelson McDowell#David Gamut - a Preacher +1363924#Harry Lorraine#Hawkeye - Scout +33383#Theodore Lorch#Chingachgook +1377897#Sydney Deane#Gen. Webb + /8ZfVinPGln97EDvvA3Kss8EMRF5.jpg + US|Not Rated + Maurice Tourneur Productions + As Alice and Cora Munro attempt to find their father, a British officer in the French and Indian War, they are set upon by French soldiers and their cohorts, Huron tribesmen led by the evil Magua. Fighting to rescue the women are Chingachgook and his son Uncas, the last of the Mohican tribe, and their white ally, the frontiersman Natty Bumppo, known as Hawkeye. + Clarence Brown +Maurice Tourneur + 73 + Adventure - Drama - Action - History + /aJTmtv0zrAVyCv7RnWENVoIU9nf.jpg + Maurice Tourneur + United States of America + 6.0 + The Last of the Mohicans + 1920 + + + $ +14562#Ralph Meeker#Bert Morton +46617#Ida Lupino#Bess Morton +158967#Sean Roche#Tommy Morton +19411#Lloyd Nolan#Dan Montgomery +123632#David Doyle#Klinger +1201075#Kerry Lynn#Priscilla +1201076#Robert Cokjlat#Chunky + US|PG + Peter Perry Productions + Teenagers at a correctional facility devise a plan to rob an armored van. + Bethel Buckalew + 90 + Drama - Crime + /aWSvX7nYKCMyE0dcLUvDmf6k78u.jpg + United States of America + 8.0 + My Boys Are Good Boys + 1978 + + + $ +15999#Steve Sandor#Olie Hand +119717#Rockne Tarkington#Prophet +120105#Richard X. Slattery#Mark Hand +30045#Heidi Vaughn#Mary Hand +5695#Sid Haig#Pill Box + John Proffitt Films + A decorated Vietnam Vet returns to his father's ranch in Arizona just as criminally minded carnies begin to cause trouble. + Daniel Vance + 90 + Drama - Action + /cJEUf4W4EchS7n2YTWppeLFE7pE.jpg + United States of America + 5.0 + The No Mercy Man + 1973 + + + $ +40568#Raimund Harmstorf#Heinz Klett +22622#Amadeus August#Christian Hofbauer +38762#Gianni Macchia#Luigi Belloni +100575#Christine Böhm#Heidi Hofbauer +36509#Ernst H. Hilbich#Ernst Pylobar +42400#Gila von Weitershausen#Marie Lotzmann +44976#Daniela Giordano#Dagmar Neuss +26900#Walter Buschhoff#Walter Lotzmann +26248#Horst Naumann#Dr. Mayer-Lippe +559053#Willy Schultes#Fast Food Operator +32576#Rolf Olsen#Luigi's Boss + /4wlkOo9TMVKzJdOn0BvqeGJSbro.jpg + Lisa Film GmbH (München) +Divina-Film GmbH & Co. KG (München) +Cineproduzioni Daunia 70 + Bloody Friday + Womansing thug Klett is sprung from the courthouse by two accomplices, then sets about planning the big heist of a local bank, equipped with a cache of high-powered weapons he's acquired from an American army outpost. Together with his faithful protégé, who reluctantly on-boards his young girlfriend and her AWOL brother, the quartet bumble their way through the supposedly full-proof plan that aims to deliver them a cool million in cash and a new life in Australia. Predictably, things deteriorate quickly at every turn. (from IMDB) + Rolf Olsen + 94 + Crime - Action - Drama + /gmgRiGUD7KhLrOgkHxn6IKt9lUU.jpg + Karl Spiehs + Germany +Italy + 5.0 + Blutiger Freitag + 1972 + + + $ +1474374#Raymond Elmendorf#Harry +1474375#Pamela Baker#Dr. Johnson +1474376#Navarre Perry#Ben Curtis +1474377#Teresa Mae Allen#Elaine Curtis +1474378#Jeff O'Haco#Animal +67298#Linda Dona#Pretty Lady +1090882#Herb Kronsberg#Walter Burns +44165#Murray Cruchley#Lou Cramer +1474379#Georgia Lambron#Swimmer +1474380#Pamela Mann#Daughter + Visto International Inc. +Gilmark Pictures + Psychological horror film starring Raymond Elemedorf as Harry Curtis, a man who suffers a near fatal breakdown after losing both his wife and his job within a short period of time. His brother then sets him up as a caretaker of an old vacant motel, where he encounters strange attackers who may - or may not - be real. + Mark G. Gilhuis + 96 + Thriller - Horror + /426HdqVh28vwqoKaVFDaWXXnKZg.jpg + Mark G. Gilhuis +Philip Yordan + United States of America + 5.0 + Bloody Wednesday + 1987 + + + $ +10169#Telly Savalas#Frank Cooper +74273#Danny De La Paz#Benny Romero +11998#Eddie Albert#Moffat +3172#Michael V. Gazzo#Chico Suarez +941473#Cecilia Camacho#Leina Romero +53011#Mary McCusker#Hippie Girl +105170#Robin Clarke#Officer Eddie Hale + The Border + Frank Cooper, a senior immigration police, remains a daily struggle against mafias operating between Mexico and the United States. Although it has a good standing with the poorest of Mexican towns near the border. Two are Leina and Benny, a couple of young boys who have decided to marry and have chosen Frank as best man. The problems are not slow to appear when Suarez, a mobster local forces Benny to work for him in their dirty business. Now, for Frank, the job becomes personal. + Christopher Leitch + 78 + Action + /bAfi5fLGZJLwhlcEwVrW0QnlapS.jpg + United Kingdom + 5.0 + Border Cop + 1980 + + + $ +71375#Alden Ehrenreich#Han Solo +1709041#Joonas Suotamo#Chewbacca +1223786#Emilia Clarke#Qi'ra +57755#Woody Harrelson#Tobias Beckett +119589#Donald Glover#Lando Calrissian +9030#Thandie Newton#Val +1023483#Phoebe Waller-Bridge#L3-37 +205406#John Tui#Korso +6162#Paul Bettany#Dryden Vos +15277#Jon Favreau#Rio Durant (voice) +1672504#Erin Kellyman#Enfys Nest + /bJekWFxi4FwojQbKfTaW3iCAMhL.jpg + US|PG-13 + Lucasfilm +Walt Disney Pictures +Allison Shearmur Productions + 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. + Ron Howard + 135 + Action - Adventure - Science Fiction + https://www.starwars.com/films/solo + 2018-12-15 + /3IGbjc5ZC5yxim5W0sFING2kdcz.jpg + Kathleen Kennedy +Allison Shearmur +Simon Emanuel + United States of America + 6.6 + Solo: A Star Wars Story + 2018 + + + $ +13526#Noah Wyle#Flynn Carsen +47953#Sonya Walger#Nicole Noone +64930#Bob Newhart#Judson +6677#Kyle MacLachlan#Edward Wilde +11024#Kelly Hu#Lana +21182#David Dayan Fisher#Rhodes +58184#Jane Curtin#Charlene +3019#Olympia Dukakis#Margie Carsen +20811#Lisa Brenner#Debra +148189#Mario Iván Martínez#Professor Harris +2249#Clyde Kusatsu#Head Monk + /ufCiAwtanx3FKQv1f7E3IuyPccx.jpg + 85890 + Electric Entertainment +ApolloProScreen Filmproduktion +Turner Network Television + When a magical artifact is lifted from his library, a meek librarian sets out to ensure its safe return. + Peter Winther + 106 + Thriller - Adventure - Action - Comedy - Drama - Fantasy - Romance + http://www.tntdrama.com/movies/the-librarian-quest-for-the-spear.html + /428VHqgQ2sWp0ioZ6I90PCOlr2M.jpg + Phillip M. Goldfarb +Gary Hamilton +Kai Schürmann +Jörg Westerkamp + United States of America + 6.1 + The Librarian: Quest for the Spear + 2004 + + + $ +13526#Noah Wyle#Flynn Carsen +5503#Gabrielle Anwar#Emily Davenport +64930#Bob Newhart#Judson +58184#Jane Curtin#Charlene +3019#Olympia Dukakis#Margie Carsen +152244#Peter Butler#Ahjmed +18917#Erick Avari#General Samir +2603#Hakeem Kae-Kazim#Jomo +2962#Robert Foxworth#Uncle Jerry +42376#Zahn McClarnon#Tommy Yellow Hawk +20811#Lisa Brenner#Debra + /wTrzUBg9KYJolFtFFlYasUMfSFg.jpg + 85890 + After retrieving the Crystal Skull in Utah, Flynn Carsen receives a map in the mail with the secret location of King Solomon's Mines. When the scroll is stolen, Judson explains the power of the Key of Solomon's book and assigns Flynn to retrieve the map. The map is useless without the legend piece to decipher it, which is located in Volubilis near the Roman ruins in Morocco. Flynn heads to Casablanca to the ruins where he is chased by a group of mercenaries leaded by General Samir. They too want to find the location of King Solomon's mines. Flynn teams-up with Professor Emily Davenport working in the dig and they escape from General Samir and his men. While traveling to Gedi, they save the local Jomo from death and the trio faces a dangerous journey through the wild Africa. + Jonathan Frakes + 92 + Fantasy - Action - Adventure + /fpedwecERf6PoaNml2Pa8dKncyZ.jpg + United States of America + 6.0 + The Librarian: Return to King Solomon's Mines + 2006 + + + $ +13526#Noah Wyle#Flynn Carsen +64930#Bob Newhart#Judson +34408#Stana Katic#Simone Renoir +52374#Bruce Davison#Professor Lazlo +58184#Jane Curtin#Charlene +174256#Dikran Tulaine#Sergei Kubichek +20496#Jason Douglas#Ivan +1541058#Beth Burvant#Katie +1252477#Aimee Spring Fortier#Student #1 +60884#Earl Maddox#Cousin Horace + /ac2zjyYWjhVsTLtQ3og3Fqxbm1G.jpg + 85890 + Electric Entertainment + While on a dangerous mission to recover the historic Judas Chalice, Flynn is saved by Simone. But when double-crossed by a respected professor and ambushed by a ruthless gang, Flynn realizes Simone's secret, his true mission and a shocking discovery are all lying within a decaying New Orleans crypt. + Jonathan Frakes + 95 + Fantasy - Action - Adventure - Comedy + http://www.tnt.tv/movies/librarian/ + /oqz2HSwcMij8aG8T5vzgvAPg1mo.jpg + Dean Devlin + United States of America + 6.1 + The Librarian: The Curse of the Judas Chalice + 2008 + + + $ +27773#Jonathan Brandis#Bastian Bux +112731#Kenny Morrison#Atreyu +149409#Clarissa Burt#Xayide +124546#John Wesley Shipp#Barney +38682#Martin Umbach#Nimbly +139846#Alexandra Johnes#kindliche Kaiserin +124435#Thomas Hill#Koreander +133136#Helena Michell#Bastians Mutter +162020#Christopher Burton#Tri Face +1138031#Patricia Fugger#Instrument Spinster +4540#Birge Schade#Windbride + /mW9wPhugQBG1Kw2WDyuorsPBWkX.jpg + EN|PG + 91430 + Dieter Geissler Filmproduktion +Bavaria Film +Cinevox Filmproduktion GmbH + 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. + George T. Miller + 89 + Drama - Family - Fantasy - Adventure + /phOI8kStf6pSxsAI3OaBpiw0ypZ.jpg + Dieter Geissler + Germany +United States of America + 5.5 + The NeverEnding Story II: The Next Chapter + 1990 + + + $ +3223#Robert Downey Jr.#Tony Stark / Iron Man +16828#Chris Evans#Steve Rogers / Captain America +103#Mark Ruffalo#Bruce Banner / Hulk +74568#Chris Hemsworth#Thor Odinson +1245#Scarlett Johansson#Natasha Romanoff / Black Widow +17604#Jeremy Renner#Clint Barton / Hawkeye +91606#Tom Hiddleston#Loki +2231#Samuel L. Jackson#Nick Fury +9048#Clark Gregg#Agent Phil Coulson +71189#Cobie Smulders#Agent Maria Hill +1640#Stellan Skarsgård#Erik Selvig + /hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg + US|PG-13 + 86311 + Marvel Studios + 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! + Joss Whedon + 143 + Science Fiction - Action - Adventure + http://marvel.com/avengers_movie/ + /cezWGskPY5x7GaglTTRN4Fugfb8.jpg + Kevin Feige + United States of America + 7.6 + The Avengers + 2012 + + + $ +18259#Jason James Richter#Bastian Bux +57236#Melody Kay#Nicole +27111#Kevin McNulty#Barney Bux +134061#Tracey Ellis#Jane Bux +70851#Jack Black#Slip +134063#Carole Finn#Mookie +95645#Ryan Bollman#Dog +12517#Freddie Jones#Coreander / Old Man of Wandering Mountain +13364#Julie Cox#The Childlike Empress +189921#Moya Brady#Urgl +87385#Tony Robinson#Engywook + /qJSluTZn0roCJ6EaxFo52w8OUVO.jpg + US|G + 91430 + Studio Babelsberg +Dieter Geissler Filmproduktion +Cinevox Filmproduktion GmbH + 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. + Peter MacDonald + 95 + Fantasy - Family + /qWvj3Ls7PQtz5L1eZpfoj5058Yz.jpg + Heinz Bibo +Dieter Geissler +Tim Hampton + Germany +United States of America + The NeverEnding Story III + 1994 + + + $ +64470#Katie Stuart#Meg Murry +20814#Gregory Smith#Calvin O'Keefe +26292#David Dorfman#Charles Wallace Murry +72997#Chris Potter#Dr. Jack Murry +40258#Kyle Secor#The Man With Red Eyes +104196#Sean Cullen#Happy Medium +59183#Sarah-Jane Redmond#Dr. Dana Murry +18794#Kate Nelligan#Mrs. Which +15675#Alison Elliott#Mrs. Who +1981#Alfre Woodard#Mrs. Whatsit +1228341#Munro Chambers#Sandy Murry + /kKNNyqbHA4l9k2T2VGY8FlnHxW9.jpg + BLT Productions + Based on a children's series by the same name. Meg and Charles Wallace are aided by Calvin and three interesting women in the search for their father who disappeared during a government experiment. Their travels take them around the universe to a place unlike any other. + John Kent Harrison + 128 + Drama - Science Fiction - Family - TV Movie + /mMES5XApmhBmc06RxsT1a0DmUHQ.jpg + Canada + 5.8 + A Wrinkle in Time + 2003 + + + $ +5168#Gabriel Byrne#Papa Reilly +6913#Ellen Barkin#Kathleen +110333#Ciarán Fitzgerald#Ossie +65733#Rúaidhrí Conroy#Tito +1282#David Kelly#Grandfather +931885#Johnny Murphy#Tracker +17782#Colm Meaney#Barreller +20282#John Kavanagh#Hartnett +2039#Brendan Gleeson#Inspector Bolger +14950#Jim Norton#Superintendant O'Mara +89394#Anita Reeves#Mrs. Murphy + /eqnPKYMHMwjO5VhhgY8UycxSyfK.jpg + Channel Four Films +Little Bird + Accused of a crime they didn't commit, two city kids and a magical horse are about to become the coolest outlaws ever to ride Into The West. + Mike Newell + 97 + Adventure - Drama - Family - Fantasy + http://www.miramax.com/movie/into-the-west/ + /k9e63dUNxu5MtXCCB3trUXtXX58.jpg + Ireland + 6.0 + Into the West + 1992 + + + $ +194#Richard Harris#King George II +115573#Glenda Jackson#Queen Caroline +6637#Frank Finlay#Edward Coke +14464#Jenny Agutter#Hannah Coke +15788#Nigel Hawthorne#Achmet +81267#Navin Chowdhry#Agba +14371#Anthony Quayle#Lord Granville +386#Peter Vaughan#Captain +385#Ian Richardson#Bey of Tunis +18906#Neil Dickson#Earl of Godolphin +8225#Barry Foster#Mr. Williams + Miramax +Davis-Panzer Productions +Harlech Television (HTV) + In 1727, an Arab colt is born with the signs of the wheat ear and the white spot on his heel: evil and good. And thus begins the life of Sham. He is a gift to the King of France, through a series of adventures with his faithful stable boy, Agba, he becomes the Godolphin Arabian, the founder of one of the greatest thoroughbred racing lines of all time. + Peter Duffell + 103 + Adventure + /vyEkY46ztnqj9RdvKN2bRpoIXGr.jpg + United Kingdom + 5.0 + King of the Wind + 1990 + + + $ +1315036#Daisy Ridley#Rey +236695#John Boyega#Finn +25072#Oscar Isaac#Poe Dameron +1023139#Adam Driver#Kylo Ren +2#Mark Hamill#Luke Skywalker / Dobbu Scay (voice) +4#Carrie Fisher#General Leia Organa +1663195#Kelly Marie Tran#Rose Tico +4784#Laura Dern#Vice Admiral Amilyn Holdo +1709041#Joonas Suotamo#Chewbacca +1121#Benicio del Toro#DJ +7908#Frank Oz#Yoda (voice) + /baNQpUlmX8shVmJBGHMSL5Y6MBl.jpg + US|PG-13 + 10 + Lucasfilm +Walt Disney Pictures +Ram Bergman Productions + 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. + Rian Johnson + 152 + Fantasy - Adventure - Science Fiction - Action + http://www.starwars.com + /kOVEVeg59E0wsnXmF9nrh6OmWII.jpg + Ram Bergman +Simon Kinberg + Bolivia +Ireland +Croatia + 7.1 + Star Wars: The Last Jedi + 2017 + + + $ +74568#Chris Hemsworth#Thor Odinson +91606#Tom Hiddleston#Loki +112#Cate Blanchett#Hela +17605#Idris Elba#Heimdall +4785#Jeff Goldblum#En Dwi Gast / Grandmaster +62561#Tessa Thompson#Scrapper 142 / Valkyrie +1372#Karl Urban#Skurge / Executioner +103#Mark Ruffalo#Bruce Banner / The Hulk +4173#Anthony Hopkins#Odin +71580#Benedict Cumberbatch#Stephen Strange / Doctor Strange +55934#Taika Waititi#Korg / Surtur / Hulk (mo-cap) + /kaIfm5ryEOwYg8mLbq8HkPuM1Fo.jpg + US|PG-13 + 131296 + Marvel Studios +Walt Disney Pictures + 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. + Taika Waititi + 131 + Action - Adventure - Comedy - Fantasy + https://marvel.com/movies/movie/222/thor_ragnarok + /rzRwTcFvttcN1ZpX2xv4j3tSdJu.jpg + Kevin Feige + United States of America + 7.5 + Thor: Ragnarok + 2017 + + + $ +74568#Chris Hemsworth#Thor Odinson +524#Natalie Portman#Jane Foster +91606#Tom Hiddleston#Loki +4173#Anthony Hopkins#Odin +1640#Stellan Skarsgård#Erik Selvig +52852#Kat Dennings#Darcy Lewis +9048#Clark Gregg#Phil Coulson +10132#Colm Feore#King Laufey +17605#Idris Elba#Heimdall +56614#Ray Stevenson#Volstagg +13275#Tadanobu Asano#Hogun + /LvmmDZxkTDqp0DX7mUo621ahdX.jpg + 131296 + Marvel Studios + 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. + Kenneth Branagh + 115 + Adventure - Fantasy - Action + http://thor.marvel.com/ + /9zDwvsISU8bR15R2yN3kh1lfqve.jpg + Kevin Feige + United States of America + 6.7 + Thor + 2011 + + + $ +74568#Chris Hemsworth#Thor Odinson +524#Natalie Portman#Jane Foster +91606#Tom Hiddleston#Loki +4173#Anthony Hopkins#Odin +2040#Christopher Eccleston#Malekith +59817#Jaimie Alexander#Sif +69899#Zachary Levi#Fandral +56614#Ray Stevenson#Volstagg +13275#Tadanobu Asano#Hogun +17605#Idris Elba#Heimdall +14343#Rene Russo#Frigga + /3FweBee0xZoY77uO1bhUOlQorNH.jpg + 131296 + Marvel Studios + 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. + Alan Taylor + 112 + Action - Adventure - Fantasy + https://www.marvel.com/movies/thor-the-dark-world + /bnX5PqAdQZRXSw3aX3DutDcdso5.jpg + Kevin Feige +Kenneth Branagh + United States of America + 6.7 + Thor: The Dark World + 2013 + + + $ +8977#Craig T. Nelson#Bob Parr / Mr. Incredible (voice) +18686#Holly Hunter#Helen Parr / Elastigirl (voice) +59361#Sarah Vowell#Violet Parr (voice) +59360#Spencer Fox#Dashiell 'Dash' Parr (voice) +11662#Jason Lee#Buddy Pine / Syndrome (voice) +2231#Samuel L. Jackson#Lucius Best / Frozone (voice) +7430#Elizabeth Peña#Mirage (voice) +7087#Brad Bird#Edna Mode (voice) +7918#Bud Luckey#Rick Dicker (voice) +12900#Wallace Shawn#Gilbert Huph (voice) +7962#Lou Romano#Bernie Kropp (voice) + /wiDGnsn9RtNglgKQy4J1jZQBG5v.jpg + 468222 + Pixar +Walt Disney Pictures + 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. + Brad Bird + 115 + Action - Adventure - Animation - Family + http://disney.go.com/disneyvideos/animatedfilms/incredibles/main.html + /2LqaLgk4Z226KkgPJuiOQ58wvrm.jpg + John Walker + United States of America + 7.7 + The Incredibles + 2004 + + + $ +2130#Cary Elwes#Westley +32#Robin Wright#The Princess Bride +25503#Mandy Patinkin#Inigo Montoya +25504#André the Giant#Fezzik +14541#Chris Sarandon#Prince Humperdinck +13524#Christopher Guest#Count Tyrone Rugen +12900#Wallace Shawn#Vizzini +2314#Peter Falk#The Grandfather / Narrator +7904#Billy Crystal#Miracle Max +2223#Fred Savage#The Grandson +10556#Carol Kane#Valerie + /oaXyPP3HNW0gBl0ZGXLhJOdACeH.jpg + The Princess Bride Ltd. +Buttercup Films Ltd. +Act III Productions + 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. + Rob Reiner + 99 + Adventure - Family - Fantasy - Comedy - Romance + http://princessbrideforever.com/ + /gpxjoE0yvRwIhFEJgNArtKtaN7S.jpg + Andrew Scheinman +Rob Reiner + United States of America + 7.7 + The Princess Bride + 1987 + + + $ +3392#Michael Douglas#Charles Remington +5576#Val Kilmer#Col. John Henry Patterson +207#Tom Wilkinson#Robert Beaumont +51878#John Kani#Samuel +1246#Emily Mortimer#Helena Patterson +1369#Bernard Hill#Dr. David Hawthorne +18280#Brian McCardie#Angus Starling +11851#Om Puri#Abdullah +143476#Henry Cele#Mahina +667748#Kurt Egelhof#Indian Victim +1556203#Satchu Annamalai#Worker + /6WnOmyB03Wqwssms5Wc89SBDN02.jpg + US|R + Constellation Films +Paramount + Sir Robert Beaumont is behind schedule on a railroad in Africa. Enlisting noted engineer John Henry Patterson to right the ship, Beaumont expects results. Everything seems great until the crew discovers the mutilated corpse of the project's foreman, seemingly killed by a lion. After several more attacks, Patterson calls in famed hunter Charles Remington, who has finally met his match in the bloodthirsty lions. + Stephen Hopkins + 109 + Adventure + /3KEPs6RKlin9pT9fqjtW7MSLC8H.jpg + A. Kitman Ho +Gale Anne Hurd +Paul B. Radin + Germany +United States of America + 6.0 + The Ghost and the Darkness + 1996 + + + $ + + US|R + Compilation DVD by Vintage Home Entertainment, Inc. containg 3 Bruce Lee movies. Fists of Fury, The Real Bruce Lee, and Fist ofFear/Touch of Death. + 270 + /svgjTv1YTxazFWBKfzoXJpRLIHg.jpg + Fighting Fists of Bruce Lee + 2003 + + + $ +18260#August Schellenberg#Grandpa +117432#Eddie Spears#Shane +15439#Gary Farmer#Iktome +237532#John Trudell#Coyote +84219#Chaske Spencer#Eagle Boy +1134745#Teneil Whiskeyjack#Quillwork / Powwow Girl +173866#Alex Rice#She Crosses The Water +154647#Michael Greyeyes#Thunder Spirit +7863#Tantoo Cardinal#Old Pawnee Woman +941974#Dakota House#Dirty Belly +117434#Sean Wei Mah#High Horse + /gJKVl6lsAoxVhYMAnuEu3ZHcaM.jpg + Hallmark Entertainment +Canadian Film or Video Production Tax Credit Fund (CPTC) +RTL + In South Dakota, in an Indian reservation, an old storyteller Indian asks his grandson Shane, who is in trouble owing money to some bad guys, to take his old pony and him to Albuquerque to the great powwow, an Indian meeting. While traveling, Grandpa tells mysterious Indian tales of love, friendship and magic. + Steve Barron + 174 + Fantasy - Drama + /iD27Fb7fMXTQBvxu14qAbk2saau.jpg + Ron McLeod +Matthew O'Connor + Canada +Germany +United States of America + 7.0 + Dreamkeeper + 2003 + + + $ +3223#Robert Downey Jr.#Tony Stark / Iron Man +16828#Chris Evans#Steve Rogers / Captain America +103#Mark Ruffalo#Bruce Banner / Hulk +74568#Chris Hemsworth#Thor Odinson +1245#Scarlett Johansson#Natasha Romanoff / Black Widow +17604#Jeremy Renner#Clint Barton / Hawkeye +1896#Don Cheadle#James Rhodes / War Machine +22226#Paul Rudd#Scott Lang / Ant-Man +172069#Chadwick Boseman#T'Challa / Black Panther +71580#Benedict Cumberbatch#Stephen Strange / Doctor Strange +60073#Brie Larson#Carol Danvers / Captain Marvel + /7RyHsO4yDXtBv1zUU3mTpHeQ0d5.jpg + US|PG-13 + 86311 + Marvel Studios + 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. + Joe Russo, Anthony Russo + 181 + Adventure - Science Fiction - Action + https://www.marvel.com/movies/avengers-endgame + /or06FN3Dka5tukK1e9sl16pB3iy.jpg + Kevin Feige + United States of America + 8.3 + Avengers: Endgame + 2019 + + + $ +11701#Angelina Jolie#Lara Croft +10127#Jon Voight#Lord Richard Croft +20508#Iain Glen#Manfred Powell +1284#Noah Taylor#Bryce +8784#Daniel Craig#Alex West +20510#Richard Johnson#Distinguished Gentleman +20511#Chris Barrie#Hillary +7031#Julian Rhind-Tutt#Mr. Pimms +10655#Leslie Phillips#Wilson +20509#Robert Phillips#Assault Team Leader +20512#Rachel Appleton#Young Lara + /806IiIwpOKek2XIFnnvbAYRfqpb.jpg + 2467 + Paramount +Toho-Towa +Mutual Film Company + 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. + Simon West + 100 + Adventure - Fantasy - Action - Thriller + /m6aodY7SrvlTRiUFkxClaNAIQT.jpg + Colin Wilson +Lawrence Gordon +Lloyd Levin +Michael Levy +Jib Polhemus + Cambodia +United States of America + 5.8 + Lara Croft: Tomb Raider + 2001 + + + $ +11701#Angelina Jolie#Lara Croft +17276#Gerard Butler#Terry Sheridan +1284#Noah Taylor#Bryce +938#Djimon Hounsou#Kosa +1844#Til Schweiger#Sean +20519#Simon Yam#Chen Lo +19875#Daniel Caltagirone#Nicholas Petraki +20520#Fabiano Martell#Jimmy Petraki +20522#Robert Cavanah#MI6 Agent Stevens +20523#Ronan Vibert#MI6 Agent Calloway +20511#Chris Barrie#Hillary + /htpsiWvI6AO1XsAiOa2lbLaiHlT.jpg + 2467 + Paramount +Mutual Film Company +BBC + 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. + Jan de Bont + 117 + Action - Adventure - Fantasy - Thriller + /pkSnQzjjQ3Z9B2CJVSZCfL0Ea3s.jpg + Lawrence Gordon +Lloyd Levin + United States of America +Germany +Japan + 5.7 + Lara Croft: Tomb Raider - The Cradle of Life + 2003 + + + $ +973667#Rosa Salazar#Alita +27319#Christoph Waltz#Dr. Dyson Ido +6161#Jennifer Connelly#Chiren +932967#Mahershala Ali#Vector +1047649#Ed Skrein#Zapan +17183#Jackie Earle Haley#Grewishka +1448516#Keean Johnson#Hugo +1452046#Lana Condor#Koyomi +1563266#Jorge Lendeborg Jr.#Tanji +1222992#Eiza González#Nyssiana +20495#Jeff Fahey#McTeague + /8RKBHHRqOMOLh5qW3sS6TSFTd8h.jpg + US|PG-13 + Troublemaker Studios +Lightstorm Entertainment +20th Century Fox + 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. + Robert Rodriguez + 122 + Action - Science Fiction - Thriller - Adventure + https://www.foxmovies.com/movies/alita-battle-angel + /xRWht48C2V8XNfzvPehyClOvDni.jpg + Robert Rodriguez, James Cameron, Jon Landau + United States of America + 6.9 + Alita: Battle Angel + 2019 + + + $ +880#Ben Affleck#Bruce Wayne / Batman +73968#Henry Cavill#Clark Kent / Superman / Kal-El +90633#Gal Gadot#Diana Prince / Wonder Woman +132157#Ezra Miller#Barry Allen / Flash +117642#Jason Momoa#Arthur Curry / Aquaman +1313559#Ray Fisher#Victor Stone / Cyborg +8785#Ciarán Hinds#Steppenwolf (voice) +9273#Amy Adams#Lois Lane +16940#Jeremy Irons#Alfred Pennyworth +2882#Diane Lane#Martha Kent +935#Connie Nielsen#Queen Hippolyta + /o5T8rZxoWSBMYwjsUFUqTt6uMQB.jpg + US|PG-13 + 468551 + DC Comics +DC Entertainment +RatPac-Dune Entertainment + 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. + Zack Snyder + 120 + Action - Adventure - Fantasy - Science Fiction + http://www.justiceleaguethemovie.com + /eifGNCSDuxJeS1loAXil5bIGgvC.jpg + Charles Roven, Jon Berg, Deborah Snyder, Geoff Johns + United States of America + 6.2 + Justice League + 2017 + + + $ +37632#Eddie Redmayne#Newt Scamander +72466#Colin Farrell#Percival Graves +77795#Katherine Waterston#Porpentina "Tina" Goldstein +58873#Dan Fogler#Jacob Kowalski +998225#Alison Sudol#Queenie Goldstein +10127#Jon Voight#Henry Shaw Sr +2372#Ron Perlman#Gnarlack +85#Johnny Depp#Gellert Grindelwald +37153#Zoë Kravitz#Leta Lestrange +132157#Ezra Miller#Credence Barebone +2206#Samantha Morton#Mary Lou Barebone + /7GrpqAs0oDcFcwFwyygnUI7BrZA.jpg + US|PG-13 + 435259 + Heyday Films +Warner Bros. Pictures + 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. + David Yates + 133 + Adventure - Family - Fantasy + http://www.fantasticbeasts.com/ + /1M91Bt3oGspda75H9eLqYZkJzgO.jpg + J.K. Rowling, Steve Kloves, David Heyman, Lionel Wigram + United Kingdom + 7.4 + Fantastic Beasts and Where to Find Them + 2016 + + + $ +37632#Eddie Redmayne#Newt Scamander +77795#Katherine Waterston#Porpentina "Tina" Goldstein +998225#Alison Sudol#Queenie Goldstein +85#Johnny Depp#Gellert Grindelwald +9642#Jude Law#Albus Dumbledore +58873#Dan Fogler#Jacob Kowalski +132157#Ezra Miller#Credence Barebone +37153#Zoë Kravitz#Leta Lestrange +1371041#Callum Turner#Theseus Scamander +1401531#Claudia Kim#Nagini / The Maledictus +37158#Carmen Ejogo#Seraphina Picquery + /qrtRKRzoNkf5vemO9tJ2Y4DrHxQ.jpg + US|PG-13 + 435259 + Warner Bros. Pictures +Heyday Films + 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. + David Yates + 134 + Adventure - Fantasy - Family + http://www.fantasticbeasts.com + /fMMrl8fD9gRCFJvsx0SuFwkEOop.jpg + J.K. Rowling, Steve Kloves, David Heyman, Lionel Wigram + United Kingdom +United States of America + 6.8 + Fantastic Beasts: The Crimes of Grindelwald + 2018 + + + $ +60073#Brie Larson#Carol Danvers / Vers / Captain Marvel +2231#Samuel L. Jackson#Nick Fury +77335#Ben Mendelsohn#Talos / Keller +9642#Jude Law#Yon-Rogg +516#Annette Bening#Supreme Intelligence / Dr. Wendy Lawson +938#Djimon Hounsou#Korath +72095#Lee Pace#Ronan the Accuser +1360281#Lashana Lynch#Maria Rambeau +97576#Gemma Chan#Minn-Erva +9048#Clark Gregg#Agent Phil Coulson +76618#Rune Temte#Bron-Charr + /w2PMyoyLU22YvrGK3smVM9fW1jj.jpg + 623911 + Marvel Studios + 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. + Ryan Fleck, Anna Boden + 124 + Action - Adventure - Science Fiction + https://www.marvel.com/movies/captain-marvel + /AtsgWhDnHTq68L0lLsUrCnM7TjG.jpg + Kevin Feige + United States of America + 7.0 + Captain Marvel + 2019 + + + $ +16828#Chris Evans#Steve Rogers / Captain America +3223#Robert Downey Jr.#Tony Stark / Iron Man +60898#Sebastian Stan#James "Bucky Barnes" / Winter Soldier +1245#Scarlett Johansson#Natasha Romanoff / Black Widow +17604#Jeremy Renner#Clint Barton / Hawkeye +53650#Anthony Mackie#Sam Wilson / Falcon +1896#Don Cheadle#James "Rhodey" Rhodes / War Machine +172069#Chadwick Boseman#T'Challa / Black Panther +6162#Paul Bettany#Vision +550843#Elizabeth Olsen#Wanda Maximoff / Scarlet Witch +22226#Paul Rudd#Scott Lang / Ant-Man + /m5O3SZvQ6EgD5XXXLPIP1wLppeW.jpg + US|PG-13 + 131295 + Marvel Studios + 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. + Anthony Russo +Joe Russo + 147 + Adventure - Action - Science Fiction + http://marvel.com/captainamericapremiere + /kSBXou5Ac7vEqKd97wotJumyJvU.jpg + Kevin Feige + United States of America + 7.3 + Captain America: Civil War + 2016 + + + $ +16828#Chris Evans#Steve Rogers / Captain America +39459#Hayley Atwell#Peggy Carter +1331#Hugo Weaving#Johann Schmidt / Red Skull +2176#Tommy Lee Jones#Col. Chester Phillips +60898#Sebastian Stan#James "Bucky" Barnes +55470#Dominic Cooper#Howard Stark +2283#Stanley Tucci#Abraham Erskine +13014#Toby Jones#Dr. Arnim Zola +30315#Richard Armitage#Heinz Kruger +2203#Neal McDonough#Timothy "Dum Dum" Dugan +15543#Derek Luke#Gabe Jones + /pmZtj1FKvQqISS6iQbkiLg5TAsr.jpg + US|PG-13 + 131295 + Marvel Studios + Predominantly set 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. + Joe Johnston + 124 + Action - Adventure - Science Fiction + http://captainamerica.marvel.com/ + /vSNxAJTlD0r02V9sPYpOjqDZXUK.jpg + Kevin Feige +Victoria Alonso +Mitchell Bell +Stephen Broussard +Richard Whelan + United States of America + 6.0 + Captain America: The First Avenger + 2011 + + + $ +16828#Chris Evans#Steve Rogers / Captain America +1245#Scarlett Johansson#Natasha Romanoff / Black Widow +2231#Samuel L. Jackson#Nick Fury +4135#Robert Redford#Alexander Pierce +60898#Sebastian Stan#James "Bucky" Barnes / Winter Soldier +53650#Anthony Mackie#Sam Wilson / Falcon +84247#Emily VanCamp#Sharon Carter / Agent 13 +81685#Frank Grillo#Brock Rumlow +71189#Cobie Smulders#Agent Maria Hill +1018947#Maximiliano Hernández#Agent Jasper Sitwell +39459#Hayley Atwell#Peggy Carter + /4qfXT9BtxeFuamR4F49m2mpKQI1.jpg + US|PG-13 + 131295 + Marvel Studios + 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. + Joe Russo +Anthony Russo + 136 + Action - Adventure - Science Fiction + http://www.captainamericathewintersoldiermovie.com + /5TQ6YDmymBpnF005OyoB7ohZps9.jpg + Kevin Feige + United States of America + 7.0 + Captain America: The Winter Soldier + 2014 + + + $ +22226#Paul Rudd#Scott Lang / Ant-Man +3392#Michael Douglas#Dr. Hank Pym +19034#Evangeline Lilly#Hope van Dyne +74541#Corey Stoll#Darren Cross / Yellowjacket +21127#Bobby Cannavale#Paxton +53650#Anthony Mackie#Sam Wilson / Falcon +20750#Judy Greer#Maggie +1360010#Abby Ryder Fortson#Cassie +454#Michael Peña#Luis +83854#David Dastmalchian#Kurt +76126#T.I.#Dave + /kvXLZqY0Ngl1XSw7EaMQO0C1CCj.jpg + US|PG-13 + 422834 + Marvel Studios + 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. + Peyton Reed + 117 + Science Fiction - Action - Adventure + http://marvel.com/movies/movie/180/ant-man + /D6e8RJf2qUstnfkTslTXNTUAlT.jpg + Kevin Feige + United States of America + 7.1 + Ant-Man + 2015 + + + $ +22226#Paul Rudd#Scott Lang / Ant-Man +19034#Evangeline Lilly#Hope van Dyne / Wasp +454#Michael Peña#Luis +27740#Walton Goggins#Sonny Burch +21127#Bobby Cannavale#Paxton +20750#Judy Greer#Maggie +76126#T.I.#Dave +83854#David Dastmalchian#Kurt +1408809#Hannah John-Kamen#Ava Starr / Ghost +1360010#Abby Ryder Fortson#Cassie +79082#Randall Park#Jimmy Woo + /6P3c80EOm7BodndGBUAJHHsHKrp.jpg + US|PG-13 + 422834 + Marvel Studios + Just when his time under house arrest is about to end, Scott Lang puts again 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. + Peyton Reed + 119 + Action - Adventure - Science Fiction - Comedy - Family + https://www.marvel.com/movies/ant-man-and-the-wasp + /rv1AWImgx386ULjcf62VYaW8zSt.jpg + Kevin Feige, Stephen Broussard + United States of America + 6.9 + Ant-Man and the Wasp + 2018 + + + $ +73457#Chris Pratt#Peter Quill / Star-Lord +8691#Zoe Saldana#Gamora +543530#Dave Bautista#Drax the Destroyer +12835#Vin Diesel#Groot (voice) +51329#Bradley Cooper#Rocket (voice) +72095#Lee Pace#Ronan the Accuser +12132#Michael Rooker#Yondu Udonta +543261#Karen Gillan#Nebula +938#Djimon Hounsou#Korath +4764#John C. Reilly#Corpsman Dey +515#Glenn Close#Nova Prime + /bHarw8xrmQeqf3t8HpuMY7zoK4x.jpg + US|PG-13 + 284433 + Marvel Studios + 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. + James Gunn + 121 + Action - Science Fiction - Adventure + http://marvel.com/guardians + /y31QB9kn3XSudA15tV7UWQ9XLuW.jpg + Kevin Feige + United States of America + 7.9 + Guardians of the Galaxy + 2014 + + + $ +73457#Chris Pratt#Peter Quill / Star-Lord +8691#Zoe Saldana#Gamora +543530#Dave Bautista#Drax the Destroyer +12835#Vin Diesel#Baby Groot (voice) +51329#Bradley Cooper#Rocket (voice) +12132#Michael Rooker#Yondu Udonta +543261#Karen Gillan#Nebula +139820#Pom Klementieff#Mantis +16483#Sylvester Stallone#Stakar Ogord +6856#Kurt Russell#Ego +1133349#Elizabeth Debicki#Ayesha + /aJn9XeesqsrSLKcHfHP4u5985hn.jpg + US|PG-13 + 284433 + Marvel Studios + The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage. + James Gunn + 137 + Action - Adventure - Comedy - Science Fiction + http://marvel.com/movies/movie/221/guardians_of_the_galaxy_vol_2 + /y4MBh0EjBlMuOzv9axM4qJlmhzz.jpg + Kevin Feige + United States of America + 7.7 + Guardians of the Galaxy Vol. 2 + 2017 + + + $ +3223#Robert Downey Jr.#Tony Stark +12052#Gwyneth Paltrow#Pepper Potts +1896#Don Cheadle#Lt. Col. James "Rhodey" Rhodes +1245#Scarlett Johansson#Natalie Rushman / Natasha Romanoff +2295#Mickey Rourke#Ivan Vanko +6807#Sam Rockwell#Justin Hammer +2231#Samuel L. Jackson#Nick Fury +15277#Jon Favreau#Happy Hogan +9048#Clark Gregg#Agent Coulson +21134#John Slattery#Howard Stark +52865#Garry Shandling#Senator Stern + /jxdSxqAFrdioKgXwgTs5Qfbazjq.jpg + 131292 + Marvel Studios + 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. + Jon Favreau + 124 + Adventure - Action - Science Fiction + http://www.ironmanmovie.com/ + /ArqpkNYGfcTIA6umWt6xihfIZZv.jpg + Kevin Feige +Victoria Alonso +Jeremy Latcham + United States of America + 6.7 + Iron Man 2 + 2010 + + + $ +3223#Robert Downey Jr.#Tony Stark +12052#Gwyneth Paltrow#Pepper Potts +1896#Don Cheadle#Colonel James Rhodes +529#Guy Pearce#Aldrich Killian +2282#Ben Kingsley#Trevor Slattery +15556#Rebecca Hall#Maya Hansen +15277#Jon Favreau#Happy Hogan +18473#James Badge Dale#Savin +121953#Stephanie Szostak#Brandt +6573#William Sadler#President Ellis +6162#Paul Bettany#Jarvis (voice) + /n9X2DKItL3V0yq1q1jrk8z5UAki.jpg + US|PG-13 + 131292 + Marvel Studios + When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution. + Shane Black + 130 + Action - Adventure - Science Fiction + http://marvel.com/ironman3 + /1Ilv6ryHUv6rt9zIsbSEJUmmbEi.jpg + Kevin Feige + United States of America + 6.9 + Iron Man 3 + 2013 + + + $ +18918#Dwayne Johnson#Will Sawyer +9206#Neve Campbell#Sarah Sawyer +101015#Chin Han#Zhao Long Ji +1284#Noah Taylor#Mr. Pierce +57748#Byron Mann#Inspector Wu +59254#Pablo Schreiber#Ben +2072197#McKenna Roberts#Georgia Sawyer +2072198#Noah Cottrell#Henry Sawyer +1609490#Hannah Quinlivan#Xia +33348#Adrian Holmes#Ajani Okeke +203639#Elfina Luk#Sergeant Han + /oMKFQmoVgB69fyXfSMu0lGlHJP2.jpg + Flynn Picture Company +Legendary Entertainment +Seven Bucks Productions + Framed and on the run, a former FBI agent must save his family from a blazing fire in the world's tallest building. + Rawson Marshall Thurber + 102 + Action + https://www.skyscrapermovie.com + /5LYSsOPzuP13201qSzMjNxi8FxN.jpg + Beau Flynn +Dwayne Johnson +Mary Parent +Hiram Garcia + United States of America + 6.2 + Skyscraper + 2018 + + + $ +117642#Jason Momoa#Arthur Curry / Aquaman +55085#Amber Heard#Mera +5293#Willem Dafoe#Nuidis Vulko +17178#Patrick Wilson#King Orm Marius / Ocean Master +2227#Nicole Kidman#Atlanna +16644#Dolph Lundgren#King Nereus +1639847#Yahya Abdul-Mateen II#David Kane / Black Manta +7242#Temuera Morrison#Thomas Curry +1525689#Ludi Lin#Captain Murk +87118#Michael Beach#Jesse Kane (Manta's Father) +79082#Randall Park#Dr. Stephen Shin + /9QusGjxcYvfPD1THg6oW3RLeNn7.jpg + US|PG-13 + 573693 + DC Comics +DC Entertainment +Warner Bros. Pictures + 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. + James Wan + 143 + Action - Adventure - Fantasy + http://www.aquamanmovie.com + /5Kg76ldv7VxeX9YlcQXiowHgdX6.jpg + Charles Roven, Zack Snyder, Rob Cowan, Peter Safran, Deborah Snyder + Australia +United States of America + 6.0 + Aquaman + 2018 + + + $ +62#Bruce Willis#Malcolm Crowe +9640#Haley Joel Osment#Cole Sear +3051#Toni Collette#Lynn Sear +11616#Olivia Williams#Anna Crowe +2680#Donnie Wahlberg#Vincent Grey +11617#Mischa Barton#Kyra Collins +4940#Trevor Morgan#Tommy Tammisimo +10694#Glenn Fitzgerald#Sean +11621#Bruce Norris#Stanley Cunningham +1106256#Angelica Page#Mrs. Collins +11618#Greg Wood#Mr. Collins + /6TjllWT3cGrPFyqDXurVZ3L8bBi.jpg + Spyglass Entertainment +The Kennedy/Marshall Company +Hollywood Pictures + Following an unexpected tragedy, a child psychologist named Malcolm Crowe meets an eight year old boy named Cole Sear, who is hiding a dark secret. + M. Night Shyamalan + 107 + Mystery - Thriller - Drama + /fIssD3w3SvIhPPmVo4WMgZDVLID.jpg + Kathleen Kennedy +Frank Marshall +Barry Mendel + United States of America + 7.9 + The Sixth Sense + 1999 + + + $ +2461#Mel Gibson#Graham Hess +73421#Joaquin Phoenix#Merrill Hess +28042#Rory Culkin#Morgan Hess +17140#Abigail Breslin#Bo Hess +1956#Cherry Jones#Officer Paski +11614#M. Night Shyamalan#Ray Reddy +23627#Patricia Kalember#Colleen Hess +28043#Ted Sutton#SFC Cunningham +28044#Merritt Wever#Tracey Abernathy, the Pharmacist +3204#Lanny Flaherty#Mr. Nathan +28046#Marion McCorry#Mrs. Nathan + /aMiI1j9L8V1EBL0CNZaekQC9AW3.jpg + Touchstone Pictures +Blinding Edge Pictures +The Kennedy/Marshall Company + A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come. + M. Night Shyamalan + 106 + Drama - Thriller - Science Fiction - Mystery + /hyZkNEbNgnciUVTyu4NZTjlCh4L.jpg + Sam Mercer +Frank Marshall +M. Night Shyamalan + United States of America + 6.6 + Signs + 2002 + + + $ +18997#Bryce Dallas Howard#Ivy Walker +73421#Joaquin Phoenix#Lucius Hunt +3490#Adrien Brody#Noah Percy +227#William Hurt#Edward Walker +10205#Sigourney Weaver#Alice Hunt +2039#Brendan Gleeson#August Nicholson +1956#Cherry Jones#Mrs. Clack +1989#Celia Weston#Vivian Percy +51532#John Christopher Jones#Robert Percy +1479#Frank Collison#Victor +20750#Judy Greer#Kitty Walker + /hGJ7aub1TgMCT4T3EZ92sA8Wydt.jpg + Touchstone Pictures +Blinding Edge Pictures +Scott Rudin Productions + When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever. + M. Night Shyamalan + 108 + Drama - Mystery - Thriller + /v7UvYtKfIVaHLaHwVgfalyrK7Ho.jpg + Sam Mercer +Scott Rudin +M. Night Shyamalan + United States of America + 6.4 + The Village + 2004 + + + $ +5292#Denzel Washington#Sam Chisolm +73457#Chris Pratt#Joshua Farraday +569#Ethan Hawke#Goodnight Robicheaux +7132#Vincent D'Onofrio#Jack Horne +25002#Lee Byung-hun#Billy Rocks +1168097#Manuel Garcia-Rulfo#Vasquez +1584347#Martin Sensmeier#Red Harvest +133#Peter Sarsgaard#Bartholomew Bogue +58754#Haley Bennett#Emma Cullen +66743#Matt Bomer#Matthew Cullen +56680#Luke Grimes#Teddy + /wOH0JO1QBfLyrkV5VJDR957LhNL.jpg + Escape Artists +Columbia Pictures +Village Roadshow Pictures + 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. + Antoine Fuqua + 132 + Adventure - Action - Western + http://www.sonypictures.com/movies/themagnificentseven/ + /ezcS78TIjgr85pVdaPDd2rSPVNs.jpg + Roger Birnbaum +Todd Black + United States of America + 6.3 + The Magnificent Seven + 2016 + + + $ +94185#Shailene Woodley#Beatrice "Tris" Prior +587020#Theo James#Tobias "Four" Eaton +15852#Ashley Judd#Natalie Prior +224181#Jai Courtney#Eric Coulter +56614#Ray Stevenson#Marcus Eaton +37153#Zoë Kravitz#Christina +996701#Miles Teller#Peter Hayes +3417#Tony Goldwyn#Andrew Prior +1159982#Ansel Elgort#Caleb Prior +21045#Maggie Q#Tori Wu +327#Mekhi Phifer#Max + /ipikQozG6cAtLqhaFqRneA0LI4o.jpg + US|PG-13 + 283579 + Summit Entertainment +Red Wagon Entertainment + 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. + Neil Burger + 139 + Action - Adventure - Science Fiction + http://www.thedivergentseries.movie/#divergent + /aNh4Q3iuPKDMPi2SL7GgOpiLukX.jpg + Douglas Wick, Lucy Fisher, Pouya Shahbazian + United States of America + 6.9 + Divergent + 2014 + + + $ +94185#Shailene Woodley#Beatrice "Tris" Prior +587020#Theo James#Tobias "Four" Eaton +37153#Zoë Kravitz#Christina +996701#Miles Teller#Peter Hayes +8447#Jeff Daniels#David +3489#Naomi Watts#Evelyn Johnson-Eaton +1159982#Ansel Elgort#Caleb Prior +6944#Octavia Spencer#Johanna Reyes +1251875#Keiynan Lonsdale#Uriah Pedrad +18307#Daniel Dae Kim#Jack Kang +21045#Maggie Q#Tori Wu + /qSP072apfe2EEcd5Qg9vGYy2OLw.jpg + US|PG-13 + 283579 + Mandeville Films +Summit Entertainment +Lionsgate + 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. + Robert Schwentke + 120 + Adventure - Science Fiction - Action - Mystery + http://www.thedivergentseries.movie/#allegiant + /etGXQzt6Znfkd5DcqCfGlyWrfxp.jpg + Douglas Wick, Lucy Fisher, Pouya Shahbazian + United States of America + 6.1 + Allegiant + 2016 + + + $ +94185#Shailene Woodley#Beatrice "Tris" Prior +587020#Theo James#Tobias "Four" Eaton +6944#Octavia Spencer#Johanna Reyes +224181#Jai Courtney#Eric Coulter +56614#Ray Stevenson#Marcus Eaton +37153#Zoë Kravitz#Christina +996701#Miles Teller#Peter Hayes +1159982#Ansel Elgort#Caleb Prior +21045#Maggie Q#Tori Wu +327#Mekhi Phifer#Max +47627#Janet McTeer#Edith Prior + /8YNNyQiPZlF9qv5EGOUK20mnXVk.jpg + US|PG-13 + 283579 + Summit Entertainment +Red Wagon Entertainment +Mandeville Films + Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart. + Robert Schwentke + 119 + Action - Adventure - Science Fiction - Thriller + http://www.thedivergentseries.movie/#insurgent + /1ri6k2iyL33jC2QjO4H89gbgJ9Z.jpg + Douglas Wick, Lucy Fisher, Pouya Shahbazian + United States of America + 6.4 + Insurgent + 2015 + + + $ +85#Johnny Depp#Jack Sparrow +114#Orlando Bloom#Will Turner +116#Keira Knightley#Elizabeth Swann +118#Geoffrey Rush#Barbossa +1709#Jack Davenport#Norrington +378#Jonathan Pryce#Governor Weatherby Swann +1710#Lee Arenberg#Pintel +1711#Mackenzie Crook#Ragetti +1712#Damian O'Hare#Lt. Gillette +1713#Giles New#Murtogg +1714#Angus Barnett#Mullroy + /jOh79POQu4hyVIseUxdQxTW7vOf.jpg + US|PG-13 + 295 + Walt Disney Pictures +Jerry Bruckheimer Films + 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. + Gore Verbinski + 143 + Adventure - Fantasy - Action + http://disney.go.com/disneyvideos/liveaction/pirates/main_site/main.html + /z8onk7LV9Mmw6zKz4hT6pzzvmvl.jpg + Jerry Bruckheimer + United States of America + 7.7 + Pirates of the Caribbean: The Curse of the Black Pearl + 2003 + + + $ +85#Johnny Depp#Captain Jack Sparrow +114#Orlando Bloom#Will Turner +116#Keira Knightley#Elizabeth Swann +1640#Stellan Skarsgård#William "Bootstrap Bill" Turner +2440#Bill Nighy#Captain Davy Jones +1709#Jack Davenport#James Norrington +2449#Kevin McNally#Joshamee Gibbs +378#Jonathan Pryce#Governor Weatherby Swann +1710#Lee Arenberg#Pintel +1711#Mackenzie Crook#Ragetti +2441#Tom Hollander#Lord Cutler Beckett + /5gPPx16QWx071VAI1M0RAVKJ6tc.jpg + US|PG-13 + 295 + Walt Disney Pictures +Jerry Bruckheimer Films +Second Mate Productions + Captain Jack Sparrow works his way out of a blood debt with the ghostly Davy Jones to avoid eternal damnation. + Gore Verbinski + 151 + Adventure - Fantasy - Action + http://disney.go.com/disneypictures/pirates/ + /l3peI54mf6Z9EBSvS3hnRmOBbFT.jpg + Jerry Bruckheimer + United States of America + 7.3 + Pirates of the Caribbean: Dead Man's Chest + 2006 + + + $ +85#Johnny Depp#Captain Jack Sparrow +114#Orlando Bloom#Will Turner +116#Keira Knightley#Elizabeth Swann +1640#Stellan Skarsgård#William "Bootstrap Bill" Turner +1619#Chow Yun-Fat#Captain Sao Feng +2440#Bill Nighy#Captain Davy Jones +118#Geoffrey Rush#Captain Hector Barbossa +1709#Jack Davenport#Admiral James Norrington +2449#Kevin McNally#Joshamee Gibbs +2441#Tom Hollander#Lord Cutler Beckett +2038#Naomie Harris#Tia Dalma + /3Au8rkDVsRK2AT4jq9dg6jH6buy.jpg + US|PG-13 + 295 + Jerry Bruckheimer Films +Second Mate Productions +Walt Disney Pictures + 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. + Gore Verbinski + 169 + Adventure - Fantasy - Action + http://disney.go.com/disneypictures/pirates + /8ORuWcrYPgjwUDyCzr7qsOlCdwn.jpg + Jerry Bruckheimer, Eric McLeod, Chad Oman, Peter Kohn, Pat Sandston, Jack Kney + United States of America + 7.2 + Pirates of the Caribbean: At World's End + 2007 + + + $ +85#Johnny Depp#Jack Sparrow +955#Penélope Cruz#Angélica +118#Geoffrey Rush#Barbossa +6972#Ian McShane#Blackbeard +2449#Kevin McNally#Gibbs +237455#Sam Claflin#Philip +469759#Astrid Bergès-Frisbey#Syrena +1115#Stephen Graham#Scrum +1430#Keith Richards#Captain Teague +10983#Richard Griffiths#King George +4031#Greg Ellis#Groves + /uzIGtyS6bbnJzGsPL93WCF1FWm8.jpg + US|PG-13 + 295 + Walt Disney Pictures +Jerry Bruckheimer Films +Moving Picture Company + 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. + Rob Marshall + 137 + Adventure - Action - Fantasy + http://disney.go.com/pirates/index-on-stranger-tides.html#/video/ + /6WMmcLzVg1ud5xS4yY5ZtarGIZy.jpg + Jerry Bruckheimer + United Kingdom +United States of America + 6.5 + Pirates of the Caribbean: On Stranger Tides + 2011 + + + $ +85#Johnny Depp#Captain Jack Sparrow +3810#Javier Bardem#Captain Armando Salazar +118#Geoffrey Rush#Captain Hector Barbossa +1017347#Brenton Thwaites#Henry Turner +115150#Kaya Scodelario#Carina Smyth +2449#Kevin McNally#Joshamee Gibbs +229932#Golshifteh Farahani#Shansa +1371#David Wenham#Scarfield +1115#Stephen Graham#Scrum +1714#Angus Barnett#Mullroy +4030#Martin Klebba#Marty + /7C921eWK06n12c1miRXnYoEu5Yv.jpg + US|PG-13 + 295 + Walt Disney Pictures +Jerry Bruckheimer Films +Infinitum Nihil + 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. + Joachim Rønning, Espen Sandberg + 129 + Adventure - Action - Fantasy + http://pirates.disney.com/pirates-of-the-caribbean-dead-men-tell-no-tales + /qwoGfcg6YUS55nUweKGujHE54Wy.jpg + Jerry Bruckheimer + United States of America + 6.0 + Pirates of the Caribbean: Dead Men Tell No Tales + 2017 + + + $ +13565#Steve McQueen#Lt. Frank Bullitt +14060#Robert Vaughn#Walter Chalmers +14061#Jacqueline Bisset#Cathy +14062#Don Gordon#Lt. Delgetti +3087#Robert Duvall#Cabbie Weissberg +14063#Simon Oakland#Captain Sam Bennett +14064#Norman Fell#Captain Baker +14065#Georg Stanford Brown#Dr. Willard +14066#Justin Tarr#Eddy +14067#Carl Reindel#Detective Stanton +14068#Felice Orlandi#Albert E. Renick + /wu0Ad30NciUbR5c5Q1AglHZbRWJ.jpg + US|PG + Solar Productions +Warner Bros./Seven Arts + 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. + Peter Yates + 113 + Action - Crime - Drama - Thriller + https://www.warnerbros.com/bullitt + /mNjMow5ESjHv6YJ26toNkTJJTsr.jpg + Philip D'Antoni + United States of America + 7.0 + Bullitt + 1968 + + + $ +13565#Steve McQueen#Henri "Papillon" Charriere +4483#Dustin Hoffman#Louis Dega +15666#Victor Jory#Indian Chief +14062#Don Gordon#Julot +2516#Anthony Zerbe#Toussaint +49356#Robert Deman#Maturette +13263#Woodrow Parfrey#Clusiot +49357#Bill Mumy#Lariot +11028#George Coulouris#Dr. Chatal +993183#Ratna Assan#Zoraima +16030#William Smithers#Warden Barrot + /1xTUtI25j3TpKtJ7dyFvqCP2qaO.jpg + US|PG + Allied Artists Pictures +Solar Productions +Corona-General + A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape. + Franklin J. Schaffner + 151 + Crime - Drama + /356oqQpug682OERsWV0bGZ0YxwQ.jpg + Franklin J. Schaffner +Robert Dorfmann + United States of America + 7.0 + Papillon + 1973 + + + $ +13565#Steve McQueen#Doc McCoy +46597#Ali MacGraw#Carol McCoy +8258#Ben Johnson#Jack Beynon +3091#Al Lettieri#Rudy Butler +49352#Sally Struthers#Fran Clinton +14253#Slim Pickens#Cowboy +3174#Richard Bright#Dieb +49353#Jack Dodson#Harold Clinton +6463#Dub Taylor#Laughlin +12410#Bo Hopkins#Frank Jackson +12298#Roy Jenson#Cully + /zHHsdYi1OeLrcCdpZX6nXRQPQZv.jpg + US|PG + Foster-Brower Productions +First Artists +Solar Productions + A recently released ex-convict and his loyal wife go on the run after a heist goes wrong. + Sam Peckinpah + 123 + Action - Crime - Thriller + /1LA0obhYiOdYwyrKQAXhJXHrMqv.jpg + David Foster +Mitchell Brower + United States of America + 7.0 + The Getaway + 1972 + + + $ +13565#Steve McQueen#Eric Stoner ("The Cincinnati Kid") +13566#Edward G. Robinson#Lancey Howard +13567#Ann-Margret#Melba Nile +9857#Karl Malden#Shooter +4514#Tuesday Weld#Christian Rudd +13568#Joan Blondell#Lady Fingers +9626#Rip Torn#William Jefferson Slade +726#Jack Weston#Pig +7173#Cab Calloway#Yeller +9596#Jeff Corey#Hoban +45252#Theo Marcuse#Felix + /ncQLQRA1BMBD266VyQ1FzLFIAQX.jpg + US|NR + Filmways Pictures +Solar Productions +Metro-Goldwyn-Mayer + An up-and-coming poker player tries to prove himself in a high-stakes match against a long-time master of the game. + Norman Jewison + 102 + Drama + /qQTN8qpcXiEcyg69LxKKoz0Ab8B.jpg + Martin Ransohoff +John Calley + United States of America + 7.0 + The Cincinnati Kid + 1965 + + + $ +16483#Sylvester Stallone#Ray Breslin +1100#Arnold Schwarzenegger#Emil Rottmayer +8767#Jim Caviezel#Willard Hobbes +62644#50 Cent#Hush +4783#Sam Neill#Dr. Kyrie +980#Vinnie Jones#Drake +57452#Faran Tahir#Javed +7132#Vincent D'Onofrio#Lester Clark +39388#Amy Ryan#Abigail Ross +6110#Graham Beckel#Brims +98215#Matt Gerald#Roag + /ix9WYBqQ2xSZCgyeQ1vVdrbaFa4.jpg + 525891 + Knightsbridge Entertainment +Summit Entertainment +Atmosphere Entertainment MM + 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. + Mikael Håfström + 115 + Action - Thriller + http://escapeplanmovie.com/ + /zdnChkdppJjXl8lvwRz8vn6cs2s.jpg + Kevin King Templeton +Randall Emmett +Mark Canton +Robbie Brenner +Remington Chase + United States of America + 6.7 + Escape Plan + 2013 + + + $ +16483#Sylvester Stallone#Ray Breslin +543530#Dave Bautista#Trent DeRosa +57171#Jesse Metcalfe#Luke Walken +62644#50 Cent#Hush +109434#Huang Xiaoming#Shu Ren +51682#Wes Chatham#Jaspar Kimbral +39389#Titus Welliver#The Zookeeper +139440#Tyron Woodley#Akala +1381726#Chen Tang#Yusheng Ma +1388479#Tyler Jon Olson#Moe +1795898#Shea Buckner#Larry + /xIAaN3AQqaJiN5RJ0WsmBady8Hq.jpg + 525891 + Leomus Pictures +Grindstone Entertainment Group +Lionsgate + 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. + Steven C. Miller + 96 + Action + https://www.escapeplan2.movie/ + /Aqhl55vpzxNFqVfc2DpedUsR39L.jpg + George Furla +Randall Emmett +Mark Canton +Robbie Brenner +Zack Schiller +Qiu Jie +Su Xing + China +United States of America + 5.0 + Escape Plan 2: Hades + 2018 + + + $ +16483#Sylvester Stallone#Ray Breslin +543530#Dave Bautista#Trent DeRosa +62644#50 Cent#Hush +1183808#Zhang Jin#Shen +232499#Harry Shum Jr.#Bao +50398#Devon Sawa#Lester Clark Jr. +5915#Jaime King#Abigail Ross +1042684#Lydia Hull#Jules +118544#Melise#Daya +21354#Russell Wong#Wu Zhang +9452#Daniel Bernhardt#Silva + /ygWKYTu7OnZKF9H5NsgjL9iURGV.jpg + 525891 + Potato Eater Productions +Twirly Films Limited +Leomus Pictures + 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. + John Herzfeld + 97 + Action - Thriller - Crime + https://www.lionsgate.com/movies/escape-plan-the-extractors + /r15SUgzjL8bablcdEkHk9T7TSRl.jpg + Randall Emmett +Mark Canton +Zack Schiller + United States of America + 5.2 + Escape Plan: The Extractors + 2019 + + + $ +1100#Arnold Schwarzenegger#Douglas Quaid / Hauser +10768#Rachel Ticotin#Melina +4430#Sharon Stone#Lori +780#Ronny Cox#Vilos Cohaagen +11086#Michael Ironside#Richter +3041#Marshall Bell#George / Kuato +12887#Mel Johnson Jr.#Benny +790#Michael Champion#Helm +12888#Roy Brocksmith#Dr. Edgemar +12889#Ray Baker#Bob McClane +44275#Rosemary Dunsmore#Dr. Lull + /e9zfOyNd3YaViIGadiqWg9x8pAq.jpg + Carolco Pictures +TriStar Pictures + 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. + Paul Verhoeven + 113 + Action - Adventure - Science Fiction + /wVbeL6fkbTKSmNfalj4VoAUUqJv.jpg + Ronald Shusett +Buzz Feitshans + United States of America + 7.3 + Total Recall + 1990 + + + $ +3967#Kate Beckinsale#Selene +100#Scott Speedman#Michael Corvin +3968#Michael Sheen#Lucian +3969#Shane Brolly#Kraven +2440#Bill Nighy#Viktor +3970#Erwin Leder#Singe +3971#Sophia Myles#Erika +1119#Robbie Gee#Kahn +3972#Wentworth Miller#Dr. Adam Lockwood +3952#Kevin Grevioux#Raze +12358#Zita Görög#Amelia + /j9E1pGqx2ZYnyGQYMB1JYtUxJ6u.jpg + 2326 + Screen Gems +Lakeshore Entertainment +Laurinfilm + 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. + Len Wiseman + 122 + Fantasy - Action - Thriller + https://www.sonypictures.com/movies/underworld + /zsnQ41UZ3jo1wEeemF0eA9cAIU0.jpg + Tom Rosenberg +Gary Lucchesi +Richard S. Wright + Germany +Hungary +United Kingdom + 6.8 + Underworld + 2003 + + + $ +3967#Kate Beckinsale#Selene +100#Scott Speedman#Michael Corvin +2220#Tony Curran#Marcus Corvinus +3969#Shane Brolly#Kraven +937#Derek Jacobi#Alexander Corvinus +2440#Bill Nighy#Viktor +978#Steven Mackintosh#Andreas Tanis +12358#Zita Görög#Amelia +12359#Brian Steele#William Corvinus +12366#Scott McElroy#Soren +12367#John Mann#Samuel + /s8OsODRjurs7n6U7WCVKfsoYbdH.jpg + 2326 + Screen Gems +Lakeshore Entertainment + 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. + Len Wiseman + 106 + Fantasy - Action - Thriller + https://www.sonypictures.com/movies/underworldevolution + /yT1EDKhCzAumcZeBoAxqm0nY2H8.jpg + Tom Rosenberg +Gary Lucchesi +Richard S. Wright +David Coatsworth + United States of America + 6.5 + Underworld: Evolution + 2006 + + + $ +25702#Rhona Mitra#Sonja +2440#Bill Nighy#Viktor +3968#Michael Sheen#Lucian +3969#Shane Brolly#Kraven +978#Steven Mackintosh#Andreas Tanis +3952#Kevin Grevioux#Raze +9383#David Aston#Coloman +1047942#Geraldine Brophy#Nobleman's Wife +1226685#Leighton Cardno#Fearful Lycan +1049596#Alexander Carroll#Young Lucian +5533#Elizabeth Hawthorne#Orsova + /c7JgVgsF2qMp2UbCr9mCx85CIZo.jpg + 2326 + Screen Gems +Lakeshore Entertainment +Sketch Films + 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. + Patrick Tatopoulos + 92 + Fantasy - Action - Thriller + https://www.sonypictures.com/movies/underworldriseofthelycans + /6pLPWF7AXhljLJf8WTli9BuVfyv.jpg + Tom Rosenberg +Len Wiseman +Gary Lucchesi +Richard S. Wright + United States of America + 6.5 + Underworld: Rise of the Lycans + 2009 + + + $ +12835#Vin Diesel#Xander Cage +18514#Asia Argento#Yelena +2231#Samuel L. Jackson#Agent Augustus Gibbons +65240#Leila Arcieri#Jordan King +20982#Marton Csokas#Yorgi +230176#Eve#J.J. +137332#Jan Pavel Filipenský#Viktor +53347#Michael Roof#Agent Toby Lee Shavers +11160#Danny Trejo#El Jefe +2341#Richy Müller#Milan Sova +39849#Werner Daehn#Kirill + /qwK9soQmmJ7kRdjLZVXblw3g7AQ.jpg + 52785 + Columbia Pictures +Original Film +Revolution Studios + 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. + Rob Cohen + 124 + Action - Adventure - Thriller + http://www.sonypictures.com/movies/xxx/ + /86BnliVDBo2TjKmrgQTJIPHxAKd.jpg + Neal H. Moritz + United States of America + 5.9 + xXx + 2002 + + + $ +16213#Lance Guest#Alex Rogan +55266#Catherine Mary Stewart#Maggie Gordon +20363#Suzanne Snyder#Cheerleader +70834#Barbara Bosson#Jane Rogan +53552#John O'Leary#Rylan Bursar +6836#Dan O'Herlihy#Grig +40202#Robert Preston#Centauri +61702#Kay E. Kuter#Enduran +129088#Norman Snow#Xur +158655#Dan Mason#Lord Kril +1193702#Chris Hebert#Louis Rogan + /2KjPXUYDoSbAtIQGjbEIcX6b7x5.jpg + Universal Pictures +Lorimar Film Entertainment + 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. + Nick Castle + 101 + Adventure - Science Fiction - Action + /an1H0DPADLDlEsiUy8vE9AWqrhm.jpg + Gary Adelson +Edward O. Denault + United States of America + 6.6 + The Last Starfighter + 1984 + + + $ +4139#Tom Skerritt#Arthur Koblenz Dallas +10205#Sigourney Weaver#Lt. Ellen Louise Ripley +5049#John Hurt#Gilbert Ward Kane +5047#Veronica Cartwright#Joan Marie Lambert +5048#Harry Dean Stanton#Samuel Elias Brett +65#Ian Holm#Ash +5050#Yaphet Kotto#Dennis Monroe Parker +5051#Bolaji Badejo#Alien +5052#Helen Horton#Mother (voice) + /AmR3JG1VQVxU8TfAvljUhfSFUOx.jpg + 8091 + Brandywine Productions +20th Century Fox + 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. + Ridley Scott + 117 + Horror - Science Fiction + https://www.20thcenturystudios.com/movies/alien + /vfrQk5IPloGg1v9Rzbh2Eg3VGyM.jpg + David Giler +Walter Hill +Gordon Carroll + United States of America +United Kingdom + 8.1 + Alien + 1979 + + + $ +10205#Sigourney Weaver#Ripley 8 +1920#Winona Ryder#Annalee Call +2413#Dominique Pinon#Dom Vriess +2372#Ron Perlman#Ron Johner +40276#Gary Dourdan#Gary Christie +7486#Michael Wincott#Frank Elgyn +170146#Kim Flowers#Sabra Hillard +6486#Dan Hedaya#Gen. Martin Allahandro Carlos Perez +5169#J.E. Freeman#Dr. Mason Wren +1370#Brad Dourif#Dr. Jonathan Gediman +58650#Raymond Cruz#Pvt. Vincent Distephano + /ikr0UILfvRerzMNoBTtJtyuWAEV.jpg + 8091 + Brandywine Productions +20th Century Fox + 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. + Jean-Pierre Jeunet + 109 + Science Fiction - Horror - Action + https://www.20thcenturystudios.com/movies/alien-resurrection + /13162IOGtPQaZgnnY3raCJbUsW5.jpg + David Giler +Walter Hill +Gordon Carroll +Bill Badalato + United States of America + 6.1 + Alien Resurrection + 1997 + + + $ +10205#Sigourney Weaver#Lt. Ellen Louise Ripley +17764#Charles S. Dutton#Leonard Dillon +4391#Charles Dance#Jonathan Clemens +4935#Pete Postlethwaite#David Postlethwaite +53916#Ralph Brown#Francis Aaron +47654#Paul McGann#Walter Golic +53917#Danny Webb#Robert Morse +2714#Lance Henriksen#Lance Bishop +14468#Brian Glover#Harold Andrews +58758#Deobia Oparei#Arthur Walkingstick +40043#Niall Buggy#Eric Buggy + /psLgZQDEDfNjNzi1eitG7ubdQL1.jpg + 8091 + Brandywine Productions +20th Century Fox + 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. + David Fincher + 114 + Science Fiction - Action - Horror + https://www.20thcenturystudios.com/movies/alien-3 + /eEWPeAUo7hQxOwTk0uSg1xpzCut.jpg + David Giler +Walter Hill +Gordon Carroll + United Kingdom +United States of America + 6.3 + Alien³ + 1992 + + + $ +10205#Sigourney Weaver#Lt. Ellen Louise Ripley +10206#Carrie Henn#Rebecca "Newt" Jorden +2712#Michael Biehn#Cpl. Dwayne Hicks +781#Paul Reiser#Carter J. Burke +2714#Lance Henriksen#Lance Bishop +2053#Bill Paxton#Pvt. William L. Hudson +10207#William Hope#Lt. Scott Gorman +3981#Jenette Goldstein#Pvt. Jenette Vasquez +10208#Al Matthews#Sgt. Al Apone +6576#Mark Rolston#Pvt. Mark Drake +10212#Ricco Ross#Pvt. Ricco Frost + /jMBpJFRtrtIXymer93XLavPwI3P.jpg + 8091 + Brandywine Productions +SLM Production Group +20th Century Fox + 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. + James Cameron + 137 + Action - Thriller - Science Fiction + https://www.20thcenturystudios.com/movies/aliens + /qzm3nKhyc9DEiJJ2EBccIHpYM3W.jpg + Gale Anne Hurd + United States of America +United Kingdom + 7.9 + Aliens + 1986 + + + $ +500#Tom Cruise#Jack Reacher +10882#Rosamund Pike#Helen Rodin +28633#Richard Jenkins#Alex Rodin +35013#David Oyelowo#Emerson +6818#Werner Herzog#Zec Chelovek +224181#Jai Courtney#Charlie +1132335#Vladimir Sizov#Vlad +82631#Joseph Sikora#James Barr +53259#Michael Raymond-James#Linsky +203630#Alexia Fast#Sandy +1056053#Josh Helman#Jeb Oliver + /gE8Dow9HTVYLQkRRik72o9iv9xw.jpg + 403374 + Skydance Media +H2L Media "AKA" Mutual Film Company +H2L Media Group + 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. + Christopher McQuarrie + 130 + Crime - Drama - Thriller - Action + http://www.jackreachermovie.com/ + /zlyhKMi2aLk25nOHnNm43MpZMtQ.jpg + Gary Levinsohn +Tom Cruise +Paula Wagner +Don Granger + United States of America + 6.5 + Jack Reacher + 2012 + + + $ +55983#Jim Henson#Jen / High Priest, Ritual Master +70772#Kathryn Mullen#Kira, a Gelfling +7908#Frank Oz#Aughra, a Keeper of Secrets / Chamberlain +64181#Dave Goelz#Fizzgig, a Friendly Monster / General, Garthim Master +64180#Steve Whitmire#Scientist (voice) +1228891#Louise Gold#Gourmand +1696852#Brian Meehl#Ornamentalist / Urzah / Dying Master +202729#Stephen Garlick#Jen (voice) +174420#Lisa Maxwell#Kira (voice) +8226#Billie Whitelaw#Aughra (voice) +193526#Percy Edwards#Fizzgig (voice) + /iXgxhI9k8MqbhM1OqrvV3wdTu7S.jpg + Universal Pictures +ITC +The Jim Henson Company + On another planet in the distant past, a Gelfling embarks on a quest to find the missing shard of a magical crystal and restore order to his world, before the grotesque race of Skeksis find and use the crystal for evil. + Frank Oz +Jim Henson + 93 + Fantasy - Adventure - Family - Animation + /sMwbyGnMu1RzARnPkEKkeWXXSVN.jpg + Gary Kurtz +Jim Henson + United Kingdom +United States of America + 7.2 + The Dark Crystal + 1982 + + + $ +7487#David Bowie#Jareth +6161#Jennifer Connelly#Sarah +68794#Toby Froud#Toby +68795#Shelley Thompson#Stepmother +47808#Christopher Malcolm#Father +1329495#Natalie Finland#Fairy +1329496#Shari Weiser#Hoggle +65298#Brian Henson#Hoggle / Goblin (voice) +1329518#Ron Mueck#Ludo / Firey 2 / Goblin (voice) +220893#Rob Mills#Ludo / Firey 3 +64181#Dave Goelz#Didymus / The Hat / The Four Guards / Left Door Knocker / Firey 3 (voice) + /tXa8BkP2ewfFFjTB1dbLstLyu91.jpg + Henson Associates, Inc. +Lucasfilm +The Jim Henson Company + When teen Sarah is forced to babysit Toby, her baby stepbrother, she summons Jareth the Goblin King to take him away. When he is actually kidnapped, Sarah is given just thirteen hours to solve a labyrinth and rescue him. + Jim Henson + 102 + Adventure - Family - Fantasy + /q2GimbyqxCeLkRfSMajtaHdwWg9.jpg + Eric Rattray + United Kingdom +United States of America + 7.3 + Labyrinth + 1986 + + + $ +1532#Bill Murray#Phil Connors +1533#Andie MacDowell#Rita Hanson +1534#Chris Elliott#Larry +537#Stephen Tobolowsky#Ned Ryerson +1535#Brian Doyle-Murray#Buster Green +1537#Angela Paton#Mrs. Lancaster +1538#Rick Ducommun#Gus +1539#Rick Overton#Ralph +1540#Robin Duke#Doris +1542#Willie Garson#Kenny +236327#Ken Hudson Campbell#Man in Hallway + /ttBydD0SynC0TMkW3AcnmsySkLp.jpg + Columbia Pictures + A narcissistic TV weatherman, along with his attractive-but-distant producer, and his mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over. + Harold Ramis + 101 + Romance - Fantasy - Drama - Comedy + /gCgt1WARPZaXnq523ySQEUKinCs.jpg + Harold Ramis +Trevor Albert + United States of America + 7.6 + Groundhog Day + 1993 + + + $ +880#Ben Affleck#Matt Murdock / Daredevil +9278#Jennifer Garner#Elektra Natchios / Elektra +72466#Colin Farrell#Lester / Bullseye +61981#Michael Clarke Duncan#Wilson Fisk / The Kingpin +15277#Jon Favreau#Franklin "Foggy" Nelson +56153#Scott Terra#Young Matt +9280#Ellen Pompeo#Karen Page +532#Joe Pantoliano#Ben Urich +2221#Leland Orser#Wesley Owen Welch +42200#Lennie Loftin#Nick Manolis +18917#Erick Avari#Nikolas Natchios + /e7jIX02GiSwsgkU5lMpeKjwq2Zc.jpg + Marvel Enterprises +New Regency Pictures +Epsilon Motion Pictures + A man blinded in a childhood accident fights crime using his superhumanly-elevated remaining senses. + Mark Steven Johnson + 103 + Fantasy - Action + http://marvel.com/movies/movie/12/daredevil + /oCDBwSkntYamuw8VJIxMRCtDBmi.jpg + Arnon Milchan +Avi Arad +Gary Foster + United States of America + 5.2 + Daredevil + 2003 + + + $ +1663195#Kelly Marie Tran#Raya (voice) +1625558#Awkwafina#Sisu (voice) +2362044#Izaac Wang#Boun (voice) +97576#Gemma Chan#Namaari (voice) +18307#Daniel Dae Kim#Benja (voice) +30082#Benedict Wong#Tong (voice) +1465325#Jona Xiao#Young Namaari (voice) +25540#Sandra Oh#Virana (voice) +2782707#Thalia Tran#Little Noi (voice) +112288#Lucille Soong#Dang Hu (voice) +21088#Alan Tudyk#Tuk Tuk (voice) + /rcUcYzGGicDvhDs58uM44tJKB9F.jpg + US|PG + Walt Disney Pictures +Walt Disney Animation Studios + Long ago, in the fantasy world of Kumandra, humans and dragons lived together in harmony. But when an evil force threatened the land, the dragons sacrificed themselves to save humanity. Now, 500 years later, that same evil has returned and it’s up to a lone warrior, Raya, to track down the legendary last dragon to restore the fractured land and its divided people. + Don Hall, Carlos López Estrada + 107 + Family - Fantasy - Animation - Action - Adventure + https://movies.disney.com/raya-and-the-last-dragon + /lPsD10PP4rgUGiGR4CCXA6iY0QQ.jpg + Peter Del Vecho, Osnat Shurer + United States of America + 8.0 + Raya and the Last Dragon + 2021 + + + $ +2461#Mel Gibson#Max Rockatansky +58401#Joanne Samuel#Jessie Rockatansky +26060#Hugh Keays-Byrne#Toecutter +45211#Steve Bisley#Jim Goose, Main Force Patrol Officer +1125220#Tim Burns#Johnny the Boy +94809#Roger Ward#Fifi +1125222#Lisa Aldenhoven#Nurse +1125223#David Bracks#Mudguts +1125224#Bertrand Cadart#Clunk +172747#David Cameron#Underground Mechanic +1125225#Robina Chaffey#Singer + /yhF12g35SLnXvHC46KY1plZvjtG.jpg + 8945 + Kennedy Miller Productions +Mad Max Films +American International Pictures + In the ravaged near future, a savage motorcycle gang rules the road. Terrorizing innocent civilians while tearing up the streets, the ruthless gang laughs in the face ofa police force hell-bent on stopping them. But they underestimate one officer: Max Rockatansky. And when the bikers brutalize Max's best friend and family, they send him into a mad frenzy that leaves him with only one thing left in the world to live for – revenge! + George Miller + 91 + Adventure - Action - Thriller - Science Fiction + /5LrI4GiCSrChgkdskVZiwv643Kg.jpg + Byron Kennedy + Australia + 6.698 + Mad Max + 1979 + + + $ +2461#Mel Gibson#Max Rockatansky +27752#Bruce Spence#The Gyro Captain +47461#Michael Preston#Pappagallo +121417#Max Phipps#The Toadie +26491#Vernon Wells#Wez +933020#Kjell Nilsson#The Humungus +933021#Emil Minty#The Feral Kid +26055#Virginia Hey#Warrior Woman +83771#William Zappa#Zetta +94785#Arkie Whiteley#The Captain's Girl +181831#Steve J. Spears#Mechanic + /MMSI9WzRmOdqXarevQ3Kqnytrx.jpg + 8945 + Warner Bros. Pictures +Kennedy Miller Productions + 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. + George Miller + 96 + Adventure - Action - Thriller - Science Fiction + /6tMQOt7VBvi2akhHvWusEO4Dauu.jpg + Byron Kennedy + Australia + 7.396 + Mad Max 2 + 1981 + + + $ +2461#Mel Gibson#Max Rockatansky +1459#Tina Turner#Aunty Entity +57424#Helen Buday#Savannah Nix +27752#Bruce Spence#Jedediah the Pilot +97985#Angelo Rossitto#Master +1001970#Adam Cockburn#Jedediah Jr. +10025#Frank Thring#The Collector +952227#Paul Larsson#Blaster +220829#Angry Anderson#Ironbar +127135#Robert Grubb#Pig Killer +938578#George Spartels#Blackfinger + /cO8zcdPhLT3UdykkXCvfhIVrgHK.jpg + 8945 + Kennedy Miller Productions + Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children. + George Miller +George Ogilvie + 107 + Action - Adventure - Science Fiction + /7sYv92wr9FN5WIg4fFpJ20cVuXb.jpg + George Miller + Australia + 6.197 + Mad Max Beyond Thunderdome + 1985 + + + $ +2524#Tom Hardy#Max Rockatansky +6885#Charlize Theron#Imperator Furiosa +3292#Nicholas Hoult#Nux +26060#Hugh Keays-Byrne#Immortan Joe +37153#Zoë Kravitz#Toast the Knowing +98522#Riley Keough#Capable +236048#Rosie Huntington-Whiteley#The Splendid Angharad +1036288#Abbey Lee#The Dag +1278500#Courtney Eaton#Cheedo the Fragile +1056053#Josh Helman#Slit +24898#Nathan Jones#Rictus Erectus + /nlCHUWjY9XWbuEUQauCBgnY8ymF.jpg + 8945 + Village Roadshow Pictures +Warner Bros. Pictures +Kennedy Miller Productions + 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. + George Miller + 121 + Action - Adventure - Science Fiction + https://www.warnerbros.com/movies/mad-max-fury-road + /8tZYtuWezp8JbcsvHYO0O46tFbo.jpg + George Miller +Doug Mitchell +P.J. Voeten + Australia +United States of America +South Africa + 7.567 + Mad Max: Fury Road + 2015 + + + $ +2461#Mel Gibson#Martin Riggs +2047#Danny Glover#Roger Murtaugh +2048#Gary Busey#Mr. Joshua +14312#Mitchell Ryan#General Peter McAllister +11784#Tom Atkins#Michael Hunsaker +14313#Darlene Love#Trish Murtaugh +14314#Traci Wolfe#Rianne Murtaugh +14315#Jackie Swanson#Amanda Hunsaker +14316#Damon Hines#Nick Murtaugh +14317#Ebonie Smith#Carrie Murtaugh +157119#Bill Kalmenson#Beat Cop + /guTNnSWS3CaH71jasY8W1FMptjG.jpg + 945 + Warner Bros. Pictures +Silver Pictures + 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. + Richard Donner + 110 + Adventure - Action - Comedy - Thriller - Crime + /fTq4ThIP3pQTYR9eDepsbDHqdcs.jpg + Joel Silver +Richard Donner + United States of America + 7.272 + Lethal Weapon + 1987 + + + $ +2461#Mel Gibson#Martin Riggs +2047#Danny Glover#Roger Murtaugh +4517#Joe Pesci#Leo Getz +14324#Joss Ackland#Arjen Rudd +14325#Derrick O'Connor#Pieter 'Adolph' Vorstedt +14326#Patsy Kensit#Rika van den Haas +14313#Darlene Love#Trish Murtaugh +14328#Steve Kahan#Captain Ed Murphy +6576#Mark Rolston#Hans +3981#Jenette Goldstein#Officer Meagan Shapiro +14329#Dean Norris#Tim Cavanaugh + /i4R2yYpGeyF7O9GRrNlItAVRBYl.jpg + 945 + Warner Bros. Pictures +Silver Pictures + 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! + Richard Donner + 114 + Action - Adventure - Comedy - Crime - Thriller + /1EEIUw0tkX7AJZ1ikZrtKZZKlC6.jpg + Joel Silver +Richard Donner + United States of America + 7.0 + Lethal Weapon 2 + 1989 + + + $ +2461#Mel Gibson#Martin Riggs +2047#Danny Glover#Roger Murtaugh +4517#Joe Pesci#Leo Getz +14343#Rene Russo#Lorna Cole +14344#Stuart Wilson#Jack Travis +14328#Steve Kahan#Captain Ed Murphy +23967#Mary Ellen Trainor#Stephanie Woods +14313#Darlene Love#Trish Murtaugh +14314#Traci Wolfe#Rianne Murtaugh +14317#Ebonie Smith#Carrie Murtaugh +14316#Damon Hines#Nick Murtaugh + /kmt9XmhmX36sJduuDVFlTgEWh9U.jpg + 945 + Warner Bros. Pictures +Silver Pictures +St. Petersburg Clearwater Film Commision + 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. + Richard Donner + 118 + Adventure - Action - Comedy - Thriller - Crime + /8FnOudDHPOY7MFJnvQMR1qpuyek.jpg + Joel Silver +Richard Donner + United States of America + 6.7 + Lethal Weapon 3 + 1992 + + + $ +2461#Mel Gibson#Martin Riggs +2047#Danny Glover#Roger Murtaugh +4517#Joe Pesci#Leo Getz +14343#Rene Russo#Lorna Cole +2632#Chris Rock#Det.Lee Butters +1336#Jet Li#Wah Sing Ku +14313#Darlene Love#Trish Murtaugh +14314#Traci Wolfe#Rianne Murtaugh +8400#Kim Chan#Benny Chan +14328#Steve Kahan#Captain Ed Murphy +14316#Damon Hines#Nick Murtaugh + /kP1wrQD0ou9G2Z9JODecJolCRUB.jpg + 945 + Warner Bros. Pictures +Silver Pictures +Donner/Shuler-Donner Productions + 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. + Richard Donner + 127 + Action - Adventure - Comedy - Crime - Thriller + /cRm7ro9tfiHagQb8i3wO4F1CiuB.jpg + Joel Silver +Richard Donner + United States of America + 6.585 + Lethal Weapon 4 + 1998 + + + + + + + /7pUA8qX9x17uAkrqxGakhJ6Qph6.jpg + + Roughnecks: Starship Troopers Chronicles + 30 + Animation - Action & Adventure - Sci-Fi & Fantasy + + Roughnecks: Starship Troopers Chronicles + Broadcast Syndication + 1 + US + Roughnecks: Starship Troopers Chronicles is a CGI animated television series, based on the novel by Robert A. Heinlein and the 1997 film adaptation. The film's director, Paul Verhoeven, served as executive producer. It follows the exploits of the Mobile Infantry squad, "Razak's Roughnecks," during the SICON–Bugs War between a newly united humanity and an extraterrestrial race, known as the "Bugs," also sometimes referred to as Arachnids. The show focuses mainly on the Roughnecks' missions, rather than addressing the larger war. + +The show was geared towards an adult-oriented science fiction audience without being too violent, mature or controversial for the Saturday morning age group. The series aired for one season on BKN beginning in August 1999 and in syndication in the United States and Canada. It was later picked up by the Sci-Fi Channel in the US and Teletoon in Canada. The entire series is available to be streamed on Netflix and Crackle in the US, along with several Minisodes. Despite its short run, the series developed a cult following. + +The show combines elements of Verhoeven's film and the original novel, such as the extraterrestrial race known as the Skinnies, powered armor suits and drop pods. The series also adds some original elements, while omitting the political aspects of the original work and film. + /lyP3jSDZ3pvnV6pPHv2Wo7jSr5f.jpg + 6.0 + + + 1999-08-30 + + + 1999-08-30 + Freefall + Rookie troopers Rico, Flores and Jenkins journey to Pluto as part of Alpha Team ""Razak's Roughnecks"" on what is supposed to be a simple mop-up operation, but find a major threat to the research stations from plasma-shooting alien Bugs. + + + 1999-08-31 + Plasma Bugs of Navarone + /d7aS52BHGtKmLYWZRIA0Yy6kEIU.jpg + When the Roughnecks pick up a distress call from pilots Ibanez and Barcalow, who are under attack at a research outpost, Rico risks the safety of his own squad to save Carmen. + /d7aS52BHGtKmLYWZRIA0Yy6kEIU.jpg + + + 1999-09-01 + Handle with Care + /hTgxcjAKMDDzMz86AJybO1ZhnfI.jpg + The squad is assigned to assist intelligence officer Earle Walker in capturing a live Plasma Bug and bringing it back through enemy territory. + /hTgxcjAKMDDzMz86AJybO1ZhnfI.jpg + + + 1999-09-03 + Basic Training + /k8T7XRyxCjdT0Er4BSjpN85KeJH.jpg + Rico has to train Higgins the reporter to defend himself in combat, as the Roughnecks try to defend themselves from new flying Bugs that seem impervious to laser fire. + /k8T7XRyxCjdT0Er4BSjpN85KeJH.jpg + + + 1999-09-22 + Deep Trouble + When the Roughnecks go beneath the surface of Pluto to locate the Bug army's incubation center, Flores suffers from disabling claustrophobia. + + + 1999-09-30 + Swarm + The battle against the Bugs moves to the watery planet Hydora, where Rico and the Roughnecks again come to Carmen's rescue when she is stranded while evacuating wounded. + + + 1999-11-11 + Missing in Action + Trying to locate two missing squads that seem to have vanished into thin air, the Roughnecks find themselves battling giant amphibious beetles. + + + 1999-11-04 + Sole Survivor + While trying to find out what happened to Lt. Ross, who was found wandering on Hydora with his memory gone and his entire squad missing, the Roughnecks are captured by the Bugs. + + + 2000-02-16 + Betrayal + /pR6mUjyizTJ8dXAIFwPQ821RD0r.jpg + Arriving on the planet of Tophet, the Roughnecks are surprised to meet an advanced indigenous species. They claim the bugs came, but couldn't adapt to their climate and died... But where are all the corpses then? + /pR6mUjyizTJ8dXAIFwPQ821RD0r.jpg + + + 1999-09-02 + Stranded + As the war moves to the planet Tophet, the Roughnecks go after Razak and Higgins, who are trapped behind enemy lines and about to be blown up by their own air strike. + + + 2000-01-28 + Captured + The Roughnecks are captured by the skinnies, and held for interrogation. + + + 1999-11-19 + No Substitute + The Skinnies, formerly working for the Bugs, have changed sides but one of them meets considerable resistance when he joins the squad for its assault on Zegema Beach. + + + 1999-12-09 + ...And Then There Were Two + Rico still doesn't trust T'Phai, but In the jungle on Tesca Nemerosa, they are forced to work together when the other squad members start disappearing. + + + 1999-12-03 + Marauder + As the squad tries to locate a brain bug on Tesca Nemerosa from underwater, Rico is trapped when his Marauder suit runs out of power. + + + 1999-12-17 + Liquid Dreams + While a monsoon hits the Zegema Base hard, Rico floats unconscious in a regeneration tank, fighting his subconscious to stay alive. + + + 2000-01-03 + Heart + /mYJFoYozPoTGjYQepJlXdT8xVAf.jpg + Still in the tank, Rico grows increasingly angry and frustarted that no one is taking his claims that the bugs are coming seriously. Meanwhile, the squad is out to charting bug tunnels near the base. + /mYJFoYozPoTGjYQepJlXdT8xVAf.jpg + + + 2000-02-08 + Ice-Olation + Returning from a combat mission in a retrieval ship, the Zephyr, the Roughnecks are re-routed to an asteroid to join scientists from another ship, the Sequoia, in a quest for a bio-weapon against the bugs. Just as they are coming in for a landing, tiny flame-breathing bugs, Firefries, hatch from Zander's skin. The ship crashes, badly damaged, but there are no serious injuries. Teams are sent out to locate the Sequoia. One team, Razak and Doc, falls into a subterranean network where they are attacked by marshmallow-like Leeches. Another team, Brutto and T'Phai, find themselves in a battle with adult, human-sized Firefries. Razak and Doc, joined by Dizzy and Gossard from the ship, join in this battle. Meanwhile, the third team, Carmen and Rico, is buried by an avalanche, and beneath the snow they share some intimate moments. Dizzy saves them. All return to the Zephyr, where Higgins awaits with the recovering Zander. They finally realize that they're on the wrong asteroid; the Sequoia awa + + + 2000-02-15 + Mixed Signals + The Zephyr remains crash-landed on a frozen asteroid. A team is sent out to collect Toxin B-3, a potent bio-weapon that they've found here (to their surprise, since it was supposed to be found on another asteroid entirely), while Gossard and others remain at the ship to try to get the communications system working to send an SOS... and to protect the ship from Firefries, fire-breathing bugs that the Roughnecks accidentally brought to the asteroid as eggs. The collection team fights Leeches, aggressive amorphous blobs, inside a cave; in the aftermath of the battle they discover that the Leeches are the source of the Toxin B-3. But while collecting them the team finds itself at the mercy of a hurricane-force wind coming from inside the cave. The wind blows Carmen away, and the team fears for her life. The episode climaxes in a massive battle with the Firefries around the ship. When it's over, Gossard is able to send an SOS, and Carmen returns. It looks like help is on the way. + +(from pazs + + + 1999-11-25 + Hot Ice + Having crashed on a barren asteroid, the Roughnecks try to make their way to a crashed science vessel for help. + + + 2000-01-17 + The Inside Story + /mfbklUnpoyqtNbqgQC35w5q31eo.jpg + The Zephyr is still stuck on the ice asteroid. The Roughnecks are running low on ammunition and the Fireflies keep attacking. Gossard suggests they use the Toxin they've collected to set up a poison gas perimeter. To give him time T'Phai, Flores and Rico lead the Fireflies off as human bait. Things go wrong though and they are trapped with no apparent way out. Suddenly Zander appears and does a Pied Piper act with the Bugs - they all seem to fall into a giant crater. The team return to the ship and their report convinces every one Sander has bought the farm - but he suddenly reappears even crazier then before. Razak boots Rico up to a Corporal during the next battle session during which an tremor send the Zephyr into another crater. The ship eventually lands in a lake of corrosive liquid and is running low on air. Doc and Brutto go looking for an oxygen supply. T hey manage to find one but barely make it back to the ship. Doc though has other news! He is + /mfbklUnpoyqtNbqgQC35w5q31eo.jpg + + + 2000-03-09 + The Ice Men Goeth + The Zephyr is trapped inside a giant Bug. Razak sends out a team to try and retrieve oxygen from the location found by Doc and Brutto. The way to the oxygen is down a shaft. Flores and Doc enter a strange portal in the side of the shaft but Brutto has a bad fall. Rico rescues Brutto and returns him to the ship then returns with Higgins to find Doc & Flores. These have been swept away in one of the Bugs arteries. Rico has to leave Higgins but finds Flores and Doc OK. Razak goes looking for them and finds Higgins who is suffering from lack of air in his suit. Air is now being pumped into the ship. Back at the ship, Zander is getting madder. Gossard gets the idea of using the Firefries as a fuel source from listening to him + +The rest of the squad return to the ship just prior to take off. + +Zander has been restrained but somehow escapes and attempts to sabotage the ship but the squad stop him. As they prepare to launch he escapes again and triggers the self-de + + + 2000-02-18 + Metamorphosis + The Valley Forge is enroute to their next campaign, a long trip. The Roughnecks drew the watch as most of the ship's crew is in stasis. Doc is suddenly attacked by Zander who has mutated into a new form of Bug. Zander escapes and runs amok in the ship, letting samples of other Bug types free to keep the Roughnecks busy whilst it heads for the bridge. There it captures Carmen and the Commander and, to stop the Roughnecks from interfering, kills power to the stasis tubes. Gossard manages to restore power to the tubes whilst Rico and Brutto go outside the Valley Forge to the emergency air lock on the bridge. As they enter the Sander Bug notices them and closes the door trapping Brutto in the process and damaging his legs. The rest of the team arrive and Zander escapes in a life-pod to the planet he was trying to crash the Valley Forge onto. Carmen manages to avoid the crash causing the Commander to withdraw earlier comments about automated pilots. The planet is t + + + 2000-02-17 + D-Day + S.I.C.O.N. prepares for the D-Day invasion of the bug home planet of Klendathu. During the build-up Flores gets an M.I.A. notice from telling her. that her brother, Eddie is MIA - presumed dead in a retrieval ship crash. She is badly shaken by this bombshell and her performance as a trooper is severely affected. The Roughnecks land in an area deemed uninhabited by Intel, as usual Intel get it wrong and the meet stiff opposition. + +Flores hesitates in the DZ and Rico who's been kicked up to Sergeant to replace Brutto is worried as Lt Razak has left it to him to decide whether she is now a liability. Rico is torn and leaves Flores in charge of a group of wounded troopers from other squads whilst the Roughnecks carry on the fight. As they get bogged down in the fighting Flores is brought back to reality by the will to fight of an injured trooper from another squad. She is able to surprise the Bugs from behind and save the Roughnecks. Later she meets another trooper who + + + 2000-02-25 + The Mission + Higgins is on guard duty at a camp on Klendathu. Whilst in front of the gates he sees a trooper staggering along. As he talks to the trooper a new type of Bug, hence known as an Impostor Bug, bursts out of the suit. The Impostor is a Bug that approximates the size and shape of a human and is able to fit inside stolen power suits. As such they present a major threat to the security of S.I.C.O.N. forces. The troopers manage to kill the bug but not before it manages to drop Lt Razak and knock his helmet off. After the attack, the Roughnecks are ordered to rescue the crew of a downed transport ship. When they get to the crashed ships location they discover that the crew have been captured by Bugs. As the squad track them Bugs back to their nest Lt Razak collapses - it seems he has been infected by spores carried by the Impostor Bug. Doc and Flores go to find the fungus responsible so Doc can synthesise an antidote whilst the rest of the squad keep tracking the Bugs. + + + 2000-02-21 + Letters Home + The Roughnecks are dug in on Klendathu and are facing an inevitable Bug attack. High Command order them to hold the position at all costs. Higgins finds an unfinished letter home an anonymous trooper had begun but not finished. This gives him the idea of taping a series of ""Goodbyes"" from the rest of the squad to the folks back home - just in case. Through out the night the troopers individually record messages to their families on Earth. At day break the Bugs attack but the Troopers manage to hold them off just long enough for a major air strike to hit the Bugs. As they prepare for retrieval Higgins asks Lt Razak if he wants to tape a message to his family - Razak points him at the squad and tells him that these are his family. + + + 2000-03-06 + Checkmate + Lt Razak is called to a mission briefing to find it being given by Sky Marshall Sanchez himself. The Sky Marshall tells the assembled officers about the of the Bug Queen. He then assigns Alpha and Echo squads the mission of locating and destroying the Queen. One bit of seemingly good news is the return of Carl to the squad. But the Roughnecks are dismayed to find an apparent change in his personality. Carl guides the roughnecks to the queens lair but is captured by Bugs enroute losing his helmet in the process. The Roughnecks find the Queen but she is holding Carl as a shield and Rico is unable to pull the trigger on his friend. In the fire fight the Queen drops Carl and Rico returns his helmet. The squad give chase to the Queen but are unable to stop her escaping on a Transport Bug - enroute to Earth!!!! + + + 2000-03-28 + Trackers + /prWq9F5H6tIO2XqCIO94C0bovaR.jpg + The S.I.C.O.N. Fleet is hunting for the Bug Queen, after she escaped in a Transport Bug from Klendathu. + +Whilst in transit the Roughnecks get a mail delivery and find out Higgins had a girlfriend they weren't aware of who had just dumped him. The Roughnecks get annoyed that, whilst Higgins has the info. on them, they are ignorant about him. The Valley Forge intercepts what seems to be the Transport Bug the Queen is in and destroys it. + +As they make their report the same thing is received from the other fleet vessels. Carl twigs that the destroyed bugs were just decoys to distract the fleet whilst the Queen heads toward Earth. Due to Carls psychic abilities the Valley Forge is able to intercept the Queens Transport Bug. But the Bug seems resistant to all the ships weapons. 2The Roughnecks are sent into blow the Bug from the inside. They only have 48 hours before it reaches the Earth. Despite heavy resistance inside the Transport Bug they apparently achieve their missi + /prWq9F5H6tIO2XqCIO94C0bovaR.jpg + + + 2000-03-03 + Among Us + /ua7fzsPzPl7umixsCZ4LMoCrGpm.jpg + All S.I.C.O.N. forces revert to peace status after the Bug Queen has apparently been destroyed. Carl, though, keeps insisting the Queen is still very much alive and on the earth - somewhere. After another argument General Redwing sends him on leave to cool down. Meanwhile the roughnecks are reassigned - to the moons of Jupiter to repair the radio telescopes. Rico believes Carl is right and manages to convince Lt Razak too. Razak cuts through the red tape and gets Gossard to review satellite imagery of the earth before and after the Queens assumed arrival. Gossard finds an new, unexplained, hot spot near to Little Butte, North Dakota. + +The roughnecks divert their shuttle there without formal authorization but the town seems to be normal - until they realize the towns- people all look alike and sound alike. A s soon as they realize this they are attacked by the residents. The Roughnecks manage to capture a resident and get back to the ship. As they take off the r + /ua7fzsPzPl7umixsCZ4LMoCrGpm.jpg + + + 2000-03-17 + Hide n' Seek + A massive bug mound has appeared outside of Buenos Aires. S.I.C.O.N. thinks the Bugs are going to assault the city again so they try to bomb the mound from the air. Plasma Tanker Bugs shot the planes down though and, because they keep changing location the air attacks are unable to neutralize them. So the Roughnecks are sent in with four other squads to locate and destroy the Tanker Bugs so the mound can be bombed to destruction. The squads dig in and hide whilst s decoy force lures the Warrior Bugs defending the Tankers away. Rico's group is almost detected by a Bug but Carl is able to mentally change its view and thus save the group. As the squads move in at night the game is given away by a trooper from another squad who launches a grenade at some Bugs. However this turns out to have a positive effect as all the Tanker Bugs start to fire all at once believing it's another aerial attack thus revealing all their positions simultaneously. The squads launch a missi + + + 2000-03-13 + Requiem + S.I.C.O.N has discovered that there is a vast network of Bug tunnels and colonies beneath the city of San Francisco. S.I.C.O.N. decides the only way to ensure victory is to hit the whole city with nukes the city thus destroying everything above and below ground. Because an evacuation of that size would warn the Bugs it has been decided not to warn the civilian inhabitants. Lt Razak objects to this action and, surprisingly, is supported by his nemesis from INTEL, Lt Walker. The Sky Marshal gives them 24 hours to complete the only alternate plan. + +They need to blow massive holes in the tunnels that run underwater and thus flush out the bugs to street level where troopers would be waiting for them. + +As a safeguard the bombs will be mixed with the last reserves of Toxin B3. If they fail though San Francisco will be destroyed by S.I.C.O.N. as will the two squads. Overall the mission is a success despite a bomb going non-op and needing to be reset. But Lt Razak is killed by + + + 1999-09-21 + Pluto and Beyond + Higgins summarizes the current state of the war on Pluto and Tophet in clips from previous episodes. + + + 2000-03-14 + Funeral for a Friend + General Redwing has ordered the Roughnecks to be split up as she does not have a spare Lt to assign to them. They are given time, though, to time to honour Lt Razak's Last Will so they got to spread his ashes over Luna Lake in Colorado. They are joined by General Redwing and by Sgt. Brutto who is now in a wheel-chair and who doubts his own worth. The squad come across a Bug operation and try to withdraw but General Redwing and Higgins are captured. They are threatened by a Brain Bug and Rico knows he ought to order General Redwing's death. However, by using the spare fuel cells from Sgt Brutto's wheel chair Gossard and Doc blow the mountain according to Rico's plan. Sgt Brutto uses his wheel chair to swoop in and save the hostages whilst the bugs are distracted. Afterwards General Redwing tells Rico he should have had her killed. Rico tells her that was plan ""B"". General Redwing realizes the squad is too valuable to split up so she offers Rico a battlefield prom + + + 2000-03-15 + Spirits of the Departed + /4P8tZ6O9mc7cnEuVazDHiU2L4vS.jpg + As Rico Struggles with his promotion to Lt. as leader of the Roughnecks, after Razacks death, They are assigned to defend S.I.C.O.N. high Command in Honolulu. In Route to Honolulu they pick up Sgt. Brutto's son, Max, who has been assigned to the Roughnecks as per an arrangement made by Sgt. Brutto himself. The Roughnecks come under heavy attack by the bugs and are joined by Sgt. Zimm then forced into an outpost waiting for a pickup. During there struggle Rico looks to Zimm for intructions on what to do, as he is not sure of his command abilities, and assigns Zimm leader of the squad while Rico puts himself on gaurd duty. While on Gaurd Duty, Sgt. Zimm tells Rico the reason he was assigned to him back in Basic Training then to the Roughnecks is because Lt. Razak and Zimm were good friends and they knew Rico was born to be a leader so they made a deal. This gives Rico the confidence he needs and he again assumes command, ordering the Roughnecks to blow up the outposts generator,they hid + /4P8tZ6O9mc7cnEuVazDHiU2L4vS.jpg + + + 2000-01-14 + Propaganda Machine + Higgins is ordered to make a good Fed-Net report hiding the horrors of war and showing something positive about the bug campaign. + + + 2000-02-22 + Marooned + Rico is left floating in space after his pod malfunctions during a drop. + + + 2000-04-05 + Court-Martial of Lt. Razak + /fPl4kwzWXOn7jmOr6qxeudhTIri.jpg + The Roughnecks are about to be dropped on Klendathu into a hot LZ. Lt Razak tells Carmen to clear the LZ as he thinks it's too dangerous for the squad to land. Carman tells him INTEL in the form of Lt Walker ordered no weapons to be used, stealth drop only. Lt Razak overrides her and the LZ is cleared by bombs. As soon as Lt Walker finds out he tells Lt Razak that 6 squads were in that area under General Redwing but they'd lost radio contact. Lt Razak asks why he wasn't told and Walker tells him it was a covert op. on a need to know basis - and Razak didn't need to know. Back at the base Lt Razak faces a court of inquiry with Walker as prosecutor. Lt Walker charges Razak with endangering the squad and wrecking S.I.C.O.N. equipment needlessly, using troopers evidence and flash backs as proof. As the hearing goes on a swarm of bugs attacks the base prompting Lt Walker to exclaim there was a traitor in their midst feeding information to the Bugs and he points at LT Razak + /fPl4kwzWXOn7jmOr6qxeudhTIri.jpg + + + /4dxkE2GsAHTvrwrXKwS54dv449A.jpg + Season 1 + + + + + /zAOx0Q4II27RkNwUJkJMzta2HIQ.jpg + Donald P. Bellisario + Airwolf + 43 + Action & Adventure - War & Politics + + Airwolf + CBS, USA Network + 4 + US + Airwolf is an American television series that ran from 1984 until 1987. The program centers on a high-tech military helicopter, code named Airwolf, and its crew as they undertake various missions, many involving espionage, with a Cold War theme. + +The show was created by Donald P. Bellisario. The first three seasons star Jan-Michael Vincent, Ernest Borgnine, Alex Cord, and Jean Bruce Scott. After the original series was cancelled, a fourth season, with an entirely new cast and on a much smaller budget, was filmed in Canada for the USA Network. + +The show's distinctive musical score, which was originally orchestral-based and shifted to more synthesizer-oriented arrangements early in the second season, was composed and conducted mainly by Sylvester Levay. Udi Harpaz conducted the scores for many later second and third season episodes. + /wskcyxOu1NFs3LUERAvUiowrjXf.jpg + 6.9 + + + 1984-01-22 + + + 1984-01-22 + Shadow of the Hawke + /hzMAN6GywPqWbsQMh4xOmac25QM.jpg + While demonstrating the capabilities of the new prototype supercopter codenamed 'Airwolf', Dr. Charles Moffet goes rogue, steals the chopper and kills almost all of the observers. At least one man -- Michael Coldsmith Briggs III survives. Briggs, codenamed 'Archangel' is the head of a covert organization called 'The Firm' and Archangel calls upon the one man in the world he knows that can retrieve the copter. The problem is Stringfellow Hawke is not only a loner, but a recluse as well. The amount of money the Firm is willing to pay for Airwolf's recovery is irrelevant. Hawke wants just one thing - the safe return of his brother, Saint John, who was captured during the Vietnam war and is evidently a POW. + /hzMAN6GywPqWbsQMh4xOmac25QM.jpg + + + 1984-01-22 + Shadow of the Hawke (2) + /2aozK8i9Cqij5LG0t3AjUMcfVcn.jpg + Hawke and his pal Santini head to Libya to recover Airwolf from it's diabolical creator, but Dr. Moffet turns up the heat by destroying a U.S. Navy warship. When Hawke's girlfriend Gabrielle goes undercover to discover Moffet's nefarious plans, she is captured and tortured and left to die in the desert. It's up to Hawke to recover the chopper, stop Moffet and save the girl, but will he do it all in time? + /2aozK8i9Cqij5LG0t3AjUMcfVcn.jpg + + + 1984-01-28 + Daddy's Gone a Hunt'n + /erYsps5nuPT0IUu91J5kWWjXVaZ.jpg + Hawke and Dom must stop a suspected traitor from turning an advanced military fighter over to the Russians in exchange for his son who was born in Vietnam. Things get complicated, though, when Hawke realizes that he was also involved with the boy's mother during roughly the same era as the child's birth. + /erYsps5nuPT0IUu91J5kWWjXVaZ.jpg + + + 1984-02-04 + Bite of the Jackal + /m6dyWw4Zzb3AndOhzYB6dGz3WE1.jpg + An ambitious executive at the Firm makes a subversive play for Archangel's job. A bomb is planted aboard a vintage helicopter owned by Dominic Santini and he's forced to crash land. When Hawke and Archangel go hunting for Dom, Airwolf is ambushed and shot down. The two must convince a group of locals to help them repair their damaged tail rotor. Complicating matters on Dom's end, he must contend with a stowaway aboard his chopper -- a young girl searching for her dad. + /m6dyWw4Zzb3AndOhzYB6dGz3WE1.jpg + + + 1984-02-11 + Proof Through the Night + /jPxL2YjSIlaMleZ88dF3jnJK1C3.jpg + A Russian mole discovers that scientists in the U.S.S.R. have developed a lethal serum that instantly kills anyone exposed to it. He steals a vial of the serum and contacts his friend Archangel for help in escaping the country with his family. Archangel dispatches Hawke and Santini for the rescue effort, but Airwolf can't handle that much passenger weight -- unless all her armaments are stripped leaving the supercopter defenseless. + /jPxL2YjSIlaMleZ88dF3jnJK1C3.jpg + + + 1984-02-18 + Echoes from the Past + /rmVF9vElnv0UpEGWOdS8joPz28q.jpg + A movie producer hires Santini Air for a dangerous stunt involving the landing of a helicopter onto the roof of a moving semi. Dom and String nearly come to blows, however, when String tries to convince Dom that his reaction time might not be up to snuff for this particular action sequence. Things get even more dicey when it appears that the production might just be an elaborate cover for a high-stakes gold heist. + /rmVF9vElnv0UpEGWOdS8joPz28q.jpg + + + 1984-03-03 + Echos From the Past + /kqh7ttQAYXoj0M81Vq4eapxXhhS.jpg + Hawke meets a mercenary who claims to have information regarding his missing brother. When they part company, Hawke loses consciousness in his helicopter and crashes. When he comes to, he finds himself in a hospital. The medical staff inform him that he has been in a coma for the better part of a year. His friends, Archangel and Dom, were killed on a POW camp raid, but in the process, their heroism helped rescue Hawke's brother Saint John. Believing that his "mission" is over, Hawke reveals the location of Airwolf to his captors, then discovers that it has all been an elaborate ruse and he has inadvertantly turned over the super copter to a group of foreign conspirators. + /kqh7ttQAYXoj0M81Vq4eapxXhhS.jpg + + + 1984-03-10 + Fight Like a Dove + /evV2ZoWjjOE2h3xZZiIIPUTkGVX.jpg + An Israeli war crimes hunter is killed by a suspected Nazi named Hans Daubert in France. His daughter vows revenge and seeks the help of String and Dom, along with Airwolf, to bring him to justice. Complicating matters is Archangel's involvement with Daubert who is a known arms dealer selling to the powers that he chooses to in order to influence political outcomes in the world -- and Archangel is his supplier! + /evV2ZoWjjOE2h3xZZiIIPUTkGVX.jpg + + + 1984-03-24 + Mad Over Miami + /jpwmpJp8ck5b45eeWB7kjo4yGVv.jpg + Santini makes an unauthorized flight to Cuba in order to rescue two political prisoners who are being ransomed for $2 million. However, while there, the exchange site is attacked and the ransom money is stolen. While flying back to the mainland, Santini is forced to crash land back on Cuba and Hawke must brave a hurricane in Airwolf to rescue his friend. When String and Dom are reunited, the pair must negotiate with a band of freedom fighters who raised the capital to ransom their compadres and are not convinced of Santini's innocence in the theft of the funds. To make matters more interesting, Archangel is supplying weapons to a paramilitary band that just may have had a hand in stealing the ransom money. + /jpwmpJp8ck5b45eeWB7kjo4yGVv.jpg + + + 1984-03-31 + And They Are Us + /oFNxqO1fI5n7h1EpmFFdRw6CuH1.jpg + North and South Limbawe are in conflict over oil and a despotic General plans to overthrow his own government in South Limbawe and attacks his neighbors to the North. String and Dom are sent by Archangel to aid North Limbawe and it's leader, Seku Logana, but Logana has his own prejudices about receiving aid for his cause. Also in the mix is an old Vietnam buddy of Hawke's, Marty Vidor, who is working as a mercenary for South Limbawe, and Hawke is hesitant to take him on since Vidor just may know the location of the missing Saint John. + /oFNxqO1fI5n7h1EpmFFdRw6CuH1.jpg + + + 1984-04-07 + Mind of the Machine + /45a0nyysvKmdWsA6CjtErCEjGsO.jpg + Dr. Robert Winchester is a brilliant researcher and a former test pilot who helped design Airwolf. Now, he's asking for Hawke's help in test flying a simulator that he's designed to enable the Firm to train future test pilots to fly Airwolf. Reluctantly, Hawke agrees, but determines that the simulator's "feel" is a little off. Archangel convinces Hawke to let Winchester hook up the real Airwolf to his computers in order to get a more realistic demonstration. This allows Winchester to engage in a little friendly flying competition with Hawke but it also allows the Russians to nearly get their hands on the high tech super copter. + /45a0nyysvKmdWsA6CjtErCEjGsO.jpg + + + 1984-04-14 + To Snare a Wolf + /iA6o2v4Mjl74xA9gCGO8Aabq2C9.jpg + Archangel warns String about a zealous government bureaucrat named D.G. Bogard who will stop at nothing until he finds Airwolf. Dom and Hawke take time out from shooting a military training film to hide Airwolf in a different location before it can be discovered, but Bogard catches on to their ruse and tracks Hawke back to the new hideaway. To complicate things, an eager pilot tails Dom and Hawke in an effort to convince Santini that she deserves a job working for his company. + /iA6o2v4Mjl74xA9gCGO8Aabq2C9.jpg + + + /rDvfG8XrR59eyb7h1TIzvAqHQQp.jpg + Season 1 + + + 1984-09-22 + + + 1984-09-22 + Sweet Britches + /l8XLpZVKHU82QXhVcTGq1m2cOlU.jpg + After an old Vietnam buddy of Hawke's is shot in the desert when trying to escape a corrupt Sheriff, Hawke gets a call from an inmate who had been in jail with the man to aleart him of the escape, and flies with Dominic in Airwolf to Pope County, Texas, to investigate. There, Hawke meets Highway Patrol Deputy Caitlin O'Shannessy, who had a run in with Sheriff Bogard prior to the killing; but Hawke's appearance on the scene sees him arrested by Bogard and released on a private game reserve, where gun-happy sportsmen pay big money to hunt big game – and Hawke is the latest bait... + /l8XLpZVKHU82QXhVcTGq1m2cOlU.jpg + + + 1984-09-29 + Firestorm + /rrLGC6ofm2sPY2qxFVC1jU55EJV.jpg + Eddie, a friend of Dominic's, was once a pilot until a air crash in which his passengers were killed, causing him to loose his nerve and turn to drink as a result. Living alone in his trailer in the desert, Eddie's alcohol problem has recently become even worse after supposedly seeing lights in the sky in the middle of the night. Though trying to help his friend, Dominic is as sceptical as everyone else, blaming the sightings on Eddie's drunken state, until one night he sees the lights to... The next morning, Hawke arrives to find that the pair of them have vanished, and in searching for them, stumbles upon a fanatical militarist's organisation, who is planning to launch his own nuclear missile against Russia... + /rrLGC6ofm2sPY2qxFVC1jU55EJV.jpg + + + 1984-10-06 + Moffett's Ghost + /3F9KxChQGHTA1PP9VJnaATTiQnv.jpg + In the midst of it's key part in delivering and collecting a leading American scientist to top secret sanctions aimed at cooling international tensions with Russians, Airwolf develops a seeming computer virus in it's systems, which periodically takes pilot control and makes it a potential killing machine in the air. The systems have been taken over buy a ""time-bomb"" left by the chopper's evil creator, Dr. Moffett, who has programmed it to begin the deadly behaviour if not given it a recognition code by him at that time. Hawke and Dominic must decide whether to let the Firm scientists try and work on the machine - risking having them snatching it back away from them - or to find another way to try and cure The Lady before completing their part in the sanctions, knowing that if they fail to completely cure it, they jeopardise not only international relations, but potentially hundreds of lives... + /3F9KxChQGHTA1PP9VJnaATTiQnv.jpg + + + 1984-10-13 + The Truth About Holly + /bwR1ZwyGlqFaSLe799n5QhjWyt3.jpg + After Hawke rescues Dominic's niece Holly from a mobster's compound in Mexico, strange things start happening at Santini Air. At first, Hawke and Dominic assume that the mobster is trying to scare the girl, but, especially when Hawke turns down Holly's advances of romance, the incidents get worse... Meanwhile, Caitlin O'Shannessy arrives fresh from her escapade with Hawke against the corrupt Police of Pope County, and looks for work at Santini Air. He close relationship with Hawke somehow seems to fuel the incidents... + /bwR1ZwyGlqFaSLe799n5QhjWyt3.jpg + + + 1984-10-20 + The Hunted + /nme9Ydv9NWrEzS8VrQTJaOQdoBH.jpg + Santini Air is hired for a 30 day period by agents on behalf of a industrial millionaire, to be on stand-by to pilot the man on an important journey when called upon. Dominic is excited at the prospect of the high-paying job, but Hawke is more sceptical and intends to find out just why they've been given the contract. But unbeknown to any of them, Caitlin's new boyfriend is plotting to assassinate the millionaire; and matters are not helped any by some malfunctions that Airwolf is suffering... + /nme9Ydv9NWrEzS8VrQTJaOQdoBH.jpg + + + 1984-10-27 + Sins of the Past + /uXFE1GO2fM8gnM85Wcc9Bk4al8o.jpg + Dominic is distraught to hear that his daughter Sally-Anne – whom Hawke never even knew existed – has been found dead on the beach after over-dosing, in the Caribbean Island of San Remo, where Dom himself was born. Detouring in their way to a top-secret Airwolf mission for the Firm, Hawke flies Dominic to the island to attend the funeral, only for it to end in an argument with his bitter ex-wife Lila. Returning from their mission, they hear that Lila was murdered the previous night, and Dominic is arrested as the prime suspect. When Archangel is ordered not to allow Firm involvement as not to risk uncovering the secret mission, Hawke heads to the luxurious San Remo to investigate the murder for himself, and finds the island is living in the shadow of a new gambling casino, run by a very shady character with great influence in the area... + /uXFE1GO2fM8gnM85Wcc9Bk4al8o.jpg + + + 1984-11-03 + Fallen Angel + /xgQWKjj1cTT9mR48JtFwRR0QzYV.jpg + String must add Caitlin to the Airwolf crew, in order to rescue Archangel from behind enemy lines. + /xgQWKjj1cTT9mR48JtFwRR0QzYV.jpg + + + 1984-11-10 + HX 1 + /b2OSTAPApntPOKqt7RQvFcdEAtH.jpg + When new hi-tech attack chopper HX1 is stolen by an elite group of mercenaries, the tactics used fits those that Hawke's MIA brother St. John was trained in, and Hawke is certain that his brother may somehow be involved. Dominic begs him to leave well alone, but Hawke is adamant, and with Archangel insisting that if it cant be retrieved, the Firm will blow HX1 and anyone flying it out of the sky, Hawke goes back into his past and some of the people he knows from it, to desperately try and get a lead on the group and mercenaries and possibly St. John... But the HX1 is so powerful, it may even be able to blow Airwolf out of the sky... + /b2OSTAPApntPOKqt7RQvFcdEAtH.jpg + + + 1984-11-17 + Flight #093 Is Missing + /7yYTVqMzOmctoaBblldOkYRx4Vi.jpg + Caitlin is a passenger on board a plane which Airwolf is sent to search for after the plane is hijacked and forced down at sea. + /7yYTVqMzOmctoaBblldOkYRx4Vi.jpg + + + 1984-11-24 + Once a Hero (a.k.a. Heroes) + /lyhAmEOdfYyo5ATEvIYSArTypUR.jpg + String receives information that St. John is being held in a POW camp, but by the time a rescue operations put into effect St. John has been moved. + /lyhAmEOdfYyo5ATEvIYSArTypUR.jpg + + + 1984-12-08 + Random Target + /dxJBolVjUJag0Rh843V3KbfIgId.jpg + While filming aerial footage, String and Dom accidentally get footage of a mobster believed dead. + /dxJBolVjUJag0Rh843V3KbfIgId.jpg + + + 1985-01-05 + Condemned + /vyxfT8ggFNKpsJQhe71sJI9NwzZ.jpg + String and Caitlin are sent to a remote Alaskan research station where a deadly Russian bacteria has been let loose. + /vyxfT8ggFNKpsJQhe71sJI9NwzZ.jpg + + + 1985-01-12 + The American Dream + /qVO9FwzL73wHd2Bwx9Dma58wnS0.jpg + The Airwolf crew decides to help a group of Vietnamese farmers get their crop to market, after a warlord threatens their lives. + /qVO9FwzL73wHd2Bwx9Dma58wnS0.jpg + + + 1985-01-26 + Inn at the End of the Road + /naAA72y659BtrEPlvFe3QIOFq9p.jpg + A pilot who escaped from terrorists who stole an experimental aircraft guidance computer leads the Airwolf team to the remote community where the terrorists are holed up. + /naAA72y659BtrEPlvFe3QIOFq9p.jpg + + + 1985-02-02 + Santini's Millions + /8m2kUiwNPzKStBGhf15sD29vS7Z.jpg + Dom inherits from the estate of a millionaire whom he had earlier rescued from a plane crash. + /8m2kUiwNPzKStBGhf15sD29vS7Z.jpg + + + 1985-02-09 + Prisoner of Yesterday + /50jibFLG6X4If1MhZsmp36LA2Pe.jpg + The Airwolf team ends up stopping a Banana republic coup when they set out to rescue Doc, who had been kidnapped to treat the nation's leader. + /50jibFLG6X4If1MhZsmp36LA2Pe.jpg + + + 1985-02-23 + Natural Born + /jVK7EJRqRKpPKLluHggcrI4LP3A.jpg + The Airwolf crew befriend a runaway looking for revenge on the drug runners that murdered his uncle. + /jVK7EJRqRKpPKLluHggcrI4LP3A.jpg + + + 1985-03-02 + Out of the Sky + /binVz5LyqivrDFXekC5pKVpAYQC.jpg + While working on a music video, String helps a country singer whose manager plans to kill her in an effort to boost album sales. + /binVz5LyqivrDFXekC5pKVpAYQC.jpg + + + 1985-03-16 + Dambreakers + /2KJwy6viQSfuuiI69HtmWcF5t60.jpg + String and a reporter friend are taken hostage by terrorists who have taken over a Christian commune. + /2KJwy6viQSfuuiI69HtmWcF5t60.jpg + + + 1985-03-23 + Severance Pay + /67lEkFts77y1Jg360N7Tt439NgT.jpg + String must bring in a disgruntled former Firm employee whose been denied his retirement benefits. + /67lEkFts77y1Jg360N7Tt439NgT.jpg + + + 1985-04-06 + Eruption + /ljqRzxy6MVQ5kzpPvCwaE4hDZTe.jpg + After being forced down by a volcano eruption, String and Dom discover a mining town being run as a slave colony. + /ljqRzxy6MVQ5kzpPvCwaE4hDZTe.jpg + + + 1985-04-13 + Short Walk to Freedom + /alLGEoBZPPhWQP02LpggRCQJ2fy.jpg + String is captured by Latin American revolutionaries while attempting to rescue American archaeological students trapped by a coup. + /alLGEoBZPPhWQP02LpggRCQJ2fy.jpg + + + /A4tvNeYcFyCU98RwIG1Y3kgiGVO.jpg + Season 2 + + + 1985-09-28 + + + 1985-09-28 + The Horn of Plenty + /wrpBMbY7yNObV277Scbdf35QaTu.jpg + Hawke takes a seemingly luxurious Santini Air job, piloting and accompanying a beautiful, high-flying business woman for a few days, but ends up duped into being hypnotised in an elaborate plot by master criminal John Bradford Horn. Horn has desire to take over a small country as his own, and intends to have the hypnotised Hawke deliver Airwolf to him so he can use the chopper's fierce fire-power to succeed in his goal... + /wrpBMbY7yNObV277Scbdf35QaTu.jpg + + + 1985-10-05 + Airwolf II + /ppdyZgpArcZow3nrsh5jopjxZFX.jpg + Hawke is at a friend's prestigious ceremony when Archangel pulls him out and accuses him of being involved in a robbery the previous night in which items that could be used by Airwolf were stolen by thieves in a helicopter matching the Santini Air chopper. But Archangel is suspended by the Firm, who've built a new model of Airwolf – Airwolf II, called 'Redwolf', and piloted by Harlan ""Tex"" Jenkins, who worked on the original Airwolf project and has always insisted that he, not Dr. Moffett, was the true creator. But things backfire for the Firm when Jenkins steals Airwolf II - and before he hands it over to the foreign agents he's in league with, he plans a showdown with his old rival – Stringfellow Hawke; a duel that brings Airwolf vs. Airwolf... + /ppdyZgpArcZow3nrsh5jopjxZFX.jpg + + + 1985-10-12 + And a Child Shall Lead + /9ItjgHfu0d9ZBK6Cabh49N7PFPK.jpg + String is aided in the rescue of a kidnapped industrial designer by the man's retarded son. + /9ItjgHfu0d9ZBK6Cabh49N7PFPK.jpg + + + 1985-10-19 + Fortune Teller + /ngf0rSVmfrh1Zbj5zUxrWJZO1Wf.jpg + Hawke and Dominic arrive for a rendezvous with Archangel in the desert, only to find his jeep abandoned and no sign of him. The F.I.R.M., who have reason to believe that he has turned traitor, give him 48 hours to be found before they send in the Zebra squad – an assassination squad that take out suspected traitors. Dominic asks for the help of a reluctant psychic in finding Archangel's whereabouts, much to Hawke's scepticism. Archangel is actually being held by a rich crime baron who is determined to get his hands on ""The Fortune Teller"" – an in-flight device that out-guesses the opponent's next move - of which Archangel has been involved of the development... + /ngf0rSVmfrh1Zbj5zUxrWJZO1Wf.jpg + + + 1985-10-26 + Crossover + /loqkjXzLr8c3z1DmmkV7hcuT2Kn.jpg + String falls for the Czech woman scientist, whom he's helping defect to the west. + /loqkjXzLr8c3z1DmmkV7hcuT2Kn.jpg + + + 1985-11-02 + Kingdom Come + /mjJ2n4ZmOlRpor3ub5FNL9weS4V.jpg + When a professional group of thieves steal a batch of thermonuclear detonators, which can cause mass destruction if they fall into the wrong hands, Archangel has reason to suspect that the robbery was an inside job, and sends Hawke and Santini to use Airwolf to track down the detonators before they can be used by the criminals. Meanwhile, while Hawke and Dom are busy tracking down the detonators, a man arrives at Santini Air asking Caitlin to give him flying lessons, and soon strikes up a romance with her – but unbeknown to her, he is actually an ex-F.I.R.M. employee who was the inside man on the robbery, and now plans to use her in a trap to get his hands on Airwolf, which he intends to use to fly the detonators out of the country with... + /mjJ2n4ZmOlRpor3ub5FNL9weS4V.jpg + + + 1985-11-09 + Eagles + /ApPO9KtLx8454i77fsiS6P55NDw.jpg + At a National Air Race show, Hawke and Dominic befriend an attractive pilot racer, unaware that she's being pursued by her boss and his henchmen after stealing some tapes that can prove that a new combat jet is too unstable to be flown – something that her boss is determined to cover up at any cost... + /ApPO9KtLx8454i77fsiS6P55NDw.jpg + + + 1985-11-16 + Annie Oakley + /6CwToacAgHcg4VZkIMIBnbpr8Qx.jpg + When ""The Mongoose"", a new laser weapon, is stolen, the thieves fall out, and one of them contacts The F.I.R.M. with hope of returning the weapon for reward. Archangel sends Hawke, with Dominic and Caitlin, to work undercover as stunt men at a travelling Wild West show where the man is hiding out, but when their contact is killed in a suspicious ""accident"", it's up to them to find out the whereabouts of the weapon for themselves before the thieves can sell it to foreign agents... + /6CwToacAgHcg4VZkIMIBnbpr8Qx.jpg + + + 1985-11-23 + Jennie + /1OXviPzTsdUjv3eIjTRL0tPUzKR.jpg + Arriving in Airwolf in a war-torn South American country, Hawke, Dominic and Caitlin rendezvous with ""living legend"" freedom fighter leader El Gato, in a mission to rescue a US scientist who is being held captive. Dominic and Caitlin wait at the pick-up point as Hawke and El Gato set off on the rescue bid, but during the escape after locating the scientist, El Gato is killed, and Hawke's radio to Airwolf is destroyed. Hiding in from the pursing terrorist army in the area's dense growth, Hawke and the rather arrogant scientist meet a teacher and her group of hearing-impaired children, who are homeless after village was destroyed by the terrorists. Hawke attempts to lead the group to safety as they head to the pick-up point, trying to find a new home for the teacher and her students, and all the time avoiding the terrorist army along the way... + /1OXviPzTsdUjv3eIjTRL0tPUzKR.jpg + + + 1985-11-30 + The Deadly Circle + /fTKtZ57KIvned0ILMrPjbEuIFRo.jpg + The families of one of String's friends from Vietnam are kidnapped along with Dom and Caitlin by people seeking revenge against those who destroyed their village during the Vietnam conflict. + /fTKtZ57KIvned0ILMrPjbEuIFRo.jpg + + + 1985-12-14 + Where Have All the Children Gone? + /cQqmhc0OeSheFPTKg0h9AKFuZhs.jpg + At the funeral of a Vietnam comrade, Hawke takes it upon himself to deliver the man's coffin flag and Congressional Medal of Honour to the soldier's brother, Billy Fargo. But arriving in the small rural town where Fargo is reported to be living, he finds the whole area inhabited solely by youths, all under their ""father"" Fargo's influence. Fargo emerges to be a deranged ""peace-loving"" hippie, who, with his wily cohort Sabrina, is planning to use the youngsters to help in a plot to make a destructive anti-nuclear statement to the world... + /cQqmhc0OeSheFPTKg0h9AKFuZhs.jpg + + + 1985-12-21 + Half-Pint + /rAlxOcuOtyEmO4LJnxT6CPS4JnR.jpg + String decides to adopt St. John's Amerasian son when theson's discovery points to St. John being dead. + /rAlxOcuOtyEmO4LJnxT6CPS4JnR.jpg + + + 1986-01-11 + Wildfire + /l5Kaq4wTv3ph6w8TtbtLi753uqQ.jpg + Dominic introduces Hawke and Caitlin to an old friend, Big Cec – the owner of an oil drilling company in the desert, and his son Little Cec, who works at the company. But they find themselves walking into the middle of a feud that has emerged between the two since the death of Big Cec's wife. With Dom staying with the pair for a few days, he is shocked to learn that Little Cec was thrown out of college for selling marijuana, and is even more concerned when he discovers that he now is being forced by a head of the oil company to make drug runs in part of a drug smuggling operation. Dom sets about trying to put things right, but it is no easy task going against the ruthless drug runners... + /l5Kaq4wTv3ph6w8TtbtLi753uqQ.jpg + + + 1986-01-18 + Discovery + /1EFrSjteUBj9u0i4wAB8EFN3hBh.jpg + A man who once failed to steal Airwolf is given a second chance when a young lady he knows stumbles upon its hiding place. + /1EFrSjteUBj9u0i4wAB8EFN3hBh.jpg + + + 1986-01-25 + Day of Jeopardy + /yVA7OAY5WhH3UoagZ08h0jd18Vk.jpg + After Tess Dixon, the wife of infamous crime-lord Cullen Dixon, escapes his bodyguards while swimming in the sea at night, Archangel asks Hawke and Santini to deliver her safely via Airwolf to a top-secret location, where she will testify against a cartel of corrupt businessmen who are plotting to assassinate high-ranking officials in Washington. Tess is an old flame of Hawke's, something which makes him very reluctant to accept the mission, before he finally agrees, but they come under continual attack as Cullen Dixon's men aim to see that Tess never makes it to testify... + /yVA7OAY5WhH3UoagZ08h0jd18Vk.jpg + + + 1986-02-01 + Little Wolf + /4WBmSYazMxjMebCQcplmgtbkFx.jpg + String and Dom become involved in a custody dispute when a friend of Strings who was about to be divorced dies leaving his wife and mother to battle for his infant son. + /4WBmSYazMxjMebCQcplmgtbkFx.jpg + + + 1986-02-08 + Desperate Monday + /pCiv5G4e9mHONa5W1Z96ekjHSOo.jpg + At Caitlin's sorority reunion kidnappers after one of her ‘sisters' bungle the job and end up holding the whole reunion hostage. + /pCiv5G4e9mHONa5W1Z96ekjHSOo.jpg + + + 1986-02-15 + Hawke's Run + /twmhgKkAKjTEPBUXoBuHiDsMjHK.jpg + String discovers that an old friend is a double agent when a schematic he was to turn over to the FIRM is stolen. + /twmhgKkAKjTEPBUXoBuHiDsMjHK.jpg + + + 1986-02-22 + Break-In at Santa Paula + /bBKw8ixpXErRQJUNjK1JOmjhmk3.jpg + The wife of a deceased old friend of Hawke's begs him to rescue her son Terry, who is in a corrupt Mexican prison after being framed, with a bad heart condition. After visiting the prison posing as the boy's uncle, in order to survey the layout, Hawke, Dominic and Caitlin make the rescue bit; but the attempt fails when Terry attempts to take an ill friend with them, causing Hawke himself to be captured and held in the prison... + /bBKw8ixpXErRQJUNjK1JOmjhmk3.jpg + + + 1986-03-15 + The Girl Who Fell from the Sky + /kK5H1dziin4YGuiP1xOLY9ni9Qd.jpg + Hawke is doing some late-night fishing on the lake outside his cabin, when he sees a helicopter fly over and drop a body into the water. Pulling the unconscious, dumped young woman out and taking her to hospital, he finds that the girl has amnesia due to her trauma, but doctor's examination indicates that she is a drug user and worked as a prostitute. Hawke sets out to help the girl find out her true identity, and just what trouble she was in that had led to people trying kill her - but when the hit-men who had dumped her into the lake find out that she is still alive, they set out to see that neither girl or Hawke are around to uncover the truth about her... + /kK5H1dziin4YGuiP1xOLY9ni9Qd.jpg + + + 1986-03-22 + Tracks + /xkxLuTIl0siBRGO4Bv4WpuJlnWn.jpg + String takes group of wheelchair-bound Vietnam war vets on a mountain hike adventure, but they wind up fighting for thier lives when a deranged mountain man, wants them off his mountain at any cost. + /xkxLuTIl0siBRGO4Bv4WpuJlnWn.jpg + + + 1986-03-29 + Birds of Paradise + /m05FCSH9grVTwWhWtsnnKK4N4jf.jpg + String comes to the aid of his nephew who asks String for help when his mother disappears for a week. + /m05FCSH9grVTwWhWtsnnKK4N4jf.jpg + + + /jGX1K8kgdbxReDxPt33OUXO0ilX.jpg + Season 3 + + + 1987-01-23 + + + 1987-01-23 + Blackjack + /aerV7K0QFdSKfmpU5CFYrwKXYxx.jpg + Dom is killed in a helicopter accident that also severely injures String. Dom's niece, Jo, inherits and takes charge of Santini Air. The Company sends Locke to regain possession of Airwolf, he recruits Major Mike Rivers ,an Air Force pilot to help him find and fly the craft. Together they rescue St. John from a jungle prison and he and Jo round out the new Airwolf team. + /aerV7K0QFdSKfmpU5CFYrwKXYxx.jpg + + + 1987-01-30 + Escape + /xfxT49ZvxrGj63LMcSbDikhaG7H.jpg + After being captured and sentenced to die, Jo's only hope for survival lies with a Soviet defector. + /xfxT49ZvxrGj63LMcSbDikhaG7H.jpg + + + 1987-02-06 + A Town for Hire + /haOd32Qz3aOUeKTs8IVrUfzfqpT.jpg + St. John is following Jo in a bi-plane as she tries out a new navigation device in a helicopter over an area of wilderness, when her helicopter is suddenly struck from the ground by a laser-beam that sends her chopper crashing down. St. John's plane is also hit, but he manages to land in the nearby town of Santa Mira before he looses consciousness. Waking up the next day in the local hospital, he is infuriated that nobody seems to believe his story and is out looking for Jo. But when he arrives at the crash-site, there is no sign of the crash ever happened, and as St. John tries to find out what is going on, he finds that the small boom town is held in some kind of grip of fear... + /haOd32Qz3aOUeKTs8IVrUfzfqpT.jpg + + + 1987-02-13 + Salvage + /7HEXtt0YmIDIgqlCbT2qXayTSfg.jpg + A former female employee of the Company, who has suffered mental trauma after a Company mission went wrong, insists that she is seeing strange lights and hearing unexplained noises in the middle of the night, over her remote home and the nearby Indian burial ground in the rural town of Devil's Ridge. Jason sends St. John and Mike to investigate, and they are just as sceptical as everyone else, putting it down to her mental troubles, but the source of the disturbances is actually a stolen super-helicopter – a third version of Airwolf called ""The Scorpion"" – is hidden in the area, waiting to be picked up by KGB agents... + /7HEXtt0YmIDIgqlCbT2qXayTSfg.jpg + + + 1987-02-20 + Windows + /J7YpN8Y5DqO2nCWovJbji1muvp.jpg + St. John and crew are under a deadline to recover a piece of stolen satellite hardware which is needed for an upcoming space shuttle flight. + /J7YpN8Y5DqO2nCWovJbji1muvp.jpg + + + 1987-02-27 + A Piece of Cake + /2PIHNTDJqJyPowAut4AatNp5a7z.jpg + The grandfather of one of four juvenile delinquents Jo and Mike have taken camping plans on killing the rest of the camping party in order to regain custody of his grandson. + /2PIHNTDJqJyPowAut4AatNp5a7z.jpg + + + 1987-03-06 + Deathtrain + /dOIrjFAAwcTTloaRlMgCypeKs2u.jpg + Locke does not get along with the Russian agent he has been assigned to work with to guard a train full of nerve gas that is to be destroyed. + /dOIrjFAAwcTTloaRlMgCypeKs2u.jpg + + + 1987-03-13 + Code of Silence + /iCXqGxY3r3ONbqcGH9IaQ5Yuuln.jpg + St. John and Locke uncover a military cover-up when they represent opposite sides at a court martial. + /iCXqGxY3r3ONbqcGH9IaQ5Yuuln.jpg + + + 1987-03-20 + Stavograd (a.k.a. The Stavograd Incident) (1) + /Sr1KinhoWWoIrHNoqyvk2fOd2I.jpg + The Russians reluctantly agree to allow the Airwolf team help them contain a nuclear power plant that has had a meltdown. + /Sr1KinhoWWoIrHNoqyvk2fOd2I.jpg + + + 1987-03-27 + Stavograd (a.k.a. The Stavograd Incident) (2) + /kX8KXJb0RBRxCkLJoHcA5QKmYTp.jpg + The Russians reluctantly agree to allow the Airwolf team help them contain a nuclear power plant that has had a meltdown. + /kX8KXJb0RBRxCkLJoHcA5QKmYTp.jpg + + + 1987-04-03 + Mime Troupe + /abhWBdtlN7QDN4lpl4SLJsvgsIM.jpg + The Airwolf team is assigned to guard the daughter of an Interpol agent who is marked for death by terrorists. + /abhWBdtlN7QDN4lpl4SLJsvgsIM.jpg + + + 1987-04-10 + X-Virus + /64SkVwmNOADazzYbean19lmMyOd.jpg + The Airwolf team tracks down the source of a genetically engineered virus that has claimed the life of one of St. John's friends. + /64SkVwmNOADazzYbean19lmMyOd.jpg + + + 1987-04-24 + Rogue Warrior + /8NmYimwvyyPXMNc0wFPMg5tRIyl.jpg + A security leak is blamed on Locke when his behavior changes as a result of seeing a friend killed on a mission behind the Iron Curtain. + /8NmYimwvyyPXMNc0wFPMg5tRIyl.jpg + + + 1987-05-01 + Ground Zero + /j8IKdBI9ENkoNO5wNhXIU7C88lU.jpg + A Japanese Kamikaze pilot who survived being shot down by St. John's father during WWII plans on restoring his honor by killing St. John and destroying a nuclear power plant. + /j8IKdBI9ENkoNO5wNhXIU7C88lU.jpg + + + 1987-05-08 + Flowers of the Mountains + /fPxVmMqi9UdOp5lrgsGvNBPQcy5.jpg + A jet manufacturer sabotages his own plane that St. John is test piloting rather than let St. John reveal its inferior construction. + /fPxVmMqi9UdOp5lrgsGvNBPQcy5.jpg + + + 1987-05-15 + The Key + /p6hbI42FVBc3llFmy3nACqh1zuS.jpg + The Airwolf team is sent in to stop a group that has taken control of ten Soviet and ten American nuclear missile silos and threatens to set them off unless everyone agrees to total nuclear disarmament. + /p6hbI42FVBc3llFmy3nACqh1zuS.jpg + + + 1987-05-22 + On the Double + /f6uhLR4CGx7WF9Vx1WRJuIBpIEr.jpg + Mike and the wife of an East German double agent! pilot he had been impersonating are kidnapped at an air show in Paris. + /f6uhLR4CGx7WF9Vx1WRJuIBpIEr.jpg + + + 1987-05-29 + Storm Warning + /201pUIdeJy5hsqBvWNZ8TPdJBnj.jpg + A banana republic dictator takes St. John and the family of one of St. John's friends- who had discovered that the dictator was skimming American aid- hostage on a remote island. + /201pUIdeJy5hsqBvWNZ8TPdJBnj.jpg + + + 1987-07-03 + The Golden One + /yTq79GTHkS0vE8bnH2noKO3VJ7W.jpg + Jo is lured to Afghanistan by an old boyfriend who has sold her as a bride to a rebel leader. + /yTq79GTHkS0vE8bnH2noKO3VJ7W.jpg + + + 1987-07-10 + The Puppet Master + /n3dRbB7cX078DUCFdwpvB2vX9PB.jpg + Locke's girlfriend is given a behavior implant module which forces her to turn Locke over to a lady scientist who uses the same procedure on Locke in order to gain control of Airwolf. + /n3dRbB7cX078DUCFdwpvB2vX9PB.jpg + + + 1987-07-17 + Malduke + /wxzxwBmmZvHZ6eDG37epa3y7AJb.jpg + The Airwolf team is sent to stop a man who has hijacked a Japanese freighter carrying nuclear waste. The man plans to blackmail the nations of the Earth into guaranteeing all diseased persons. + /wxzxwBmmZvHZ6eDG37epa3y7AJb.jpg + + + 1987-07-24 + Poppy Chain + /hoTO8Tz8B20EtqBmpb110vJwUnu.jpg + The Airwolf team travels around the world as they put an opium ring run by St. John's former commander out of business. + /hoTO8Tz8B20EtqBmpb110vJwUnu.jpg + + + 1987-07-31 + Flying Home + /ixAWYurS4PXaxXjfAJR9sxWvURg.jpg + Jo's ailing father aids the Airwolf team in recovering radioactive material stolen by a group of Neo-Nazi 5. + /ixAWYurS4PXaxXjfAJR9sxWvURg.jpg + + + 1987-08-07 + Welcome to Paradise + /gsn0cBE1iG6OhqNKZ9zVemzG6dW.jpg + John comes to the aid of an old flame whose husband was killed by drug dealers. + /gsn0cBE1iG6OhqNKZ9zVemzG6dW.jpg + + + /knoJddzREa2pRD98UxMofEQmrJv.jpg + Season 4 + + + + + /qeP3xUNOvNEQAk3v1gF3a5YwbcL.jpg + Tom Wheeler + The Cape + 60 + Action & Adventure - Drama + http://www.nbc.com/the-cape/ + The Cape + NBC + 1 + US + "The Cape" is a drama series following Vince Faraday, an honest cop on a corrupt police force, who finds himself framed for a series of murders and presumed dead. He is forced into hiding, leaving behind his wife Dana and son, Trip. Fueled by a desire to reunite with his family and to battle the criminal forces that have overtaken Palm City, Vince Faraday becomes "The Cape" - his son's favorite comic book superhero - and takes the law into his own hands. + /EQQUwlUe5rCFqON04aO4oXB3Un.jpg + 4.5 + + + 2011-01-09 + + + 2011-01-09 + Pilot + /sVpPejXJmlanSaf9mwGS9EUxLnh.jpg + Former police sergeant Vince Faraday is framed as notorious criminal Chess and left for dead at the hands of the corrupt ARK corporation's security. Mentored by Max Malini among a group of bank robbers who use carnival talents, Vince must leave behind his wife and son to fight against corruption in Palm City, including villains Chess and Scales. Under the guise of The Cape, Vince must trust mysterious blogger Orwell to help in the fight. + /sVpPejXJmlanSaf9mwGS9EUxLnh.jpg + + + 2011-01-09 + Tarot + /u7Ho2nsFfwhzq44eaJabRbuigWh.jpg + Ark Corporation's aim is at prison privatization, but The Cape will battle Chess and his newest ally Chef to stop it. As Chess and Chef set their sites on Secretary for the Bureau of Prisons Patrick Portman, the Cape intervenes, barely surviving the encounter. Orwell, Max Malini, and the circus gang band together to help the Cape recover and also save Patrick. Aired the same date as the previous episode. + /u7Ho2nsFfwhzq44eaJabRbuigWh.jpg + + + 2011-01-17 + Kozmo + /zGQsSWBkNcWotiOAbgC2OJ7Rhm9.jpg + Max Malini's old friend Gregor Molotov has come to town, but not for a friendly visit. He is looking for whoever has the cape, and The Cape/Vince has to protect the carnies who took him in. Dana, Vince's wife, returns to work after grieving his loss and sees Palm City's corruption at work in the public defender's office. She also discovers there were witnesses when Vince vanished. + /zGQsSWBkNcWotiOAbgC2OJ7Rhm9.jpg + + + 2011-01-24 + Scales + /ox4uy1OQeRiH0U8lAHheePUtFEB.jpg + When "The Cape" tips off Dominic Raoul (aka Scales) that Peter Fleming has been extorting money from him, Scales heads to a costume party on a train to confront Fleming. "The Cape" and Orwell, also at the party, discover Max and the gang are going to heist the train, and Vince/The Cape is conflicted about what to do. Meanwhile, Dana and Trip must endure scrutiny and taunts while trying to deal with their loss. + /ox4uy1OQeRiH0U8lAHheePUtFEB.jpg + + + 2011-01-31 + Dice + /Fh55ZHQwVvpUrBrIYNVni5XXPt.jpg + Peter Fleming (aka Chess) and the ARK Corporation prepare to unveil a special device that may alter the fate of Palm City. Tracey Jerrod (aka Dice), a young savant and inspiration for the device, emerges and targets Chess to avenge her father's death. Realizing he must keep his enemy alive in order to fully destroy him, Vince (aka The Cape) suddenly finds himself defending his archnemesis. With the help of Rollo, Ruvi, Raia and Max, Vince attempts to master new skills and also tries to accept how his choices will affect his wife, Dana and son, Trip. + /Fh55ZHQwVvpUrBrIYNVni5XXPt.jpg + + + 2011-02-07 + Goggles and Hicks + /aodHFyO1AIFwcWTdRU9LugKrRG8.jpg + Badly bruised and exhausted, The Cape heeds advice from Max to take some time off to recover. Determined to finally kill The Cape, Peter Fleming hires a tech-savvy team, including Goggles and Hicks, to track and destroy The Cape. Meanwhile, Orwell faces digital challenges against the teams’ strong expertise and Dana becomes more involved in uncovering the truth about Vince’s case. + /aodHFyO1AIFwcWTdRU9LugKrRG8.jpg + + + 2011-02-14 + The Lich (1) + Orphaned since birth, Conrad Chandler, the heir of one of Palm City’s founders, exacts revenge on the public and threatens to paralyze and control the city. The Cape and Max alert Marty of the impending danger to the city, which backfires on The Cape. Meanwhile, the Secretary of Prisons, Patrick Portman, aids Orwell in her search for the lone heir. Orwell locates Conrad through Netta, his mysterious caretaker, but soon discovers his deeply disturbing past and finds herself in danger. Elsewhere, Dana becomes increasingly uncomfortable with her new social life. + + + 2011-02-21 + The Lich (2) + /v9zBkz6pLpb0iJq8BwcQXxNQcMV.jpg + The Cape, Max, and Rollo are forced to rely on Dana's legal connections to help them discover The Lich's whereabouts. Heavily entranced by Conrad Chandler's (The Lich) potent serum, Orwell struggles to fight off the physiological and mental effects of the strong dose. Meanwhile, Netta's strange loyalty to The Lich is clarified. In a sedated, weak state, Orwell drifts between reality and fantasy sequences, which slowly reveal her history and past. + /v9zBkz6pLpb0iJq8BwcQXxNQcMV.jpg + + + 2011-02-28 + Razer + /ryUbDk3R4btiB6I5QrnmqNNurmS.jpg + Concerned about the protection of his gang’s city territory, Scales makes a controversial pact with Fleming and plans to bring a dangerous villain, Razer, to the city. Vince intercepts Razer’s arrival, disguises himself as the villain, and infiltrates the inner circle of Scales and his gang. Meanwhile, Fleming battles internally with his alter ego, Chess, and Orwell remains in a dreary state, hinting at a uncertain future. + /ryUbDk3R4btiB6I5QrnmqNNurmS.jpg + + + 2011-03-11 + Endgame + /rj6GrTejvH9VdhWOgbGZltKhkQg.jpg + The Cape's worlds collide as Dana defends Marty after Fleming sets him up to the take the fall for corruption in Palm City. + /rj6GrTejvH9VdhWOgbGZltKhkQg.jpg + + + Season 1 + + + + + /xmtxeLPweS1kvwjj8TQsriLordj.jpg + Jon Harmon Feldman + Tru Calling + 60 + Drama - Sci-Fi & Fantasy - Mystery + + Tru Calling + FOX + 2 + US + Tru Calling is an American television supernatural drama series that was shown on the Fox Network from 2003 to 2005. Created by Jon Harmon Feldman, the series was produced by Original Film, Oh That Gus!, Inc., and 20th Century Fox Television. + +The show starred Eliza Dushku as Tru Davies, a woman who works at the city morgue. In the course of her job, the bodies of dead people start talking to Tru, asking her for help. Tru then finds herself reliving their last day alive, trying to keep their death from happening. + /pUT4XtXwxLZLxUr1VnTTeR2uPbB.jpg + 7.4 + + + 2003-10-30 + + + 2003-10-30 + Pilot + In the series premiere episode of TRU CALLING, we meet Tru Davies, who suddenly discovers she can save lives. She is a smart and sexy recent college graduate who lands a job on the midnight shift at the city morgue. + +On her first night, Tru questions reality when she hears a beautiful murder victim asking for her help. But the next morning, Tru wakes up to find that she is back at the beginning of that very same day – twelve hours before the woman's death that only Tru knows about. + +Tru must use her newfound ability to go back in time so she can try to stop the tragedy before it actually happens, while at the same time rescuing members of her own family from their dangerous and self-destructive lives. + + + 2003-11-06 + Putting Out Fires + When the corpse of a handsome young man asks for Tru's help, she quickly learns he's a determined firefighter killed trying to save two children trapped in an apartment building fire. As Tru tries to change the man's fate, the day gets even more complicated when she develops feelings for him in the episode. + + + 2003-11-13 + Brother's Keeper + When Tru's brother, Harrison, falls in love with a beautiful young woman, only Tru knows that he could be implicated in the death of the woman's estranged husband. Tru must race against time in order to keep her brother from committing murder or being killed himself + + + 2003-11-20 + Past Tense + When five bodies arrive in the morgue and ask for her help, Tru's mission is five times more difficult. After learning that the victims died at a bachelor party, Tru poses as a bartender to gain access. As she tries to systematically determine if one of them is the killer, her curiosity raises their suspicions, putting her in jeopardy. + + + 2003-12-04 + Haunted + When The body of medical student, Paige Sanders shows up at the morgue its up to Tru to change the events. + + + 2003-12-11 + Star Crossed + Tru gets asked for help by a young couple who died in a car accident. As she tries to save them she realizes its not a simple crash. + + + 2003-12-18 + Morning After + When Tru's ex-boyfriend Mark ends up dead in her bed she has to get closer to him to prevent it from happening. + + + 2004-01-08 + Closure + Jake, an overseas hero wounded in battle, has been placed in a military hospital while his wounds heal. However he is determined at any cost to leave the hospital to find the girlfriend he left behind before he shipped out. He desperately needs an explanation for the cold letter she sent him while he was overseas. + + + 2004-01-15 + Murder in the Morgue + When a dead bride comes into morgue, her devastated financé comes into the morgue. Tru lets him to have some time alone with his loved one. + +When Davis comes in, he's mad at Tru for letting the man near the body. He finds him removing the bullet from the body. Davis tries to call the security but the man shoots him. He shoots at Tru, but the dead bride asks for help right before the bullet hits Tru. + +Tru has to find out who was the man, did he kill the bride and why was she killed, and ultimately she needs to save her life. + + + 2004-01-22 + Reunion + Tru is stressed after being prompted by Davies to attend her high school's reunion. But disaster strikes in the midst of the reunion, sacrificing Tru's former bestfriend. When Tru was forced to relive the day, she finds out that more than one person could have done the deed. + + + 2004-02-05 + The Longest Day + Tru is forced to relive a day to rescue a man from getting his heart shot. But her rescue mission takes a dangerous turn when she accidentally sacrifice a shopowner in order to save the man, and she finds herself caught in a loop of rewinding days, and it won't end unless she, herself, find an end. + + + 2004-02-12 + Valentine + Tru goes on a romantic get-a-way with Luc only to run into Harrison and Lindsey and a serial killer. + + + 2004-03-18 + Drop Dead Gorgeous + When a beauty contestant turns up dead backstage, Tru has a rewind and finds herself entering the contest to try to prevent the same events happening. Luc however has a new date and Tru has to face facts about their relationship. + + + 2004-03-25 + Daddy's Girl + Tru's father comes into town, and she is forced to help her step-mother, after she asks for help. Also, Jack Harper comes to the morgue looking for a job. + + + 2004-04-01 + The Getaway + When the reporter who has been trying to expose Tru's secret gets shot by a gunman on a crime spree, Tru is torn about saving her. To complicate matters, Tru's attempts to enlist the police in capturing the shooter before he strikes are hampered when his actions don't repeat exactly what he did before her day rewound. + + + 2004-04-08 + Two Pair + Tru faces a new dilemma when her day fails to restart after a body asks for help. Fearful that her gift has deserted her, Tru is shocked later that day when a different body's plea forces the day to restart. Now, she must race against the clock to save two people on the same day in different parts of the city. Jack reveals a bit about his sinister intentions. + + + 2004-04-15 + Death Becomes Her + Tamyra Gray, who competed in the first season of AMERICAN IDOL and had a recurring role on BOSTON PUBLIC, plays Carly Anders, an actress who befriends Tru when she visits the morgue to research her next movie role as a forensic attendant. But when Carly's car goes off a bridge and sends her plummeting to her death, Tru's day restarts. As she pries into the private details of Carly's life, Tru makes a shocking discovery about her past. Meanwhile, against Tru's wishes, Jack continues to become fast friends with Harrison. + + + 2004-04-22 + Rear Window + When a male corpse with the same name as a female neighbor of Tru's comes into the morgue, Tru suspects identity theft. When the day restarts, Tru's investigation takes an unexpected turn that makes it difficult to sort out just who is the victim and who is the criminal. Meanwhile, Tru and Davis piece together some information about Jack, who hasn't been forthcoming about everything in his past. + + + 2004-04-29 + D.O.A. + Tru and Davis remain stunned by the revelation that Jack can relive days like Tru. Excited to have a new partner, Tru teams up with Jack to ensure a doctor's dying wish to help others in his life, but as the day progresses, Tru becomes increasingly suspicious of Jack's intentions. And when Jack attempts to stop Tru from saving an innocent victim, she comes to the startling realization that he isn't her ally but her enemy. + + + 2004-04-29 + Two Weddings and a Funeral + In the first season-finale episode, Tru and Jack--her sworn nemesis--find themselves on a collision course with the stakes as high as they can be after the body of Tru's brother, Harrison, asks for help. Despite his friendship with Harrison, Jack vows to ensure Harrison's death when the day rewinds. Tru struggles to protect her brother, and the game is on as an epic battle of life and death between Tru and Jack is set in motion. But Tru's attempts to save Harrison will lead to the shocking death of someone very close to her. + + + /9rQUoq9Zp3v9aiHNWg9kt4PLdwW.jpg + Season 1 + + + 2005-03-31 + + + 2005-03-31 + Perfect Storm + Jack comes back to town two months after the events of the Season One finale. Tru's dad decides to move to town. Harrison has been at a new job for six weeks. Tru has started med school, thanks to Davis pulling some strings. When a young Harbor Patrol officer dies in a white squall while rescuing some students and asks for help, Tru has to compete against Jack to save her life. + + + 2005-03-31 + Grace + When a psychiatrist is gunned down, Tru tries to identify the killer… but Jacks meddling implicates her in the murder. + + + 2005-04-07 + In the Dark + When there's a death at the morgue during Tru's birthday party, and the victim's identity is obscured by darkness, Tru grows convinced that the victim is one of her friends, while Davis concludes it's Carrie who will die. + + + 2005-04-14 + Last Good Day + When Jack meets a strange woman at the train station and then witnesses her death, he's the one she turns to for help. Tru's day also rewinds, though, and she discovers how Jack is able to be in the right place at the right time. + + + 2005-04-21 + Enough + When someone close to Tru is killed, his body doesn't ask for help. As Tru seizes an opportunity to try saving him, Jack ominously tells her there are consequences to breaking the rules. + + + 2008-01-21 + 'Twas the Night Before Christmas...Again + It's Christmas Eve but death does not take time off for the holidays. Dark secrets are revealed but a lot is left unanswered. + +This episode was not aired during the original run in the United States, and was not broadcast in the US until January of 2008 as part of a "marathon" on the Sci-Fi cable netowork. + + + /nIjG2hxKP6PJGbZe0HAvfPiB8Rr.jpg + Season 2 + + + + + /732azfQ0xUAJNQ48pPfVtCCLVlZ.jpg + Michael Dante DiMartino, Bryan Konietzko + Avatar: The Last Airbender + 25 + Action - Adventure - Animation - Fantasy + http://www.nick.com/avatar-the-last-airbender/ + Avatar: The Last Airbender + Nickelodeon + 3 + US + In a war-torn world of elemental magic, a young boy reawakens to undertake a dangerous mystic quest to fulfill his destiny as the Avatar, and bring peace to the world. + /sB8V0pQtJZ17v8FLXMOcYz6045c.jpg + 8.2 + + + 2005-02-21 + + + 2005-02-21 + The Boy in the Iceberg + /o57ztZCSSCO8lDvkqe2pxXi4N3E.jpg + Two teenage siblings (Sokka and Katara) living in the South Pole discover a very strange boy (Aang), along with his pet flying bison Appa, in an iceberg. But can they trust him when he accidentally draws the war to their village's doorstep? + /o57ztZCSSCO8lDvkqe2pxXi4N3E.jpg + + + 2005-02-21 + The Avatar Returns + /xvthedDN9DUbJWWnoUzSTp0vuET.jpg + Katara and Sokka discover that Aang is the long-lost Avatar and must rescue him when a Firebending prince named Zuko kidnaps him. + /xvthedDN9DUbJWWnoUzSTp0vuET.jpg + + + 2005-02-25 + The Southern Air Temple + /bHCkOMiD6fQyfIstuBibHkO2ww8.jpg + Aang is excited about going home (the Southern Airtemple) for the first time in one hundred years, but he is shocked to find out that the temple is deserted. Aang tells Sokka and Katara about his childhood as they explore the temple, but they soon discover something that Aang never expected. Meanwhile, Prince Zuko must make repairs to his ship and the only way he can do it is to dock his ship at his rival's naval base. + /bHCkOMiD6fQyfIstuBibHkO2ww8.jpg + + + 2005-03-04 + The Warriors of Kyoshi + /xaHEGsFOQP9qZRTl4uQboNWx3Yp.jpg + The gang arrives at Kyoshi Island and are captured by some Kyoshi warriors. When Aang reveals that he is the avatar, news quickly spreads out and suddenly reaches to Prince Zuko who then goes to Kyoshi Island to capture him. + /xaHEGsFOQP9qZRTl4uQboNWx3Yp.jpg + + + 2005-03-18 + The King of Omashu + /d8G0WkZ66YwvDbPQXg5ANjutrS4.jpg + Aang's abilities as an airbender are challenged by a king. + /d8G0WkZ66YwvDbPQXg5ANjutrS4.jpg + + + 2005-03-25 + Imprisoned + /nLScDPhXBbWnHcuSxn1kh4w757r.jpg + In a nearby Earth Village, the gang meets a teenage earthbender named Haru. This village lives in fear of the Fire Nation, for soldiers there capture any earthbenders they can find. + /nLScDPhXBbWnHcuSxn1kh4w757r.jpg + + + 2005-04-08 + Winter Solstice (1) - The Spirit World + /taaKyDSza8YhevMq62gq2DLu9ma.jpg + Aang and friends visit a village being terrorized by an angry spirit. Iroh is captured by Earth Kingdom soldiers. + /taaKyDSza8YhevMq62gq2DLu9ma.jpg + + + 2005-04-15 + Winter Solstice (2) - Avatar Roku + /2LBgsrFBqPW74BQUUiuiTuebNqN.jpg + To contact the spirit of the previous Avatar, Aang must reach a temple in the Fire Nation before the sun sets on the following day. There he will learn what he must do to restore balance to the world. Zuko must defy his banishment to follow Aang. + /2LBgsrFBqPW74BQUUiuiTuebNqN.jpg + + + 2005-04-29 + The Waterbending Scroll + /pjMzrmNLitRCVCTS5F15ztvzzJq.jpg + After Katara attempts to teach Aang waterbending, but realizes that he is learning it much faster than she is, she is desperate to improve her abilities. When Katara inadvertently stumbles across a waterbending scroll that can help improve her ability while Aang is looking at a pirate’s store, she decides to steal it after she realizes that she couldn’t hope to afford it; but will she be capable of stealing from the pirates without causing herself and her friends trouble? + /pjMzrmNLitRCVCTS5F15ztvzzJq.jpg + + + 2005-05-06 + Jet + /aoHnmhUAmMDx8oV9iimMVsScvrW.jpg + It's all about instincts...While traveling towards the North Pole, the group almost gets captured by the Fire Nation. However, when a charismatic young man and his band of rebels attack the Fire Nation camp and rescue them, they learn that they are trying to resist the Fire Nation’s motives to expand their territory. Katara and Aang really enjoy their time with the band of rebels, but Sokka soon discovers that they aren’t as noble as meets the eye. + /aoHnmhUAmMDx8oV9iimMVsScvrW.jpg + + + 2005-05-20 + The Great Divide + /rApMjdBNbwInH5zpqSquJ9Yi3hp.jpg + While on their way to the North Pole, Aang and his friends arrive at a giant canyon where two groups of refugees are bickering over who should get to go across. Aang decides to walk across with the two groups to ensure they don’t fight one another. However, he soon learns that the two tribes have been feuding for one hundred years and they both believe their actions are justified. But when the predators inside the canyon start to come out, Aang is stuck trying to defend both tribes from each other and the vicious wildlife. + /rApMjdBNbwInH5zpqSquJ9Yi3hp.jpg + + + 2005-06-03 + The Storm + /rm6aSQ4H5ayVtjjMt0pi8Pth7h4.jpg + Aang, Katara and Sokka have run out of money. Katara suggests Sokka get a job, and coincidentally, they meet a fisherman who is looking for someone to help him out with his fishing. But when the fisherman recognizes Aang as the Avatar, he blames Aang's absence for all of the troubles of the last 100 years, and Aang runs away on his glider. Katara follows on Appa, and when she finds him, Aang begins to reveal life before he was frozen in the iceberg.Meanwhile, Prince Zuko and Lieutenant Jee get into a fight, but Iroh breaks it up. Soon thereafter, the Lieutenant and the rest of the crew gain a newfound respect for their leader after learning of his past. + /rm6aSQ4H5ayVtjjMt0pi8Pth7h4.jpg + + + 2005-06-17 + The Blue Spirit + /kHdc7BCwi5mTtpwekPqFuf45L2R.jpg + While Aang, Katara and Sokka are traveling, Sokka gets a fever. Katara and Aang try to help Sokka, when only Katara catches the fever. It's up to Aang to go up on his own to save his two friends.But before he can get the medicine he is captured by the newly promoted Admiral Zhao and put in Zhao's fortress.Will Aang save Sokka and Katara in time?And who is this strange figure wearing a blue demonic looking mask? + /kHdc7BCwi5mTtpwekPqFuf45L2R.jpg + + + 2005-09-23 + The Fortuneteller + /leJKRM1LLF64in8IGs6NbRAyEmx.jpg + When the group tries to help a man who is being attacked by a platypus-bear, they discover that the local town has a fortuneteller named Aunt Wu in it, who has been forecasting the town's fate for years. But when Sokka and Aang discover one of the fortuneteller's most vital predictions is dead wrong, they have to develop a plan to convince the stubborn townspeople that their beloved Aunt Wu was wrong. + /leJKRM1LLF64in8IGs6NbRAyEmx.jpg + + + 2005-10-07 + Bato of the Water Tribe + /57bZLzjaxfDXGTr7dquv85E27nK.jpg + Aang feels neglected as Katara and Sokka reunite with Bato, an old friend of their father’s from the South Pole. They begin to reminisce on their times in the past while they wait for a message to arrive from their father; in which Aang believes Katara and Sokka will abandon him and go out to find their father should the message arrive. However, when the messenger gives Aang the message to give to Bato, Aang betrays his friends in a way Katara or Sokka could never imagine. However, when Zuko recruits a bounty hunter named Jun to track Aang down, his friendship is put to the test as he must deal with the fact that he betrayed his friends while defending himself from yet another fight. + /57bZLzjaxfDXGTr7dquv85E27nK.jpg + + + 2005-10-21 + The Deserter + /rgdsLIpTCHPrq1DvOXtHh65qEp2.jpg + When Aang and his friends go to a Fire Nation town so that Aang can witness some firebending, their plan soon goes awry when it’s discovered that he is the Avatar. Fortunately, he’s rescued by an individual who serves a firebending master named Jeong Jeong who has abandoned the Fire Nation, so Aang attempts to use this time to attempt to learn how to firebend. However, when the firebending master refuses to even see Aang, will Aang be able to prove he’s ready to learn how to firebend despite the fact that he lacks discipline? + /rgdsLIpTCHPrq1DvOXtHh65qEp2.jpg + + + 2005-11-04 + The Northern Air Temple + /uQBMjMJchIR1yuW06ZZeCCxxEot.jpg + When Aang and his friends hear rumors about surviving airbenders, they decide to stop by the Northern Air Temple on their way to the North Pole to see for themselves. What they find is a bunch of people who are not airbenders, but have mastered the art of gliding; though this upsets Aang because they have been defacing the temple. However, there was one part of the temple where nobody has been able to enter, and what Aang and his friends discover inside spells oncoming conflict. + /uQBMjMJchIR1yuW06ZZeCCxxEot.jpg + + + 2005-11-18 + The Waterbending Master + /herKUdLK198XcymKSdkOdwKLCOE.jpg + When Aang tries to find the north pole, he is found by the north pole instead.When they are taken there Aang and Katara are eager to find a water bending master only to find that girls are not allowed to learn waterbending. + /herKUdLK198XcymKSdkOdwKLCOE.jpg + + + 2005-12-02 + The Siege of the North (1) + /6A3NIy7xE95qycCTdTpKZUT0wm0.jpg + In the first half of the two-part season finale, Zhao begins to launch his attack against the Northern Water Tribe. As the walls of the prestiged city begin to fall, the Avatar taps into the spirit world and seeks the help of one of the oldest spirits, in hopes of saving one of the most prominent areas of the world. + /6A3NIy7xE95qycCTdTpKZUT0wm0.jpg + + + 2005-12-02 + The Siege of the North (2) + /5Y074fdoE8Xc1HhjyACMszucOPO.jpg + Aang returns from the spirit world to a big surprise. Meanwhile, Zhao and his forces continue to press deeper into the Northern Water Tribe. What could possibly stop the fire nation from destroying this tranquil region? If Zhao has his way, nothing. Also, Iroh makes a powerful stand and Zuko struggles to keep his plan intact. + /5Y074fdoE8Xc1HhjyACMszucOPO.jpg + + + Katara and Sokka (a brother and sister from the Southern Water Tribe) discover the Avatar (a 12-year-old Airbender boy named Aang) frozen in an iceberg. Together the three begin their journey to the North Pole to find a master Waterbender so Aang can begin his Avatar training! + /tUG6h0rMtQyOgvqI8r9AqxlKoUP.jpg + Book One: Water + + + 2006-03-17 + + + 2006-03-17 + The Avatar State + /oIy3PKC460qRbiPIxNKiuVf9QSH.jpg + Plagued with nightmares featuring the devastating power of his Avatar State, Aang and the gang meet an Earth Kingdom general who has big plans for defeating the Fire Nation. Meanwhile, Prince Zuko and Uncle Iroh, having survived the failed attack on the North Water Tribe, have a surprise visit from the Prince's sister with seemingly good news. + /oIy3PKC460qRbiPIxNKiuVf9QSH.jpg + + + 2006-03-24 + The Cave of Two Lovers + /7rXk406nNbo8SgzuHPa44xVemes.jpg + On their way to Omashu, Aang, Katara, and Sokka meet a group of nomads who show them a shortcut through the "Cave of Two Lovers." But when the group becomes trapped in the cave, it's up to Aang and Katara to save the group by trusting in love ... and possibly questioning their relationship. Meanwhile, Iroh gets a lethal rash so Zuko and Iroh head to a small Earth Kingdom town for help, hoping their real identities will not be discovered. + /7rXk406nNbo8SgzuHPa44xVemes.jpg + + + 2006-04-07 + Return to Omashu + /a6oPog028AGA8pjPO9XqIhVothi.jpg + Despite the shocking news the gang have just discovered, Aang insists on trying to find King Bumi within Omashu's borders, even with the dangers that will await him and his friends if his real identity is discovered. Meanwhile Azula goes in search of old friends to help her with her mission. + /a6oPog028AGA8pjPO9XqIhVothi.jpg + + + 2006-04-14 + The Swamp + /3TAogSR8WYMkU7ttHJc6Q7Jj5X2.jpg + A mysterious tornado pulls the kids into a supernatural swamp where Katara, Sokka and Aang have mysterious visions. Meanwhile, Momo and Appa are chased by rogue swamp dwellers and only Aang and the gang can save them. + /3TAogSR8WYMkU7ttHJc6Q7Jj5X2.jpg + + + 2006-04-28 + Avatar Day + /lZtrKgwUntr2aEdy0sSM4c3YHdl.jpg + Aang and the gang discover an Earth town that celebrates something called "Avatar Day." But when they get there and learn the festival is of "anti-Avatar" sentiment and Aang is put on trial for a crime a past incarnation allegedly committed. Looking to clear the Avatar's good name, Katara and Sokka venture back to a familiar place to gather evidence and discover the truth. + /lZtrKgwUntr2aEdy0sSM4c3YHdl.jpg + + + 2006-05-05 + The Blind Bandit + /9UH0hiYwyqT5dw2oaDytYeRmqGe.jpg + In search for an Earthbending teacher for Aang, the kids go to an underground Earthbending tournament called Earth Rumble 6, where they encounter Toph (aka the Blind Bandit), a blind, but powerful Earthbending girl. After seeing her unique style of Earthbending, Aang wants Toph to become his teacher, but there are complications with Toph's family. + /9UH0hiYwyqT5dw2oaDytYeRmqGe.jpg + + + 2006-05-12 + Zuko Alone + /8xKAmy4K3d9Jo8QcIL3HzHLQSdt.jpg + Zuko travels by himself to an Earth Kingdom town were he meets a local boy. The two almost become friends, meanwhile Zuko suffers from flashbacks of his past. + /8xKAmy4K3d9Jo8QcIL3HzHLQSdt.jpg + + + 2006-05-26 + The Chase + /30Koy2vp3aRtEs7Dv6r6DquNysf.jpg + Tired from trying to escape a machine that shows up every time they try to sleep, Aang and the gang have to escape Azula and her team, but their exhaustion leads to a tight situation. Meanwhile, Zuko must deal with something personal. And Iroh bonds with an unlikely individual. + /30Koy2vp3aRtEs7Dv6r6DquNysf.jpg + + + 2006-06-02 + Bitter Work + /ilnwRuY533ZGv3JapxbZQGfxgyo.jpg + Toph's instructing abilities come into question when Aang cannot seem to overcome a block that keeps him from earthbending. Sokka gets himself in a jam, while befriending what was, moments before, his next meal, and Iroh and Zuko begin training utilizing new philosophies and methods that originate from the other elements. + /ilnwRuY533ZGv3JapxbZQGfxgyo.jpg + + + 2006-07-14 + The Library + /yVxI9dmr2XpH2eRMRKCZ7CbNd7B.jpg + When Aang and his friends find a professor who knows of a library that contains information about the world, Sokka decides to go there to hopefully find some information to use against the Fire Nation. The library is guarded by the knowledge spirit, Wan Shi Tong, who doesn't welcome humans into his library, because he believes they only seek information for evil purposes. When Wan Shi Tong discovers Sokka wasn't being truthful with him, he begins to sink the library, bringing the kids down with it. Will everyone be able to escape the library in time? And who are the strange benders who have kidnapped Appa? + /yVxI9dmr2XpH2eRMRKCZ7CbNd7B.jpg + + + 2006-07-14 + The Desert + /w2zbcRX7ZE6L4QQWo1xlgsrrwLy.jpg + Aang searches for Appa, while Katara struggles to keep everyone together so they can survive in the vast desert while Sokaa supposedly gets "high" off Cactus juice in the desert.Meanwhile, Iroh and Zuko seek help from an ancient secret society. + /w2zbcRX7ZE6L4QQWo1xlgsrrwLy.jpg + + + 2006-09-15 + The Serpent's Pass + /7fWQGslpLkr7rciOS7IIYWPxf37.jpg + When Aang and the gang meet up with a group of refugees, they tell the gang where they can get on a ferry to Ba Sing Se. But after a series of events they have to take a deadly route called the serpent's pass with the help of an old friend, Suki. Meanwhile Zuko and Iroh meet up with a boy named Jet and his freedom fighters. + /7fWQGslpLkr7rciOS7IIYWPxf37.jpg + + + 2006-09-15 + The Drill + /bZgWSZIg5OZsBddDEM9RCz8e47n.jpg + Having made it to the outer wall of Ba Sing Se, the kids confront a Fire Nation army that is driving a massive Fire Nation drill, which poses an imminent threat to the last Earth Kingdom stronghold. Meanwhile, Zuko and Iroh make crucial mistakes which begin to attract Jet's suspicions. + /bZgWSZIg5OZsBddDEM9RCz8e47n.jpg + + + 2006-09-22 + City of Walls and Secrets + /iy6BBoexmoc3yP6vzyAUcc0AIhG.jpg + Having finally made it into Ba Sing Se, the kids are given a house in the upper ring. The kids are anxious to tell the Earth King their plan but there are complications. Meanwhile, still convinced that Iroh and Zuko may be Fire Nation, Jet decides to take matters into his own hands and do whatever it takes to get the refugees to reveal their true nature. + /iy6BBoexmoc3yP6vzyAUcc0AIhG.jpg + + + 2006-09-29 + Tales of Ba Sing Se + /64oYvp9kru9HgVb2SWiThYCvv5V.jpg + A series of short stories, highlighting different characters and their individual adventures in the city. Tales of Katara and Toph, Iroh, Sokka, Aang, Zuko, and Momo. + /64oYvp9kru9HgVb2SWiThYCvv5V.jpg + + + 2006-10-13 + Appa's Lost Days + /kxnoc5vDjuF2l2m9GS1ESCXpDYt.jpg + In this special episode, we go back in time to the moment Appa was stolen, will find out where he has gone and who he has met along the way and more importantly where he is now! + /kxnoc5vDjuF2l2m9GS1ESCXpDYt.jpg + + + 2006-11-03 + Lake Laogai + /dXhQZXg1SBcPpux2cfW3K8qVrj2.jpg + Aang and his friends continue to search for Appa and, unbeknownst to them, they aren't the only ones looking for him. During their search, the kids meet up with Jet, whom they are understandably reluctant to trust. The kids soon realize that the Dai Li are doing their best to thwart the kids efforts to find Appa. Meanwhile, Uncle Iroh is offered his own tea shop in the upper ring, and Zuko discovers the avatar is in the city. + /dXhQZXg1SBcPpux2cfW3K8qVrj2.jpg + + + 2006-11-17 + The Earth King + /zabWvG654Jrw7kdd1jqHgfoItya.jpg + The kids battle Long Feng and the Dai Li when they attempt to show the Earth King the vast conspiracy taking place in his city. Zuko becomes seriously ill and has feverish dreams as he faces a spiritual crisis. + /zabWvG654Jrw7kdd1jqHgfoItya.jpg + + + 2006-12-01 + The Guru + /tV4BsLKE0JueEdMsikakxdXfvE1.jpg + Aang receives guidance from Guru Pathik at the Eastern Air Temple; Sokka is reunited with his long-lost father; Princess Azula has something diabolical in store for her enemies; Uncle and Zuko run their own tea shop. + /tV4BsLKE0JueEdMsikakxdXfvE1.jpg + + + 2006-12-01 + The Crossroads of Destiny + /2hTohWXPpKhWMyQ8x0wb5M75hb8.jpg + Everyone races against time to stop Azula's sinister plan. Zuko finds companionship in an unlikely source. Aang's destiny hangs in the balance - and so does Zuko's, as Iroh tells him "it is time to choose." + /2hTohWXPpKhWMyQ8x0wb5M75hb8.jpg + + + Aang, along with Katara, Sokka, and their animal friends Appa and Momo, continues on his quest to fulfill his destiny as the Avatar. According to the Avatar cycle, the group must now enter the Earth Kingdom to search for a master Earthbender to teach Aang. + /quX70K1L7vTLQ9vRJcK0kKcNNFA.jpg + Book Two: Earth + + + 2007-09-21 + + + 2007-09-21 + The Awakening + /2QjWeU6mfvx6sWF2z9CLb4kdRnR.jpg + Aang awakens to find himself aboard a captured Fire Nation ship with a full head of hair and sustaining serious injuries from the previous battle for Ba Sing Se. At his side are Katara, Sokka, and their father Hakoda who recount the events that led the four to the ship and contemplate their next move. Aang struggles to fight his own desire to face the Fire Lord before he is ready. Meanwhile, the once exiled Prince Zuko deals with his own issues as he makes his long-awaited journey home, with the fear of his father's rejection hanging over his head. + /2QjWeU6mfvx6sWF2z9CLb4kdRnR.jpg + + + 2007-09-28 + The Headband + /ncwQIjF5iHAOzAyPAFf2k5fuTze.jpg + To better blend in as Fire Nation citizens, Aang enrolls in a Fire Nation school, giving himself an opportunity to learn more about the Nation while at the same enjoy life as a normal kid for the first time since he discovered he was the Avatar. Meanwhile Zuko, growing more and more paranoid about the Avatar's false demise, brings himself to confronts his imprisoned uncle. + /ncwQIjF5iHAOzAyPAFf2k5fuTze.jpg + + + 2007-10-05 + The Painted Lady + /rplhdlXog7zk5uNFgtSFFEfyRAK.jpg + When the gang arrives at a suffering fishing village, a mysterious spirit appears to help the villagers. + /rplhdlXog7zk5uNFgtSFFEfyRAK.jpg + + + 2007-10-12 + Sokka's Master + /A2OksHuFj1ID01k82nwzu2yOO0F.jpg + Feeling as though he isn't contributing enough to the group, Sokka seeks out an elusive swordsmaster from whom he can learn the ways of the blade. + /A2OksHuFj1ID01k82nwzu2yOO0F.jpg + + + 2007-10-19 + The Beach + /ajkzlcNnJ7uPJiFrcSrlSIllW0G.jpg + Zuko, Azula, Mai and Ty Lee take a vacation to ember island.In the process, they come to learn more about themselves and each other as well as their desires for the future. Elsewhere, Aang and others face off against a new adversary. + /ajkzlcNnJ7uPJiFrcSrlSIllW0G.jpg + + + 2007-10-26 + The Avatar and the Firelord + /r2ST3UCUMOKgA576UeJg8EwNgp6.jpg + The tale of Avatar Roku and Fire Lord Sozin is revealed to Aang and Zuko by different sources. Both learn about themselves and are shown the origins of the war. + /r2ST3UCUMOKgA576UeJg8EwNgp6.jpg + + + 2007-11-02 + The Runaway + /d6Hu8yDvMDrqCHAz6fAevvHL5dr.jpg + When Katara expresses her disapproval to Toph's new way to make quick cash, the group finds her too motherly and tension grows between Katara and Toph. When Katara finally decides to participate in this scam to disprove Toph's accusations, they are left vulnerable and are forced to face the dire consequences. + /d6Hu8yDvMDrqCHAz6fAevvHL5dr.jpg + + + 2007-11-09 + The Puppetmaster + /6vLzcBUuuipbSTVuv8XkFbqfM46.jpg + The gang investigates the bizarre disappearances taking place within an eerie town. + /6vLzcBUuuipbSTVuv8XkFbqfM46.jpg + + + 2007-11-16 + Nightmares and Daydreams + /r9Ryb59FgBmjNVBlh78gfQndC0O.jpg + Four days prior the invasion, Aang becomes nervous over his soon-to-come confrontation with the Fire Lord. His anxiety gets the better of him as he begins to suffer from outrageous nightmares and hallucinations. Meanwhile, Zuko becomes upset to learn that he was not informed about a war meeting. + /r9Ryb59FgBmjNVBlh78gfQndC0O.jpg + + + 2007-11-30 + Day of the Black Sun (1) - The Invasion + /azttbrzDKI0GW4tGyTP3lTHmPXl.jpg + The day of the eclipse has arrived, and the invasion force gathers together to make last preparations. They infiltrate the island and the battle begins. Meanwhile, Aang searches for the Firelord. + /azttbrzDKI0GW4tGyTP3lTHmPXl.jpg + + + 2007-11-30 + Day of the Black Sun (2) - The Eclipse + /cRkTc9t6VJ8cfWSJl2CNF78Wx7K.jpg + As the invasion force fights their way to the Fire Nation capital, the kids help Aang to find the Fire Lord in time for the eclipse. But there are a few surprises. Zuko confronts his father and tells him that he's going to join the Avatar. + /cRkTc9t6VJ8cfWSJl2CNF78Wx7K.jpg + + + 2007-12-14 + The Western Air Temple + /zl1ocL1IeNL5kJ6949Px61XInrj.jpg + Aang and the group arrive at the Western Air Temple, with Zuko in pursuit. Zuko only wishes to be accepted, and help the Avatar, but will the group allow him to teach Aang firebending? + /zl1ocL1IeNL5kJ6949Px61XInrj.jpg + + + 2008-01-04 + The Firebending Masters + /5xBMXGyxsY6KK4VaPdtYiP1mDVq.jpg + While teaching Aang firebending, Zuko finds that he has lost all his firebending skills. Now to regain his powers, Zuko and Aang must seek the original source of firebending within the ruins of a lost civilization. + /5xBMXGyxsY6KK4VaPdtYiP1mDVq.jpg + + + 2008-06-14 + The Boiling Rock (1) + /uOp9xetcQEqrvgNYnv5EVCRy0Ef.jpg + Sokka wants to break his father out of jail and askes Zuko for information on Fire nation prisons. Sokka and Zuko go to the "Boiling Rock" Prison which is in the middle of a volcano to rescue Sokka's father. When Sokka doesn't find him, he feels like he has failed... again... then his hopes are raised when he finds Suki. Sokka, Zuko, Suki and some unexpected allies attempt to escape the prison, but some unexpected surprises come along the way. + /uOp9xetcQEqrvgNYnv5EVCRy0Ef.jpg + + + 2008-06-14 + The Boiling Rock (2) + /8lbpRoYWOEWjdlBUln3dXN2yEA5.jpg + Zuko and Sokka make new plans to break out of the prison with Suki, Sokka's father and some others while a shocking twist leaves Azula none to happy with her two closest friends. + /8lbpRoYWOEWjdlBUln3dXN2yEA5.jpg + + + 2008-07-17 + The Southern Raiders + /gWwyVU8LPdoqEn9tdCpBjQj5z1T.jpg + Katara decides to confront the Fire Nation soldier responsible for her mother's death. Aang tries to talk her out of it, and Katara later realizes he was right and learns a lesson about life and herself. + /gWwyVU8LPdoqEn9tdCpBjQj5z1T.jpg + + + 2008-07-18 + The Ember Island Players + /nuMUeqQnHJClSGv5ZkDCKFPkZpq.jpg + A play recounting the gang's adventures does not sit well with Aang and his friends, except for Toph who enjoys it very much. Meanwhile, Aang confesses his love to Katara, but the response is ambiguous. + /nuMUeqQnHJClSGv5ZkDCKFPkZpq.jpg + + + 2008-07-19 + Sozin's Comet (1) - The Phoenix King + /zpD2FdSbEWtRGtgLUyc7d2cxMGO.jpg + Aang struggles to decide whether or not he has to kill the Fire Lord and, during the night, is drawn toward an island which disappears before morning. Zuko leads the rest of the group to the Earth Kingdom to meet a tracker whom they hope can find Aang. The Fire Lord crowns himself Phoenix King and Aang awakens on the island not knowing where he is. + /zpD2FdSbEWtRGtgLUyc7d2cxMGO.jpg + + + 2008-07-19 + Sozin's Comet (2) - The Old Masters + /2pjDkaJBTO8c6CbglQLDSXBt5hK.jpg + While on the island, Aang seeks guidance from his past lives, but is not pleased with what he is told. The island, in fact, turns out to be a lion turtle from which Aang is given the guidance he had been seeking. After the tracker is unable to track Aang, the rest of the group decide they must find Iroh. Meanwhile, while tracking down Iroh, the group meets up with The Order of the White Lotus, a group that transcends the division of the four nations. After a discussion with Iroh the team decides to split up: Sokka, Suki, and Toph head to stop the Fire Nation's air fleet, the masters head to reclaim Ba Sing Se, and Katara, Zuko, and Appa head to defeat Azula. + /2pjDkaJBTO8c6CbglQLDSXBt5hK.jpg + + + 2008-07-19 + Sozin's Comet (3) - Into the Inferno + /rlTkoSemKI7M5Viu60AE57v1IDJ.jpg + Sokka, Suki, and Toph try to stop the Fire Nation's air fleet. Meanwhile, Zuko and Azula duel in an Agni Kai and Aang confronts the Fire Lord. On the verge of losing, Aang gets hit in the back of his scar which sends him into the Avatar State. + /rlTkoSemKI7M5Viu60AE57v1IDJ.jpg + + + 2008-07-19 + Sozin's Comet (4) - Avatar Aang + /lQBQc3bfxaWB8xuoEGWigp6Q4D6.jpg + Aang defeats the Fire Lord by bending the elements within the Fire Lord and removing his fire bending abilities. After Zuko is taken down protecting Katara from Azula, Katara fights and manages to restrain Azula. Afterwards, Zuko is crowned Fire Lord and promises a better future for the world. Aang takes his place as the next Avatar, changing his attire in the process. Katara finally shows her love for Aang as they kiss in the last scene. + /lQBQc3bfxaWB8xuoEGWigp6Q4D6.jpg + + + Aang wakes up from his battle with Azula to discover that Ba Sing Se has fallen and the world thinks he's dead. So he and his friends set off undercover across the Fire Nation to find Firelord Ozai before the Day of Black Sun. Prince Zuko returns home as the triumphant son, but soon finds the honor he so greatly craved from his father is worthless. New alliances are formed and Team Avatar forges a new plan to stop the Firelord. But will they find him in time? + /roPE4jaHawj1Dm6uIXJHuLDpkNy.jpg + Book Three: Fire + + + + + /tGgZdD29MeMLvoQHMxyD1PN1k5k.jpg + Joss Whedon + Firefly + 90 + Drama - Action & Adventure - Sci-Fi & Fantasy + + Firefly + FOX + 1 + US + Firefly is set in the year 2517, after the arrival of humans in a new star system and follows the adventures of the renegade crew of Serenity, a "Firefly-class" spaceship. The ensemble cast portrays the nine characters who live on Serenity. + /mWNadwBZIx8NyEw4smGftYtHHrE.jpg + 8.2 + + + 2002-09-20 + + + 2002-09-20 + The Train Job + /w4yFzJkAiGjuDQuFKLOocjrH1eH.jpg + The crew of Serenity take on a train heist commissioned by a crime lord. They steal the goods, only to find it is medicine that's desperately needed by the town. + /w4yFzJkAiGjuDQuFKLOocjrH1eH.jpg + + + 2002-09-27 + Bushwhacked + /ngAXwtCEiyFUYZlIJOMk9g6q7Ep.jpg + Serenity is pulled in by a Tohoku-class cruiser while investigating a spaceship that was attacked by Reavers. Simon and River must hide to prevent capture, while something is wrong with the lone survivor of the attacked spaceship. + /ngAXwtCEiyFUYZlIJOMk9g6q7Ep.jpg + + + 2002-10-04 + Our Mrs. Reynolds + /fxsOgCUZmyeVBAenE9aH97PhZL7.jpg + As an unexpected reward for an unpaid job, Mal finds himself married to a naïve, subservient young woman named Saffron. The crew are amused at his discomfort and Book lectures him on propriety, but things aren't as smoothly straightforward as they thought them to be. + /fxsOgCUZmyeVBAenE9aH97PhZL7.jpg + + + 2002-10-18 + Jaynestown + /gKvmsSeXlbA3J5iFp0Yk4hqmrbz.jpg + Returning to a planet where he ran into some serious trouble years ago, Jayne discovers that he's become a local folk legend. Mal decides to use this entertaining distraction to complete a job, but some unfinished business may derail his plans. + /gKvmsSeXlbA3J5iFp0Yk4hqmrbz.jpg + + + 2002-10-25 + Out of Gas + /1AU3se5irxrD1eRNVVc532LT1J4.jpg + After Serenity suffers a catastrophe that leaves her crew with only hours of oxygen, flashbacks show how Mal and Zoë acquired Serenity and assembled their motley band. + /1AU3se5irxrD1eRNVVc532LT1J4.jpg + + + 2002-11-01 + Shindig + /kHZWQszqkSrDWyFTj08Koh0Ng4I.jpg + Inara attends a formal society dance, only to find Malcolm there as well, attempting to set up a smuggling job. Mal comes to blows with Inara's conceited date and finds himself facing a duel with a renowned swordsman, and only one night to learn how to fence. + /kHZWQszqkSrDWyFTj08Koh0Ng4I.jpg + + + 2002-11-08 + Safe + /qXzz9JGzmsb7pExom73OXfaOlbF.jpg + Mal must choose which crew members to save when one is gravely wounded and two others are kidnapped. Simon finds an uneasy haven in a remote village, but River's uncanny perceptions jeopardize the Tams' temporary safety. + /qXzz9JGzmsb7pExom73OXfaOlbF.jpg + + + 2002-11-15 + Ariel + /gSlW5xoTEAizKMZL5w8jhSnBJUV.jpg + Hard up for cash, Serenity takes on a job from Simon: help him get a thorough diagnostic of River in return for the opportunity to loot the vast medical stores of an Alliance hospital on central world Ariel. But River's pursuers are hot on their trail, and they receive some unexpected inside help. + /gSlW5xoTEAizKMZL5w8jhSnBJUV.jpg + + + 2002-12-06 + War Stories + /kIxWpnDsWwTOR3dAFnTAAzNsys.jpg + Angered at Zoë's unshakable war connection to Mal, Wash demands a shot at a field assignment. Unfortunately, crime lord Niska chooses this moment to exact a brutal vengeance for Mal's failure to complete an earlier job. + /kIxWpnDsWwTOR3dAFnTAAzNsys.jpg + + + 2002-12-13 + Objects in Space + /iMlHLWkWaceaOfNVlgZl2ELppBW.jpg + Serenity encounters a ruthlessly professional bounty hunter, Jubal Early, who will stop at nothing to retrieve River. But River, feeling unwelcome on the ship, takes a novel approach to escaping from the long arm of the Alliance. + /iMlHLWkWaceaOfNVlgZl2ELppBW.jpg + + + 2002-12-20 + Serenity + /uNpt7V0a94xlgp7sdgUJK9GOOSe.jpg + Malcolm Reynolds is a veteran and the captain of Serenity. He and his crew are smuggling goods, but they need to pick up some passengers for extra money. However, not all the passengers are what they seem. + /uNpt7V0a94xlgp7sdgUJK9GOOSe.jpg + + + 2003-06-23 + Heart of Gold + /7j6r31NNYDGBxtI3bhYhCS0rn3V.jpg + A Companion-trained friend of Inara's who runs a brothel calls for help from Serenity when a local bigwig reveals his intentions to take "his" baby from the girl he impregnated. + /7j6r31NNYDGBxtI3bhYhCS0rn3V.jpg + + + 2003-07-21 + Trash + /aULsDZD9oun1xs1JevMFZKON4TJ.jpg + Saffron returns to plague Serenity with a scheme to steal a rare antique weapon from a wealthy landowner. Unfortunately for Mal, she neglects to mention just how she came across the information needed to break into the landowner's home. + /aULsDZD9oun1xs1JevMFZKON4TJ.jpg + + + 2003-07-28 + The Message + /kVfHVHFeaNaLQMrPoZmGbKgMZBJ.jpg + A former Independence soldier who had served with Mal and Zoë returns in a dramatic manner, with a vicious Alliance officer chasing after him for some unusual smuggled goods. + /kVfHVHFeaNaLQMrPoZmGbKgMZBJ.jpg + + + Captain Malcolm 'Mal' Reynolds is a former galactic war veteran who is the captain of the transport ship "Serenity". Mal and his crew, ensign Zoe Alleyne Washburne; Zoe's husband, pilot Hoban 'Wash' Washburne; muscular mercenary Jayne Cobb; young mechanic Kaylee Frye; former Alliance medical officer Simon Tam; his disturbed teenage sister River (both on the run from the interplanetary government "The Alliance"); the beautiful courtesan Inara Serra; and preacher Shepherd Book do any jobs, legal or illegal, they can find as the Serenity crew travels across the outskirts of outer space. + /qpjgUjjj3gQTzkQgcHXVBaP51Qf.jpg + Season 1 + + + + + /fldEdBOZg5TRDjFtQP07sUERzpx.jpg + + Wing Commander Academy + 22 + Animation + + Wing Commander Academy + USA Network + 1 + US + Wing Commander Academy is an American animated television series created and produced by Universal Cartoon Studios, along with a team led by Larry Latham. The show was based on the Wing Commander franchise and loosely served as a prequel to Wing Commander. The show's premiere airdate was September 21, 1996 in USA Network's "Action Extreme Team" block. The series' last episode aired on December 21, 1996. + /tHaoNLjIM4vxXiTZ2q9uLZtz7ab.jpg + 0.0 + + + 1996-09-21 + + + 1996-09-21 + Red And Blue + /fts55P9wRDRIyBddNqB5M1HKQ7K.jpg + Christopher "Maverick" Blair and Todd "Maniac" Marshall are assigned to the Tiger's Claw for training. + /fts55P9wRDRIyBddNqB5M1HKQ7K.jpg + + + 1996-09-28 + The Last One Left + /aJLhpwML4sCo0cSvovCObSboNeL.jpg + Blair and Maniac encounter a Confed war hero turned renegade. + /aJLhpwML4sCo0cSvovCObSboNeL.jpg + + + 1996-10-05 + The Most Delicate Instrument + /vO0Wion9XW7Z0UVb9oxhjLk0Waf.jpg + After the Tiger's Claw enters a binary star system, it is attacked by two Kilrathi fighters that have been caught in an astroflare coming from the binary star. Four fighters are send to neutralise the threat but in doing so become mentally unbalanced from stellar phenomena. The pilots begin to exhibit erratic behaviour and start to believe that the Tiger's Claw is a Kilrathi Carrier. + /vO0Wion9XW7Z0UVb9oxhjLk0Waf.jpg + + + 1996-10-12 + Word Of Honor + /zRlZudxoLx1LiJX6IEmxCsg5Dr9.jpg + Blair and Grunt crashland on an alien world, but they're not alone... + /zRlZudxoLx1LiJX6IEmxCsg5Dr9.jpg + + + 1996-10-19 + Lords Of The Sky + /2Tz6HmnHEDvmRa0imTSs7T5D546.jpg + Blair and Maniac land on an alien world where the local savages worship the "Lords of the Sky." + /2Tz6HmnHEDvmRa0imTSs7T5D546.jpg + + + 1996-11-02 + Chain Of Command + /1q8MGLQX7z2p2XiDWtw7yxJ5x2r.jpg + Tolwyn meets an old "friend" - who just happens to outrank him now! + /1q8MGLQX7z2p2XiDWtw7yxJ5x2r.jpg + + + 1996-11-09 + Expendable + /1OO80o68XYFTAo2h32V2qecWhRK.jpg + Blair and Payback scout an unstable jump node. + /1OO80o68XYFTAo2h32V2qecWhRK.jpg + + + 1996-11-23 + Walking Wounded + /1CeW29NcwtPMFSN3f4ndv1vQrCo.jpg + Maniac scores guard duty on a crippled medical ship. + /1CeW29NcwtPMFSN3f4ndv1vQrCo.jpg + + + 1996-11-16 + Recreation + /11evjunBQG5UgV73STjntQFJcMh.jpg + Tigers Claw discovers a Kilrathi fighter towing a mysterious life pod. + /11evjunBQG5UgV73STjntQFJcMh.jpg + + + 1996-11-30 + On Both Your Houses + /qbvwYgveRzaepbN7K6IrLpYZv07.jpg + Blair, Maniac, and Archer pursue Kilrathi fighters to a lush tropical planet where things are not as they seem. + /qbvwYgveRzaepbN7K6IrLpYZv07.jpg + + + 1996-12-07 + Invisible Enemy + /uF0Lawu1iCyvKkxzF4EiJjgW2RB.jpg + The Kilrathi have a new and terrible weapon: the Stealth Fighter. + /uF0Lawu1iCyvKkxzF4EiJjgW2RB.jpg + + + 1996-12-14 + Price Of Victory + /sXqqjll722aR5vEk7XulyM5KLVO.jpg + Cadet Blair crashes on to an ice planet, where he meets a Kilrathi that has found out that the whole war was just to make the emperor have total power over the clans. + /sXqqjll722aR5vEk7XulyM5KLVO.jpg + + + 1996-12-21 + Glory Of Sivar + /mz9VNXItwteJJyCBq2dlJguQtAW.jpg + Blair and Grunt land on the planet Dolos- and find themselves surrounded by fur! + /mz9VNXItwteJJyCBq2dlJguQtAW.jpg + + + /lAti61LFs30JbsOwBAGiDLH9jG7.jpg + Season 1 + + + + + /5zNaNc2g9op9EfSwSMJTK8gGsY6.jpg + + Wanted: Dead or Alive + 30 + Western + + Wanted: Dead or Alive + CBS + 3 + US + Wanted: Dead or Alive is an American Western television series starring Steve McQueen as the bounty hunter Josh Randall. It aired on CBS for three seasons from 1958–61. The black-and-white program was a spin-off of a March 1958 episode of Trackdown, a 1957–59 western series starring Robert Culp. Both series were produced by Four Star Television in association with CBS Television. + +The series launched McQueen into becoming the first television star to cross over into comparable status on the big screen. + /A8JD0UX5w31bg9b0VfETzi4HZYw.jpg + 7.4 + + + 1958-09-06 + + + 1958-09-06 + The Martin Poster + /zID2J3a3oDT2lJVwGwRV9eIHAwF.jpg + Josh takes matters into his own hands after Marshall Jeff Wilcox is killed by the Martin brothers. + /zID2J3a3oDT2lJVwGwRV9eIHAwF.jpg + + + 1958-09-13 + Fatal Memory + /rDpYYYJhhk3QzIxAblP9bXLfLJd.jpg + While on the trail of an Army deserter, Josh is surprised to find fake wanted posters for Colonel Sykes; the Army Commander that he served under. + /rDpYYYJhhk3QzIxAblP9bXLfLJd.jpg + + + 1958-09-20 + The Bounty + /nC3pgVIG8NPLT2zEURdU6mU1TFg.jpg + A vicious Bounty Hunter named Daimler is sought by Josh after Daimler gunned down an elderly fugitive. + /nC3pgVIG8NPLT2zEURdU6mU1TFg.jpg + + + 1958-09-27 + Dead End + /ircivSrr0LbWbT4RfIfjUFBhIz0.jpg + After being hired to apprehend a ranch worker who stole money and disappeared, Josh undercovers more than he bargained for. + /ircivSrr0LbWbT4RfIfjUFBhIz0.jpg + + + 1958-10-04 + Shawnee Bill + /5Priy3VA2uAM2h2OEOLex43VaTz.jpg + After a crooked poker game, Josh is led to believe that his opponent is Shawnee Bill. + /5Priy3VA2uAM2h2OEOLex43VaTz.jpg + + + 1958-10-11 + The Giveaway Gun + /maS0aZBUUoQ4OkQ2ByxYiuR5lTj.jpg + Josh is looking for an unknown gunman which can only be identified by the peculiar way he draws his gun. + /maS0aZBUUoQ4OkQ2ByxYiuR5lTj.jpg + + + 1958-10-18 + Ransom for a Nun + /3RjRzAt1hP0uc4kiiAOm4j3wazL.jpg + Mother Superior asks Josh to find Sister Grace who is being held by outlaws. + /3RjRzAt1hP0uc4kiiAOm4j3wazL.jpg + + + 1958-10-25 + Miracle at Pot Hole + /dLAvPnQKlan25rCzXv41tSNJSrI.jpg + Josh hands over a criminal to Sheriff Wilson and finds out the sheriff is a crook. He begins to doubt the guilt of his so-called criminal. + /dLAvPnQKlan25rCzXv41tSNJSrI.jpg + + + 1958-11-01 + The Fourth Headstone + /6RFaQbU04t9bcUIXBxCUtWqQ0Su.jpg + Josh is hired on the help transport a female prisoner who has murdered three men to another jail. + /6RFaQbU04t9bcUIXBxCUtWqQ0Su.jpg + + + 1958-11-08 + Til Death Do Us Part + /hwyRrAin9qTIgFRUU9Ieqf2RGhu.jpg + Beautiful Stacy Torrance is wanted for the murder of her husband, but when Josh finds her husband still alive he tries to have the charges cleared. + /hwyRrAin9qTIgFRUU9Ieqf2RGhu.jpg + + + 1958-11-15 + The Favor + /j0YMidZjI5LcxGdze7XKotuzOmB.jpg + Josh searches for a robbery suspect in a town called VanHorne run by outlaws. + /j0YMidZjI5LcxGdze7XKotuzOmB.jpg + + + 1958-11-22 + Ricochet + /j5aH0ouYHnYtrFksVOMT9apMIEL.jpg + Josh is hired to look for a missing husband and ends up in a murder conspiracy. + /j5aH0ouYHnYtrFksVOMT9apMIEL.jpg + + + 1958-11-29 + Sheriff of Red Rock + /qAoqCOJqE5JDc9wBzEktYhP04xp.jpg + The Sheriff of Red Rock allows his prisoners to escape, so two bounty hunters can collect the reward and split it three ways. + /qAoqCOJqE5JDc9wBzEktYhP04xp.jpg + + + 1958-12-06 + Die by the Gun + /kgZHuRzAVuimBKHF2kvUTcQBWxw.jpg + Aboard a stagecoach with prisoner in hand, Josh and the Coach driver are attacked by escapees heading for the Mexican border. + /kgZHuRzAVuimBKHF2kvUTcQBWxw.jpg + + + 1958-12-13 + Rawhide Breed + /dzeLVyboqglZfABCaL1kpOpKFiH.jpg + The Kreager brothers are on the trail of Josh and his prisoner, when a sudden attack by Apaches leaves his prisoner dead. + /dzeLVyboqglZfABCaL1kpOpKFiH.jpg + + + 1958-12-20 + Eight Cent Reward + /r2bRQWDAiUIvXqeCqvaNrENTjBb.jpg + A poor family with not much and hopes destroyed by storms and rustlers who want their land. Josh tries to help and right at Christmas a small miracle does occur. + /r2bRQWDAiUIvXqeCqvaNrENTjBb.jpg + + + 1958-12-27 + Drop to Drink + /3bGLzkbymCreDg4oNzTSL8CtdAj.jpg + After a Pony Express carrier is held up and the courier with a $20,000 diamond ring go missing. Josh is hired to find him. + /3bGLzkbymCreDg4oNzTSL8CtdAj.jpg + + + 1959-01-03 + Rope Law + /xxo1DdgOJTdl0KEYSJqEXOm78jK.jpg + Josh returns with his prisoner Brace Logan and a lynch mob overtakes him. A little too late the townspeople realize that Logan was innocent and that the guilty party is some well respected. + /xxo1DdgOJTdl0KEYSJqEXOm78jK.jpg + + + 1959-01-10 + Six-Up to Bannach + /bvOtqw2KKx9nJkBg0BizebZxonB.jpg + Josh is on his way to Bannach to prevent the execution of an innocent man and he must travel by stagecoach one that is carrying boxes of dynamite. + /bvOtqw2KKx9nJkBg0BizebZxonB.jpg + + + 1959-01-17 + The Spur + /kI4hjzujTIIzOXUtf6CQsEKogy.jpg + Josh is hunting for wanted murderer Vic Warsaw when he finds out that his bounty was gunned down. + /kI4hjzujTIIzOXUtf6CQsEKogy.jpg + + + 1959-01-24 + Reunion for Revenge + /xi6c4RkSeapKHSW5p6jJFXyNkm7.jpg + Intent on revenge several escaped convicts confront Josh's prisoner who is responsible for them going to jail. + /xi6c4RkSeapKHSW5p6jJFXyNkm7.jpg + + + 1959-01-31 + Competition + /3whmLUXlnEvZ6roTh63KgPUOdvP.jpg + Josh is confronted by two bounty hunters who think he is onto a big paying job. + /3whmLUXlnEvZ6roTh63KgPUOdvP.jpg + + + 1959-02-07 + Call Your Shot + /8BGbJljpV6p9Vo2ipQ5BPl5uCKL.jpg + Josh is hired by Gabe Henshaw to find his son Will. + /8BGbJljpV6p9Vo2ipQ5BPl5uCKL.jpg + + + 1959-02-14 + Secret Ballot + /vuuFmvzEBBZXsMiFu3ePcBdICVD.jpg + Randall's old war buddy Ned Easter is running for mayor in a town governed by corrupt mayor Barney Pax and his brother Steve, whom he has made sheriff. The Pax brothers avoid honest competition by shooting up Ned's rallies and such. Ned's wife Carole has summoned Randall to stand by Ned in case of trouble, but doesn't want Ned to know she did so. It so happens that Randall has a wanted poster on Steve, for ""shooting up half of Colorado."" + /vuuFmvzEBBZXsMiFu3ePcBdICVD.jpg + + + 1959-02-21 + The Corner + /6OYkaGKjtDcUhfGbQbJMGwYTXuS.jpg + Accused of killing a friend, bounty hunter Josh Randall tries to prove himself innocent. + /6OYkaGKjtDcUhfGbQbJMGwYTXuS.jpg + + + 1959-02-28 + Eager Man + /bWlPp1MtWX4B1rhalfVSNnFSiBL.jpg + Fugitive Ted Nelson will surrender to his friend Josh Randall, if his wife shares the reward. Gar Foley also a bounty hunter has other ideas. + /bWlPp1MtWX4B1rhalfVSNnFSiBL.jpg + + + 1959-03-07 + The Legend + /cZxKNyUFuMQNBcgLZi4DcB20WDS.jpg + Josh is hired by Sam McGarrett to lead him with his son and daughter into the Mesa desert to find a hundred year old treasure. + /cZxKNyUFuMQNBcgLZi4DcB20WDS.jpg + + + 1959-03-14 + Railroaded + /mLa5DKZuxEzMYbbNCVbzeXH66Ps.jpg + Josh comes to the defense of a boy accused of murdering an Undercover Pinkerton detective aboard the train. + /mLa5DKZuxEzMYbbNCVbzeXH66Ps.jpg + + + 1959-03-21 + Double Fee + /nNqmYwp951zKQqy81zAS4hWLcsc.jpg + An Opera Singer hires Josh to find her sister who has been kidnapped and is being held ransom. + /nNqmYwp951zKQqy81zAS4hWLcsc.jpg + + + 1959-03-28 + The Kovack Affair + /x2FUeRlu8QuoaqymkLeOiLzSoYj.jpg + Josh is called by his old friend Jesse to help Meaghan keep her hotel from the hands of corrupt Kovack. + /x2FUeRlu8QuoaqymkLeOiLzSoYj.jpg + + + 1959-04-04 + Bounty for a Bride + /uhbd4C51BDtQWZvyNOkZ19KTi4W.jpg + A man hires Josh Randall to persuade his daughter to come back home. The girl, who was kidnapped by Indians years before, refuses to return because she feels that the Indians are now her people. + /uhbd4C51BDtQWZvyNOkZ19KTi4W.jpg + + + 1959-04-11 + Crossroads + /5BCYHqv7Sqab306y01qsXcXT1iN.jpg + Josh is on the track of a suspected murderer, when the father tries to avert his sons capture. + /5BCYHqv7Sqab306y01qsXcXT1iN.jpg + + + 1959-04-18 + Angels of Vengeance + /r6b9Ph2shzFT0jeXsUnl6qHjEAp.jpg + Josh kills a young man in self-defense, the victim's father, the head of a religious cult, then orders Josh's death. + /r6b9Ph2shzFT0jeXsUnl6qHjEAp.jpg + + + 1959-04-25 + Littlest Client + /q5LVLkFjXWPRPoKjQfgtskdyLwM.jpg + Josh is hired by a 10 year old girl to find her father, she refuses to believe that he is dead. + /q5LVLkFjXWPRPoKjQfgtskdyLwM.jpg + + + 1959-05-02 + The Conquerers + /ijdX1dlm8hMViRUyhYZeGgUgMPs.jpg + A Banker hires Josh to find his runaway son. The boy has joined a mercenary army that preys on small Mexican villages. + /ijdX1dlm8hMViRUyhYZeGgUgMPs.jpg + + + 1959-05-09 + Amos Carter + /aHFy79Q8PNp3CRAVYH8Gcn2fyOV.jpg + Josh tries to reconcil two families whose feud has reached dangerous proportions. + /aHFy79Q8PNp3CRAVYH8Gcn2fyOV.jpg + + + /1BSK9PO23uMvXwx4lSEkga5C2ky.jpg + Season 1 + + + 1959-09-05 + + + 1959-09-05 + Montana Kid + /vJm4iUj4cEzHA5CUY8fRHhGcP6q.jpg + A kid is the key for Josh to find Johnny Deuce who cheated during a poker game and took a lot of money off Josh. Now Josh goes after Deuce in order to get his money back. + /vJm4iUj4cEzHA5CUY8fRHhGcP6q.jpg + + + 1959-09-12 + The Healing Woman + Tom takes his very ill son away from medical help and takes him to a witch a so called healer jeopardizing his sons full recovery. + + + 1959-09-19 + The Matchmaker + Josh reluctantly plays matchmaker and enlists the aid of Amy Williams to teach Charlie the proper way to behave and act so that he can confidently find his own bride. + + + 1959-09-26 + Breakout + Prison officials allow Randall to help Tom Dunn escape in order to retrieve the missing fifty thousand dollars Dunn had stolen. + + + 1959-10-03 + Estralita + While hot on the trail of a murderer, Josh comes across a man about to be lynched by a group of vigilanties. The victim happens to be the same man that Randall has been chasing. + + + 1959-10-10 + The Hostage + Josh delivers Jumbo Kane, a highly dangerous and already sentenced to death man. Soon after he has handed him over to the sheriff, Kane takes the sheriff by surprise and kills him. + + + 1959-10-17 + The Empty Cell + Josh delivers a prisoner to the sheriff, in the morning Josh realizes that there was an impostor and that the prisoner has successfully escaped with his cohort. + + + 1959-10-24 + Bad Gun + After selling a customer a defective gun, Josh is hired to retrieve the dangerous weapon. + + + 1959-10-31 + The Tyrant + Recruited by the army, Josh seeks the horses and the deserter who stole them. And he finds both the horses and the man - in custody of the town's marshal. But the marshal, who's ruling the town with an iron fist, isn't willing to give them back. + + + 1959-11-07 + Reckless + Well-known businessman Tate Bradley hires Josh and other bounty hunters to find Tony Egan who killed his son, but was ruled an accident. When Randall finds the supposed killer and returns him. Bradley refuses to pay the bounty because Egan is still alive. + + + 1959-11-14 + Desert Seed + Josh manages to track down Juan Gomez in the desert near the Mexican border where he's living now with his family. His nephew Pachito rides in to protect his uncle. (Afterall he is the future Pancho Villa). + + + 1959-11-21 + Twelve Hours to Crazy Horse + Josh delivers Dan Murdock, wanted for multiple murders, in Mesa City. Josh learns that the local sheriff is the brother of Crazy Horse's deputy, one of the victims, and it's unlikely that Murdock will arrive safely. Josh goes along to make sure that he does. + + + 1959-11-28 + No Trail Back + Joe Hooker, after raiding a bank on behalf of his brother Ben, is bitten by a dog with rabies. Upon learning this, the sheriff ends his pursuit. Josh, however, decides to go after Hooker anyway. + + + 1959-12-05 + Man on Horseback + Charley Red Cloud is blamed for the murder of Will Bascomb. Bascomb's brother, Merv places a high bounty on Red Cloud. + + + 1959-12-12 + Chain Gang + After being arrested for a minor offence, Josh is put on the chain gang and put to work on the local mine. + + + 1959-12-26 + Vanishing Act + On the trail of bank robber Bart McCready, Josh discovers that he is posing as an escape artist named ""The Great Bartolo"". + + + 1960-01-02 + Mental Lapse + An amnesia victim has posters up asking for help finding information about himself. + + + 1960-01-09 + Angela + Angela Pryor is seeking revenge against the man who murderer her father during a burglary. Josh is also after the same man for other crimes. + + + 1960-01-16 + The Monster + Josh goes after an elephant trainer who is using the animal to scare away the whole town so he can rob the town blind. + + + 1960-01-23 + The Most Beautiful Woman + John Garth comes to town looking for his darling Lil, he feels something terrible has happened. There was a fire in the saloon and he thinks she died. + + + 1960-01-30 + Jason + Josh caught 'Doc' Phillips, the partner of Clell Fennon, and now wants to use him as a bait to get Fennon - worth $5.000 - himself. + + + 1960-02-06 + The Partners + Josh gets arrested - for horse theft. Then he finds out it was Jason who wants him behind bars because Jason wants to go after Billy Joe Henry alone. + + + 1960-02-13 + Tolliver Bender + Josh needs Tolliver's testimony in a nearby town unfortunately Amos McKenna wants to hang Tolliver and will only allow him to go if one of the two Josh or Jason stays in his place. + + + 1960-02-20 + A House Divided + Josh is hired by an attractive woman to find and clear the name of her father wrongly accused of murder. The real killer hires Jason to find the same man too. + + + 1960-02-27 + Triple Vice + Josh and Jason go to Mexico Al Hemp's brother Billy. Al took the blame for Billy's crime and ends up waiting for his brother a no show. + + + 1960-03-19 + Black Belt + Josh goes after a Korean named Sammy Wong wanted for murder. His hands are his deadly weapon, being the karate expert that he is. + + + 1960-03-26 + The Pariah + The good townspeople hire gunmen to kill Randy Holleran who is responsible for several deaths and trouble in the town. Josh is asked by the father to help protect his son. + + + 1960-04-09 + Vendetta + Josh captures and returns a wanted recruit to an Army Camp. The commanding officer re-instates the wanted man and refuses to pay Randall his bounty money. + + + 1960-04-23 + Death Divided by Three + Josh and Jason are on the trail of an outlaw wanted for murder in Arizona. The outlaw's wife is also seeking her husband. + + + 1960-04-30 + The Inheritance + Clint Davis a blind and dying rancher hires Josh to find his renegade son. + + + 1960-05-14 + Prison Trail + Josh and Jason are delivering four criminals unaware that a stranger is following them to seek revenge on those criminals. + + + 1960-05-21 + Pay-Off at Pinto + Bank of Pinto having been robbed hires Josh to go to Santa Fe to replenish the funds. + + + /dfd5pB2pt0W3rFq8NoMIiAXcq5y.jpg + Season 2 + + + 1960-09-21 + + + 1960-09-21 + The Trial + /j0szyTavJwtzQy6cfVedzf7ciEQ.jpg + Daniel Trenner is wanted for court martial because of his cowardice several men is his platoon lost their lives. Josh is after Trenner for other reasons and wants to stop the trial. + /j0szyTavJwtzQy6cfVedzf7ciEQ.jpg + + + 1960-09-28 + The Cure + /wmloqps3TBxKKoSrqIPtpoGgJNs.jpg + Emily Kendrick hires Josh to keep her beloved Harry from drinking himself to death, she has matrimony on her mind and with the arrival of Harry's brother for the wedding, she wants to make sure that all goes as planned. + /wmloqps3TBxKKoSrqIPtpoGgJNs.jpg + + + 1960-10-05 + Journey for Josh + /7YNV6N8QNcT6i0hf8Wp1n7KES9b.jpg + Josh is delivering a female prisoner and becomes smitten with her, unknown to him is her accomplice, who is following them to break her loose. + /7YNV6N8QNcT6i0hf8Wp1n7KES9b.jpg + + + 1960-10-12 + The Looters + /nKkFeh1K6rwisqfXFC7AVsiqhbC.jpg + Josh is on his way to River City to pick up three prisoners, when an unexpected tornado destroys the jail, killing the sheriff. Josh is on the hunt to recapture the escapees. + /nKkFeh1K6rwisqfXFC7AVsiqhbC.jpg + + + 1960-10-19 + The Twain Shall Meet + /9JjhQVfwJxEi6WrqqdWyFf0ezL9.jpg + Josh allows an Eastern newspaper reporter to go with him on a manhunt for a story. + /9JjhQVfwJxEi6WrqqdWyFf0ezL9.jpg + + + 1960-10-26 + The Showdown + /1U1FRhoKgDKjwavmE8txfXmZCDU.jpg + Johnny Haywood, a childhood friend of Josh's claims to be innocent of the crime he is accused of. When he escapes, Josh is ordered to bring him back - dead or alive. + /1U1FRhoKgDKjwavmE8txfXmZCDU.jpg + + + 1960-11-02 + Surprise Witness + Josh captures a notorious killer but no one wants to testify against him, until a surprise witness come forward, his mother. + + + 1960-11-09 + To the Victor + Josh is hired by the men of the town to try and persuade the ladies to return to their homes after rebelling against their husbands gunplay. + + + 1960-11-16 + Criss-Cross + When Josh brings in the wrong man mistakenly and after his release he finds the real criminal notifying Josh of the mans whereabouts. + + + 1960-11-23 + The Medicine Man + Josh and a phony medicine man help out a man who was framed and falsely accused of the theft of a huge sum of money. + + + 1960-12-07 + One Mother Too Many + Josh is hired by Beth a widow, to find her runaway son, who is currently in the care of her vindictive mother-in-law. + + + 1960-12-14 + The Choice + Jane Koster asks Josh's help with her husband, Frank who is also a bounty hunter. He is out looking for Stacy Lenz with a score to settle and Jane fears for his life. + + + 1960-12-21 + Three for One + Josh with prisoner Tom Fellows in tow, stops in the town of Center City overnight, unaware that one of Tom's cohorts is devising a plan to free him. + + + 1960-12-28 + Witch Woman + Esperanza is not in love with the notorious Guerra and loves another but is too frightened to tell him because he kills any man who looks at her twice. Josh tries to reason with Guerra. + + + 1961-01-04 + Baa-Baa + Josh is hired to find Baa-Baa a beloved pet of Mrs. Goode's. Her husband is desperate to find Baa-Baa as he is in the dog house with her until Baa-Baa returns. Josh reluctantly goes and looks for the lost sheep admist much ridicule from other ranchers and cowboys alike. + + + 1961-01-11 + The Last Retreat + Sarah Lawton's identification led to killer Clem Robinson's conviction. Now Clem has escaped from prison, and Josh is hired for protection by Mrs. Lawton because her lawyer husband is a coward. + + + 1961-01-25 + Bounty on Josh + Josh is asked to meet a client at the hotel, at his arrival he is shot. Josh tries to figure out who is behind the shooting. + + + 1961-02-01 + Hero in the Dust + Josh is hired by Harry Weaver to find his twin brother Pete. Pete is using his resemblence to his brother to get away with murder. + + + 1961-02-08 + Epitaph + Josh has to find his friend a Sheriff guilty of robbing a bank for a woman. Several other bounty hunters are out looking for the sheriff as well, Josh has to get there first. + + + 1961-02-15 + The Voice of Silence + Josh is hired by Frank Hagen to protect his deaf-mute daughter Carol Hagen while he's away on business. During Josh's stay at the Hagen Farm, he encounters a strange drifter and former bank robber named Harry Brice accompanied by his criminal partners. + + + 1961-02-22 + El Gato + A timid photographer named Archie Warner comes west with hopes of being the first to shoot a photo of a famous Mexican bandit. Josh happens to be a friend of 'El Gato', and is hired by Archie to met him. + + + 1961-03-01 + Detour + Martin Fairweather has two lovely daughters which are the objects of a young man's affection. Papa doesn't want to lose his best cook and best cleaner so he proceeds to chase any possible suitors away. Josh's job is to distract Papa long enough for the girls to elope! + + + 1961-03-08 + Monday Morning + Overridden with guilt Charlie Glover hires Josh to help him return the money he stole from his employer. Complications arise when the head head of operations, Sam Vickers finds out. + + + 1961-03-15 + The Long Search + Yoshika Nakamura comes west to find a man named Bill Timmons who promised to marry her when he visited Japan. Yoshika hires Josh to help her locate Timmons, and during his venture learns about Japanese culture. + + + 1961-03-22 + Dead Reckoning + Paul Decker is wanted for murder. His wife asks Josh to find her husband and bring him back alive before the Taggert brothers catch up with him for murdering their brother. + + + 1961-03-29 + Barney's Bounty + Josh stops at his friend Barney's to get horses for his two prisoners, they manager to escape, leaving Josh and Barney to get them back for the reward. + + + /o22LtpAU2Iqc9hzo2MZ7em54erw.jpg + Season 3 + + + + + /h1Y9pjIaN4uErNSexW5HZ4c5XCh.jpg + Lee David Zlotoff + MacGyver + 45 + Action & Adventure + http://www.macgyverondvd.com/ + MacGyver + ABC + 7 + US, CA + MacGyver is an American action-adventure television series created by Lee David Zlotoff. Henry Winkler and John Rich were the executive producers. The show ran for seven seasons on ABC in the United States and various other networks abroad from 1985 to 1992. The series was filmed in Los Angeles during seasons 1, 2 and 7, and in Vancouver during seasons 3–6. The show's final episode aired on April 25, 1992, on ABC. Episode List + +The show follows secret agent Angus MacGyver, played by Richard Dean Anderson, who works as a troubleshooter for the fictional Phoenix Foundation in Los Angeles and as an agent for a fictional United States government agency, the Department of External Services. Educated as a scientist, MacGyer served as a Bomb Team Technician/EOD during the Vietnam War. Resourceful and possessed of an encyclopedic knowledge of the physical sciences, he solves complex problems with everyday materials he finds at hand, along with his ever-present duct tape and Swiss Army knife. He prefers non-violent resolutions and prefers not to handle a gun, but will if necessary. + /yersvygEM1NRjJKuiaAGNO59wMw.jpg + 7.5 + + + 1985-09-29 + + + 1985-09-29 + Pilot + /ydbs7oAfERtJarjPafYhmnZOxv1.jpg + Opening Gambit: + +MacGyver rescues an American pilot who has crashed on top of a high cliff. + +Main Episode: + +When a science lab studying the ozone layer mysteriously explodes, MacGyver is called in to rescue the scientists that are trapped underground. It's soon discovered that the explosion cracked a tank of sulfuric acid, and MacGyver is in a race against time before the Army uses a missile to seal up the base. + /ydbs7oAfERtJarjPafYhmnZOxv1.jpg + + + 1985-10-06 + The Golden Triangle + /xk4J3V6LbkajR0hg65CgGIc0USs.jpg + Opening Gambit: MacGyver uses a magnet to retrieve stolen documents, escapes a car about to be flattened, and then traps the thieves in midair. + +Main Episode: + +When MacGyver tries to retrieve a canister filled with a deadly chemical in Burma, he stumbles right into an area known as the Golden Triangle, where the military uses farmers as slaves on the opium fields. MacGyver is mistaken for a narcotics agent and is captured, but convinces the slaves to fight their oppression. MacGyver assists by setting several traps at the slave camp, and when the army returns to suppress the unrest, the real action begins. + /xk4J3V6LbkajR0hg65CgGIc0USs.jpg + + + 1985-10-13 + Thief of Budapest + /xoC48bQZOyHerd3FgIb5gA0jE6Z.jpg + MacGyver travels to Budapest to meet with a Russian double agent who is in possession of a watch containing information about other Russian spies. However, before MacGyver can take the watch, the agent is killed and the watch is stolen. Now MacGyver must work with the Gypsies to get it back. + /xoC48bQZOyHerd3FgIb5gA0jE6Z.jpg + + + 1985-10-21 + The Gauntlet + /lYcrJMag9SpdzIpDwpKd4lKd1Ql.jpg + Opening Gambit: MacGyver retrieves a top-secret map, then uses it to escape his pursuers in the desert. MacGyver escapes the desert by using a hot-air balloon conveniently stored at a rendezvous point. + +Main Episode: + +MacGyver attempts to get a reporter out of a Central American country with evidence linking a general to an illegal arms dealer. As MacGyver and Kate (the reporter) reach the border, it is clear escaping to Mexico will be no easy task, as the general and the arms dealer have every imaginable route severely guarded. There is no turning back. MacGyver must figure out how to get across the border, as his life, as well as Kate's, hangs in the balance. + /lYcrJMag9SpdzIpDwpKd4lKd1Ql.jpg + + + 1985-11-03 + The Heist + /xcFJWPmILFxxnO9VOp0wvzdlkNx.jpg + When $60 million worth of stolen diamonds destined for a relief charity end up in the hands of casino owner Jack Catlin, MacGyver must head to the Virgin Islands to try and get them back. With the help of Chris Rhodes, a senator's daughter, MacGyver masterminds a plan to break into Catlin's vault and steal them back. + /xcFJWPmILFxxnO9VOp0wvzdlkNx.jpg + + + 1985-11-10 + Trumbo's World + /ejlmyV1dxjr7vHQvo1wHymBcWNb.jpg + Opening Gambit: In the Pyrenees Mountains, MacGyver rescues a prisoner, then makes a daring escape with her by raft. + +Main Episode: + +MacGyver comes along on a expedition to Brazil with his friend, entomologist Dr. Alden. They meet with a landowner and recluse, Trumbo, who is initially hostile. However, when they realize that a mile-wide column of army ants is moving through the jungle, they team together to mount a defense. Alden is killed by the ants, which seem unstoppable. MacGyver tries to flood the ants by filling the surrounding troughs with water, but when that plan fails, he uses a flamethrower to burn the oncoming ants. Out of gasoline and quickly running out of time, MacGyver must come up with a plan to dispose of the ants, or Trumbo will lose in one afternoon what he spent his life assembling. + /ejlmyV1dxjr7vHQvo1wHymBcWNb.jpg + + + 1985-11-17 + Last Stand + /xHWJoeIIBprj0cyIPf51Sq0exWH.jpg + When MacGyver is on his way to a vacation, he takes the wrong way and ends up at a small airstrip where everybody seems to be behaving strangely. Too late, he discovers that the airstrip has been taken hostage, and he has been caught in the middle of a plane-hijacking attempt. + /xHWJoeIIBprj0cyIPf51Sq0exWH.jpg + + + 1985-11-27 + Hellfire + /2YLZxEu72qqMmEpGogVRH3gMetS.jpg + During a trip to visit some friends, an accident starts a fire in an oil well owned by MacGyver's friends. MacGyver and his buddy then go to fetch dynamite in an abandonned mine at great peril to themselves after they decide the dynamite is the only feasible way the fire can be put out. However, when they use it, the fire only becomes more intense. Can MacGyver and his Hellfire friend survive the incredible heat to put out the fire and save the oil buried underneath the well? + /2YLZxEu72qqMmEpGogVRH3gMetS.jpg + + + 1985-12-08 + The Prodigal + /6onrcuoLLXjOYV01WhtbO1Tdpm3.jpg + A man wants to testify against his mobster brother in Federal Court, and MacGyver has the job of keeping him safe, but the man's mother is dying and he wants to visit her. + /6onrcuoLLXjOYV01WhtbO1Tdpm3.jpg + + + 1985-12-22 + Target MacGyver + /jUKMZSbBOu86UnLclxHaHHPSW4K.jpg + Opening Gambit: MacGyver rescues a lady general at a beach house, then nabs her kidnappers using common kitchen equipment. + +Main Episode: + +After blowing away a nuclear facility under the control of an aggressive world leader, MacGyver returns home for some peace and quiet, only to find his boss waiting for him. He advises MacGyver that a contract is out on his life and he needs to skip town for awhile. + /jUKMZSbBOu86UnLclxHaHHPSW4K.jpg + + + 1986-01-15 + Nightmares + /hT565gNHYhH5zGZEYflTHWIxirx.jpg + When MacGyver comes home with some important documents, he's drugged by enemy agents and told that he will die in six hours if he doesn't retrieve the documents for them. But MacGyver, using an old prisoner trick, escapes. Now the only problem is convincing someone that he's not just another drunk. + /hT565gNHYhH5zGZEYflTHWIxirx.jpg + + + 1986-01-22 + Deathlock + /zhV4wzrB1MSXQ1MMCdJu3eZjRrA.jpg + Opening Gambit: Posing as a corpse, MacGyver escapes Berlin by coffin-turned-jet-ski. + +Main Episode: + +MacGyver is trapped in a mansion with Pete, a code expert, and a government agent who may or may not be on their side. However, an old nemesis has electronically booby-trapped the entire mansion to make sure they can't go anywhere. + /zhV4wzrB1MSXQ1MMCdJu3eZjRrA.jpg + + + 1986-01-29 + Flame's End + /uQGIddlRRAOiT6B9M8arBfroLHb.jpg + An old girlfriend of MacGyver's contacts him for help after she discovers evidence of uranium thefts from a nuclear processing plant where she works. + /uQGIddlRRAOiT6B9M8arBfroLHb.jpg + + + 1986-02-05 + Countdown + /hhR3JpHnatW7RGnaqclxYMFLgnT.jpg + A mysterious person, who calls himself "Viking", has just bombed a cruise ship. He demands six million dollars or another bomb will go off within hours. So MacGyver, with an old friend from Vietnam, Charlie Robinson, is sent to disarm it. But when they get there, they find out there's more then one bomb on the ship. + /hhR3JpHnatW7RGnaqclxYMFLgnT.jpg + + + 1986-02-12 + The Enemy Within + /gIHu0FT7R9cyDnzeTImJ3lTqdM.jpg + After a daring escape from East Germany where he gets rescued, and in the process saves a fellow operative with a quick mechanical fix, MacGyver thinks that he deserves some peaceful vacation time. But Pete lures him into baby-sitting a Russian defector who can identify KGB agents. + /gIHu0FT7R9cyDnzeTImJ3lTqdM.jpg + + + 1986-02-19 + Every Time She Smiles + /jetYszIbMiuyt3RMYYirSXWsmpL.jpg + MacGyver is on his way out of Bulgaria with a secret microfilm, when he meets Penny Parker, a beautiful, talkative American, who is on the run from her lover, a man named Stephan Frolov. She stashes some jewels on MacGyver, thus making him a suspect, and now MacGyver and Penny must flee Bulgaria together. + /jetYszIbMiuyt3RMYYirSXWsmpL.jpg + + + 1986-03-05 + To Be a Man + /tTzpLKVYHDF6Wsa0UPnLs62Llao.jpg + In Afghanistan, wounded and hunted by the Soviets, MacGyver is given refuge by an Afghan woman and her son. But they are themselves at the mercy of an Afghan thug, who will kill MacGyver if he finds him at his woman. + /tTzpLKVYHDF6Wsa0UPnLs62Llao.jpg + + + 1986-03-12 + Ugly Duckling + /c0TdklASKnkLHopEGeaVfOEAnnz.jpg + A 15-year-old genius accidentally hacks into a defective missile guidance system and attracts the attention of both the FBI and some black marketeers, who think that she may fix it for them. It's up to MacGyver to save her from being kidnapped by either side. + /c0TdklASKnkLHopEGeaVfOEAnnz.jpg + + + 1986-04-02 + Slow Death + /hqqVeHnfr2LcNbOxIINHZTNtZaw.jpg + At the beginning of the episode, MacGyver literally has to jump onto a moving train that he missed earlier to return top-secret files and documents to the U.S. Government. Soon after, a local tribe stops the train. They take all passengers hostage until the men responsible for the death of the tribal leader's son is found among the passengers. + /hqqVeHnfr2LcNbOxIINHZTNtZaw.jpg + + + 1986-04-16 + The Escape + /w54uD7nVbdqVfR5l71GtIk8qsN9.jpg + When a mother superior at a religious mission in North Africa asks MacGyver to help a young woman with something, he is glad to help. However, when he finds out the young woman wants him to break her brother out of jail, he may have taken on more than he expected. + /w54uD7nVbdqVfR5l71GtIk8qsN9.jpg + + + 1986-04-30 + A Prisoner of Conscience + /ciHoRjw7xjoKxGdsmfIOzV9wXVH.jpg + Pete Thornton investigates the supposed death of an old friend, a prominent Russian dissident, and finds he must get his friend's daughter Maria out of the country before the secret police arrest her for an alleged conspiracy. However, while in Russia, Pete bumps into MacGyver, who followed him from the United States. While disappointed MacGyver followed him, Pete gladly welcomes MacGyver into his plans when the secret police arrive to take Maria into custody. Following a high speed boat chase to escape the police, Pete and MacGyver find out from Maria that her father is not dead, he is being held in a maximum security ward at a state mental institution. To get into the mental hospital, MacGyver plays the part of a mad patient and Pete plays the part of a doctor who has been assigned to him. With the help of the other patients, MacGyver is able to escape into Ward Zero, where Pete's friend is held. MacGyver breaks him out and hides him with the other patients + /ciHoRjw7xjoKxGdsmfIOzV9wXVH.jpg + + + 1986-05-07 + The Assassin + /umFre3zw3hunRVEG75ciw9Oy7pe.jpg + Posing as a watchmaker who manufactures bomb timers, MacGyver manages to catch a master killer—Piedra—before he attempts an assassination on a high-profile target. However, Piedra isn't about to be stopped for long. + /umFre3zw3hunRVEG75ciw9Oy7pe.jpg + + + /xTx6cIOPeqKQFe8QfjEAG1w1URh.jpg + Season 1 + + + 1986-09-22 + + + 1986-09-22 + The Human Factor + /eelrNg4gDYrr93Dx0lMkoPBxPjA.jpg + MacGyver and Pete are testing a new security system at the Strategic Research Development Administration. MacGyver successfully bypasses the security and meets Dr. Jill Ludlam, the system's designer. She tries to turn off the security system, but it doesn't realize that it was just a test. MacGyver and Dr. Ludlam are then forced to find a way out, as the security system, named Sandy, tries to destroy the "intruders." + /eelrNg4gDYrr93Dx0lMkoPBxPjA.jpg + + + 1986-09-29 + The Eraser + /m04DoDqOT9aUGdZ1YBn1QCSfwoU.jpg + Mac inadvertently leads a hit man to his target, believing that he's helping a father find his lost son. + /m04DoDqOT9aUGdZ1YBn1QCSfwoU.jpg + + + 1986-10-06 + Twice Stung + /rISEKVuRCRFN0obYExEuVxBFTMp.jpg + MacGyver and Pete have a surprise party planned for a colleague, but when the colleague doesn't show up, MacGyver goes looking for him, and finds him on the verge of committing suicide. When questioned why he would do such a thing, Kelly explains that a con artist has swindled him out of his life savings. MacGyver tells Pete about Kelly's situation and the two of them decide that they will get Kelly's money back from the con + /rISEKVuRCRFN0obYExEuVxBFTMp.jpg + + + 1986-10-20 + The Wish Child + /rZEL9Cn6pyij3HrPDTl6T7Yd0b3.jpg + While MacGyver goes to pick up a Chinese friend's brother from a birthday party, he witnesses something strange: Paul is being called "The Wish Child." It seems that a greedy businessman has wrapped him up in a scam, because he looks exactly like a boy from an old legend that owns the secret of immortality. Now, MacGyver must try to talk him out of this, because Paul is starting to believe he really is The Wish Child! + /rZEL9Cn6pyij3HrPDTl6T7Yd0b3.jpg + + + 1986-10-27 + Final Approach + /g7euKnTQH0uEXaoFtlENklKPWgg.jpg + MacGyver goes to the mountains to lead four ex-gangster teens on a Phoenix Foundation funded rehabilitation trip. When he gets there, he finds that this task may be a little more complicated then he thought. All of the kids are very rebellious and one of them has a bad grudge against another one. A couple of days later when MacGyver is returning with the kids, their plane crashes in the middle of the wilderness and one of them is injured. Now, MacGyver must fix the plane and help the kids work out their differences so they can save their friend. + /g7euKnTQH0uEXaoFtlENklKPWgg.jpg + + + 1986-11-03 + Jack of Lies + /cT8iKFmmEWpEpgUzqkzrpbwaSqT.jpg + MacGyver, returning home one night, walks into his apartment, only to everything he owns missing from his apartment. Initially suspecting a robbery, MacGyver eventually comes to the conclusion that his old friend Jack Dalton is the one responsible for the theft. + /cT8iKFmmEWpEpgUzqkzrpbwaSqT.jpg + + + 1986-11-10 + The Road Not Taken + /axawuUfqsK9xoK7pzZPA69r7HWK.jpg + MacGyver and Pete head to Asia to rescue a nun, who is an old friend of Pete's, and the orphaned children she takes care of from aggressive regime troops. While there, MacGyver runs into someone he never expected, his old fiancee, Debra. Now MacGyver must complete his mission, work out his differences with Debra, and escape from the troops, all before the troops find them. + /axawuUfqsK9xoK7pzZPA69r7HWK.jpg + + + 1986-11-17 + Eagles + /gwR2rvwGBBBvLTrhl8F1N766exl.jpg + While hang gliding in the west, MacGyver crosses paths with an escaped felon who shot and wounded a rare eagle. Now, with the help of his new friend Susan Cooper and her son Darin, MacGyver must heal the eagle and trap the felon before he kills more eagles. + /gwR2rvwGBBBvLTrhl8F1N766exl.jpg + + + 1986-11-24 + Silent World + /bP2absbjP5rCpBM6nRJIMzHJPeN.jpg + While helping the Phoenix Foundation test a new missile-guidance system for the government, MacGyver's efforts are hampered by men who are trying to steal it. When the men escape with it, MacGyver turns to his deaf friend, who has been having premonition-type dreams of this happening. Now MacGyver must try and analyze her dreams so that he can find the men who stole the system. + /bP2absbjP5rCpBM6nRJIMzHJPeN.jpg + + + 1986-12-15 + Three For the Road + /sUJRRjJpImi465qK6s9bgzFZvgp.jpg + A retired actor and his wife stop at a motel on the way to Los Angeles. MacGyver rescues them from a drunkard who nearly makes a mark on their car. + +MacGyver is supposed to meet a mobster-turned-informant at the motel, but the meeting goes wrong. The mob shows up and kills MacGyver's friend before he can give MacGyver what he promised. Instead the bag lands in the old couple's car, where the old actor finds it and discovers it full of money. + /sUJRRjJpImi465qK6s9bgzFZvgp.jpg + + + 1987-01-05 + Phoenix Under Siege + /pu4Skhpf6B9HWAOhN22OxjM9pwu.jpg + While retrieving tickets for a hockey game at the Phoenix Foundation, MacGyver and his grandpa Harry get caught in the middle of a woman's plot to blow up the building using a bomb that she herself made. They try to escape, but are locked in. Now they must figure another way out before she activates the bomb. + /pu4Skhpf6B9HWAOhN22OxjM9pwu.jpg + + + 1987-01-12 + Family Matter + /c2bjLXQjnHSkWAkKFyh3bxmcxxv.jpg + Pete's ex-wife and son are kidnapped down in Louisiana while on an archaeological trip. The kidnappers demand that Pete comes to Louisiana in exchange for letting his family go. But when he gets there, it soon becomes apparent that they don't plan to let any of them go. + /c2bjLXQjnHSkWAkKFyh3bxmcxxv.jpg + + + 1987-01-19 + Soft Touch + /bm1b9UAEygaijuL29QmEqg4rsnJ.jpg + MacGyver puts up Penny Parker for a few days while she's looking for a job as a singing telegram. But on her first day, she happens to witness two thugs torturing a man. Unfortunately, she can't find her way back, and when she does, MacGyver thinks this may be the start of something bigger as the victim is a Federal agent. + /bm1b9UAEygaijuL29QmEqg4rsnJ.jpg + + + 1987-02-02 + Birth Day + /iXBYJjTVzmbiptD1OdTUZnHRGrU.jpg + MacGyver's fishing trip is cut short when he meets a very pregnant woman whose husband is out to kill her. Accidentally, she found out that his half-way home for ex-cons is really a recruiting place for new crimes. Mac and the woman are chased into a warehouse where they are trapped. + /iXBYJjTVzmbiptD1OdTUZnHRGrU.jpg + + + 1987-02-09 + Pirates + /5OtlHfsn60ebV0268e4kAew9h06.jpg + While on an expedition to find a Spanish treasure fleet, Dr. Barbara Ortega's boat is hi-jacked by modern-day pirates. They steal the small amount of treasure that she has already found - including the ship's log, which is the key to finding the whole fleet - and take off. When she makes it public that she was hi-jacked, the Phoenix Foundation sends MacGyver to help. Now, MacGyver and Barbara must recover the ship's log, so she can find the treasure before the pirates do. + /5OtlHfsn60ebV0268e4kAew9h06.jpg + + + 1987-02-16 + Out in the Cold + /4eE1dG9ar3OtKZf0ONMnKY1FZez.jpg + When MacGyver and Pete go skiing, a man switches poles with MacGyver, only moments before being gunned down and killed by his former friends. But the gunshot starts an avalanche, which covers MacGyver completely, leaving it up to Pete to convince the mountain rangers to stage a search and rescue before the next avalanche comes. As MacGyver finally is dug up, the gangsters are there, waiting for him, and whatever is hidden in that ski pole. + /4eE1dG9ar3OtKZf0ONMnKY1FZez.jpg + + + 1987-02-23 + Dalton, Jack of Spies + /cxJqoDCUZ1d9APQSwNEi7sW28t7.jpg + Dalton, who is believed to be dead, recruits MacGyver to help uncover a CIA mole. + /cxJqoDCUZ1d9APQSwNEi7sW28t7.jpg + + + 1987-03-02 + Partners + /yQLphZtuy8AWS1am5MyzEWO6VgV.jpg + MacGyver and Pete meet at a wrecking yard, both thinking that the other one arranged the meeting. Soon an unknown assailant captures them inside a big truck. Their only clue is an obituary for them and Jack Dalton. + /yQLphZtuy8AWS1am5MyzEWO6VgV.jpg + + + 1987-03-23 + Bushmaster + /cgUSqWFlqlscAkkswqwkdc7zfmo.jpg + When MacGyver is sent to rescue an American pilot held in Central America for supposed espionage, his wargame-trained daughter tags along, but she didn't quite come prepared for the real thing. MacGyver must now rescue the pilot while keeping his daughter safe from the soldiers. + /cgUSqWFlqlscAkkswqwkdc7zfmo.jpg + + + 1987-04-06 + Friends + /rESZj79js9djYKQOB1zABFQZJXs.jpg + MacGyver's friends throw a birthday party for him, but he's somberly reflecting on his past and future. While reflecting, MacGyver decides to leave the Phoenix Foundation to get married and have a family. Can Pete convince him of how important he is to the Foundation and get him to change his mind? + /rESZj79js9djYKQOB1zABFQZJXs.jpg + + + 1987-04-27 + D.O.A.: MacGyver + /AnD5xxZWFPOyLKqKYhCdihtGiOu.jpg + MacGyver is called to a meeting with a former British spy, who has learned of a group of terrorists that will use a new plastic explosive in a vengeful attack on the U.S. army. This explosive can be hidden anywhere. However, before the spy can give MacGyver all the details he is shot. MacGyver flees through a window and is picked up by a boat. The female who owns the boat soon learns that the man she has rescued doesn't have any memory. + /AnD5xxZWFPOyLKqKYhCdihtGiOu.jpg + + + 1987-05-04 + For Love or Money + /ffes0gEAbQTwMJztBq9izE7kjSA.jpg + MacGyver is forced to work with a ruthless freelance agent to rescue a human rights activist who is being held in a psychiatric hospital in Czechoslovakia. The rescue is an apparent success, until the secret police then kidnap the activist's wife to get him back. + /ffes0gEAbQTwMJztBq9izE7kjSA.jpg + + + /x8WlBof6FE6PIlbDHnigBTmpOY1.jpg + Season 2 + + + 1987-09-21 + + + 1987-09-21 + Lost Love (1) + /fxsheJ3XxbSCU2fvbBbBke89u0d.jpg + While helping the People's Republic of China secure a priceless national treasure—The Ming Dragon—in a San Diego museum, MacGyver runs into a Lisa, a woman that he had loved and thought was long dead. MacGyver learns that Lisa has been alive all these years and needs his help escaping the KGB. + /fxsheJ3XxbSCU2fvbBbBke89u0d.jpg + + + 1987-09-28 + Lost Love (2) + /xVBvdz28k83g76OsFkGUzAjdBIO.jpg + The KBG have Lisa in their grasp, and MacGyver must get The Ming Dragon for them to free Lisa. MacGyver enlists the help of his old buddy, Jack Dalton, to help him steal it. + /xVBvdz28k83g76OsFkGUzAjdBIO.jpg + + + 1987-10-05 + Back From the Dead + /wYQpIqS2ruSVs1pPypyNa5uTUET.jpg + Jimmy Kendall, living undercover after testifying against his Mob bosses, surfaces when he becomes the manager for a winning baseball team. + /wYQpIqS2ruSVs1pPypyNa5uTUET.jpg + + + 1987-10-19 + Ghost Ship + /1rN9SOqGKdaDYBnKr8WyExqfBkn.jpg + While mapping the wilderness for the Phoenix foundation, MacGyver stumbles on a deserted ship and finds a runaway girl who tells him that the rest of crew was driven away by Bigfoot. + /1rN9SOqGKdaDYBnKr8WyExqfBkn.jpg + + + 1987-10-26 + Fire and Ice + /3lkPvhvapXdUAYsnxP3tXpKAnvT.jpg + A jewel thief with diplomatic immunity kills Mac's friend. But there are more people involved in the crime - and Mac can't be sure who's on his side. + /3lkPvhvapXdUAYsnxP3tXpKAnvT.jpg + + + 1987-11-02 + GX-1 + /ljvu3Pob1DFYMujaWigQ8qF2ft.jpg + Mac and Nikki race to recover equipment from a downed experimental plane before the Soviets, who are using a psychic to guide them to the wreckage. + /ljvu3Pob1DFYMujaWigQ8qF2ft.jpg + + + 1987-11-09 + Jack in the Box + /LdfZOi6g015GJgOHNHxAJLp6h0.jpg + MacGyver and Jack Dalton are arrested in Arkansas by a corrupt sheriff who arrests people to make them work in a labor camp used for mining gold. MacGyver wants to escape, but Jack has other ideas: He wants to find five million dollars his uncle Charlie left in the mines years before. + /LdfZOi6g015GJgOHNHxAJLp6h0.jpg + + + 1987-11-16 + The Widowmaker + /chB2YtzGiU7rswvXL0J5EAenDTc.jpg + MacGyver is forced out of his grief over the tragic death of a friend by a madman with a score to settle from their past association. + /chB2YtzGiU7rswvXL0J5EAenDTc.jpg + + + 1987-11-23 + Hell Week + /pjCqYFkoJNVijFb40mwl390hdFJ.jpg + A desperate physics student goes off the deep end and boobytraps a college lab when he fails to win a science competition and to live up to his father's high expectations. + /pjCqYFkoJNVijFb40mwl390hdFJ.jpg + + + 1987-12-21 + Blow Out + /eVtvOmAiFEJyHgMlPkHmCQwUVus.jpg + MacGyver teams up with colleague Nikki Carpenter to find out who is behind the attempts on her life. When they find out that the man who tried to kill her is connected to two terrorists who blew up a local post office, MacGyver and Nikki must find out what the terrorist's next target is before it's too late. + /eVtvOmAiFEJyHgMlPkHmCQwUVus.jpg + + + 1988-01-04 + Kill Zone + /wlglXbZmFZgMjP51zrBtA18vrha.jpg + An impulsive scientist who cuts corners in her research work creates an uncontrollably mutating organism that speeds up the aging process. + /wlglXbZmFZgMjP51zrBtA18vrha.jpg + + + 1988-01-18 + Early Retirement + /euS5OxOTGhoeIhZErrOHsVp9k5j.jpg + While testing a new nuclear bomb defusing team at the Phoenix Foundation, a deadly explosion kills three men. Pete blames himself for not inspecting their equipment better and resigns from his job out of guilt. However, Pete is replaced by a not-so-trustworthy man—one who may have been connected to the explosion. + /euS5OxOTGhoeIhZErrOHsVp9k5j.jpg + + + 1988-02-01 + Thin Ice + /fXwwkRkfkzOuutouRRhdVSqAv2W.jpg + While back in Minnesota to fill in as coach for a high-school hockey team, MacGyver tries to change the attitude of a callous player who has a shot at playing for the pros. But when this kid's ambition lands another player in the hospital, MacGyver must try and find out what or who is pushing him so hard to succeed. + /fXwwkRkfkzOuutouRRhdVSqAv2W.jpg + + + 1988-02-29 + The Odd Triple + /xxD7IooUKWRedYSBYrfu5XSGHCi.jpg + After returning home from a long assignment, MacGyver has an unwelcome surprise. Jack Dalton is waiting and wants him to help with a new scheme. A wealthy woman has just acquired some invaluable jewels, needing Jack to fly her back to her home in France. Things seem to be going fine, that is, until they land. Jack and MacGyver are arrested and accused of theft. + /xxD7IooUKWRedYSBYrfu5XSGHCi.jpg + + + 1988-03-07 + The Negotiator + /aTcWf6K4kEX178aQ3PHCOvtpnOt.jpg + MacGyver becomes infatuated with a woman while conducting environmental-impact studies. However, what MacGyver does not know is that the woman was hired to "persuade" him to skip the studies—and if necessary, kill him. + /aTcWf6K4kEX178aQ3PHCOvtpnOt.jpg + + + 1988-03-14 + The Spoilers + /xpARhLEqPyqrZc9owFYJXdYd3jJ.jpg + MacGyver enlists a recluse nicknamed "Earthquake" to help find a person who is dumping toxic waste and polluting mountain streams. + /xpARhLEqPyqrZc9owFYJXdYd3jJ.jpg + + + 1988-03-28 + Mask of the Wolf + /yjS6O2OpkGUxoOO4gkMediVCEyR.jpg + Jack and Mac help an ancient Indian search for a wolf mask that two mercenaries are also eager to have. + /yjS6O2OpkGUxoOO4gkMediVCEyR.jpg + + + 1988-04-18 + Rock the Cradle + /rXXSCekUUTiCOtbjR9tjBg9ghP1.jpg + Mac and Jack return from a flight to find an abandoned baby in Jack's hangar, complete with a desperate note from the mother and his own endowment fund hidden in his diapers. + /rXXSCekUUTiCOtbjR9tjBg9ghP1.jpg + + + 1988-05-02 + The Endangered + /spJKRthLWUjXGh3IVgbeJ4cE4G4.jpg + While visiting an old girlfriend who's a park ranger at a wildlife reserve, MacGyver runs into deadly poachers who are intent on hunting animals on the reserve. When MacGyver tries to uncover their plot, they come after him. Now it's a race against time to escape the poachers, save the animals, and save their own lives. + /spJKRthLWUjXGh3IVgbeJ4cE4G4.jpg + + + 1988-05-09 + Murderer's Sky + /9z9c3roqTG8DTxOYbPXqUTNJlTJ.jpg + When the head of a American-Chinese shipping company is attacked in his office by a killer, MacGyver and the man's grandson—who is heir to the company—must find out who was behind the attempt on his life. + /9z9c3roqTG8DTxOYbPXqUTNJlTJ.jpg + + + /7PJIoyGW4TqrufIoG0ycc7USiI2.jpg + Season 3 + + + 1988-10-31 + + + 1988-10-31 + The Secret of Parker House + /j1b7e0Kx8JYKDDoQdq8snkNhUDf.jpg + MacGyver accompanies his friend Penny Parker to an old house she has inherited from her Aunt Betty, who mysteriously died 30 years before. When strange things start happening, Penny is sure that the house is haunted. However, MacGyver tries to convince her that there's no such thing as ghosts, but then he starts witnessing the strange events, too. + /j1b7e0Kx8JYKDDoQdq8snkNhUDf.jpg + + + 1988-11-21 + Blood Brothers + /vuTxzV3ebdmaATN8l59uJhJinO0.jpg + MacGyver returns to his home town of Mission City, Minnesota to meet up with two old friends, Chuck and Neil, so they can dig up a time capsule they buried twenty-five years before. However, MacGyver is hesitant to dig the capsule up because he is still haunted by the death of his old friend Jesse, who died when MacGyver was young. But now MacGyver has another problem to deal with. Chuck's and Neil's sons, Danny and Sean, have gotten wrapped up in a drug deal, and the dealer is after Danny. Danny takes off to hide, and now MacGyver must find him, before the drug dealer does. + /vuTxzV3ebdmaATN8l59uJhJinO0.jpg + + + 1988-11-28 + The Outsiders + /mmgq7yaC7hvksDi2jpwtLyh5WIF.jpg + MacGyver helps an Amish family, who saved his life, from having their farm seized by the government. + /mmgq7yaC7hvksDi2jpwtLyh5WIF.jpg + + + 1988-12-05 + On a Wing and a Prayer + /j8eOwvWgzW5LZORCt7rwYxP8nhY.jpg + Central American rebels capture Pete and a nun, and it's up to Mac and Jack to rescue them. But, Jack's plane is sub par, and they go down in the middle of enemy territory. + /j8eOwvWgzW5LZORCt7rwYxP8nhY.jpg + + + 1988-12-12 + Collision Course + /guMk4cY219P6zEn880xLrxHMsVX.jpg + When a friend of Mac's is injured in a crash, Mac agrees to test the new racing engine designed by the Phoenix Foundation. However a business rival has other plans for him, and he has someone from the inside to help him. + /guMk4cY219P6zEn880xLrxHMsVX.jpg + + + 1989-01-09 + The Survivors + /vQVJg2BnZjlQOGLlShvysPUsfvq.jpg + While on assignment for the Phoenix Foundation to test field agents to make sure they are still in shape, MacGyver finds out he now has another agent to test: Pete. Things take a turn for the worse when MacGyver and Pete head into the wilderness where they stumble upon a wrecked plane and pictures of two dangerous drug smugglers who shot it down. + /vQVJg2BnZjlQOGLlShvysPUsfvq.jpg + + + 1989-01-16 + Deadly Dreams + /aMuEm1ZENkZYazGtKvYgANy49qm.jpg + MacGyver gets involved in the search for an escaped serial killer. Soon he comes to the conclusion that the killer had help from another prisoner—an even more sinister man. + /aMuEm1ZENkZYazGtKvYgANy49qm.jpg + + + 1989-01-23 + Ma Dalton + /b9K7CmOPgunr73b3ZHbilzUInX0.jpg + Jack receives mementos of his father from an anonymous sender. This triggers a search for Jack´s mother, who has been missing since Jack was a boy. But when he finally gets to meet her, she turns out to be a fugitive in fear of her life, and Jack´s presence only complicate things more. + /b9K7CmOPgunr73b3ZHbilzUInX0.jpg + + + 1989-02-06 + Cleo Rocks + /5oy51vF9hHozp18huJeB8U3KLn2.jpg + Penny Parker's big chance in a major professional role is threatened from two directions: a money shortage and several deaths linked to the musical she is set to perform in. + /5oy51vF9hHozp18huJeB8U3KLn2.jpg + + + 1989-02-13 + Fraternity of Thieves + /jSELwXSoj3FbdKDFsFPUJlKMVkm.jpg + When Pete's son, Michael, returns to work for the foundation, neither Pete nor MacGyver see that Michael has used his connections to get closer to a Phoenix Foundation technology system in order to steal it and to sell it to the mysterious Papillion. But Papillion has plans of his own for Michael and his gang. + /jSELwXSoj3FbdKDFsFPUJlKMVkm.jpg + + + 1989-02-20 + The Battle of Tommy Giordano + /60wyzDRB9OgGMhzRA0I9Pe0fH8Y.jpg + When a kid is kidnapped by his estranged father, MacGyver tries to help the mother, a Phoenix employee, to rescue the boy. But the father is the son of an aging organized crime kingpin whose control is being threatened by subordinates. + /60wyzDRB9OgGMhzRA0I9Pe0fH8Y.jpg + + + 1989-02-27 + The Challenge + /hRtHi2cd6EdXkxDgqCTq9mOXXu5.jpg + An inner city youth club is threatened when a black resident is framed for auto theft by a neighborhood racist who'll stop at nothing to close the center—even murder. + /hRtHi2cd6EdXkxDgqCTq9mOXXu5.jpg + + + 1989-03-13 + Runners + /dlKL51aymA3pAzf9jquArVquZVk.jpg + MacGyver helps a young runaway with a vicious pimp and a tragic secret about her policeman father. + /dlKL51aymA3pAzf9jquArVquZVk.jpg + + + 1989-03-27 + Gold Rush + /4oH8HQnTBCRS06HxZka3ebLpoU2.jpg + MacGyver joins a joint U.S.-U.S.S.R. team trekking into the Alaskan wilderness to retrieve a huge amount of Russian gold from a downed plane only to learn that someone has beaten them to it. + /4oH8HQnTBCRS06HxZka3ebLpoU2.jpg + + + 1989-04-10 + The Invisible Killer + /wAUQMVDlmrxzK7fXM2f2Rn1q8Dw.jpg + MacGyver heads up a trip with four other Phoenix Foundation employees into the wilderness as part of a stress reduction program. After discovering that a prison bus accident has freed several prisoners, the employees begin to question each other's behavior. MacGyver must now figure out which man, if any, is not to be trusted before it's too late. + /wAUQMVDlmrxzK7fXM2f2Rn1q8Dw.jpg + + + 1989-04-24 + Brainwashed + /5Re9KoxNpDvIZPiajCUuLRXlbYu.jpg + Jack Dalton is brainwashed by an African politician and his wife to assassinate the leader of an African nation, who is in town for an awards ceremony. + /5Re9KoxNpDvIZPiajCUuLRXlbYu.jpg + + + 1989-05-01 + Easy Target + /pNxZffhtHlRoKESTtbjpUowfoXZ.jpg + MacGyver and Pete are captured by terrorists intent on wiping out a nearby city with an electromagnetic pulse, unless their leader is freed. + /pNxZffhtHlRoKESTtbjpUowfoXZ.jpg + + + 1989-05-08 + Renegade + /sHPv4E7XQIRMmt9OMB1Q8YIRIJa.jpg + MacGyver works hard to retrieve the anthrax bacillus stolen by a former Navy commando who once saved his life, and is now suffering the effects of an old head wound. + /sHPv4E7XQIRMmt9OMB1Q8YIRIJa.jpg + + + 1989-05-15 + Unfinished Business + /q1bVmnPzHOg5ya0kVLCPADmCRvb.jpg + Jack, MacGyver, and Pete review their past adventures while on a gold-panning expedition, unaware they're being stalked by a vengeful killer. + /q1bVmnPzHOg5ya0kVLCPADmCRvb.jpg + + + /kZYdOZrxANtnzGaIMaf5LS22xTb.jpg + Season 4 + + + 1989-09-18 + + + 1989-09-18 + The Legend of the Holy Rose (1) + /jbVxYGK5X3OFW2ZjgZuBwVVVITt.jpg + Opening gambit- The Airplane: MacGyver rescues a man who is being held against his will on a high cliff, with a home-built para-glider. + +MacGyver and an old friend dash around the world searching for the artifacts necessary to locate the Holy Grail, just one step ahead of a ruthless man on the same trail, who will do anything to get to it before they do... + /jbVxYGK5X3OFW2ZjgZuBwVVVITt.jpg + + + 1989-09-25 + The Legend of the Holy Rose (2) + /mDm8qRLw2rpblWv7Yphh4eaSl5g.jpg + MacGyver and an old friend dash around the world searching for the artifacts necessary to locate the Holy Grail, just one step ahead of a ruthless man on the same trail. + /mDm8qRLw2rpblWv7Yphh4eaSl5g.jpg + + + 1989-10-02 + The Black Corsage + /x86nVZCahP8cSHqvBLWtdrnYyH5.jpg + Mac and a bounty hunter join forces with a bulldog named Frog to track down a Bulgarian defector who was the accidental witness at a murder and who is now being stalked by the killer, who needs a map she doesn't know she possesses. + /x86nVZCahP8cSHqvBLWtdrnYyH5.jpg + + + 1989-10-09 + Cease Fire + /hZWJ55MjCZRRoYsmupyu9o0fXWG.jpg + During some tough negotiations between two neighbouring states, one side plants a sniper in the vincinity. When Mac discovers the sniper, fights him, but loses the man, the accusations go out against Mac. + +Wounded, he is forced to run, and hide at a private girls' school, where one of the young ladies becomes his only hope to prevent further bloodshed. But the young girl has her own issues, and the assassination attemts won't stop until the targeted delegate is dead. + /hZWJ55MjCZRRoYsmupyu9o0fXWG.jpg + + + 1989-10-16 + Second Chance + /jllyE8vAx5wkCBO35yToXkroY9W.jpg + MacGyver and an old friend discover a gang ripping off medical supplies from a Phoenix Foundation clinic in Asia, and an Amerasian son the friend never knew he had. + /jllyE8vAx5wkCBO35yToXkroY9W.jpg + + + 1989-10-30 + Halloween Knights + /pA2QNnsm7wWd1xh0koM2U4llnTK.jpg + Mac is called to Jack's hangar, but when he comes there, Jack is gone. The only clue leads to a cemetary. Mac goes there, thinks that he sees Jack, but suddenly he's trapped underground - by Murdoc. + +Murdoc asks Mac for help in locating his sister, whom he has kept secret for all years, but who's now been kidnapped by Murdoc's old employers: a cartel of assassins-for-hire. + +Mac and Murdoc attempt to sneak into the cartel's club, using Halloween costumes and a secret meeting between the leaders of the cartel. + +But just as they think they have found the sister, they are caught in deadly gauntlet... + /pA2QNnsm7wWd1xh0koM2U4llnTK.jpg + + + 1989-11-06 + Children of Light + /3JTh5NgFi4wvwoHhJ3IqGARw4Pb.jpg + MacGyver's Chinese foster daughter arrives unexpectedly from China, carrying videotape of the massacre in Tianamen Square and a list of fax machine phone numbers vital to the continuing freedom movement. + /3JTh5NgFi4wvwoHhJ3IqGARw4Pb.jpg + + + 1989-11-13 + Black Rhino + /xPY31MlfghT5LPsR2ljHgq8QKua.jpg + MacGyver takes off for Africa, where the youngest of the Colton brothers has decided to take on deadly rhino poachers single-handedly. + /xPY31MlfghT5LPsR2ljHgq8QKua.jpg + + + 1989-11-20 + The Ten Percent Solution + /ekwgSkFCGABVkU2lBYSBt49E0vs.jpg + The Phoenix Foundation purchase of a Nazi art treasure leads Mac to a concentration camp survivor who claims family ownership of the painting and an `Aryan nation' group actively working to create their own country. + /ekwgSkFCGABVkU2lBYSBt49E0vs.jpg + + + 1989-12-11 + Two Times Trouble + /baqFIB1vQNfi4cJpkrskvFtEljb.jpg + MacGyver tries to help an old friend who believes her jealous twin sister is trying to kill her. + /baqFIB1vQNfi4cJpkrskvFtEljb.jpg + + + 1989-12-18 + The Madonna + /gFJArwmEEWnbsEDh1WEsEX1Eva6.jpg + On Christmas Eve, MacGyver tries to help the priest of a poor church locate a stolen Madonna figure, help his friend Cynthia figure out how to keep the Challenger Club solvent and figure out a strange street woman who seems to have a miracle up her sleeve. + /gFJArwmEEWnbsEDh1WEsEX1Eva6.jpg + + + 1990-01-08 + Serenity + /gfDoy8bIMAcyT2Kl6L0O06QceJH.jpg + Exhausted MacGyver dreams he's a Civil War vet trying to claim a home in Montana that's threatened by a neighboring rancher who looks a lot like Pete Thornton. But this Pete has hired Murdoc to kill Mac... + /gfDoy8bIMAcyT2Kl6L0O06QceJH.jpg + + + 1990-01-15 + Live and Learn + /oK1jBevCZWlbbV2Dj7RI9ih5BqT.jpg + MacGyver tries to inspire a promising but unmotivated high school student, despite the negative efforts of a cynical teacher and the boy's skeptical father. + /oK1jBevCZWlbbV2Dj7RI9ih5BqT.jpg + + + 1990-02-05 + Log Jam + /gtLBxcJtqLp9f37Q9Ffp6ISyzeN.jpg + MacGyver tries to help an environmentally active friend find out what happened to a company whistle-blower about to expose the illegal practices of a large logging firm. + /gtLBxcJtqLp9f37Q9Ffp6ISyzeN.jpg + + + 1990-02-12 + The Treasure of Manco + /uTPWkdB7pLXIvAvkyJcVh8yn9Ia.jpg + MacGyver and a friend race with a group of dedicated guerillas to locate a valuable Incan treasure. + /uTPWkdB7pLXIvAvkyJcVh8yn9Ia.jpg + + + 1990-02-19 + Jenny's Chance + /ar1yIFF5jIh9ATVn8a7OeL6ayVh.jpg + MacGyver, Dalton, and Thornton go undercover to expose a murderous money launderer. + /ar1yIFF5jIh9ATVn8a7OeL6ayVh.jpg + + + 1990-02-26 + Deep Cover + /2qlR6sbCTFCVNPEXbI9EtWfLC0l.jpg + Pete and Mac try to help when a Phoenix Foundation engineer is seduced and betrayed by a spy seeking her prototype for a new stealth technology for submarines. + /2qlR6sbCTFCVNPEXbI9EtWfLC0l.jpg + + + 1990-03-19 + The Lost Amadeus + /fuHNKuXRYRHHuVI9MJp0vjs9nzk.jpg + A strange young woman gets Mac involved with a priceless violin and an eccentric maestro being sought by syndicate hoods. + /fuHNKuXRYRHHuVI9MJp0vjs9nzk.jpg + + + 1990-04-09 + Hearts of Steel + /zUU9xdIzDqQJnrqA2yKrgKjCI8R.jpg + MacGyver is reunited with Lisa, whose help cleared him of assassination charges in Switzerland, when a steel plant executive kidnaps her as revenge against her cold corporate-raider father. + /zUU9xdIzDqQJnrqA2yKrgKjCI8R.jpg + + + 1990-04-16 + Rush to Judgement + /mnPL5fHa4So3dy05vWmCMuzDK8c.jpg + MacGyver risks judicial displeasure when he breaks jury sequester to investigate the scene of a racially charged murder, and discovers evidence that drastically alters the interpretation of the facts. + /mnPL5fHa4So3dy05vWmCMuzDK8c.jpg + + + 1990-04-30 + Passages + /xYLOK6Z2j8Ns8pZVDDxjSsx0D9R.jpg + Frantic with worry about his gravely-ill Grandpa Harry, MacGyver experiences a strange near-death phenomena, seeing his parents again, when he's injured by a man who's stolen an ancient Egyptian relic. + /xYLOK6Z2j8Ns8pZVDDxjSsx0D9R.jpg + + + /74FEwpsNl4qzmyNfDBvrQ0M62zd.jpg + Season 5 + + + 1990-09-17 + + + 1990-09-17 + Tough Boys + /42eZeZAeKdzy9k9fT5jSfCbYMPw.jpg + MacGyver's pacifist policies are put to the test by a militant youth leader he hooks up with to find out who has been organizing a gang of youthful vigilantes using extreme measures to clean the neighborhood crack problem. + /42eZeZAeKdzy9k9fT5jSfCbYMPw.jpg + + + 1990-09-24 + Humanity + /yxB0cccl7yMklRcpDwQWSZ2k4Sa.jpg + MacGyver and Thornton are left to the mercies of a Romanian agent still loyal to his deposed leader Ceausescu after a mission to obtain his secret files is sabotaged. + /yxB0cccl7yMklRcpDwQWSZ2k4Sa.jpg + + + 1990-10-01 + The Gun + /txNIV9pomXTujAnjERb9eHS5IAN.jpg + MacGyver searches for a gun used in an assassination twenty years ago and in a present day cop killing to clear a friend. + /txNIV9pomXTujAnjERb9eHS5IAN.jpg + + + 1990-10-08 + Twenty Questions + /qvW5E2lhT0eOcyrhEcaQoTe3AKH.jpg + MacGyver tries to help his teenage friend Lisa admit she has a drinking problem, but it takes a brush with the law when she's implicated in a string of home break-ins to really wake her up. + /qvW5E2lhT0eOcyrhEcaQoTe3AKH.jpg + + + 1990-10-22 + The Wall + /21yrLloYIwSLp9iQfBeybecEK4s.jpg + MacGyver helps reunite an East German girl with her grandfather in America, unaware that she's been recruited by two bitter former Stasi agents who believe the old man possesses a store of hidden gold. + /21yrLloYIwSLp9iQfBeybecEK4s.jpg + + + 1990-10-29 + Lesson in Evil + /xSNp2YqDVA4KO1A61VtdfhtOeUh.jpg + Dr. Zito returns to menace MacGyver and Murphy when he escapes after his latest sanity hearing, leaving a series of nasty clues designed to give Mac a crash course in evil. + /xSNp2YqDVA4KO1A61VtdfhtOeUh.jpg + + + 1990-11-05 + Harry's Will + /zWWcTMlGlo5XcTtBNOr4yc0jN68.jpg + When Mac tries to claim the station wagon left to him by his late Grandpa Harry, it starts a strange chase that leads him to an ex-con with a dream of running a restaurant, a soup kitchen in need of money, and a gang of crooks out for themselves. + /zWWcTMlGlo5XcTtBNOr4yc0jN68.jpg + + + 1990-11-12 + MacGyver's Women + /6csTgGwSfyIGE8655pxzS9kcUXK.jpg + Macgyver's reluctance to commit to a permanent relationship causes him to dream an Old West scenario where he defends three of his lady friends from some ornery outlaws as he drives their wagon cross country. + /6csTgGwSfyIGE8655pxzS9kcUXK.jpg + + + 1990-11-19 + Bitter Harvest + /tKC5lRDHwMsPTTBPSEDKLpa5NUx.jpg + MacGyver goes undercover to investigate the death of a farm-worker organizer during an investigation of illegal pesticide use. + /tKC5lRDHwMsPTTBPSEDKLpa5NUx.jpg + + + 1990-12-03 + The Visitor + /8BPWKCLpopn6oO40s66GceykDR8.jpg + Mac uncovers an out-of-this-world scam when he investigates some mysterious indentations in a farmer's field. + /8BPWKCLpopn6oO40s66GceykDR8.jpg + + + 1990-12-17 + Squeeze Play + /sDmuUu6Vw51txuM1QbI5oHRzr53.jpg + Mac defends a former player's daughter being blackmailed by a baseball memorabilia-counterfeiting ring trading on her father's name. + /sDmuUu6Vw51txuM1QbI5oHRzr53.jpg + + + 1991-01-07 + Jerico Games + /ArJWf1YLawh15o7EogPy8G6kfBH.jpg + Mac is reunited with a high school sweetheart whose husband is a wealthy man sponsoring an international sports competition. + /ArJWf1YLawh15o7EogPy8G6kfBH.jpg + + + 1991-01-21 + The Wasteland + /xEq4OLcNQbwUOJnbnhaUDLJltMU.jpg + Mac seeks to stop a shortsighted developer whose latest project will create an environmental ruin and could result in his premature death at the hands of his greedy children. + /xEq4OLcNQbwUOJnbnhaUDLJltMU.jpg + + + 1991-02-04 + Eye of Osiris + /1HMv6KxEuVNjy7useHasFv6MoIf.jpg + Mac helps out on an archelogical dig for Alexander the Great's tomb. But the expedition seems to be followed by bad luck. Several incidents nearly causes a shut-down. Then Mac finds clues leading to Alex's tomb. + +Unfortunally, the accidents are not coincidental, and they meet a very vengeful man who traps them inside the grave... + /1HMv6KxEuVNjy7useHasFv6MoIf.jpg + + + 1991-02-11 + High Control + /49xJfy2r5YDzgEAEUwukM2NOT83.jpg + Mac tries to help an acquaintance just out of prison stay on the straight and narrow despite the efforts of his old biker gang to blackmail him into rejoining them. + /49xJfy2r5YDzgEAEUwukM2NOT83.jpg + + + 1991-02-18 + There but For the Grace + /h1znhzHf92R1tmEHDNoPOQKfwSL.jpg + Mac feels a personal involvement in the death of a priest who worked among the homeless and takes to the streets himself to find the killer. + /h1znhzHf92R1tmEHDNoPOQKfwSL.jpg + + + 1991-03-04 + Blind Faith + /90HG70QEqcRR1hD0dQAtkurJoqA.jpg + An old sweetheart of Pete Thornton's appeals to him for help when she tries to reveal the atrocities being committed in her Latin American homeland. + /90HG70QEqcRR1hD0dQAtkurJoqA.jpg + + + 1991-03-18 + Faith, Hope & Charity + /2BhpGQijtGvJuRz839VaVqNDnM1.jpg + Mac finds himself being cared for by two determined ladies running a bed and breakfast in an isolated spot chosen as a drop spot by two murderous mobsters with an untrustworthy partner. + /2BhpGQijtGvJuRz839VaVqNDnM1.jpg + + + 1991-04-08 + Strictly Business + /f1U3SGglCVXUQBaZmT9oq4n6lg3.jpg + After enlisting MacGyver's help in saving his sister (from a previous episode), Murdoc wants to come out of retirement, but his former employers at Homicide International request that he take out MacGyver as a demonstration of his sincere desire to rejoin them. Knowing that MacGyver is the only contract that he failed to execute, Murdocs agrees to ""clear"" his otherwise perfect record. MacGyver, returning home one night, finds Murdoc waiting for him at his dinner table- with dinner waiting. Murdoc sets MacGyver up for execution and forces MacGyver to admit defeat to him- or be killed via cyanide. After that, Murdoc warns MacGyver of his intention to kill him and then leaves. MacGyver knows the professional killer is not bluffing- and he knows he will use anybody and do anything to get to him... + /f1U3SGglCVXUQBaZmT9oq4n6lg3.jpg + + + 1991-04-26 + Trail of Tears + /fe7caLG5VX9Iskg2TY3deuvgN0x.jpg + A land dispute over the building an electricity station pits a fanatical Native American, convinced he has been given a mission by his spiritual ancestors, against the power company and MacGyver, who's just as sure that the Indian spirits are opposed to the man's violent plans. + /fe7caLG5VX9Iskg2TY3deuvgN0x.jpg + + + 1991-05-06 + Hind-Sight + /bGTjmlyUmYsGGHFXIQoOI1ecInM.jpg + As Pete waits for glaucoma surgery, he and MacGyver reminisce about their past adventures and try to figure out who has been sending some vaguely threatening messages to Pete. + /bGTjmlyUmYsGGHFXIQoOI1ecInM.jpg + + + /dOqfiN6zCYJvQAW63HbF6Cd9C7r.jpg + Season 6 + + + 1991-09-16 + + + 1991-09-16 + Honest Abe + /7ODVs3OtKmXBFxJfrZkm9uF3PvW.jpg + Mac's trip to the airport to pick a friend's father arriving for his grandson's bar mitzvah turns into a wild international caper involving Caribbean terrorists and a stolen helicopter. + /7ODVs3OtKmXBFxJfrZkm9uF3PvW.jpg + + + 1991-09-23 + The 'Hood + /lIOzBr21LF8DrWVs1yxL5eRl4Ay.jpg + Mac helps his new neighbors to rescue one of their own after she overhears two hitmen planning a job. + /lIOzBr21LF8DrWVs1yxL5eRl4Ay.jpg + + + 1991-09-30 + Obsessed + /eNoCGq40lghv7QYEQ8dUiG7vVIH.jpg + The ghost of his archenemy Murdoc leaves MacGyver sleepless and on edge just as he is about to supervise the security of the criminal trial of a deposed dictator, a task that could determine Pete's continued employment at The Phoenix Foundation. + /eNoCGq40lghv7QYEQ8dUiG7vVIH.jpg + + + 1991-10-07 + The Prometheus Syndrome + /twkQp5aDqiu4xwOxivT5s0xIg80.jpg + MacGyver becomes personally involved in the effort to find a psychopathic arsonist. + /twkQp5aDqiu4xwOxivT5s0xIg80.jpg + + + 1991-10-14 + The Coltons + /h29cEdakXtVzLdkpS58QWlEdnnJ.jpg + Mac's old friends, the bounty-hunting Colton brothers try to find a young woman who's the only witness to a Chinatown murder, aided by their wise and patient mother, their impatient younger brother and their dog, Frog. + /h29cEdakXtVzLdkpS58QWlEdnnJ.jpg + + + 1991-10-21 + The Walking Dead + /wP3ae0mmpsqhxFLoag3qArS8ncC.jpg + Mac helps his neighbor, Mama Lorraine, rescue a young student activist who has been kidnapped and turned into a zombie by Haitian terrorists hiding behind a powerful voodoo priest. + /wP3ae0mmpsqhxFLoag3qArS8ncC.jpg + + + 1991-11-04 + Good Knight MacGyver (1) + /xvXkmOCAvUYB0dbijVogtEx4Cqy.jpg + A genealogy investigation and a knock on the head takes Mac back to King Arthur's court, where he must use his knowledge to prove Merlin innocent of harming the King, find the fair Cecilia and foil Morgana's attempt to take over the throne. + /xvXkmOCAvUYB0dbijVogtEx4Cqy.jpg + + + 1991-11-11 + Good Knight MacGyver (2) + /nvcDtAFaKNsOiOWJ0F4qK7nU14l.jpg + A genealogy investigation and a knock on the head takes Mac back to King Arthur's court, where he must use his knowledge to prove Merlin innocent of harming the King, find the fair Cecilia and foil Morgana's attempt to take over the throne. + /nvcDtAFaKNsOiOWJ0F4qK7nU14l.jpg + + + 1991-11-18 + Deadly Silents + /y6FBh1KepSCsYK8HEjfMa1ggM1M.jpg + Mac tries to help an old silent film star retrieve the only existing prints of his work from a pair of special-effects obsessed fans. + /y6FBh1KepSCsYK8HEjfMa1ggM1M.jpg + + + 1991-12-02 + Split Decision + /y0EnjUt8uRlx9oARaNwVFm11WEh.jpg + Mac's friend Earl Dent looks to him for help when he fights to retain custody of his teenage daughter while preparing for a boxing comeback that bookmakers want him to throw. + /y0EnjUt8uRlx9oARaNwVFm11WEh.jpg + + + 1991-12-16 + Gunz 'N Boyz + /24W0aomre3mAB8GVijPJ8bW9xLW.jpg + Mac and the Challenger Club try to help a boy prepared to take the rap for another boy murdered by weapons dealers exploiting the fear and suspicion in the neighborhood. + /24W0aomre3mAB8GVijPJ8bW9xLW.jpg + + + 1991-12-30 + Off the Wall + /filLpK5UFweuRda0HsaTnaw3coC.jpg + Mac battles a callous slumlord when a young graffiti artist asks for help when his grandmother faces eviction from the apartment where she's spent her life. + /filLpK5UFweuRda0HsaTnaw3coC.jpg + + + 1992-04-25 + The Stringer + /dGf8D0AeQ2W1MVCrFNvvukEXejm.jpg + While working with Chinese dissidents to expose illegal labor camps, MacGyver gets unexpected help from a young photojournalist who claims to be his son! + /dGf8D0AeQ2W1MVCrFNvvukEXejm.jpg + + + 1992-05-21 + Mountain of Youth + /buBMO9Ev5sKdOT2ZDEn17rOFlog.jpg + MacGyver joins Jack Dalton in Kabulstan on a search for a fountain of youth, but finds himself battling nuclear terrorists in the process. + /buBMO9Ev5sKdOT2ZDEn17rOFlog.jpg + + + /jHPZhgLynFmtoVF6v9EXTh9Txxv.jpg + Season 7 + + + + + /wuyd5VxzXmqO3G94sy7EoVe383X.jpg + Michael Garrison + The Wild Wild West + 60 + Action & Adventure - Comedy - Drama - Western + + The Wild Wild West + CBS + 4 + US + The Wild Wild West is an American television series that ran on CBS for four seasons from September 17, 1965 to April 4, 1969. Two television movies were made with the original cast in 1979 and 1980, and the series was adapted for a motion picture in 1999. + +Developed at a time when the television western was losing ground to the spy genre, this show was conceived by its creator, Michael Garrison, as "James Bond on horseback." Set during the administration of President Ulysses Grant, the series followed Secret Service agents James West and Artemus Gordon as they solved crimes, protected the President, and foiled the plans of megalomaniacal villains to take over all or part of the United States. + +The show also featured a number of fantasy elements, such as the technologically advanced devices used by the agents and their adversaries. The combination of the Victorian era time-frame and the use of Verne-esque style technology have inspired some to give the show credit for the origins of the steam punk subculture. These elements were accentuated even more in the 1999 movie adaptation. + +Despite high ratings, the series was cancelled near the end of its fourth season as a concession to Congress over television violence. + /4VravvBmvzYJBYpjlIT5gXVWtq7.jpg + 7.5 + + + 1965-09-17 + + + 1965-09-17 + The Night of the Inferno + /uK2i7oFLS0VNzqPtAvjbsVnphI3.jpg + Jim is set up as a renegade as a cover for him and Artie to sneak into Texas and track down General Juan Manolo, who is trying to take over the region. + /uK2i7oFLS0VNzqPtAvjbsVnphI3.jpg + + + 1965-09-24 + The Night of the Deadly Bed + /1A1YIOppayTcersf25Sec0Le0vQ.jpg + From TV Guide: + +Facing execution at the hands of a madman, West (Robert Conrad) learns the crazed assassin plans to reclaim Mexico---as the new Napoleon. Florey: J.D. Cannon. Gatilla: Barbara Luna. Roxanne: Danica D'Hondt. Jackson: Bob Herron. Angelo: Bill Catching. Margarita: Anna Shin. + /1A1YIOppayTcersf25Sec0Le0vQ.jpg + + + 1965-10-01 + The Night the Wizard Shook the Earth + /iqAtgG1HcxeHtrszLiDQjZZ430B.jpg + From TV Guide: + +West tries to protect Prof. Nielsen, a demolitions expert. But he fails: Nielson is blown up by the evil Dr. Miguelito Loveless (Michael Dunn). Greta: Leslie Parrish. Voltaire: Richard Kiel. Artemus: Ross Martin. + /iqAtgG1HcxeHtrszLiDQjZZ430B.jpg + + + 1965-10-08 + The Night of Sudden Death + /341VvFLFbPeVznHA3KT7L2tMKou.jpg + Jim West suspects his search for counterfeiters is getting warm when he's shot at with arrows---and thrown to the crocodiles. + /341VvFLFbPeVznHA3KT7L2tMKou.jpg + + + 1965-10-15 + Night of the Casual Killer + /yKzjdzEh4oaIqOqnoH9Zj4c79y7.jpg + Jim and Artie set out to penetrate the stronghold of a corrupt political boss and return him to Washington for trial. + /yKzjdzEh4oaIqOqnoH9Zj4c79y7.jpg + + + 1965-10-22 + The Night of a Thousand Eyes + /6qx5jVpiAGF39VTiyrHi9a9WW9H.jpg + Ships along the Mississippi are being attacked by a gang of pirates known as the ""Thousand Eyes"". After Jim ducks an assassin, an attractive woman, he finds the leader of the Eyes: Captain Ansel Coffin, who was blinded and now seeks revenge. His gang use false lights to lead ships astray and crash them, and then plunder them. Jim is captured by Coffin and manages to escape a cage rigged to a lightning rod. He is blinded by a powder flash, and for a time he is at a decided edge against Coffin (who has long adapted to his blindness). Coffin manages to accidentally kill his wife. Enraged, Jim is saved by his recovering eyesight: he ducks, and Coffin falls into a pit to his death. + /6qx5jVpiAGF39VTiyrHi9a9WW9H.jpg + + + 1965-10-29 + The Night of the Glowing Corpse + /ekokIYZu7aZMCLvJTkSzyKCrPU4.jpg + Jim and Artemus try to recover stolen radioactive materials nad have only one clue - a set of fingerprints found on the ankle of a pretty secretary. + /ekokIYZu7aZMCLvJTkSzyKCrPU4.jpg + + + 1965-11-05 + The Night of the Dancing Death + /rp8K870MwdlF734hETc4hqo2BXz.jpg + To rescue a kidnapped princess, Jim runs into a booby-trapped doorknob and a fully armored man wielding a mace. + /rp8K870MwdlF734hETc4hqo2BXz.jpg + + + 1965-11-12 + The Night of the Double-Edged Knife + /4s2m4nqaBCtWBl66XjLXqskvqZL.jpg + An Indian demand for gold must be met: they've threatened to kill five railroad workers a day until it is paid. + /4s2m4nqaBCtWBl66XjLXqskvqZL.jpg + + + 1965-11-19 + The Night That Terror Stalked the Town + /uTrL1mPRDmMVbYQootHpvcXjC1q.jpg + West is lured to a ghost town peopled with lifelike dummies as part of an elaborate trap set for him by his nemesis Dr. Loveless. + /uTrL1mPRDmMVbYQootHpvcXjC1q.jpg + + + 1965-11-26 + The Night of the Red-Eyed Madmen + /4YsCmgDaOXo05XukPKS6E4j8OYs.jpg + West is sent to infiltrate an army of fanatics dedicated to overthrowing the U.S. Government. Getting in is no problem...but if he tries to leave he'll be shot. + /4YsCmgDaOXo05XukPKS6E4j8OYs.jpg + + + 1965-12-03 + The Night of the Human Trigger + /6xVUKzXnVcegkRMeEiXQILWhXts.jpg + A demented geologist can set off earthquakes where he chooses as part of an elaborate extortioin scheme. So West and Gordon head for Ellenville--the next town on the mad genius's list. + /6xVUKzXnVcegkRMeEiXQILWhXts.jpg + + + 1965-12-10 + The Night of the Torture Chamber + /fB7vHUNoksrOh1he9R7w6M4wZpI.jpg + Jim and Artie take on an obsessed museum curator who has private designs on the state treasury. + /fB7vHUNoksrOh1he9R7w6M4wZpI.jpg + + + 1965-12-17 + The Night of the Howling Light + /rren1WnblwmfOc5kbKQgZtH71So.jpg + West is captured by a doctor who uses Pavlovian training to condition the Secret Service agent into becoming an assassin. + /rren1WnblwmfOc5kbKQgZtH71So.jpg + + + 1965-12-24 + The Night of the Fatal Trap + /5OyBWWZwIbm0iYiJQ2vtnJ0IkeW.jpg + Jim goes to arrest a Mexican bandit disguised as a notorious outlaw...but the villain's girlfriend recognizes him. + /5OyBWWZwIbm0iYiJQ2vtnJ0IkeW.jpg + + + 1966-01-07 + The Night of the Steel Assassin + /vRUxyhX3TSvArRBEahYNo7GU4Ov.jpg + A series of mysterious deaths of military personnel bring Jim face to face with the indestructible Col. ""Iron Man"" Torres. Crippled in an explosion that he blames on the other men of his company, Torres rebuilt himself as a 19th century ""cyborg,"" and is seeking revenge on those he thinks wronged him...and President Grant was one of the men he served with. + /vRUxyhX3TSvArRBEahYNo7GU4Ov.jpg + + + 1966-01-14 + The Night the Dragon Screamed + /7V7NrEIUmNTe97fa3edFQat5Hr8.jpg + Jim and Artie have only one clue to track down the smugglers of opium and Chinese aliens: a fortune cookie. + /7V7NrEIUmNTe97fa3edFQat5Hr8.jpg + + + 1966-01-21 + The Night of the Flaming Ghost + /7twGIdxcPoly8DOVIP4ARkEjpZR.jpg + Jim is assigned to stop abolitionist John Brown. The only problem - he was pronounced dead 20 years ago. + /7twGIdxcPoly8DOVIP4ARkEjpZR.jpg + + + 1966-01-28 + The Night of the Grand Emir + /mkyoZbsJCS5Gd1Wrhz7WSjrsDHB.jpg + From TV Guide: + +West must protect a visiting despot from the fatal charms of Ecstasy La Joie (Yvonne Craig), who brandishes such baubles as an explosive garter and a deadly ring. West: Robert Conrad. Emir: Robert Middleton. Jones: Don Francks. Cable: Richard Jaeckel. Dr. Bey: James Lanphier. Artemus: Ross Martin. + /mkyoZbsJCS5Gd1Wrhz7WSjrsDHB.jpg + + + 1966-02-18 + The Night of the Whirring Death + /jALmR9PefYbLKKS8cpVlBKrIPxi.jpg + From TV Guide: + +Intent on making California a kingdom for children, evil Dr. Loveless (Michael Dunn) makes his play for the state with a series of toys---which explode. West: Robert Conrad. Lewis: Jesse White. Voltaire: Richard Kiel. Priscilla: Pamela Austin. Artemus: Ross Martin. Bessie: Barbara Nichols. + /jALmR9PefYbLKKS8cpVlBKrIPxi.jpg + + + 1965-02-25 + The Night of the Puppeteer + /kfDz3ALAS4xFniTccdilWJdK53R.jpg + A Supreme Court justice will not believe his life is in danger---until a puppet-show marionette fires a gun at him. + /kfDz3ALAS4xFniTccdilWJdK53R.jpg + + + 1966-03-04 + The Night of the Bars of Hell + /e2LFsuIonhnRr2Q17P4RKXXZaHj.jpg + From TV Guide: + +West (Robert Conrad), posing as a prison inspector, hunts for clues to a pillaging outlaw band. Ragan: Arthur O'Connell. Jennifer: Indus Arthur. Kross: Paul Genge. McCoy: Elisha Cook. Adams: Chet Stratton. + /e2LFsuIonhnRr2Q17P4RKXXZaHj.jpg + + + 1966-03-11 + The Night of the Two-Legged Buffalo + /eMTB9LyNxRCjePabIIY7NPAWLZU.jpg + From TV Guide: + +West (Robert Conrad) tries to protect a pleasure-loving prince who insists on visiting a plush spa---where assassins eagerly await his arrival. Prince: Nick Adams. Lady Beatrice: Dana Wynter. Duchamps: Robert Emhardt. Vittorio: Paul Comi. Bandit: Clint Ritchie. Artemus: Ross Martin. + /eMTB9LyNxRCjePabIIY7NPAWLZU.jpg + + + 1966-03-25 + The Night of the Druid's Blood + /kwiZvbDeUG5j7DfhHUL4rwgO2lJ.jpg + West is furious: his superiors have refused him permission to investigate the murder of a close friend who was burned to death before his eyes. + /kwiZvbDeUG5j7DfhHUL4rwgO2lJ.jpg + + + 1966-04-01 + The Night of the Freebooters + /wsZxz9Q4baOw0emPvxEKT55hT0Q.jpg + From TV Guide: + +West (Robert Conrad) poses as an ex-con to gain admittance to renegade Army leader Thorald Wolfe (Keenan Wynn). Artemus: Ross Martin. Rita: Maggie Thrett. Enrique: Andre Philippe. + /wsZxz9Q4baOw0emPvxEKT55hT0Q.jpg + + + 1966-04-08 + The Night of the Burning Diamond + /oX6DkwE9PpE8B0kD23rn0FiU6Ml.jpg + West tries to convince a Serbian official to hide the Kara Diamond. Then the gem disappears---and West is blamed. + /oX6DkwE9PpE8B0kD23rn0FiU6Ml.jpg + + + 1966-04-15 + The Night of the Murderous Spring + /n8904QJxenREHVgHqqdLNddc5R0.jpg + West helps a powerfully built girl carry her trunk, not knowing it contains his shrewd enemy---diminutive, giggling Dr. Loveless. + /n8904QJxenREHVgHqqdLNddc5R0.jpg + + + 1966-04-22 + The Night of the Sudden Plague + /5lD2liCqJfYrbuklsQ9bxjc5j9t.jpg + From TV Guide: + +West (Robert Conrad) finds Willow Springs looted and its citizens completely immobile---victims of a mysterious paralysis. Dr. Kirby: Theo Marcuse. Anna: Nobu McCarthy. Rodman: H.M. Wynant. Hawthorne: Elliott Reid. Lafe: Robert Phillips. Barber: Mark Baker. Doyle: Eddie Durkin. + /5lD2liCqJfYrbuklsQ9bxjc5j9t.jpg + + + /gjbb6y1DAVLP8hjWoHZxb78HleF.jpg + Season 1 + + + 1966-09-16 + + + 1966-09-16 + The Night of the Eccentrics + /Al2Rx54BCRfplY8FXVk2Xut0NDO.jpg + From TV Guide: + +Investigating a murder, West falls into the hands of the Eccentrics, a group of assassins controlled by the vicious Count Manzeppi (Victor Buono). West: Robert Conrad. Artemus: Ross Martin. Villar: Richard Pryor. Deadeye: Anthony Eisley. Tony: Paul Wallace. + /Al2Rx54BCRfplY8FXVk2Xut0NDO.jpg + + + 1966-09-23 + The Night of the Golden Cobra + /3vBfw8phY0fHPhVsGXvgSp3C5nu.jpg + From TV Guide: + +Maharajah Singh (Boris Karloff) kidnaps West for very unprincely reasons: West is to tutor Singh's assassin sons in the ways of Western combat. West: Robert Conrad. Artemus: Ross Martin. Veda: Audrey Dalton. Chandra: James Westmoreland. + /3vBfw8phY0fHPhVsGXvgSp3C5nu.jpg + + + 1966-09-30 + The Night of the Raven + /wvyvIo5CKX20nnG0eJ81W5tp5HL.jpg + From TV Guide: + +Dr. Loveless takes a giant step in his plan to rule a world of ""little people""---by reducing West to a six-inch miniature. West: Robert Conrad. Artemus: Ross Martin. Wanakee: Phyllis Newman. + /wvyvIo5CKX20nnG0eJ81W5tp5HL.jpg + + + 1966-10-07 + The Night of the Big Blast + /9N2Q67XI0o1KEQb526IjHMdPq2r.jpg + From TV Guide: + +A mad scientist (Ida Lupino) has invented a robot that looks exactly like West (Robert Conrad). Artemus: Ross Martin. Lily: Mala Powers. Peters: Robert Miller Driscoll. Attor-ney General: Melville Ruick. + /9N2Q67XI0o1KEQb526IjHMdPq2r.jpg + + + 1966-10-14 + The Night of the Returning Dead + /s5Xvy52deD7rA1Ll0iYU8XiVJzu.jpg + From TV Guide: + +While trying to solve a murder, West is charged by a bullet-immune ""ghost rider"" (Sammy Davis Jr.). Jackson: Peter Lawford. West: Robert Conrad. Artemus: Ross Martin. Elizabeth: Hazel Court. + /s5Xvy52deD7rA1Ll0iYU8XiVJzu.jpg + + + 1966-10-21 + The Night of the Flying Pie Plate + /1u6KIr6m89FX5uwc1NicbHY49ZC.jpg + West gets involved in a bizarre scheme: a green girl emerges from a fallen spaceship claiming she needs gold for fuel. + /1u6KIr6m89FX5uwc1NicbHY49ZC.jpg + + + 1966-10-28 + The Night of the Poisonous Posey + /awLOgmEpztrsFbsortUW9FjSI0h.jpg + While on vacation, the agents receive an odd welcome when they pass through the town of Justice, Nevada. The town turns out to be the hangout for a group of internationals criminals assembled by Lucrese Posey. West and Gordon discover that Lucrese is planning on heading a world-wide criminal organization. After dealing with the other criminals, the two agents find themselves left with only Lucrese to deal with, a proposition not nearly as simple as it seems. + /awLOgmEpztrsFbsortUW9FjSI0h.jpg + + + 1966-11-04 + The Night of the Bottomless Pit + /w0qhD1liCoBmRKurPdJHZhmQbzl.jpg + From TV Guide: + +West (Robert Conrad) poses as a prisoner at Devil's Island. His assignment: rescue a secret agent who is marked for execution by a savage commandant. Gustave: Theo Marcuse. Camille: Joan Huntington. Artemus: Ross Martin. Mrs. Grimes: Mabel Albertson. Le Fou: Steve Franken. + /w0qhD1liCoBmRKurPdJHZhmQbzl.jpg + + + 1966-11-11 + The Night of the Watery Death + /jAzhbx6Q2Hc6tnTM94hPrAxoIlq.jpg + A mysterious dragon-like creature is blowing up American ships, and West and Gordon must determine the cause. + /jAzhbx6Q2Hc6tnTM94hPrAxoIlq.jpg + + + 1966-11-18 + The Night of the Green Terror + /iUb3uB8qlpDtlWBwsG6rPdeZ7kc.jpg + A mysterious plague is killing off all plant life, and the Indians in the area are becoming restless. Jim and Artie are sent to investigate, and find themselves up against a knight and his band of ""merry men"". The knight is a powered suit used by their nemesis Dr. Loveless, who created the plague and is using it and shipped food supplies to force the Indians to do his bidding. They're not too happy with the whole situation, and think Loveless is the representative of the ""Lord of the Forest"". After a capture-and-escape or two, Jim challenges the knight to a duel. Loveless tries to rig the fight with an exploding mace, which West avoids. Loveless prepares to send his plague on balloons across the country. The Indians turn against Loveless, and he and Antoinette are seemingly destroyed by a fire. They hide in a secret compartment, for Loveless to return to fight another day. + /iUb3uB8qlpDtlWBwsG6rPdeZ7kc.jpg + + + 1966-11-25 + The Night of the Ready-Made Corpse + /dIR2J58RzdMUtyz7heQAZd8itgQ.jpg + From TV Guide: + +Fabian Lavender (Carroll O'Connor) is a master of disguises, but West is not fooled. Neither is Lavender---who locks West in one of his gas-filled crypts. West: Robert Conrad. Artemus: Ross Martin. Antille: Alan Bergmann. Rose: Karen Sharpe. Leda: Patricia Huston. + /dIR2J58RzdMUtyz7heQAZd8itgQ.jpg + + + 1966-12-12 + The Night of the Man-Eating House + /pzbT7OiwL1LSsXH3v3S0zBAPPp0.jpg + From TV Guide: + +West (Robert Conrad) witnesses eerie phenomena when he takes refuge with a sheriff and his prisoner in an abandoned bayou mansion. Day: Hurd Hatfield. + /pzbT7OiwL1LSsXH3v3S0zBAPPp0.jpg + + + 1966-12-16 + The Night of the Skulls + /iLKxE7Uo0SU9iyPfedGduBLGBd0.jpg + In the opening sequence Jim shoots Artie! Escaping, he is declared a wanted man, and goes to Gordon's funeral...where Artie in disguise is acting as the minister. It's a ploy to allow West to track down the mysterious disappearance of nineteen other wanted men. Jim is spotted and runs, taking refuge in a carriage where he is gassed, taken to a mysterious underground base, and put on trial. Upon being found guilty, the jury (made up of the other missing criminals) roundly congratulates him. While Gordon follows the trail of the carriage, Jim meets with the leader, a masked man known as ""Skull."" Only three men can go on the next assignment: to kill the President and the other head politicians of the U.S. There is an ""elimination"" (literally) and Jim manages to stay alive. It turns out Skull is Senator Fenlow, who plans to take over the government when those above him are killed. After Jim is exposed and the guys escape, they thwart the killers, get to Fenlow, and trick him into confessin + /iLKxE7Uo0SU9iyPfedGduBLGBd0.jpg + + + 1966-12-23 + The Night of the Infernal Machine + /ngK9kfMPSfTVDWElXeM9GCAmml4.jpg + From TV Guide: + +Time is running out for Judge M'Guigan, who is threatened by a bomb-throwing clockmaker. West: Robert Conrad. Baroda: Will Kuluva. Cefalu: Vito Scotti. Bulvon: Bill Zuckert. Vashti: Elaine Dunn. + /ngK9kfMPSfTVDWElXeM9GCAmml4.jpg + + + 1966-12-30 + The Night of the Lord of Limbo + /bzQIHkfILJQLiwL8gTZW5cVWoHC.jpg + A crippled Confederate colonel, Vautrain, plans to use his power to travel through time to use Jim and Artie to alter history and restore his legs. + /bzQIHkfILJQLiwL8gTZW5cVWoHC.jpg + + + 1967-01-06 + The Night of the Tottering Tontine + /axb8kUdZs51wMKkpZVa2APgZapC.jpg + West and Gordon are assigned to protect Dr. Raven, who is developing a secret weapon. Raven is a member of a tontine, an investment group whose by-laws state that the surving member of the group gets the assets of the group. When one of the tontine's members is killed and an attempt is made on Raven's life, the agents decide to investigate. They find a house full of traps and two members of the tontine looking to ""survive"" the group and take the money for themselves. + /axb8kUdZs51wMKkpZVa2APgZapC.jpg + + + 1967-01-13 + The Night of the Feathered Fury + /eE1sI5CZfeJdzTTY7Sdm5rZzySf.jpg + An organ grinder and his monkey launch an attack: the man is no less than Count Manzeppi, trying to gain a small wind-up bird toy. The toy contains the Philosopher's Stone, reputed to transmute base elements into gold. The race is on as West and Gordon track Manzeppi to his lair. After repeated setbacks and escapes, Manzeppi is forced to escape in a balloon while his henchwoman Gerda is transformed into a gold statue, and the bird and its stone are seemingly destroyed. At the end, the stone reconstitutes itself on the guys' train after they leave for the night. + /eE1sI5CZfeJdzTTY7Sdm5rZzySf.jpg + + + 1967-01-20 + The Night of the Gypsy Peril + /2ivMPFUiEXrrjcZCZpjFlcRnkLd.jpg + West and Gordon are escorting the Sultan of Ramapur and his gift to the President, a sacred white elephant. Bandits intercept the train and steal the elephant, and the Sultan demands one million dollars in recompense. West follows the the trail to a gypsy camp, where the elephant appears to have been colored grey as a disguise. Artie sneaks in as a peddler, and they try to recover the elephant. They soon discover that the elephant is not disguised, but instead is actually grey: it has been painted white and proclaimed sacred by the Sultan, who planned to extort the U.S. government all along. Confronted with the evidence, the Sultan is deported and the gypsies get to keep the elephant. + /2ivMPFUiEXrrjcZCZpjFlcRnkLd.jpg + + + 1967-02-03 + The Night of the Tartar + /jEWYodYEYRXAVtMzDfm1ruNuccI.jpg + President Grant gives orders to agents James West and Artemus Gordon to deliver prisoner Rimsky to Vladivostok, Russia, in a prisoner exchange for American vice-consul Millard Boyer. When Rimsky dies in an escape attempt, Gordon assumes his identity. The agents are drugged en route and when they come to, led to believe they're in Russia. West is imprisoned and forced to reveal Rimsky's whereabouts. His captors tie him to a stake while saber-swinging Cossacks ride straight for him. Still in disguise, Gordon meets Rimsky's contact Sazanov, in an effort to uncover the Russians' racket. + /jEWYodYEYRXAVtMzDfm1ruNuccI.jpg + + + 1967-02-10 + The Night of the Vicious Valentine + /nRWHYPQp3i36KAEd6LwygcvZqsv.jpg + Agents West and Gordon are sent to investigate the killings of wealthy industrialists and find that all are linked back to an evil matchmaker, Emma Valentine. She sets the rich men up with her young female employees, then kills them to gain their money and power. West and Gordon manage to escape from the trap she lays from her and must prevent her next target from getting married. + /nRWHYPQp3i36KAEd6LwygcvZqsv.jpg + + + 1967-02-17 + The Night of the Brain + /7cPibowmtEhNDf9brsLp6K7rxmk.jpg + A mysterious figure in a secret cave makes moves in a chessboard, using a figure of James West. The agents starting getting newspapers predicting the death of friends that haven't occurred yet. They are unable to stop the deaths, but find the shop where the newspapers are printed. Following the trail, Jim is lured into the lair of Mr. Braine, a crippled criminal mastermind who gets about in a steam-powered munitions-armed wheelchair. Braine has planned their every move and response, and wants Jim to join him in his plan to kill world leaders and replace them with lookalikes. He already has a double of Artemus Gordon. Braine has anticipated the real Artie sneaking in and taking the place of the lookalike, but Gordon double-bluffs him with a mask underneath his mask. taking advantage of the distraction, Jim confronts Braine and manages to defeat him, blowing up the wheelchair and Braine. + /7cPibowmtEhNDf9brsLp6K7rxmk.jpg + + + 1967-02-24 + The Night of the Deadly Bubble + /gSKEoHjReo3L82o5WKyvHMdIK9I.jpg + On the trail of the source of mysterious tidal waves, the guys finds a fanatical marine environmentalist at the heart of the mystery. + /gSKEoHjReo3L82o5WKyvHMdIK9I.jpg + + + 1967-03-03 + The Night of the Surreal McCoy + /4Gi7sPUoZiFAmSaAz8OuExsIMoh.jpg + Agents West and Gordon are guarding a museum containing the famous Herzberg jewels but someone still manges to steal the gems. Afterwards, a famous painting of a Western scene is removed from the museum by its wealthy rancher-owner. Gordon becomes suspicious and notifies West who discovers that the rancher is partners with Miguelito Loveless, the evil inventor-doctor. His latest invention is a machine that moves real people in and out of paintings. Miguelito's plan is to transpose murderers into famous paintings, distribute the paintings to the rulers of the world and have them all killed! + /4Gi7sPUoZiFAmSaAz8OuExsIMoh.jpg + + + 1967-03-10 + The Night of the Colonel's Ghost + /oemyy4SKMjzGwSCteOxVM2T2L5i.jpg + West and Gordon escort President Grant to San Fransisco to dedicate a statue of the late Colonel Wayne Gibson in Gibsonville. West rides ahead to check out the town and finds that it is plagued by a series of broken neck murders and arguments over lost gold. A further investigation yields the fact that the Colonel is not as dead as was previously thought and that his statue is far from ordinary. + /oemyy4SKMjzGwSCteOxVM2T2L5i.jpg + + + 1967-03-17 + The Night of the Deadly Blossom + /eHmptlmAigLh5fdbVXql5yTaNW2.jpg + Agents West and Gordon report to Admiral Agnow's San Franisco headquarters,only to find him and three officers dead. The agents believe that the admiral's death ties in with the recent,mysterious sinking of the cruiser Youngstown. West and Gordon's next assignment is to guard the Hawiian king,due to arrive secretly by ship. West encounters Barclay,a Chinese expert on Hawaii,to discuss the king's upcoming visit. But the supposed advisor drugs the agent and announces his plan to sink the ship carrying the Hawaiian king. + /eHmptlmAigLh5fdbVXql5yTaNW2.jpg + + + 1967-03-24 + The Night of the Cadre + /h6Rqq1cSqlTokSraAmrXkgpWI0o.jpg + Agent James West goes to see Warden Primwick,who releases condemned murderer Ralph Kleed in his presence. Kleed blows a whistle,and the warden attacks West with his cane. West restrains the warden,who dies from the exertion. Kleed escapes,leaving behind a whistle that has a special pitch,apparently only heard by dogs and wardens. Through the warden's autopsy,agent Artemus Gordon discovers that a franconium crytal has been implanted in the warden's brain,prompting violent behavior when Kleed blew his whistle. West falls into the hands of master criminal Titus Trask,who intends to implant a crystal in the agent's brain and,in turn,have West do the same to President Grant so Trask can rule the country. + /h6Rqq1cSqlTokSraAmrXkgpWI0o.jpg + + + 1967-03-31 + The Night of the Wolf + /9B7gfhQLFmUSh9O9K0GKjZa1eZ.jpg + Assigned to protect Stefan, who is to be crowned king in place of his late brother, the agents must deal with the sinister Mr. Talamantes. Talamantes wants Stefan to renounce the throne and will do anything to accomplish this goal. This includes kidnapping Stefan's daughter, Leandra, and manipulating her to do his bidding whenever she hears or reads a certain word. + /9B7gfhQLFmUSh9O9K0GKjZa1eZ.jpg + + + 1967-04-07 + The Night of the Bogus Bandits + /wFvsFICjO43hqOcpIdUJQh4T0WW.jpg + Dr. Loveless is back with another plan to take over the world. This time he is using mock-ups of the treasury, prisons and armories to train his men to be able to take over these resources upon his command. After gaining control, Loveless will be instituted as dictator. However, his plan to get rid of West and Gordon goes foul and soon the agents are in hot pursuit of the little villain. + /wFvsFICjO43hqOcpIdUJQh4T0WW.jpg + + + /8Nq5X2p74ZPSxlAvBmot4r4ZQFa.jpg + Season 2 + + + 1967-09-08 + + + 1967-09-08 + The Night of the Bubbling Death + /32esiO2SVn7rEULosvQNb12RYap.jpg + When Victor Freemantle, a dangerous revolutionary, steals the U.S. Constitution, agents James West and Artemus Gordon are sent by the government to the Panhandle Strip in Texas to recover it. West and Mr.Grigsby, a curator of the United States Archives, go to a secret underground hideout where Constitution is being held to verify the authenticity of the document. After determining that it is the genuine article, West and Grigsby are presented with Freemantle's demands: They are requested to cease negotiations with Mexico and the U.S. is to recognize the Panhandle Strip as a Sovereign enclave between the borders. A one-millon dollar ransom in gold must also be paid. As part of their agreement, Freemantle holds Grisby hostage until West returns. But West and agent Artemus Gordon decide to ignore the demands and rescue the Constitution themselves by infiltrating Freemantle's castle; Gordon disguises himself as a whiskey salesman and West hides underneath his wagon. + /32esiO2SVn7rEULosvQNb12RYap.jpg + + + 1967-09-15 + The Night of the Firebrand + /q4U5jVwv7NRgvD6wwEKPusaszYz.jpg + On a mission for President Grant, agent West travels to Fort Savage to meet with a Major Jason and help prevent a revoloution in Canada that outlaw Shawn O'Riley has plans to incite. At the fort, West reads a description of O'Riley and realizes too late his striking resemblance to Major Jason. O'Riley announces that he now controls the fort and is holding the real major and his men captive. Meanwhile, Gordon has gone under cover to learn the details of the revolution. He arrives at West's side just as his partner is trapped on wrong side of O'Riley's gun. + /q4U5jVwv7NRgvD6wwEKPusaszYz.jpg + + + 1967-09-22 + The Night of the Assassin + /7WEvHLLBkRV3t4cpw9QbTI3hbw2.jpg + As United States and Mexican border relations are becoming stained,West and Gordon disrupt an assassination attempt on the Mexican President. While returning the captured assassin to Texas,they are fired upon by Mexican soldiers who are led by the merciless Colonel Barbossa. The assassin,just before he is captured,is given a pill by Gordon that makes him appear dead. Then Gordon,disguised as a priest in a wagon,goes to the prison to pick up the dead prisoner. + /7WEvHLLBkRV3t4cpw9QbTI3hbw2.jpg + + + 1967-09-29 + The Night Dr. Loveless Died + /rV8IEC9G9YSECZfhPFpQdN0uXAB.jpg + The agents travel to Hayes City to identify the body of their archnemesis, Dr.Loveless. While there, they meet up with Miguelito's next of kin, Dr.Liebknicht, a Swiss neurologist. However, as they pursue the origin of a key found on the body, they find that Loveless is hardly dead and has plans to use his neurologist guise to give Jim a lobotomy! + /rV8IEC9G9YSECZfhPFpQdN0uXAB.jpg + + + 1967-10-06 + The Night of the Jack O'Diamonds + /3Xy5FmZPxBJDEOsoSjonFzcwsY9.jpg + James and Artemus arrive in Mexico with a present for the Mexican president-a beautiful Arabin horse. Within minutes of their arrival,however,the horse os stolen by a group of outlaw babdits.Our heros must battle the hot mexican desert to get the horse back before the outlaw Mexican ary beats them to it. + /3Xy5FmZPxBJDEOsoSjonFzcwsY9.jpg + + + 1967-10-13 + The Night of the Samurai + /kdCjXhBCMowUnJcwwX8xqM5Y06s.jpg + The U.S. State department is about to return a valuable samurai sword to its rightful owner,a Japanese prince,when it is stolen by an group of sword-wieding assailants. Jim and Artemus must located the sword and return it to the prince before he leaves the next afternoon,or risk damaging U.S.-Japan relations. + /kdCjXhBCMowUnJcwwX8xqM5Y06s.jpg + + + 1967-10-20 + The Night of the Hangman + /pXnojxE1PKEIltG0KCWSPJvikGW.jpg + During a stopover in a small Kansas town, the agents become involved in a murder investigation. After a man is found guilty and sentenced to hang, the agents uncover valuable information that points in an entirely different direction. Of course, this information puts our agents into quite a bit of danger, but, as we know, they can handle themselves relatively well in these sorts of situations. + /pXnojxE1PKEIltG0KCWSPJvikGW.jpg + + + 1967-10-27 + The Night of Montezuma's Hordes + /h2xMxsLI0ydgglnmQykt54Ofgou.jpg + An ancient Aztec map leading to the lost treasure of Montezuma is discovered in Mexico and points to a location in Texas. In order to ensure that a diplomatic incident does not ensue,West and Gordon team up with Colonial Sanchez of Mexico and a noted archeologist in a dangerous trip across the Texan desert in search of the treasure. + /h2xMxsLI0ydgglnmQykt54Ofgou.jpg + + + 1967-11-03 + The Night of the Circus of Death + /hOKGKtJo7tu2hzCiz1AfN1GxH8r.jpg + Counterfeit money is appearing in an area around Denver in sufficient quantities to undermine the U.S. enconomy. West and Gordon attempt to track down the source of the fake currency before it's too late. + /hOKGKtJo7tu2hzCiz1AfN1GxH8r.jpg + + + 1967-11-10 + The Night of the Falcon + /kYkYGjnUJFjaVeaJbm7F96JGdK0.jpg + James West and Artemus Gordon help evacuate the town of Tonka Flats before it is destroyed by a cannon shell. Afterwards, they are notified that a man identified as ""The Falcon"" has threatened to obliterate Denver unless the U.S. government pays him $1,000,000. ""The Falcon"" is also in cahoots with syndicate leaders from Turkey, Spain, Prussia and England. During their investigation, Gordon is threatened by a whip-wielding Spaniard named Munez who suspects Gordon knows too much about the top secret weapon. West rescues Gordon from Munez, who is then killed by an explosive meant for the two agents. While searching Munez's body, West and Gordon find an invitation from ""The Falcon"". Gordon, disguised as Munez, prepares to attend the meeting while West attempts to penetrate the stronghold where the cannon is housed. + /kYkYGjnUJFjaVeaJbm7F96JGdK0.jpg + + + 1967-11-17 + The Night of the Cut-throats + /8owU00r3Rp7zZrTdBC2nrFYWWJP.jpg + Something is happening in the small town of New Athens. residents are leaving in droves,scared off by a band of seedy cut-throats gathering just outside the town limits. And then there's Michael Trayne,back in town after three years in jail. Can Jim and Arte figure out what's happening and save the town before everyone leaves permanently? + /8owU00r3Rp7zZrTdBC2nrFYWWJP.jpg + + + 1967-11-24 + The Night of the Legion of Death + /498I5V5k6OT63egimJtkrFFXkFP.jpg + West and Gordon take on the power-crazed secretary to a Territorial Goveror. The secretary controls the Governor and has plans to take over the US Goverment and the Presidency as well. To make things more difficult, his Black Legion troops do not take kindly to the two agents interferring. + /498I5V5k6OT63egimJtkrFFXkFP.jpg + + + 1967-12-01 + The Night of the Turncoat + /oaGlkV8uI9H1cp1z4lAul9ETP7N.jpg + The stress of Secret service work appears to be finally getting to Jim as his temper flares and he makes mistakes. As West is being recruited by some member of the underworld who seeks to capitalize on his misfortune,Artemus and Conel Richmond struggle to find out exactly who,for what,and why. + /oaGlkV8uI9H1cp1z4lAul9ETP7N.jpg + + + 1967-12-08 + The Night of the Iron Fist + /8JW16FNfQvDSxzteV1Hp4EiUlJ.jpg + At the request of the Bosnian government, Count Draja is to be turned over for extradition. Learning of a plot to free the Count, Jim and Arte make plans to see that Draja reaches his destination. While Jim escorts Draja through 100 miles of no-man's land, they'll all meet up in Buffalo Springs-but there is the little matter of the $500,000 the Count hid somewhere in the U.S. + /8JW16FNfQvDSxzteV1Hp4EiUlJ.jpg + + + 1967-12-15 + The Night of the Running Death + /x1BFe4jmtHdigv0OqKUjjOjqCW4.jpg + Agent James West attempts to rescue a man called Mr.Markham from a masked assailant who flees the scene of the crime. As Markham lays dying,he utters two words-""enzo"" and ""silver"". Meanwhile,Agent Artemus Gordon has joined a troupe of entertainers traveling to Denver under the leadership of casino operator Kohner. Gordon,who is posing as a Shakespearean actor,learns that a man called Enzo has a girl friend,Topaze. She is a dancer with the troupe,probably working under an assumed name,and is on her way to meet Enzo in Denver. Dierdre,a dancer,attempts to pass some information to West but a jealous Kohner interrupts them and engages the agent in a fight with him and El Bardhoom,a huge weight lifter. Later,Artemus hears a strange voice of Markham's masked Killer. When West goes to meet Dierdre at midnight,he discovers that she too been slain by unseen assailant. + /x1BFe4jmtHdigv0OqKUjjOjqCW4.jpg + + + 1967-12-29 + The Night of the Arrow + /zaB1IOiju9kzseZDaEKfJpzcc7o.jpg + Strong Bear's Sioux Indians are making noises about breaking the peace treaty. President Grant's first three messengers failed to return from meetings with the Indian leader; now it's up to Jim and Artemus to find Strong Bear and to keep peace in the territory. + /zaB1IOiju9kzseZDaEKfJpzcc7o.jpg + + + 1968-01-05 + The Night of the Headless Woman + /5qSg06Y4lDcp5nXWKRHhYzyXaF6.jpg + On a dusty Californian trail,Jim and Artemus intercept a stagecoach whose driver has been hired to smuggle boll weevils. Quickly theorizing that someone is trying to destroy the country's cotton crop,they set out to find the mastermind of the operation and destroy his distribution system before his plan succeeds. + /5qSg06Y4lDcp5nXWKRHhYzyXaF6.jpg + + + 1968-01-12 + The Night of the Vipers + /vkyEQs39RZbOtg11XY6cB3JcpiF.jpg + The Vipers are a gang of ruthless crooks who have been looting a string of Kansas towns,robbing banks and killing citizens. They even robbed the Cottonwood bank while James West was trying to convice the sheriff of the danger. Now the trail leads to Freedom,Kansas,where Jim and Arte must stop the Vipers before the Vipers stop them. + /vkyEQs39RZbOtg11XY6cB3JcpiF.jpg + + + 1968-01-19 + The Night of the Underground Terror + /mJe1ZtuAAYMUDZkSnnb2YF6WSKe.jpg + During Mardi Gras West is grabbed by Major Hazard: the leader of a gang of crippled Civil war soldiers seeking revenge on the camp's commandant, Mosely. Jim reluctantly agrees to help them, only to have Mosely taken from him by the soldiers. He tracks them to the abandoned camp, where it turns out that Hazard and his men aren't crippled. They were in league with Mosely, who stole a shipment of gold and hid it. Mosely double-crossed Hazard and his men, so now they want the gold. Thanks to a diversion by Artie (as a geologist who can find gold with a divining rod), Jim escapes and in the ensuing fight, Hazard is killed when the gold falls from its hiding place: the camp's water tower. + /mJe1ZtuAAYMUDZkSnnb2YF6WSKe.jpg + + + 1968-01-26 + The Night of the Death Masks + /fWIv7uayiNo6HyQo3YHcyEa9GhV.jpg + An escaped murderer plots a bizarre scheme against agent James West, the man who had imprisoned him several years earlier. Attacked and knocked unconscious, West awakens in a stange deserted town filled with assailants wearing masks in the likeness of Stark. Gordon searches for his lost partner and soon finds himself in a similar predicament. West and Gordon must avoid deception to find and take out the real Stark. + /fWIv7uayiNo6HyQo3YHcyEa9GhV.jpg + + + 1968-02-02 + The Night of the Undead + /roT7uShPHrv7ea64cdOMmTY4keL.jpg + The guys become involved with a voodoo ceremony and the walking dead as they try to track down a missing scientist. + /roT7uShPHrv7ea64cdOMmTY4keL.jpg + + + 1968-02-09 + The Night of the Amnesiac + /jVuN1NIZfLIdua2LM0sSQKKPpfb.jpg + A stage coach carrying the western states entire supply of smallpox vaccine is attacked and the drug stolen. Furman Crotty, a convicted criminal serving time in Leavenworth, is demanding his release from jail with a full pardon and a ransom for the safe return of the drug. While Jim West, injured in the attack on the stage, struggles with amnesia, Artemus tries to find both his friend and the drug before a full-scale epidemic hits. + /jVuN1NIZfLIdua2LM0sSQKKPpfb.jpg + + + 1968-02-16 + The Night of the Simian Terror + /yiJYgRdNQMcUsQMPgZ048AIbxD.jpg + A visit to the plantation of a US Senator reveals a myterious family past that intersects with a doctor infamous for his experiments with apes. The agents are lucky enough to arrive just as the Senator's forgotten giant son and his friend, a giant ape, are rampaging through the plantation. + /yiJYgRdNQMcUsQMPgZ048AIbxD.jpg + + + 1968-02-23 + The Night of the Death Maker + /vtPjOD3O0OA3OIUo5TqnNlncoch.jpg + An attempt to assassinate President Grant is foiled at the last minute by West and Gordon. However,there seems to be more going on than a simple assassination,as the weapon used in the attempt was one stolen in recent raids on government and territorial armories. The President refuses to cancel a trip to Dever,leaving Jim and Artemus only 36 hours to uncover who is responsible and stop them before it's too late. + /vtPjOD3O0OA3OIUo5TqnNlncoch.jpg + + + /32A6wdwgJxlT4BZ96TrWKdQrUhG.jpg + Season 3 + + + 1968-09-27 + + + 1968-09-27 + The Night of the Big Blackmail + /nWdDBs4HOTQiemb4qNa8D3ssL0D.jpg + While President Grant attends an event at the German Consulate, Baron Hinterestoisser invites him to a special reception, explaining he has something interesting for the president to see. Suspicious, agent James West retrieves the mysterious box the Baron refers to and finds a kinetoscope of a fake depiction of President Grant signing a secret agreement with the unscrupulous government of another nation. If the film is shown for the heads of other countries, Grant will suffer terrible indignation and upset international relations. If the film is not replaced, however, the Baron will accuse the U.S. of stealing on consulate soil, a far greater crime. Agent Artemus Gordon decides that the only alternative is to make a duplicate kintetoscope-with some changes-and return it to the consulate before it is discovered missing. West and Gordon finish just as the president arrives. The Baron announces that he has proof of President Grant's connection with the corrupt foreigh officials. But as th + /nWdDBs4HOTQiemb4qNa8D3ssL0D.jpg + + + 1968-10-04 + The Night of the Doomsday Formula + /4ZSjimu9rbDENsgQRg4DRQLBjle.jpg + Dr.Crane,inventor of a new explosive,is missing along with his daughter. If his ""doomsday formula"" falls into the wrong hands,especially foreign ones,it could mean the end of the United States. West and Gordon must rescue the professor,his daughter and the formula before it's too late. + /4ZSjimu9rbDENsgQRg4DRQLBjle.jpg + + + 1968-10-11 + The Night of the Juggernaut + /a0aoVI0pOCHHhWxbseUC0B3W7WE.jpg + Someone is trying to run settlers off their land,buying some of them out,scaring other away,and even murdering those who refuse to leave. The government sends Jim and Arte in to investigate the situation and to stop whoever is behind this. + /a0aoVI0pOCHHhWxbseUC0B3W7WE.jpg + + + 1968-10-18 + The Night of the Sedgewick Curse + /us8oiufs04IxQFL3BbpsVzjYgZC.jpg + Investigating the disappeance of a correspondent of James West's, the agents come upon a bizarre family scheme. West's associate had a rare disorder that caused rapid aging, similar to that of the Sedgewick family. In an attempt to cure the disorder, the family physician has been kidnapping people with the similar disorder and using them to test a serum he has prepared. It is up to West and Gordon to stop his tests and bring him to justice. + /us8oiufs04IxQFL3BbpsVzjYgZC.jpg + + + 1968-10-25 + The Night of the Gruesome Games + /5s9yILiO2W55gIX9J0UYFsctG1b.jpg + While on the trail of a scientist who has stolen a vial of deadly germs, the agents are pulled into a night of deadly parlor games. West and Gordon must recover the vial before it bursts and releases a veritable plague while managing to live though the games of their host. + /5s9yILiO2W55gIX9J0UYFsctG1b.jpg + + + 1968-11-01 + The Night of the Kraken + /zf3i58MGdJc4TwO2VIraeJsbb5o.jpg + While investigating why fishing had been prohibited on local waters, agents James West and Artemus Gordon are attacked by a rough bunch of sailors. After the melee, Lt. Bartlett, who was apparently the victim of some sort sea creature. West joins a resolute fisherman on his boat and are attacked by a giant squid. But things are not what they appear as an even more insidious threat is revealed. + /zf3i58MGdJc4TwO2VIraeJsbb5o.jpg + + + 1968-11-08 + The Night of the Fugitives + /y8DZwme21TOBGfeVC3GcgDAcyBv.jpg + In the town of Epitaph, owned by Epitaph Mines, agents James West and Artemus Gordon arrest Norbert Plank, chief bookkeeper for the powerful syndicate that owns the mining company. Through Plank, the agents hope to get their hands on records that could build a case against the organization. The whole town turns out to free Plank, whom West has hidden in a church bell tower, while Gordon masquerades as lay-preacher Hallelujah Harry. Gordon hopes to get to the head of the syndicate, Diamond Dave Desmond, and walk off with the ledgers. But Diamond Dave's girlfriend, Rhoda, has the same idea and blackmail on her mind. + /y8DZwme21TOBGfeVC3GcgDAcyBv.jpg + + + 1968-11-15 + The Night of the Egyptian Queen + /8NXvfHNzL6ERh1HmkRCFDCfPMcy.jpg + Agent Artemus Gordon and the curator of the San Francisco Museum are set upon in the Egyptian exhibit by three men wearing gas masks. When agents West and Mr. Heisel, the Egyptian government's representative, enter the room, they are also attacked. After regaining consciousness, the men discover that a priceless ruby has been stolen from the eye of the statue of Sun God, Ra. Commissioned by Miasmin, an Egyptian Princess, to recover the gem, West and Gordon trace a ransom note to a waterfront bar where Gordon poses as a sea captain. At the bar, West recognizes one of his assailants at the museum. The man identifies himself as Jason and indicates that Rosie, a beaufiful young dancer at the bar, is wearing the ruby on her toe. Unfortunately, Rosie vanishes before West can make a move. + /8NXvfHNzL6ERh1HmkRCFDCfPMcy.jpg + + + 1968-11-22 + The Night of Fire and Brimstone + /5TSoC7ZnxgItfBvlgCFZKupsLnz.jpg + West and Gordon are called to the deserted mining town of Brimstone by a Professor Colecrest who has made a discovery of great importance. However, before they get to Brimstone, the Professor is captured by a gang of men also seeking his discovery. The professor, seriously injured in a fall, holds the key to the mystery, and Jim and Artie struggle to keep him alive until they can uncover the true root of the mystery. + /5TSoC7ZnxgItfBvlgCFZKupsLnz.jpg + + + 1968-11-29 + The Night of the Camera + /p5CBDZiM55HdkFY7hXFZnqKYnmb.jpg + Agent West raids a local warehouse in an attempt to apprehend a suspected opium gang member. As he struggles with the suspect, a new secret agent named Bosley Cranston rushes in and attempts to help. Unfortunately, he only makes matters worse, accidentally toppling a piano crate on the suspect and killing him. Cranston, however, is not the meek incompetent he appears and later surprises his colleagues with his karate skills and his popularity with beautiful women. + /p5CBDZiM55HdkFY7hXFZnqKYnmb.jpg + + + 1968-12-06 + The Night of the Avaricious Actuary + /r7FPg8udnxpcrugYVg0P5hUdNyH.jpg + Agents West and Gordon have been investigating a series of explosions that have demolished several palatial homes. While they are guests of the wealthy Mr. Taney, they hear a high, whining sound. Suddenly the house begins to crumble and the agents escape in the nick of time to see a giant tuning fork radiating powerful sound waves. As they delve deeper into the case, they discover a letter to Mr. Taney from the Cyclops Insurance Company, urging him to take out a policy against further destruction of his property. + /r7FPg8udnxpcrugYVg0P5hUdNyH.jpg + + + 1968-12-13 + The Night of Miguelito's Revenge + /rrq4Gv6X2Oa2AznwkQzZy0jBrtz.jpg + Agent West is summoned by a note from agent Gordon to the local barbershop. While waiting for Gordon, West decides to have a shave and is promptly anesthetised by a hot towel from one of Dr. Loveless's assistants, working in disguise. When he wakes up, he finds himself in a carnival funhouse where he encounters dazed-looking Justice Alonzo Fairlie. Before he can get any information from the judge, he is attacked by a quartet of gunmen. He quickly dispatches his adversaries but Justice Fairlie disappears in the confusion, leaving behined a strange clue. + /rrq4Gv6X2Oa2AznwkQzZy0jBrtz.jpg + + + 1968-12-26 + The Night of the Pelican + /jfnwwvEiNgQHiEvVwCPCfeRrKId.jpg + West and Pike receive a note to meet a woman at a Chinese restaurant in San Francisco with a promise of information about the militant Din Chang who has recently ston a supply of fulminate of mercury from a military arsonal. Unfortunately,the woman is killed before they can talk to her and the only word she utters is ""Pelican"". To further complicate matters,the only person they manage to capture is supposedly still serving time at Alcatraz. Since it seems that Alcatraz and the woman are the two pieces they have of the puzzle,the two split up to track down Chang before he can use the volatile mercury. + /jfnwwvEiNgQHiEvVwCPCfeRrKId.jpg + + + 1969-01-03 + The Night of the Spanish Curse + /lsaP1TB95kCY3w5GE7rD4nOB9fp.jpg + West and Gordon are called into Mexico to investigate a group of bandits who are attacking and terrorizing border towns. They track the bandits to a Mexican Village where the theives are hiding under the guise of an old Mexican legend about Cortez. Jim and Arte,not believing in the return of the god Cortez,are determined to find their way into the dorment volcano where the thugs are hiding. + /lsaP1TB95kCY3w5GE7rD4nOB9fp.jpg + + + 1969-01-17 + The Night of the Winged Terror (1) + /tPCtGTOoPPyYl0DiQ4uhtFFP0T6.jpg + After a series of disturbing incidents involving a raven that seems to hynoptize high-ranking officials into committing dastardly deeds,Agents West and Harper decide to find out what's going on. The incidents lead the new partners to a group calling themselves The Raven,led by Thaddeus Toombs and a man called Tycho (who has an enormous head and is very smart). + /tPCtGTOoPPyYl0DiQ4uhtFFP0T6.jpg + + + 1969-01-24 + The Night of the Winged Terror (2) + /6fnw5glpVrDOsT6r1gQp7ADfJHb.jpg + The plans of The Raven seem to be successful as they have hypnotized Jim West and had him assassinate the Mexican Ambassador. Unfortunately for the group,Frank Harper had been impersonating the ambassador to test whether Jim had been conditioned. West and Harper work together to infiltrate and undermine the group and capture everyone except for the huge-headed Tycho. + /6fnw5glpVrDOsT6r1gQp7ADfJHb.jpg + + + 1969-02-07 + The Night of the Sabatini Death + /r2jVIVdAizA4t2mUoIzB8n4itPh.jpg + Jim meets with crime czar Sabatini, who asks him to travel to Calliope, MO to protect a lady and give a man called Swanson a key. Accompanied by government chemist Ned Brown, Jim travels to Calliope (where an Army finance officer died after stealing half a mil). Swanson is killed and the lady turns out to be Sabatini's ward blind Sylvia. It turns out Sabatini was the officer and Sylvia was the daughter of Boorman, Sabatini's partner in the robbery. Dodging Boorman, Jim and Ned find Sabatini's deed leaving all of his property to Sylvia. + /r2jVIVdAizA4t2mUoIzB8n4itPh.jpg + + + 1969-02-14 + The Night of the Janus + /aaali8XESNrjo26cXTcb2k7xFHg.jpg + A melody holds the clue West needs to trap a departmental traitor. + /aaali8XESNrjo26cXTcb2k7xFHg.jpg + + + 1969-02-21 + The Night of the Pistoleros + /5I2aMu79oCbIi0sL5dXKsDeX4n9.jpg + Gordon and West head to a lonely outpost to battle a terrorist gang. + /5I2aMu79oCbIi0sL5dXKsDeX4n9.jpg + + + 1969-03-07 + The Night of the Diva + /h6eU9y9CxdPpIbqLcBHiRgPAzOA.jpg + West meets up with Gordon, who has just arrived in New Orleans with a famous Italian diva and niece of the ambassador on his arm, an escort urged by President Grant. West agrees to substitute as the lady's guardian for her appearance that evening at the opera, but the performance is interrupted when Montebello's would-be kidnappers bring down the curtain and West jumps into the fray. Discovering that sereral divas had recently disappeared in New Orleans, the agents must rush to unravel a plot involving the secret Order of Lucia and reveal who among their new acquaintances is playing a role on and off the stage. + /h6eU9y9CxdPpIbqLcBHiRgPAzOA.jpg + + + 1969-03-14 + The Night of the Bleak Island + /6wX7kpUIQKE2vO1PkzJq7VaoeUj.jpg + West visits an eerie island to get a diamond for the National Museum. + /6wX7kpUIQKE2vO1PkzJq7VaoeUj.jpg + + + 1969-03-21 + The Night of the Cossacks + /qBserXMsySg62loQeYiutASfBy2.jpg + West and Gordon are mixed up in the affairs of the royal family of Karovnia when they come to the US fleeing from assassins in their home country. The agents find that the evil Count Balkovitch is pursuing them, looking for an icon he needs to possess to hold power in Karovnia. Of course, the Count is not acting alone and the agents must discover who is assisting him before his dastardly plans are accomplished. + /qBserXMsySg62loQeYiutASfBy2.jpg + + + 1969-03-28 + The Night of the Tycoons + /l7KF4BMUIbjMk2Q3W2kflp0nrtV.jpg + West becomes involved with the Jupiter Corporation after the director of the board and two others are killed. West exposes a deep plot by the late director's sister,Amelia,to dump stock,cause a panic,then make tons of money off of the cheap stock. West's investigation leads him to an odd bar with a cirus theme and animals who like to throw bombs. West uncovers Amelia's plan to kill off the rest of the board and is able to save the rest of the members. + /l7KF4BMUIbjMk2Q3W2kflp0nrtV.jpg + + + 1969-04-04 + The Night of the Plague + /fHRTtBqnocfEnOlYpx50lYdxSJx.jpg + West deals with the kidnapping of the Governor's daughter while Gordon rushes to find Jim to inoculate him from the disease one of the criminals was carrying. The disease proves to be the turning point in the fight between the feds and the criminals as Gordon convinces the gang to turn themselves in exchange for the cure to the disease. + /fHRTtBqnocfEnOlYpx50lYdxSJx.jpg + + + /ino1ZgEqkXwhVJbObc50QuNfUyn.jpg + Season 4 + + + + + /fB68a61jOoZbE5q11eIOLYGlmJw.jpg + + Witchblade + 60 + Sci-Fi & Fantasy - Mystery + http://www2.warnerbros.com/web/witchblade/home.jsp + Witchblade + TNT + 2 + US + Witchblade is an American television series that aired on TNT from 2001 to 2002. The series is based on the Witchblade comic book series, and followed a pilot film which debuted in August 2000. Some of the episodes were written by Ralph Hemecker, Marc Silvestri and J.D. Zeik. + +Yancy Butler starred as Sara Pezzini, Anthony Cistaro as Kenneth Irons, David Chokachi as Jake McCartey, Eric Etebari as Ian Nottingham, Will Yun Lee as Danny Woo, Conrad Dunn as Tommy Gallo, Kenneth Welsh as Joe Siri, and John Hensley as Gabriel Bowman, among others. Although critically acclaimed and popular with audiences, the show was canceled in September 2002; there was speculation that the cancellation was connected to Butler's entering rehab for alcoholism. + +The series ran for two seasons on TNT, for a total of 24 episodes. The first episode aired June 12, 2001; the last episode aired August 26, 2002. In spite of its cancellation, Witchblade was ranked seventh in the Top 10 Basic Cable Dramas for 2002. + +According to Top Cow editor Matt Hawkins the Witchblade TV series was cancelled because the lead actress Yancy Butler was an alcoholic and went into rehab – it was and remains the highest rated TV series to be cancelled. + /5aq7gBYdxGUJMiwCF12qZhelgXJ.jpg + 5.5 + + + 2000-08-27 + + + 2000-08-27 + Pilot + /nMYEm1k8FTMckKpI109pokfs8vR.jpg + Sara "Pez" Pezzini is a New York City policewoman. During a shootout with a mob henchman, an ancient weapon attaches to her wrist and saves her life. + +Her search for justice for a slain childhood friend and her murdered patner brings "Pez" into contact with the Witchblade, an ancient, intelligent, living weapon she is only beginning to understand. + /nMYEm1k8FTMckKpI109pokfs8vR.jpg + + + 2001-06-12 + Parallax + /wcZJDsz5vpdcmwezglqdaCLHSeV.jpg + Learning to adapt to the Witchblade, and her new partner Jake McCarty, Sara Pezzini's role in the Rialto Theater incident is questioned during a hostile meeting with the police review board. Captain Joe Siri makes a big announcement. Sara and Jake tangle with Ian Nottingham over a deranged ex-special forces soldier a "Black Dragon". Captain Bruno Dante is introduced. + /wcZJDsz5vpdcmwezglqdaCLHSeV.jpg + + + 2001-06-19 + Conundrum + /aoO68OWGvJJpCycSUdKXAmX2xf0.jpg + Sara and Jake are caught up in the world of high fashion when a stunning young model is murdered. Sara's connection to the legacy of the witchblade becomes more mysterious when she uncovers a link between her past and the dead model's roommate. + /aoO68OWGvJJpCycSUdKXAmX2xf0.jpg + + + 2001-06-26 + Diplopia + /vMhEoKbGVCZKSZ3F8E9wnUR0l8C.jpg + When Sara and Jake investigate the murder of a prominent Soho art dealer, they quickly narrow their search to an artist who turns out to be one of an unknown number of identical brothers connected to the myth of the Witchblade. Sara seeks answers about the Witchblade from the incarcerated Madame Dominique and internet artifacts dealer, Gabriel Bowman. + /vMhEoKbGVCZKSZ3F8E9wnUR0l8C.jpg + + + 2001-07-03 + Sacrifice + /tFz53j2a9xJoVNVLtnD0WkEWGJ3.jpg + Ancient Celtic sacrificial rites are being re-enacted on the streets of New York. Pezzini crosses paths with an Irish rock star named Conchobar whose music is mysteriously linked to the crimes. Kenneth Irons tempts Sara with clues about the murders from a mysterious manuscript. + /tFz53j2a9xJoVNVLtnD0WkEWGJ3.jpg + + + 2001-07-10 + Legion + /5vRxIzMcOqlzCZcR6xFdpvOWxVK.jpg + A priest is brutally killed, and a young member of his congregation is the prime suspect. Despite the boy's affirmations of guilt, Sara suspects something else is at work. Investigating, she comes to believe that the boy was possessed by demons, and yet she still believes he was not the one responsible. She also fences with Father Del Toro, who has been assigned by the Vatican to investigate. Del Toro seems to know a great deal about the Witchblade as well, from its time when it was kept at the Vatican. Eventually Del Toro is revealed as the true murderer. + /5vRxIzMcOqlzCZcR6xFdpvOWxVK.jpg + + + 2001-07-17 + Maelstrom + /1j5gVTOnWHnmYNU4QXBWsKubsip.jpg + Sara races against a ticking clock to save Conchobar when he's kidnapped and used as bait by an anti-terrorist group intent on arresting his brother for past IRA involvement. In the end, the battle for Conchobar's life becomes a battle for the Witchblade. + /1j5gVTOnWHnmYNU4QXBWsKubsip.jpg + + + 2001-07-24 + Periculum + /bACoYTd4NxiNlLspDSBqxd0KwX7.jpg + Sara is put to the ultimate Witchblade trial. Meanwhile, Captain Dante introduces Jake to a secret brotherhood of vigilante officers who use their own methods to exact justice - will he join with them? + /bACoYTd4NxiNlLspDSBqxd0KwX7.jpg + + + 2001-07-31 + Thanatopis + /yyFhhJcxFcOH70p51xWz7P2h8a0.jpg + Jake and Sara tail an arms dealer, but a sniper's bullet ends their chase. The case gets weirder when Sara finds a dossier among the victim's effects containing shocking details on Irons, Nottingham ... and herself! + /yyFhhJcxFcOH70p51xWz7P2h8a0.jpg + + + 2001-08-07 + Apprehension + /9u1ioCRhjKcmKinU2tOYaQBB9SM.jpg + Sara is investigating the murder of a pimp when she receives a mysterious package. She starts reeling when clues suggest the enemy may not be who she thought. All she can trust is herself, and hopefully ... the Witchblade. + /9u1ioCRhjKcmKinU2tOYaQBB9SM.jpg + + + 2001-08-14 + Convergence + /7jX9NN227ZjaVtaW2bXlMIg7mAk.jpg + On the lamb from the NYPD, Sara turns to Jake for help, but is Jake in on the conspiracy against her? Meanwhile, Kenneth Irons struggles to stay alive as he spins out a plot to attain the one gruesome elixir that can save him. Irons reveals his true intentions for Sara and the Witchblade. + /7jX9NN227ZjaVtaW2bXlMIg7mAk.jpg + + + 2001-08-21 + Transcendence + /3WiGJCBhDOcENFfcEldzkvJW0mT.jpg + Sara's unlikely protector surfaces with a life-threatening passion to watch over her that leads to irrevocable consequences. Sara has no choice but to accept the destiny that comes with wielding the gauntlet and use it to regain what she has lost. But every gain has its price. True to the words of the Witchblade's past wielders, "Nothing is as it seems". A startling discovery about Dante and his team of corrupt cops lead to a suspenseful showdown between the rising warrior and a band of enemies that she must conquer before her father's killer is revealed. + /3WiGJCBhDOcENFfcEldzkvJW0mT.jpg + + + /pLCMXtCbQ0eVpRUk53KRTeUJ8xX.jpg + Season 1 + + + 2002-06-16 + + + 2002-06-16 + Emergence + /rMoa3GTHHLu3SnnKxbYWchOtEht.jpg + Sara Pezzini and her partner Danny Woo are once again in pursuit of the allusive mobster Tommy Gallo. As before, Tommy's henchman lures Sara into the museum where she encounters the Witchblade and it claims her as its chosen wielder. This time, however, things are different. Though it's a case of deja vu as she retraces her steps to the Rialto Theater, an older and wiser Sara declines the opportunity to confront Gallo inside. Although the past may be altered, Kenneth Irons has plans for the future and he determines to take the Witchblade from Sara even if it means having her killed. A much conflicted Ian Nottingham finds his loyalties split between guarding the chosen Witchblade wielder and carrying out the wishes of his master/father, Irons. Using an online murder/hit as bait, Irons lures Sara into his clutches while promising an ambitious and cold-blooded woman named Cristina that she will wear the Witchblade if she takes out Sara. To do so, Cristina must first get rid of Danny so she buries him alive, leaving him to die a horrible, slow death. In a Witchblade frenzy, Sara kills Cristina before she can make her tell what she did with Danny. As her partner runs out of air in an unmarked grave, Sara desperately searches for him before it's too late. + /rMoa3GTHHLu3SnnKxbYWchOtEht.jpg + + + 2002-06-16 + Destiny + /3wNAlIz56bTKYSklBwOptgg64HE.jpg + Using the powers of the Witchblade, Sara saves the life of her partner, Danny Woo. But when Irons procures an ancient weapon, can she save herself as the battle for the Witchblade turns into a fight to the death? + /3wNAlIz56bTKYSklBwOptgg64HE.jpg + + + 2002-06-17 + Agape + /2wdrVLu9heXyQKsDaJWf5Klhgxr.jpg + As Sara and Danny investigate a series of bizarre drug-related murders, rookie detective Jake is pulled into a sting with a questionable cop. Now Sara must learn to use the Witchblade to solve the crime and save Jake before it's too late. + /2wdrVLu9heXyQKsDaJWf5Klhgxr.jpg + + + 2002-06-24 + Consectatio + /dAaelu7mA3cryKFqpjE6V5uvuJi.jpg + Obsessed with his feelings for Sara Pezzini and driven by the spirt of Kenneth Irons, Ian Nottingham contracts with a group of deadly assassins, The Black Dragons, to murder Sara. + /dAaelu7mA3cryKFqpjE6V5uvuJi.jpg + + + 2002-07-01 + Static + /nffEJAPutY5OwWorBzdfGRELoKE.jpg + When a rock star meets his untimely demise, Sara and Danny are called in on a series of strange homicides. But when Sara discovers that the killer is using a trail of mayhem to lure her into a trap, her investigation turns into a fight for the Witchblade. + /nffEJAPutY5OwWorBzdfGRELoKE.jpg + + + 2002-07-08 + Nailed + /x2DoTMAItgRURCLmyTngEbRWPoB.jpg + A psychotic serial killer of young girls - who has a fetish for their fingernails - becomes obsessed with Danny's niece. Sara must rely on the Witchblade's visions to find the girl before she becomes the killer's next victim. + /x2DoTMAItgRURCLmyTngEbRWPoB.jpg + + + 2002-07-15 + Lagrimas + /ixUW6L1vuKF5A3P0LWncre4WSQU.jpg + Sara experiences love at first sight when she meets a man who is perfect for her. But the affair goes awry when Irons returns from the grave with knowledge of the man's true identity. Sara is faced with an impossible dilemma: Can she kill the man she loves? + /ixUW6L1vuKF5A3P0LWncre4WSQU.jpg + + + 2002-07-22 + Hierophant + /dZiAzWLugwJ8FT8VRBqt29M2FgP.jpg + A killer known only as V tries to take over New York's organized crime syndicates, causing mayhem. But when the evidence gathered at the crime scenes includes the fingerprints of Sara's long-dead father, Sara must trust the Witchblade's powers to overcome her emotions and wage war with the greatest evil she has ever faced. + /dZiAzWLugwJ8FT8VRBqt29M2FgP.jpg + + + 2002-08-05 + Veritas + /bfjZ2h9WHVJKsWmdgHXB99zFhGQ.jpg + A man named Bittner is on the run from two mysterious men who kill him after he sends a message to Gabriel. It turns out Bittner had a tape with evidence convicting the mysterious men and their organization of some major murder. Gabriel and Sara recover the tape, are forced to shoot two of the men who are government types, and go on the run while Sara has visions of a mysterious Boston-accented talking to her about politics and evil. Sara ends up captured by the conspiracy, who are a mysterious cabal who plan on taking over the U.S. She escapes but the conspiracy lets her live in return for a favor, and returns the captive Gabriel to her. At the end her mysterious ghost/man reveals himself as John F. Kennedy before disappearing. + /bfjZ2h9WHVJKsWmdgHXB99zFhGQ.jpg + + + 2002-08-12 + Parabolic + /itigVCSXhZurluqWcJ1Gu6hK2Im.jpg + A link to unusual circumstances and the mysterious tatoos on the murder victims lead Sara and Jake to investigate other hate crimes that have been interrupted but are occurring across the city. It becomes apparent that a vigilante is trying to thwart the efforts of the hate crime perps. Sara goes undercover to find out more about the tatoos that are traced to the Lupo organization and its mysterious leader, but when her disguise is blown, she must use the Witchblade to escape + /itigVCSXhZurluqWcJ1Gu6hK2Im.jpg + + + 2002-08-19 + Palindrome + /bjHEhmBiigRVcl2O248wb80kjWc.jpg + Jake and Danny go undercover posing as hot-headed fighters to investigate the murder of a young man who was in an underground fight club. But the deadly game becomes complicated when Sara's long-lost love, Conchobar (Kim De Lury), steps into the ring. In a bizarre twist of fate, Sara finds herself risking everything - including the Witchblade - to save her lover and bring the killer to justice. + /bjHEhmBiigRVcl2O248wb80kjWc.jpg + + + 2002-08-26 + Ubique + /5UjzHfQ5UovPE3UQqUX9DDXoAhS.jpg + Sara awakens from a nightmare to discover the Witchblade gone and New York City in chaos after a bizarre homicidal spree. When she finds that the killers recently accessed Cyberfaust.net, a Web site run by someone who knows about the Witchblade, Sara suspects Irons. Risking her sanity, she peruses the site and becomes helpless due to Cyberfaust's spell. She is forced to battle against the Witchblade and its diabolical new wielder. + /5UjzHfQ5UovPE3UQqUX9DDXoAhS.jpg + + + /77637sZQhGseCZMgI0JLb2QqPPG.jpg + Season 2 + + + + + /qVbsDc0g8KVtiCrfxBcB4300VrI.jpg + Glen A. Larson + Buck Rogers in the 25th Century + 89 + Sci-Fi & Fantasy + + Buck Rogers in the 25th Century + NBC, Nitro + 2 + US + Buck Rogers in the 25th Century is an American science fiction adventure television series produced by Universal Studios. The series ran for two seasons between 1979–1981, and the feature-length pilot episode for the series was released as a theatrical film several months before the series aired. The film and series were developed by Glen A. Larson and Leslie Stevens, based upon the character Buck Rogers created in 1928 by Philip Francis Nowlan that had previously been featured in comic strips, novellas, a serial film, and on television and radio. + /8H2eYJf5tEuqa2mGRKTd30U4LEc.jpg + 7.2 + + + 1979-09-20 + + + 1979-09-20 + Awakening (1) + /i9ehj0m0NJlsxKlPh3YwMTdJyu.jpg + In the year 1987, NASA launched space probe Ranger III, with astronaut William "Buck" Rogers, on a 5-month trip around the solar system. However, the craft runs into a meteor storm, which disrupts its life support system and sends it into a long elliptical orbit of the Earth. In the year 2491, Ranger III again approaches the Earth, and is intercepted by the alien flagship Draconia, which is on a peace mission to Earth. Aboard the Draconia, Buck is revived by Princess Ardala and her second-in- command, Kane, whose true plan is to attack and conquer Earth. Buck is sent to Earth with a hidden homing device, which is soon discovered by Earth's Defense Directorate. After Buck convinces the humans of his true identity -- a man from the past -- he helps them to repel the Draconians' attack, with the aid of the mechanoids Dr. Theopolis and Twiki. + /i9ehj0m0NJlsxKlPh3YwMTdJyu.jpg + + + 1979-09-20 + Awakening (2) + /zsZYQBWkAbtsn60eIUmIXbb4Zc9.jpg + In the year 1987, NASA launched space probe Ranger III, with astronaut William ""Buck" Rogers, on a 5-month trip around the solar system. However, the craft runs into a meteor storm, which disrupts its life support system and sends it into a long elliptical orbit of the Earth. In the year 2491, Ranger III again approaches the Earth, and is intercepted by the alien flagship Draconia, which is on a peace mission to Earth. Aboard the Draconia, Buck is revived by Princess Ardala and her second-in- command, Kane, whose true plan is to attack and conquer Earth. Buck is sent to Earth with a hidden homing device, which is soon discovered by Earth's Defense Directorate. After Buck convinces the humans of his true identity -- a man from the past -- he helps them to repel the Draconians' attack, with the aid of the mechanoids Dr. Theopolis and Twiki. + /zsZYQBWkAbtsn60eIUmIXbb4Zc9.jpg + + + 1979-09-27 + Planet of the Slave Girls (1) + /okPSYsYjjtmU7DLWtesKw3QGl6w.jpg + Most of Earth's defense squadron becomes incapacitated after ingesting poisoned food discs. Buck travels to the planet of the food's origin, Vistula, with Wilma and flight instructor Duke Danton, an old boyfriend of Wilma's. On the planet, they trace the plot to a man named Kaleel who has been selling slaves to the planet's governor and secretly building an attack fleet. With so few fighter pilots, Earth's defense force is now outnumbered 10-to-1. Buck must rescue Wilma from Kaleel's mountain fortress and destroy the fleet before they can reach Earth. This episode was initially aired as a two hour special. + /okPSYsYjjtmU7DLWtesKw3QGl6w.jpg + + + 1979-09-27 + Planet of the Slave Girls (2) + /9TUSWqFvFbMVvIWpkrPv2ZguSRA.jpg + Most of Earth's defense squadron becomes incapacitated after ingesting poisoned food discs. Buck travels to the planet of the food's origin, Vistula, with Wilma and flight instructor Duke Danton (Groh), an old boyfriend of Wilma's. On the planet, they trace the plot to a man named Kaleel (Palance) who has been selling slaves to the planet's governor (McDowall) and secretly building an attack fleet. With so few fighter pilots, Earth's defense force is now outnumbered 10-to-1. Buck must rescue Wilma from Kaleel's mountain fortress and destroy the fleet before they can reach Earth. This episode was initially aired as + /9TUSWqFvFbMVvIWpkrPv2ZguSRA.jpg + + + 1979-10-04 + Vegas in Space + /q1JySvcWnKOA03SjrbWKuJrkp5E.jpg + Buck is sent to the gambling city Sinaloa with Directorate special agent Marla Landers to rescue a young woman who has been kidnapped by the city's ruler, Velosi. Velosi plans to extract some information from the woman's mind in order to destroy one of his competitors. The information involves plans for the Draconian Hatchet fighters, which have been plaguing Earth's defense forces. + /q1JySvcWnKOA03SjrbWKuJrkp5E.jpg + + + 1979-10-11 + The Plot to Kill a City (1) + /5mPR9Knp72TxFGkFnPiepUalqTu.jpg + After a Defense Directorate agent kills a member of a group of interstellar assassins, they plot to take their revenge on the city of New Chicago. Buck masquerades as an assassin and joins the group, but is soon uncovered. He must now, not only escape from the assassins, but also stop them from detonating New Chicago's matter/antimatter energy plant. + /5mPR9Knp72TxFGkFnPiepUalqTu.jpg + + + 1979-10-18 + The Plot to Kill a City (2) + /l3vn0ySSGJcv9NXculoInSJUhkm.jpg + After a Defense Directorate agent kills a member of a group of interstellar assassins, they plot to take their revenge on the city of New Chicago. Buck masquerades as an assassin and joins the group, but is soon uncovered. He must now, not only escape from the assassins, but also stop them from detonating New Chicago's matter/antimatter energy plant. + /l3vn0ySSGJcv9NXculoInSJUhkm.jpg + + + 1979-10-25 + Return of the Fighting 69th + /1IX6z5Rz5ObrasGoHd2Ojlfy1WP.jpg + Some time before Buck Roger's arrival, Col. Wilma Deering had set out to capture two interstellar gun runners. A fire in their spacecraft left them disfigured and they now set out to take their revenge on Wilma and Earth. Capturing a freighter with 20th Century chemical weapons, they plan to poison the planet's atmosphere. With the aid of retired members of the Earth Defense Directorate's 69th Squadron, Buck and Wilma attack the gun runners' base to destroy them and the chemical weapons. + /1IX6z5Rz5ObrasGoHd2Ojlfy1WP.jpg + + + 1979-11-01 + Unchained Woman + /mB152kCpncykaIYn9YrTOFnaZx3.jpg + Buck masquerades as a convict to break into a prison in an attempt to rescue Jen Burton, who took the blame for a murder her boyfriend, a shipping pirate, really committed. The Earth Defense Directorate believes that she can supply information to put the pirate in jail. Breaking out of the underground prison, Buck and the woman head for a nearby spaceport for return to Earth, but they are pursued by an indestructible android prison guard. + /mB152kCpncykaIYn9YrTOFnaZx3.jpg + + + 1979-11-08 + Planet of the Amazon Women + /cNBh71jZQy9Ajzm5DgzV4RTVmxd.jpg + Kidnapped to the planet Zantia, Buck finds himself auctioned off to Ariela, the daughter of the planet's Prime Minister. Through her, Buck learns that the planet's male population are being held as prisoners of war of a people called the Ruathans. Buck agrees to help the women free their men in return for his own freedom. + /cNBh71jZQy9Ajzm5DgzV4RTVmxd.jpg + + + 1979-11-15 + Cosmic Wiz Kid + /2QIsbXbQej6dqHxgVTlcgSPcdLy.jpg + Hieronymous Fox, an 11-year-old child genius from the 20th Century is kidnapped for ransom by the sinister Roderick Zale. The boy is the President of the planet Genesia and his bodyguard fears that he will be killed because they cannot meet the ransom demand. Buck, Wilma, and the bodyguard then make separate attempts to rescue the boy. + /2QIsbXbQej6dqHxgVTlcgSPcdLy.jpg + + + 1979-11-29 + Escape From Wedded Bliss + /nG9rDSasMdoNTLAKEhR7mDWYApt.jpg + Princess Ardala returns to try to make Buck, who she considers the most genetically perfect male in the galaxy, her husband. With a powerful weapon poised in Earth orbit, she commands Earth's leaders to turn Buck Rogers over to her or else... + /nG9rDSasMdoNTLAKEhR7mDWYApt.jpg + + + 1979-12-27 + Cruise Ship to the Stars + /xfShhfefvaqAdVxqFA86T2hT89a.jpg + Murder and romance await Buck, Wilma, Theo and Twiki aboard the cruise ship Lyran Queen. Buck befriends a shy young girl (Beck) while investigating the attempted kidnapping of beauty queen Miss Cosmos (Stratten) by a woman (Noble) with superpowers. To his surprise, Buck learns the true identity of the mystery woman as he seeks the location of Miss Cosmos before a deadly dissection laser kills her. + /xfShhfefvaqAdVxqFA86T2hT89a.jpg + + + 1980-01-03 + Space Vampire + /zbu4l5X2vghkhBnSFIAM5csFY9J.jpg + No one believes that the Vorvon, who sneaks up on his victims and drains their living soul, is responsible for a series of deaths on Space Station Theta except Wilma -- his next intended victim. + /zbu4l5X2vghkhBnSFIAM5csFY9J.jpg + + + 1980-01-10 + Happy Birthday, Buck + /eTSi5hzZj4wrgm7mLoPjgHGdVys.jpg + It's Buck Roger's 534th birthday, and Wilma and Dr. Huer plan a surprise party to cheer up the homesick astronaut. Wilma arranges to get Buck "out of the way"" by having him accompany Dr. Huer's assistant to New Detroit with the doctor's business schedule. Meanwhile, a man who is plotting revenge against Huer attempts to gain access to the schedule from the assistant so that he can ambush and kill Dr. Huer. + /eTSi5hzZj4wrgm7mLoPjgHGdVys.jpg + + + 1980-01-17 + A Blast for Buck + /3rGoMkMfIdxVav5QnG5yqoQsFSw.jpg + To discover the secret behind a terrifying riddle presented to him, Buck subjects himself to a mind probe in an attempt to find out who is responsible for the mysterious objects being transported into the Defense Directorate's building. + /3rGoMkMfIdxVav5QnG5yqoQsFSw.jpg + + + 1980-01-24 + Ardala Returns + /83HlcjaDEkqHEa7I0Yq4B83XRvA.jpg + Princess Ardala returns with another plan to snare the man from the 20th Century. This time, she captures Buck by luring him aboard a phoney 20th Century spaceship like his Ranger III. Once aboard the flagship Draconia, Kane creates four duplicate androids of Buck in an attempt to have them pilot the Draconian Hatchet fighters in an attack against Earth. + /83HlcjaDEkqHEa7I0Yq4B83XRvA.jpg + + + 1980-01-31 + Twiki is Missing + /j6AGJZmsuflEjFvlN2zGu5BnO0O.jpg + Twiki is kidnapped by the evil ruler of a mining colony who, faced with an uprising of the mine workers, plans to make duplicates of the mechanoid to work the mines. While in the mines attempting to rescue Twiki, Buck discovers something that will help Earth destroy a 10-ton ice asteroid that is on a collision course with Earth. + /j6AGJZmsuflEjFvlN2zGu5BnO0O.jpg + + + 1980-02-07 + Olympiad + /d6P0Cyz8BZOAj3Xf6UaSfsrUod3.jpg + Buck is invited to be the special guest of the 2492 Olympics. Shortly after arriving on the planet where they are being held, he is drawn into a game of political intrigue as an athlete from the planet Lozira attempts to defect to Earth. + /d6P0Cyz8BZOAj3Xf6UaSfsrUod3.jpg + + + 1980-02-14 + A Dream of Jennifer + /emn2VNzSyRVnX4ysjDAjx0cHWRa.jpg + Buck is haunted by the appearance of a young woman who bears a striking resemblance to Jennifer, a woman who Buck left behind when he was propelled into the 25th Century. He follows her, finds out her name is Leila Markeson, and soon discovers that she was made to look like Jennifer in order to lure Buck into a trap set by an alien who wants Buck to stop a space freighter from delivering weapons to a planet his people hope to conquer. Buck gets Wilma to detonate a warhead to deceive the aliens into thinking the shipment is destroyed. Buck defeats the enemy, but loses Leila, and his lost love again, as she tearfully dies in his arms. + /emn2VNzSyRVnX4ysjDAjx0cHWRa.jpg + + + 1980-02-21 + Space Rockers + /l6wtJIDqAAMlOcjwq211VMU8Kpv.jpg + The evil Lars Mangros plans to broadcast a subliminal signal during the next performance of the rock group Andromeda that will cause the youth of the galaxy to riot. Buck infiltrates Musicworld, where the broadcast will originate, in an attempt to stop the madman from destroying the galaxy's cities. + /l6wtJIDqAAMlOcjwq211VMU8Kpv.jpg + + + 1980-03-20 + Buck's Duel to the Death + /AgUaNmYqiiJfhjpfucSX0MqAk0j.jpg + Buck attempts to free a peaceful planet from the powerful grip of an evil warlord known as the Traybor. He leads a band of men into Traybor's fortress in the hope of freeing the women the alien has kidnapped, but Traybor has a few special powers that may end Buck's career at any moment. + /AgUaNmYqiiJfhjpfucSX0MqAk0j.jpg + + + 1980-03-27 + Flight of the War Witch (1) + /hEhIjEfMd7S9DB2ilyG7pwEnIHp.jpg + Buck journeys through a space warp into another universe, where he discovers that the peaceful planet Pendar is being threatened by the sinister war witch Zarina. The Pendarans enlist the aid of Buck and Princess Ardala, who had followed Buck through the space warp, and an unsteady alliance between the humans and Draconians is formed as Buck leads a combined fleet against Zarina's battlecruiser. + /hEhIjEfMd7S9DB2ilyG7pwEnIHp.jpg + + + 1980-03-27 + Flight of the War Witch (2) + /r1gc2ZhsaJLToUURGy9e7uk3WFo.jpg + Buck journeys through a space warp into another universe, where he discovers that the peaceful planet Pendar is being threatened by the sinister war witch Zarina. The Pendarans enlist the aid of Buck and Princess Ardala, who had followed Buck through the space warp, and an unsteady alliance between the humans and Draconians is formed as Buck leads a combined fleet against Zarina's battlecruiser. + /r1gc2ZhsaJLToUURGy9e7uk3WFo.jpg + + + /7yLM5BoFlloWPk1eO33x0Q8EVBs.jpg + Season 1 + + + 1981-01-15 + + + 1981-01-15 + Time of the Hawk (1) + /vSJgla7XdcVXwL4CJzf2pYh1VEV.jpg + Buck, Wilma, and Twiki set off into deep space aboard the Searcher, a starship on a mission to find the lost tribes of Earth -- humans who fled to the stars after a nuclear holocaust that all but destroyed the planet. The Searcher encounters a severely-damaged spacecraft with one survivor, who tells them of a savage attack by a bird-man named Hawk. Searcher sets course for the planet where it is believed Hawk lives, and Buck soon becomes involved in a desperate battle of wits and piloting skills with Hawk. Hawk's mate, who was a passenger in Hawk's ship, is mortally wounded in the battle and Buck and Hawk form a shaky alliance to seek medical aid for her. Eventually, Hawk joins the crew of the Searcher, looking for others of his kind. + /vSJgla7XdcVXwL4CJzf2pYh1VEV.jpg + + + 1981-01-15 + Time of the Hawk (2) + /uOBkhgy7RbB8k3BI6Q3iOgNAlZS.jpg + Buck, Wilma, and Twiki set off into deep space aboard the Searcher, a starship on a mission to find the lost tribes of Earth -- humans who fled to the stars after a nuclear holocaust that all but destroyed the planet. The Searcher encounters a severely-damaged spacecraft with one survivor, who tells them of a savage attack by a bird-man named Hawk. Searcher sets course for the planet where it is believed Hawk lives, and Buck soon becomes involved in a desperate battle of wits and piloting skills with Hawk. Hawk's mate, who was a passenger in Hawk's ship, is mortally wounded in the battle and Buck and Hawk form a shaky alliance to seek medical aid for her. Eventually, Hawk joins the crew of the Searcher, looking for others of his kind. + /uOBkhgy7RbB8k3BI6Q3iOgNAlZS.jpg + + + 1981-01-22 + Journey to Oasis (1) + /cRuxDV24mfWSmWh2AyjNuZ55dAn.jpg + Hawk's first mission among the humans is to join Buck, Wilma, and Dr. Goodfellow in escorting Ambassador Duvoe to a peace conference that could avert a terrible galactic war. Crisis strikes as their shuttle passes through an electric storm and crashes in the desert. With contact with Searcher impossible, the party must travel by foot to Oasis, encountering savage mutants and a mischievous gnome named ODX. + /cRuxDV24mfWSmWh2AyjNuZ55dAn.jpg + + + 1981-01-22 + Journey to Oasis (2) + /sFduoFg08VLcdMRYiXkteE3VQq7.jpg + Hawk's first mission among the humans is to join Buck, Wilma, and Dr. Goodfellow in escorting Ambassador Duvoe to a peace conference that could avert a terrible galactic war. Crisis strikes as their shuttle passes through an electric storm and crashes in the desert. With contact with Searcher impossible, the party must travel by foot to Oasis, encountering savage mutants and a mischievous gnome named ODX. + /sFduoFg08VLcdMRYiXkteE3VQq7.jpg + + + 1981-01-29 + The Guardians + /1rPoZnTtVZJZ7ZDUqsQQGhgk20h.jpg + Buck finds himself entrusted with a bizarre glowing green box when he and Hawk find an old man near death on a remote planet. Back on the Searcher, the box creates a series of bizarre images in the minds of the crew members. In reality, the box has taken control of the Searcher and sent it at fantastic speeds toward an unknown destination. + /1rPoZnTtVZJZ7ZDUqsQQGhgk20h.jpg + + + 1981-02-05 + Mark of the Saurian + /h3NVhbmmnxcnjSbyWXCfQw6WTmO.jpg + The Saurians plot to destroy the Searcher and start a galactic war by infiltrating the starship and a space station in human disguise. Only Buck, who has contracted a strange virus, is able to see the true form of the Saurians, but no one believes him. When the Suarians realize that Buck is a threat to them, he becomes the target of their assassination attempts. + /h3NVhbmmnxcnjSbyWXCfQw6WTmO.jpg + + + 1981-02-19 + The Golden Man + /xBq4evqZcMr74EQIcmgZukoKb4t.jpg + The Searcher rescues a gold-skinned boy from an escape capsule in an asteroid field. When the ship collides with one of the asteroids, the boy displays his powers of molecular alteration by rescuing Admiral Asimov from beneath a fallen girder. The boy assures the crew of the Searcher that, with the help of his companion, who is on a nearby planet, he can dislodge the ship from the asteroid. But when Buck and Hawk go to the planet to get the companion, they find that he is being held captive by a man who wants to use the boy's powers for his own greedy purposes. + /xBq4evqZcMr74EQIcmgZukoKb4t.jpg + + + 1981-03-05 + The Crystals + /6xAZxVhWPJyJB3Ue0g9zzqgl97a.jpg + Buck, Wilma, and Hawk are confronted with a bizarre riddle on an alien planet they are exploring for crystals to power the Searcher. Part of the riddle is the connection between a young woman and an eerie, mummy-like creature they encounter on the planet. Meanwhile, on the Searcher, the android Crichton believes he has discovered the link -- one that is crucial to the success of their mission. + /6xAZxVhWPJyJB3Ue0g9zzqgl97a.jpg + + + 1981-03-12 + The Satyr + /3Z3blPGELCYDmWii4ocTpJ2OP3u.jpg + Buck and Twiki come across the survivors of a failed colony, a young widow and her son. The woman tells Buck that the other colonists all fled the planet as the result of a plague. Buck is confused by the woman's refusal to leave the planet despite being repeatedly being menaced by a goat-man named Pangor; but he soon discovers the truth about the plague when he contracts it and begins to turn into a goat-man himself. + /3Z3blPGELCYDmWii4ocTpJ2OP3u.jpg + + + 1981-03-19 + Shgoratchx! + /xyb4K7SZIyHHOWeRCeQtyY1x1hl.jpg + Buck is ordered to explore a derelict spaceship that the Searcher encounters, and finds it filled with solar bombs and crewed by seven little men. They are escorted back to the Searcher and Admiral Asimov takes their ship in tow to a place where the bombs can be safely detonated. Assuming the little men can cause no real harm, Buck places them in the care of Wilma; but the little men have never seen a woman before and are intent on finding out what all of the "funny little bumps" are. + /xyb4K7SZIyHHOWeRCeQtyY1x1hl.jpg + + + 1981-03-26 + The Hand of Goral + /5xlcbXU7MB0JicIdGFUfv1FHp7n.jpg + Buck, Wilma, and Hawk explore a strange planet and come across the wreckage of a spacecraft and its lone survivor. He is taken back to the Searcher by Wilma, while Buck and Hawk continue to explore. After some unexplained happenings on the planet, they return to the Searcher, where they find that everyone has undergone personality changes -- becoming the opposite of their real selves. Buck soon learns that he can not even trust Wilma and Hawk to help him solve the mystery of what has happened. + /5xlcbXU7MB0JicIdGFUfv1FHp7n.jpg + + + 1981-04-09 + Testimony of a Traitor + /3Nin4odoh0fzEfYC95euZBStrwi.jpg + An ancient videotape is discovered that proves that Buck was involved in the nuclear holocaust that nearly destroyed the Earth hundreds of years before. Commissioner Bergstrom convenes a war crimes trial aboard the Searcher and, if Buck is found guilty, faces a death sentence. In a desperate attempt to clear himself, Buck agrees to another mind probe, but his memories seem to confirm the charges. + /3Nin4odoh0fzEfYC95euZBStrwi.jpg + + + 1981-04-16 + The Dorian Secret + /y6BU5hgeXQbhEfm22aPcvbUxAzy.jpg + Buck and Hawk are sent to pick up the survivors of a planetary disaster and transport them to a new home. Before departing, Buck rescues a young woman from a group of Dorian thugs. Later, while enroute to the planet, the Searcher is attacked by a Dorian craft, which demands that the woman be returned for the murder of a warlord's son. As the Dorians persist and subject the Searcher to a severe pounding, the refugees begin to rebel, insisting that the woman be turned over. Eventually, Buck discovers that truth about the woman and the startling reason why the Dorians always wear what at first appear to be merely ceremonial face masks. + /y6BU5hgeXQbhEfm22aPcvbUxAzy.jpg + + + /A3zP8DzLPfZcXner2c8Gyl7QbHM.jpg + Season 2 + + + + + /eXQfJ08T9o4sCyuDXq7buO5i2Uo.jpg + Paul Zbyszewski + Day Break + 60 + Sci-Fi & Fantasy - Drama - Action & Adventure + + Day Break + TV One + 1 + US + Today Detective Brett Hopper will be accused of shooting state attorney Alberto Garza. He will offer his rock solid alibi. He will realize he's been framed. And he will run. Then, he will wake up and start the day over again. + /f9p8CQXIIzCNTAg8pN8TIko3Sy1.jpg + 7.4 + + + 2006-11-15 + + + 2006-11-15 + Pilot + /4Cy34qtkk7ff2BQZOq9kSD1TBII.jpg + When Detective Brett Hopper woke up this morning, he thought it was a normal day, a day like any other one, but he rapidly find out that he is accused of killing Assistant District Attorney Alberto Garza. Even after offering a solid alibi, no one is believing him. The next morning, when he wakes up, he finds out that he is reliving the same day and that his loved ones are in danger. + /4Cy34qtkk7ff2BQZOq9kSD1TBII.jpg + + + 2006-11-15 + What If They Run + /7RlF9TQWWxk9Uau6xbjVVpTRuOX.jpg + Brett makes the decision to take Rita and try to make a run for it by getting out of town, in an attempt to escape the day. But he soon discovers the disastrous consequences of his rash actions on others. + /7RlF9TQWWxk9Uau6xbjVVpTRuOX.jpg + + + 2006-11-22 + What If He Lets Her Go + /kFbOiOUA7xrJEgGZYo9oku5hoKR.jpg + Hopper learns someone close to him may have been involved in framing him for Garza's murder. Meanwhile, some critical clues are revealed that could assist Hopper in making his nightmarish day finally end. + /kFbOiOUA7xrJEgGZYo9oku5hoKR.jpg + + + 2006-11-29 + What If He Can Change The Day + /ifmkaYjeTpgjjguo9PvljBgbR5d.jpg + While trying to find out who framed him, Hopper is starting to figure out what his partner, Andrea, did that caused her disagreement with Internal Affairs. + /ifmkaYjeTpgjjguo9PvljBgbR5d.jpg + + + 2006-12-06 + What If They're Stuck + /41nDmQQqa4caXeKcxXS1pVYaYvH.jpg + To prove his innocence, Brett visits the Internal Affairs office, twice, in search of the murder book. During his first visit, things aren't going like he planned but his second time isn't better when he doesn't have any other choice than taking someone hostage. + /41nDmQQqa4caXeKcxXS1pVYaYvH.jpg + + + 2006-12-13 + What If They Find Him + /auIXcONJFxnf5WUK0ozNDvyailR.jpg + Hopper tracks down a major player in the conspiracy to frame him for Garza's murder. He also learns he must weigh the consequences of his decisions after he sees the results of his actions affect the day with adverse results. + /auIXcONJFxnf5WUK0ozNDvyailR.jpg + + + 2007-01-29 + What If He's Not Alone + /cyarefSfaaO5Ae9z3kD5wFsYJ77.jpg + Hopper unexpectedly meets again with Jared - the guy who bit him in the fifth episode - and finds out that he is not the only one reliving the day over and over again. He also finds out that there was an eye-witness and that he was identified as Garza's murderer, while realizing that he has to deal with very powerful people. He also learns that people that are close to him might know more than they say they do. + /cyarefSfaaO5Ae9z3kD5wFsYJ77.jpg + + + 2008-02-16 + What If She's Lying + /j8tBNxDyIX6q3wN26D29cEPNdO0.jpg + Hopper fears that his sister, Jennifer, is mixed up in the plot against him, but he must first visit his mother to find out the connection. He suspects that his late father's involvement in the Contreras murder is at the bottom of it. Meanwhile, Andrea tries to find Fencik and Buchalter's ties to the plot, and Chad meets Buchalter. The meeting doesn't go well. + /j8tBNxDyIX6q3wN26D29cEPNdO0.jpg + + + 2008-02-24 + What If They're Connected + /aYQNfKmigVQGjcVfR9PS4IaFOar.jpg + Hopper struggles to find the connection between Booth, a city counsellor, and Garza. That connection seems to lie in the role Luis Torres, Booth's assistant, has. + /aYQNfKmigVQGjcVfR9PS4IaFOar.jpg + + + 2008-03-01 + What If He's Free + /kaYctkKpLKJdwQ9nVAu5fObnM5P.jpg + After some more research Hopper finally finds out, who the real murderer of Alberto Garza is. + /kaYctkKpLKJdwQ9nVAu5fObnM5P.jpg + + + 2008-03-08 + What If He Walks Away + /eslJKDxhknuISWgkn61m1DMto5h.jpg + To his disappointment, Hopper wakes up to the same day although the case had been cleared the night before. He decides to take a break for two weeks only to learn the case has become even more mixed up. + /eslJKDxhknuISWgkn61m1DMto5h.jpg + + + 2008-03-15 + What If She's the Key + /eLyQcFqZA3PA7GE8XLnZ8mH5uw4.jpg + Hopper finds out that his girlfriend Rita plays an important role in the whole conspiracy. + /eLyQcFqZA3PA7GE8XLnZ8mH5uw4.jpg + + + 2008-03-22 + What If It's Him + /PFSc5fQZWq8JMpmh89CY4YJVwd.jpg + Hopper finally breaks the day and sees "tomorrow" only to find out, that the next day brings some more problems with it. + /PFSc5fQZWq8JMpmh89CY4YJVwd.jpg + + + /eFxFx9wD6mLP0Dcy8VPRgrHAO3N.jpg + Season 1 + + + + + /4TOCKQJ8mt7DLlldAVeHb1NVm6O.jpg + Stephen J. Cannell + The Greatest American Hero + 60 + Action & Adventure - Comedy - Crime + + The Greatest American Hero + ABC + 3 + US + The chronicles of  teacher Ralph Hinkley's adventures after a group of aliens gives him a red suit that gives him superhuman abilities. Unfortunately, Ralph, who hates wearing the suit, immediately loses its instruction booklet, and thus has to learn how to use its powers by trial and error, often with comical results. + /8Npk9RVeAH1DA7kpommoUUWNAWy.jpg + 7.0 + + + 1981-03-18 + + + 1981-03-18 + The Greatest American Hero (1) + /wSWo2nWCFieHp8Qj1ahEmS22wjI.jpg + Ralph Hinkley, an average school teacher, is given a suit with amazing powers by aliens. Now, Ralph must decide if he'll use his new powers to fight crime, even though he already lost the suit's instruction manual. + /wSWo2nWCFieHp8Qj1ahEmS22wjI.jpg + + + 1981-03-18 + The Greatest American Hero (2) + /hGKT65qSp46pxucmgrW8o8w0ae0.jpg + Ralph is paired up with FBI agent Bill Maxwell, who has his own ideas as to how Ralph should use his suit. + /hGKT65qSp46pxucmgrW8o8w0ae0.jpg + + + 1981-03-25 + The Hit Car + /iYDcNzI26JWBIrIwU5m56UBXuan.jpg + Bill, who has been trying to bust open a drug ring for over 20 years, must drive a witness to Los Angeles for the trial of the gang leader and asks Ralph for help. + /iYDcNzI26JWBIrIwU5m56UBXuan.jpg + + + 1981-04-01 + Here's Looking at You Kid + /7tjtBysxydoopQgsX4LbGkDafig.jpg + When a secret gunsight is stolen, Bill asks Ralph for help in solving the case. However, Ralph runs into problems when he keeps turning invisible unexpectedly, and must deal with the pressure of meeting Pam's parents. + /7tjtBysxydoopQgsX4LbGkDafig.jpg + + + 1981-04-08 + Saturday on Sunset Boulevard + /AvmI08be55TuZCKpwMl8R9NzbgR.jpg + Russians are trying to find an heiress and her Russian husband in order to force them to establish a missile cache hold on their private island. Bill needs Ralph's help when he is suspected of failing a lie-detector test at FBI headquarters. + /AvmI08be55TuZCKpwMl8R9NzbgR.jpg + + + 1981-04-15 + Reseda Rose + /iykhR0oZtVgitJip1OtGmjBPiSr.jpg + Ralph uses his suit to help Rhonda, one of his students, after her mother is kidnapped by the Russians. + /iykhR0oZtVgitJip1OtGmjBPiSr.jpg + + + 1981-04-29 + My Heroes Have Always Been Cowboys + /brzMoRzcYxLvbvQrs6vQCe1N6Ye.jpg + Ralph reconsiders his suit of powers after a flying mistake almost takes out a bus full of tourists. Bill also reconsiders his job path when one of his heroes is suspected of plotting out the theft of a precious diamond. + /brzMoRzcYxLvbvQrs6vQCe1N6Ye.jpg + + + 1981-05-06 + Fire Man + /tRwpcDzscT2kJwMPGnPN8r9Faiw.jpg + Ralph lends Tony a hand by finding him a job as a car repossesser. When Tony is arrested for arson, Ralph and Bill team up to find the real criminal. + /tRwpcDzscT2kJwMPGnPN8r9Faiw.jpg + + + 1981-05-13 + The Best Desk Scenario + /fbkOItmsFfl7P3y5ZUt6p2t5Tf9.jpg + At FBI headquarters, promotions are being handed out. However, Bill considers retiring from his job. Meanwhile, Ralph must use his suit to save Pam when she discovers her boss is the head of an underground operation. + /fbkOItmsFfl7P3y5ZUt6p2t5Tf9.jpg + + + /nqbMWu5PO0WY9VPOyH1Zr4kAuvc.jpg + Season 1 + + + 1981-11-04 + + + 1981-11-04 + The 200 MPH Fastball + /q0AZrb6T40AkulrgAYIGLmMi3Zi.jpg + Ralph dons a baseball suit to trap Latino revolutionaries who plan to finance a coup by fixing ball games. + /q0AZrb6T40AkulrgAYIGLmMi3Zi.jpg + + + 1981-11-11 + Operation Spoilsport + /nrAO5GtGA7MC1wlhGPerx2xmZxZ.jpg + Ralph and Bill must stop World War III by defusing a corrupt military leader's plans to launch a suprise missile attack against Russia. + /nrAO5GtGA7MC1wlhGPerx2xmZxZ.jpg + + + 1981-11-18 + Don't Mess Around with Jim + /kO6z04gevyrPZ2HlHkBf8XyrKGW.jpg + Ralph and Bill are kidnapped by a tycoon that actually had his own suit given to him years ago by the aliens. The suit corrupted this man to use it for personal fortune, and he did not lose the instruction book. The aliens did not like the way he was using the suit, and they took it away from him. + /kO6z04gevyrPZ2HlHkBf8XyrKGW.jpg + + + 1981-11-25 + Hog Wild + /zSer6Io4aDKkGNyWZ1149n8mGRP.jpg + A motorcycle gang steals the super-suit, and tries to use it to take over a town. It only works on Ralph, so they must force HIM to do their dirty work while holding Bill captive. + /zSer6Io4aDKkGNyWZ1149n8mGRP.jpg + + + 1981-12-02 + Classical Gas + /8svN8ruaYgs1vRwZwkNj4ptRhdo.jpg + Ralph's students start a band, and a promoter lands them a spot on a big ticket concert while trying to get Pam to go out with him. + /8svN8ruaYgs1vRwZwkNj4ptRhdo.jpg + + + 1981-12-09 + The Beast in Black + /3wkdSdh9YVoLhfdqN0lOVwuYAkj.jpg + Ralph finds a window into the 4th dimension while scouting an old house. Bill gets possesed by a woman's spirit, and Ralph must return her through that window. + /3wkdSdh9YVoLhfdqN0lOVwuYAkj.jpg + + + 1981-12-16 + The Lost Diablo + /eCqnj79F06Sx9noXMlxaf6sCKSo.jpg + Bill has a treasure map, and takes Ralph and his class out to the desert to find the lost Diablo Gold Mine that vanished a long time ago, and are met with resistance from the local thieves. + /eCqnj79F06Sx9noXMlxaf6sCKSo.jpg + + + 1982-01-06 + Plague + /9CLOIDvq9VO5Kuy0ZDYCEfqcYyS.jpg + A psycho military cult leader tries to spread the small-pox virus. + /9CLOIDvq9VO5Kuy0ZDYCEfqcYyS.jpg + + + 1982-01-13 + A Train of Thought + /yd5BqAuKlR8p2LejEM36wxSTCgL.jpg + Ralph crashes head first into a train, and gets amnesia. Pam and Bill have to convince him that the suit really works. + /yd5BqAuKlR8p2LejEM36wxSTCgL.jpg + + + 1982-01-20 + Now You See It... + /wNclRBB7l3JfGSSpK0n4ZjdRl4N.jpg + While practicing flying in the desert with Bill, Ralph gets a vision of a plane crash. It's the suit showing it to him, and Bill can only see it when he touches Ralph. They rush to the scene to find no plane, and figure out that it must be something that hasn't happened yet, and they're supposed to prevent it. We come to find out that Pam is on that plane, and it's been hijacked. To make matters worse, the plane has an experimental cloaking device that makes it invisible to radar, and the Air Force would rather shoot it down than have the plane in enemy hands. + /wNclRBB7l3JfGSSpK0n4ZjdRl4N.jpg + + + 1982-01-27 + The Handpainted Thai + /9vL7bGDuQDwVkPqnIZCbKYutXaM.jpg + Years ago, prisoners of war were brainwashed to respond to a code phrase. Now, someone is using them to commit acts of sabotage. Bill and Ralph investigate, but Bill inadvertently falls under a hypnotic trance, leaving the heroics up to Ralph. + /9vL7bGDuQDwVkPqnIZCbKYutXaM.jpg + + + 1982-02-03 + Just Another Three Ring Circus + /kEmzuCLyXke5LPzQsKWY1SGAExO.jpg + Ralph takes a job at the circus as a human cannonball while trying to help Bill bust a crime ring that involves a phony dating service. + /kEmzuCLyXke5LPzQsKWY1SGAExO.jpg + + + 1982-02-10 + The Shock Will Kill You + /vWyvMTMJHw1Xj9jD8qvQrfNhsET.jpg + A space shuttle is about to crash, and only Ralph can save it. He does so, but ends up supermagnetized, perhaps permanently. Worst of all, a strange creature aboard the shuttle heads towards Los Angeles, electricuting all who get in its way. + /vWyvMTMJHw1Xj9jD8qvQrfNhsET.jpg + + + 1982-02-17 + A Chicken in Every Plot + /yT0QOw1aEMzT7MXeXoNcwtBZblm.jpg + Ron O'Neill, John Hancock, Thalmus Rasulala, Lincoln Kilpatrick Scenario: When an old FBI buddy invites Bill to his Caribbean retreat, Maxwell takes Ralph, Pam and the students along. Unfortunately, they find themselves involved in a voodoo plot to take over the island's government. + /yT0QOw1aEMzT7MXeXoNcwtBZblm.jpg + + + 1982-02-24 + The Devil and the Deep Blue Sea + /97DWi3ZaGCKPeqdu3Hpmf0q7Nkh.jpg + Ralph and Bill hunt for the sea creature ""Carrie"" in the Bermuda Triangle thinking that the monster may be responsible for all of the boats that disappear there. They undercover a stolen boat ring, and never find the creature. + /97DWi3ZaGCKPeqdu3Hpmf0q7Nkh.jpg + + + 1982-03-03 + It's All Downhill from Here + /5o6z6PNc2y2sdzmykI9Dly7TAnS.jpg + Ralph skis like a pro with the suit on, and stands in at the Olympics for a Russian skiier so the man can defect to America, and hand over top secret information that he stole. + /5o6z6PNc2y2sdzmykI9Dly7TAnS.jpg + + + 1982-03-17 + Dreams + /lH8t80pvKLGLmC90il7mzYbjCRa.jpg + An act of kindness backfires when Ralph uses the suit to help a coworker with a personal project. This leads his other co-workers to take daring chances for their own shots at success. Soon, he must don the super suit not only to prevent them from ruining their lives, but also to save Bill from a vengeful, recently paroled killer. + /lH8t80pvKLGLmC90il7mzYbjCRa.jpg + + + 1982-03-24 + There's Just No Accounting... + /1794C253fxknVwr4OQSJlkzDJjF.jpg + Bill convinces the parents of a kidnap victim to pay the ransom, certain that Ralph can recover it when he saves their little girl. Ralph finds himself being audited by an overzealous IRS agent who's convinced he took the ransom money. Meanwhile, Ralph and Bill keep getting shot at in drive-by shootings, but by who? + /1794C253fxknVwr4OQSJlkzDJjF.jpg + + + 1982-03-31 + The Good Samaritan + /5sGiAV0UHvolri0PQk8lGfIGwjb.jpg + Tired of using the suit to fight crime, Ralph decides to branch out. He tries to intervene in a battle between an old man fighting for his home and the city taking it away, but Bill has him on the hunt for bank robbers. + /5sGiAV0UHvolri0PQk8lGfIGwjb.jpg + + + 1982-04-07 + Captain Bellybuster and the Speed Factory + /wxGHlDVynhAIh4qZImXjsczD4ey.jpg + Bill recieves hot tips on a speed factory working out of a fast food chain, and a newspaper reporter publishes pictures of Ralph flying. + /wxGHlDVynhAIh4qZImXjsczD4ey.jpg + + + 1982-04-14 + Who's Woo in America + /s0gVwLwcMRD0KqU1iyCCVrN0TTF.jpg + Ralph's mother is re-marrying to a man who planted a much wanted micro-chip in her engagement ring. + /s0gVwLwcMRD0KqU1iyCCVrN0TTF.jpg + + + 1982-04-28 + Lilacs, Mr. Maxwell + /wmV28V18aE4xVldB0eOfSeiKvCi.jpg + Bill falls in love with a female FBI agent, and wants to tell her about the suit. She turns out to be a spy, and is ordered to kill him. + /wmV28V18aE4xVldB0eOfSeiKvCi.jpg + + + /gAAIgjM8fLKw5fqE3zY4bucEFd7.jpg + Season 2 + + + 1982-10-29 + + + 1982-10-29 + Divorce Venusian Style + /jPrlw4pctSX2a4pqL71s4ou6M9c.jpg + After a loud argument with Bill, Ralph quits the hero business and turns in his super-suit. Unknown to both men, a gang of neo-Nazis plans to murder them. + /jPrlw4pctSX2a4pqL71s4ou6M9c.jpg + + + 1982-11-05 + The Price is Right + /kpOUU83o5x1klXxByVFwiWJNfjf.jpg + While attending a high-school reunion, Ralph discovers that the wife of a famous pro football player is held hostage to ensure her husband will throw the big game. + /kpOUU83o5x1klXxByVFwiWJNfjf.jpg + + + 1982-11-12 + This is the One the Suit Was Meant For + /hGGCJPsTndLUwnbdJrVVKFHv0Rs.jpg + With their relationship in trouble, Ralph convinces Pam to go on a vacation without Bill or his suit. Unfortunately Bill shows up unannounced with his suit and trouble ensues. + /hGGCJPsTndLUwnbdJrVVKFHv0Rs.jpg + + + 1982-11-19 + The Resurrection of Carlini + /tOTREYpQA0rxPdFIYqCRwawBWKd.jpg + A magician killed performing his greatest trick seemingly returns from the grave to murder his three rivals. Ralph must use his suit to out trick the would-be killer. + /tOTREYpQA0rxPdFIYqCRwawBWKd.jpg + + + 1983-01-06 + The Newlywed Game + /1JtfmK24EnDN2p6Q8MpDYNxSndq.jpg + Ralph and Pam's wedding is almost ruined when Ralph receives special orders from the President to fly a mission over the North Pole. Bill discovers the orders were faked, and that Ralph has accidentally given the Russians valuable military secrets. + /1JtfmK24EnDN2p6Q8MpDYNxSndq.jpg + + + 1983-01-13 + Heaven is in Your Genes + /6PBmSyqKnbkNad2r9EjWvGvbggc.jpg + A former Nazi genetic engineer fakes Bill's death to use him in an experiment, but Ralph realizes his friend is still alive. He flies off to rescue Bill and the evil doctor's other victims, but a genetic horror created in an earlier experiment waits to battle him. + /6PBmSyqKnbkNad2r9EjWvGvbggc.jpg + + + 1983-01-20 + Live at Eleven + /yKjEhq47czk03qTCj3u9nyOO0zB.jpg + An Aging TV anchorman plans to retire in grand style. He hires a band of mercenaries to sabotage a nuclear plant, hoping that his coverage of the event can launch a Presidential campaign. Ralph must stop the plant from exploding, but the saboteurs, now dying of radiation poisoning, are determined to succeed. + /yKjEhq47czk03qTCj3u9nyOO0zB.jpg + + + 1983-01-27 + Space Ranger + /QgPCgEnBRJInhF9LifWdFpWrvx.jpg + One of Ralph's students invents a radio telescope capable of decoding Russian satellite messages. The KGB tries to steal his system. When that maneuver fails, they decide to kill him before he can share his discovery with the CIA. + /QgPCgEnBRJInhF9LifWdFpWrvx.jpg + + + 1983-02-03 + Thirty Seconds Over Little Tokyo + /qn65MUcInSkQBusAKIoCY20QxsH.jpg + A young Chinese scientist has invented a deadly particle "ray gun" weapon. A local gang kidnaps his uncle, hoping to obtain the gun. Bill's plan to save the Uncle backfires, and Ralph must test his suit against the deadly ray. + /qn65MUcInSkQBusAKIoCY20QxsH.jpg + + + Wizards And Warlocks + /kvY6ao8yJOctZ11mjUK4q8tveK4.jpg + King Abu Al-Fahad asks Ralph and Bill to help find his son, Prince Aha, who was kidnapped by Middle Eastern terrorists while playing a Dungeons and Dragonsesque game, Wizards and Warlocks. Their search leads them from Aha's college campus -- where they meet Aha's Keeper of the Clock, Joey Margolis -- to the game's author himself, Norman Fackler. + /kvY6ao8yJOctZ11mjUK4q8tveK4.jpg + + + It's Only Rock and Roll + /4uaoFQIPuHTYygyXFcG9rM95qmJ.jpg + Bill is called by the manager of a rock group that is aboard a plane threatened by a bomber, who has hidden a device set to explode if the plane descends below 1000 feet. Ralph flies into action, but matters escalate when Pam is kidnapped and a band of bikers threaten Bill's life. + /4uaoFQIPuHTYygyXFcG9rM95qmJ.jpg + + + Desperado + /m6k2XlIDYjcyhZwTzUpDNOh235o.jpg + A weekend in the country leads Ralph, Pam and Bill into a race to save a wild stallion from a cruel rancher. The man blames the horse for a crippling injury. His men are also selling horses for use as dog food. + /m6k2XlIDYjcyhZwTzUpDNOh235o.jpg + + + Vanity, Says the Preacher + /9uYDyHFKpjabSo20wisnzkdXEpj.jpg + It seems that 30 years ago Bill helped some revolutionaries overthrow a corrupt regime in an unnamed Central American country, where he is now regarded as a hero. But now Bill's old revolutionary compadres have turned up, and they soon kidnap him and try to get him to help lead another revolution. + /9uYDyHFKpjabSo20wisnzkdXEpj.jpg + + + 1986-02-13 + The Greatest American Heroine + When Ralph's identity is made public, the aliens require him to give up his suit. Much to Bill's chagrin, Ralph chooses to give the suit to Holly Hathaway, who is as far to the left as he is to the right. + + + /3dMq2CKPuV4UXXETQBEONY7mLsu.jpg + Season 3 + + + + + /eCb5gmt94376DBJCl54SbPifkkH.jpg + Daniel D'Or + Starhunter + 60 + Sci-Fi & Fantasy + http://www.starhunteronline.co.nr/ + Starhunter + The Movie Network + 2 + CA + Starhunter is a Canadian science fiction television series that aired for two seasons. The series was produced in Canada by The Danforth Studios Ltd. in association with Alliance Atlantis with some photography in the United Kingdom. Grosvenor Park Productions UK Ltd. was the co-producer from the United Kingdom, and Le Sabre SA, an affiliate of Canal+, was the French co-producer, with major unofficial German participation by Das Werk. + +In season one, Starhunter starred Michael Paré, Tanya Allen, Claudette Roche and featured Murray Melvin and Stephen Marcus. In season two Clive Robertson, Dawn Stern and Paul Fox were added to the cast, while the original actors except Allen and Marcus were dropped. Contrary to the wishes of the series creators, the investors in the second season blocked the return of Paré and replaced Melvin. + +Season one was nominated by the Directors Guild of Canada for a Best Production Design award, and for a "Spaceys Award" by Space: The Imagination Station. + +The first run of the first season aired in Canada, from 1 November 2000 to 28 March 2001. Starhunter was syndicated in the United States by Western Television Syndicators, going to air in the fall of 2002. The first season continues to re-run in many territories. The second season had its first run in Canada from 9 August 2003 to 3 April 2004. + /xvNgYHyTNntvpbCphS22J1TQ4mX.jpg + 7.0 + + + 2000-11-01 + + + 2000-11-01 + The Divinity Cluster + /4K9VE4TZXIBy9sfm9DFfQCfr59m.jpg + Dante is reunited with MacDuff, an old friend who is dying from cancer. Luc's father, Darius, asks her to capture a geneticist who may hold the key to an alien gene known as ""The Divinity Cluster"". + /4K9VE4TZXIBy9sfm9DFfQCfr59m.jpg + + + 2000-11-08 + Trust + /rGPA60BrwFAZE16B10Wr3VYNplQ.jpg + Against Dante's and Luc's warnings, Percy becomes friends with one of a pair of cousins that The Tulip is transporting to an automated prison on Mercury. + /rGPA60BrwFAZE16B10Wr3VYNplQ.jpg + + + 2000-11-15 + Family Values + /jPE0M2BCpp3cbV8U9uPKvpulNTA.jpg + While hunting a pair of con artists on Mars, Dante and Luc encounter a Raider with a boy who may be Dante's kidnapped son. Percy becomes trapped in Dante's VR device, which simulates his dead wife, Penny. + /jPE0M2BCpp3cbV8U9uPKvpulNTA.jpg + + + 2000-11-22 + Siren's Song + /oXc7pMwzmQ5DmMz4QTOmjDKwTPk.jpg + After Dante and Luc capture Petrakis, an escaped prisoner who hijacked a luxury yacht, the Tulip is commandeered by Special Forces. They are transporting Ire, a girl with amazing powers who may be infected with a deadly virus. + /oXc7pMwzmQ5DmMz4QTOmjDKwTPk.jpg + + + 2000-11-29 + The Man Who Sold the World + /brHgzfJmHHeUWAKN1RrINPuO9ve.jpg + On a mission to a mining facility on Pluto, Dante and Luc attempt to capture Novak, a war criminal responsible for sacrificing thousands to the Divinity Cluster. Percy and Caravaggio deal with a holographic computer virus named ""Billy Ray"", who is wreaking havoc aboard The Tulip. + /brHgzfJmHHeUWAKN1RrINPuO9ve.jpg + + + 2000-12-06 + Peer Pressure + /beKEboXKIT4of92ftnUhJY2jxQe.jpg + Dante arrests a doctor and her son, unaware that she has a device that can control his mind. + /beKEboXKIT4of92ftnUhJY2jxQe.jpg + + + 2000-12-13 + Frozen + /hm0kREUZRCgA8dXYnFod4lrFuJT.jpg + While transporting Etienne to a prison, the Tulip receives a distress call from Dr. Devon. Devon is pursued by Raiders after freeing his son, Ryan, from an Orchard medical research facility. + /hm0kREUZRCgA8dXYnFod4lrFuJT.jpg + + + 2000-12-20 + Past Lives + /5jsMPm8077Zbb3UIdnOzPdYtq1N.jpg + Rudolpho instructs the crew to pick up a murder suspect who turns out to be Luc's ex-husband, Eric. Eric has escaped from an Orchard medical facility where he was injected with an experimental antibody that has killed all previous recipients in 48 hours. + /5jsMPm8077Zbb3UIdnOzPdYtq1N.jpg + + + 2000-12-27 + Order + /9AnALHfRMrlh4fhR6CYoHDeIQPS.jpg + The crew receives a radio transmission from a religious cult who plan to commit mass suicide by crashing into the sun. Luc falls under the unnatural influence of their leader, Brother Thirteen. + /9AnALHfRMrlh4fhR6CYoHDeIQPS.jpg + + + 2001-01-03 + Cell Game + /r2AhhwagE5roIdIRkyYuCHKSvYU.jpg + When a rival group of bounty hunters tries to steal the crew's prisoner, Percy is arrested for assaulting one of the bounty hunters, a member of the Oberon Militia. Rex, the leader of the rival group, uses Percy's arrest to blackmail Dante into freeing her brother, Goran, from the Nereid prison. + /r2AhhwagE5roIdIRkyYuCHKSvYU.jpg + + + 2001-01-10 + Black Light + /c92y8spXCt0FmaXHV086LHlyJLa.jpg + When a short circuit on the lower decks of the Tulip brings an unexplored section of the ship to life, Colonel Bramwell is released after 50 years in cryogenic sleep, believing Earth still is at war with the Raiders. Dante plans to use Bramwell's legendary status with the Raiders to find his son. + /c92y8spXCt0FmaXHV086LHlyJLa.jpg + + + 2001-01-17 + Goodbye, So Long + /6qPwCk1TziwJjY49lzPLMoueWMW.jpg + While on a shopping trip to find parts for the life support system in the Captain's Quarters, Dante is reunited with Marco, an old friend who was a rival for Penny's affections. Marco's business partner, Ike, works with the Raiders to locate special seeds that can grow in any climate. Percy begins to suspect Luc has a hidden agenda. + /6qPwCk1TziwJjY49lzPLMoueWMW.jpg + + + 2001-01-24 + The Most Wanted Man + /6BvuyAaNPRYk0iEk8A1bVqM0CDQ.jpg + Every bounty hunter and law enforcement officer in the solar system seems to be after Harman, a former associate of Darius who may be the ""Rosetta Stone"" for the Divinity Cluster. Harman has developed superhuman speed, and refuses to talk to anyone but Darius. Dante's and Percy's suspicions of Luc come to a head when she helps Harman escape from The Tulip. + /6BvuyAaNPRYk0iEk8A1bVqM0CDQ.jpg + + + 2001-01-31 + Half Dense Players + /er94VcujvOTfDr8qARkADtO6BxZ.jpg + Darius pulls strings with Rudolpho to have the Tulip transport Arquette, an artist suspected of murder. The Orchard believes that Arquette's obsession with the large, swirling storm on Jupiter has given her extra-dimensional sight. Percy discovers they are being trailed by a cloaked ship that may be over three million years old. + /er94VcujvOTfDr8qARkADtO6BxZ.jpg + + + 2001-02-07 + Dark and Stormy Night + /uzxmhCJlGFty0GUFKjimiJhThcn.jpg + Darius boards The Tulip to help Luc inform Dante about the Divinity Cluster. + /uzxmhCJlGFty0GUFKjimiJhThcn.jpg + + + 2001-02-14 + Super Max + /hWB21ScaH9Kurq53Q6P9yb5ruyh.jpg + When Rudolpho sells The Tulip to Max for conversion to a prison ship, Dante must infiltrate Max's organization, and fight off advances from Max's wife, Zelda. + /hWB21ScaH9Kurq53Q6P9yb5ruyh.jpg + + + 2001-02-21 + A Twist in Time (1) + /agUmD4rmvqJKOhanf3ZElqZcmg2.jpg + While transporting a dangerous serial killer, The Tulip is diverted to search for survivors after an accident at a secret research station on Triton. When the ship is disabled by the station's graviton experiment, Dante stumbles on a time loop that gives him multiple chances to prevent Percy's death. + /agUmD4rmvqJKOhanf3ZElqZcmg2.jpg + + + 2001-02-28 + Eat Sin (2) + Caught in separate Bubble Universes, each member of the crew must outwit separate versions of their prisioner, insane serial killer Five. + + + 2001-03-07 + Bad Girls + /8HfWqOECF97TgQ7zCln2uy2vaFd.jpg + Dante agrees to transport Rudolpho's friend, Stephen Hamilton, and his two daughters, unaware that Hamilton is being blackmailed by The Orchard to spy on Dante. + /8HfWqOECF97TgQ7zCln2uy2vaFd.jpg + + + 2001-03-14 + Bad Seed (1) + /baiaVoVLlNibNuiYlAkwQ0J0B3M.jpg + Dante is kidnapped by Tosca, an Orchard agent who plans to use Dante to find Travis, who she believes is the key to The Divinity Cluster. During the kidnapping, Caravaggio is infected with a virus that gives him a second, evil personality. The Tulip is boarded by Navarre, a rogue Orchard scientist who wants to help Luc rescue Dante. While Percy is trying to save the ship from self-destruction by Caravaggio, The Tulip is again boarded - this time by Salomea, a Raider who claims she is working for Travis. + /baiaVoVLlNibNuiYlAkwQ0J0B3M.jpg + + + 2001-03-21 + Travis (2) + /bzX0DkbCqW3V0mrAJd5XM8ilqSa.jpg + The Tulip receives a cryptic massage from Percy that leads Dante to the special seeds that are concealed in her quarters. Dante bargains with the Raider leader, Senaca, to exchange the seeds for Percy and Travis (known to the Raiders as Zephryn). Travis reveals Penny's role in early experiments with The Divinity Cluster. + /bzX0DkbCqW3V0mrAJd5XM8ilqSa.jpg + + + 2001-03-28 + Resurrection (3) + /qA3VZzKSYGrJSOVbkWH89mJXahR.jpg + Tension and mistrust forms between the crew members as Travis becomes a reluctant member of The Tulip's crew. Dante discovers The Raiders' true intentions for the seeds, but is unsure how to intervene with The Tulip damaged in their escape from The Raiders. Luc is captured by Tosca who is assisting The Raiders with their mission. Eccelston returns from ""the dead"" with dire warnings about The Divinity Cluster. + /qA3VZzKSYGrJSOVbkWH89mJXahR.jpg + + + /8UB95GF2ad4MyG3HK6vgjC5guXR.jpg + Season 1 + + + 2003-08-09 + + + 2003-08-09 + Rebirth + /4lvMOumWfoWc6BQEEckUdwLTCfM.jpg + Percy emerges from hyperspace to discover that 15 years have passed, and Caravaggio has had his graphic files updated. Unsure of what to do with The Tulip, she reluctantly teams up with bounty hunters Travis, Rudolpho, Callie and Marcus. Zavras, a Raider and former clansman of Travis, uses Dr. Daniel Rochaz to lure Travis out of hiding. + /4lvMOumWfoWc6BQEEckUdwLTCfM.jpg + + + 2003-08-16 + Star Crossed + /A74g8dLEiR62rVHVVXGMlmlwJc.jpg + Travis and Callie are hired by the Jupiter Federation to arrest Dakkota 79, a Raider leader on the verge of starting a war with the Verran Clan. Dakkota's girlfriend, Cira, may hold be a link to Travis' past. Rudolpho's inquiries into a possible bounty on Travis leads to complications, both with an old business associate, and with his new crewmates. + /A74g8dLEiR62rVHVVXGMlmlwJc.jpg + + + 2003-08-23 + Biocrime + /9Ijfj7mzde2MCNCChO6Yqe8VcsL.jpg + When Marcus and Callie encounter Taryn, a former girlfriend of Marcus', panicked and begging for help, the crew discovers that she has been genetically altered. Travis is hired to apprehend Father Abode, a former student of Dr. Novak, who has been producing genetic mutants for the pleasure of wealthy clients. + /9Ijfj7mzde2MCNCChO6Yqe8VcsL.jpg + + + 2003-08-30 + Chasing Janus + /kAL4qUaa2eBe7Ac3cOhucXoQWcf.jpg + Travis and Callie's plans to capture ""low-level smuggler"" Strasser turn bad when Strasser recognizes her. Callie is injured, and the crew attempts to keep her alive with a damaged cryonic chamber. The Tulip sets course for Mars in hopes that Callie's estranged father, Janus, has her ""blank"" - a clone kept in stasis, and used for organ replacement. + /kAL4qUaa2eBe7Ac3cOhucXoQWcf.jpg + + + 2003-09-06 + Spaceman + /uE81778yAQSCHLdadbY6b1HlPH3.jpg + While exploring an uncharted debris field, the Tulip discovers a sarcophagus floating in space. Mishkin, the sarcophagus' lone occupant, spreads a disease among the crew that makes Rudolpho and Marcus question their positions aboard the ship. + /uE81778yAQSCHLdadbY6b1HlPH3.jpg + + + 2003-09-13 + Becoming Shiva + A Terran terrorist group protesting the ecological disastors that have plagued Earth are suddenly put on the map when thier methods of only targeting buildings and space structures accidently takes lives. + + + 2003-09-20 + The Third Thing + /24FSfGDiPCSZImc1WXCMQvRmsMc.jpg + The crew of the holovision reality series, ""The Third Thing"", follow the crew of the Tulip. Marcus, wanting more hands-on experience, is given the job of capturing a petty criminal. + /24FSfGDiPCSZImc1WXCMQvRmsMc.jpg + + + 2003-09-27 + Torment + /mLJeHprzu7mXDhWsSMO632Hvl8m.jpg + Travis and his crew must rescue a man's parents who were kidnapped 50 years earlier, but are have only aged 8 months due to time dilation. Rudolpho is forced to bring his rebellious teenage daughter, Serena, aboard the ship. + /mLJeHprzu7mXDhWsSMO632Hvl8m.jpg + + + 2003-10-04 + Painless + /pcTymnEGDBZoJezm8iVlzMB5jON.jpg + The son of Roan Gerick, a family friend of the Montana family, is killed by Anestha, a new street drug the turns pain into pleasure. Travis hunts for Bliss, the leader of the narcotics ring, against Rudolpho's better judgement. + /pcTymnEGDBZoJezm8iVlzMB5jON.jpg + + + 2003-10-18 + Skin Deep + /As99ZsURQyt9a1zxHuAWhKGRZfV.jpg + Callie's reunion with Lena Bannen, an old friend, is interrupted when a rival bounty hunter attempts to arrest Lena for murder. Percy and Marcus try to find an antimatter stabilizer for the hyperdrive, and are forced to do some bonding when they become stranded in Syn City. + /As99ZsURQyt9a1zxHuAWhKGRZfV.jpg + + + 2003-10-25 + Supermax Redux + /uATvqjS02x34yVZ4oAUPSfJk91C.jpg + While transporting Quigley, a prisioner who appears to be quite insane, the crew save the lives of an old nemesis, Max, and his associates. Max offers to share a stash of Onmium, a mineral rarer than diamonds and worth billions of credits. + /uATvqjS02x34yVZ4oAUPSfJk91C.jpg + + + 2003-11-01 + Pandora's Box + /qnsfXMCWoGIw4QY43s6MTyb5J1w.jpg + The Tulip experiences a power drain that leaves them at half power. Unaware that the problem is caused by an experiment conducted by Keres Station, a science research facility, Travis accepts an assignment from their head scientist, Dr. Schofield. He must capture Alrick Quennell, a Raider, and retreive a box containing the deadly Tethys Virus that Quennel stole from the station. + /qnsfXMCWoGIw4QY43s6MTyb5J1w.jpg + + + 2003-11-08 + Stitch in Time + /kRWRwfvL5Ve5D78NLqdy0M0lDdH.jpg + While transporting Ritson, a deserter from the Jupiter Federation Elite Forces, The Tulip answers a distress call from Galentis, a mining platform on the asteroid Ida - a mining platform that should not be there. And for some reason, Percy isn't quite herself. + /kRWRwfvL5Ve5D78NLqdy0M0lDdH.jpg + + + 2003-11-15 + The Prisoner + /gtZGJTPtkTM149pDiAuumH8DvPo.jpg + Travis and Callie pick up Jane Doe, a psychiatric patient with amnesia, who apparently remembers Travis and wants him dead. Marcus finds himself attracted to Dr. Alora Kir, Doe's psychiatrist. The new incarnation of the Orchard, and their leader, Tristan Catchpole, set their sights on Travis, who may have one of his Divinity Cluster genes already activated. + /gtZGJTPtkTM149pDiAuumH8DvPo.jpg + + + 2004-02-14 + Kate + /g4ACYMl4ywJZPn3FgtngGgEPbg9.jpg + The Tulip's collision with a mine leaves the ship floating in space, vulnerable to attack. Percy, unhappy with Caravaggio's recent performance, creates an female AI with more emotion and intuition, but Kate very quickly develops too much independance. + /g4ACYMl4ywJZPn3FgtngGgEPbg9.jpg + + + 2004-02-21 + Rivals + /k481APFrEAadvckQBEbQ45PBXMS.jpg + Callie's irritation with the Tulip's ongoing technical problems is aggravated when the stylish Seattle and its debonair captain rescue the crew from a problem it can't handle. + /k481APFrEAadvckQBEbQ45PBXMS.jpg + + + 2004-02-28 + The Heir and the Spare + /jS7xZZfJ01u5BswbqXCQsD9MGp9.jpg + A con man preying on older women has a mysterious link to Marcus' genes. Meanwhile, Percy is going through some mental difficulties. + /jS7xZZfJ01u5BswbqXCQsD9MGp9.jpg + + + 2004-03-06 + Just Politics + /pTufsTEZCXoEPs6spFFWEQlHeyr.jpg + Rudolpho is suspicious of a trade minister the Tulip has been hired to transport to the Manheim Asteroid Belt to clinch a deal. + /pTufsTEZCXoEPs6spFFWEQlHeyr.jpg + + + 2004-03-13 + Negative Energy + /zoUDvRO5TLYXtTG43QezhnFYaVZ.jpg + Marcus believes he can convert the ship's hyper drive to use negative energy instead of anti-matter, but will need Durenium to produce it. Marcus attempts to find an old contract who may be be able to put him in contact with a seller of this rare and illegal element. Executive Chief Inspector Tibbit boards The Tulip to make sure that engines are in proper working order before granting Caravaggio's application for a change in power source. + /zoUDvRO5TLYXtTG43QezhnFYaVZ.jpg + + + 2004-03-20 + License to Fill + /3oh03lGbeNP4rS5Aou68g7TGQlq.jpg + A vengeful bureaucrat has the Tulip crew court-martialed for a license violation. + /3oh03lGbeNP4rS5Aou68g7TGQlq.jpg + + + 2004-03-27 + Hyperspace I + /2lwWTsmnashLZU6vfl2Kf82Z0Dz.jpg + Marcus finds an obscure scientist whose theories may hold the secret to getting the Tulip into hyperspace. + /2lwWTsmnashLZU6vfl2Kf82Z0Dz.jpg + + + 2004-04-03 + Hyperspace II + /y4FytQy1eYkU5hcBXXuyakfQZg1.jpg + The ship's crew is trapped in separate folds of space-time. Meanwhile, Travis learns more about the Divinity Cluster. + /y4FytQy1eYkU5hcBXXuyakfQZg1.jpg + + + /ft28V4a87JStexALO6yQxFCDiF.jpg + Season 2 + + + + + /p4DkFGXeyMLZGwaOOvrm9H496Mf.jpg + Jason Smilovic + My Own Worst Enemy + 60 + Drama + + My Own Worst Enemy + NBC + 1 + US + My Own Worst Enemy is an American television drama that aired on NBC in 2008. It premiered on October 13 and ended on December 15 after 9 episodes. The series was produced by Universal Media Studios. Jason Smilovic was the executive producer; David Semel was the director and executive producer. The final episode ended with a cliff-hanger, and the major plot lines ended without resolution. + +The series followed the life of American secret agent Edward Albright and his cover, Henry Spivey, who had no knowledge of his double life. Albright, played by Christian Slater, was implanted with a chip allowing his handlers to physically switch Albright's personality to that of his cover. However, in the pilot episode, there was a malfunction which caused Albright's personalities to switch at random, revealing his secret life to his alias. Henry was then thrown into the highly dangerous life of Edward, with no real way for the two to communicate except through short cell phone video messages. + +General Motors was a promotional sponsor of the show, and the new SUV model Chevrolet Traverse, along with the 2010 Chevrolet Camaro, appeared as cars for the program's characters via a product placement agreement. + /tleEcJG51loFWRrB0EMrevTVsrK.jpg + 7.0 + + + 2008-10-13 + + + 2008-10-13 + Breakdown + /zVcMyT7MyNEvQFwjOIqzMavF1GX.jpg + Meet Henry, an average man with a wife, two kids and a dog. Meet Edward, an operative who speaks several different languages and is trained to kill. What do they have in common? They are the same person. When Henry finds out about Edward he is unsure of who and what he can believe in. + /zVcMyT7MyNEvQFwjOIqzMavF1GX.jpg + + + 2008-10-20 + The Hummingbird + /hLjnUVf440oUqyb1sflZIBO5uIF.jpg + Edward and Raymond must kidnap a German software engineer with information about a possible terrorist attack. Henry tries to deal with the fact that all his childhood memories were made up. + /hLjnUVf440oUqyb1sflZIBO5uIF.jpg + + + 2008-10-27 + Hello, Henry + /apDxjoRwGa16Q15KVeQK8zhf1p9.jpg + Edward must go to Mexico and get schematics to Russia's next generation nuclear bomb; Tom's wife becomes suspicious of his many business trips and hires a private investigator. + /apDxjoRwGa16Q15KVeQK8zhf1p9.jpg + + + 2008-11-10 + That Is Not My Son + /vvcJppNCzqcARZfvh3lzcJluSK7.jpg + Henry wakes up and finds himself in the midst of gunfire; Mary Grady discovers that her suspicions about Tom are true; a relationship between Edward and Dr. Skinner is revealed. + /vvcJppNCzqcARZfvh3lzcJluSK7.jpg + + + 2008-11-17 + The Night Train To Moscow + /xiZphAAPLHuCCNk3y245MXrJzik.jpg + Henry suspects his wife is a spy. Edward makes a deal which could cost him dear in exchange for information with the KGB Agent Mariam Shefer. Dr. Norah Skinner investigates Angie and in the process realizing how much Edward means to her. + /xiZphAAPLHuCCNk3y245MXrJzik.jpg + + + 2008-11-24 + High Crimes and Turducken + /4Ht9wU1GdWJw8Zrlxepmr6al7kT.jpg + Edward risks national security to find the identity of his parent's killer; Angie prepares for bad news when her father visits for the holidays; Tom and his wife Mary rekindle their strained relationship. + /4Ht9wU1GdWJw8Zrlxepmr6al7kT.jpg + + + 2008-12-01 + Down Rio Way + /uW0ETegUDMKrMBoHG7JfYUhlbfZ.jpg + Edward confronts Alistair Trumbull as he continues to investigate his parents' death. In order to clear up a dangerous accident, Raymond must meddle with Tom and Mary's wedding. Henry is not happy when Jack buys himself a used car. + /uW0ETegUDMKrMBoHG7JfYUhlbfZ.jpg + + + 2008-12-08 + Love In All The Wrong Places + /VE2KnpG0MyJK6feCPw7r5HW9bq.jpg + Mavis and Alistair disagree on how the American hostages in Angola should be rescued, in which Edward and Raymond found. Also, Edward's relationship with Dr. Skinner is questioned. + /VE2KnpG0MyJK6feCPw7r5HW9bq.jpg + + + 2008-12-15 + Henry & the Terrible, Horrible No Good Very Bad Day + /6mfXCXxX86oSBBkI3UqfSLndXzE.jpg + Edward figures a way to change identities on his own, but it may be risky. Tom meets up with a stranger who is aware of his alter ego, and Edward is sent on a secret mission by Mavis and Alistair on his own without the usual backup. + /6mfXCXxX86oSBBkI3UqfSLndXzE.jpg + + + /oWbiLYBTBYLi9oPjDdpWd0mtmc5.jpg + Season 1 + + + + + /tEcknkeYku4CaHR6Cdd2bmYHY9I.jpg + Annabel Jankel, Rocky Morton + Max Headroom + 60 + Drama + + Max Headroom + ABC + 2 + US + Max Headroom is a British-produced American satirical science fiction television series by Chrysalis Visual Programming and Lakeside Productions for Lorimar-Telepictures that aired in the United States on ABC from March 1987 to May 1988. The series was based on the Channel 4 British TV pilot produced by Chrysalis, Max Headroom: 20 Minutes into the Future. The series is often mistaken as an American-produced show due to the setting and its use of an almost entirely US cast along with being broadcast in the USA on the ABC network. Cinemax aired the UK pilot followed by a six-week run of highlights from The Max Headroom Show, a music video show where Headroom appears between music videos. ABC took an interest in the pilot and asked Chrysalis/Lakeside to produce the series for US audiences. + +The show went into production in late 1986 and ran for six episodes in the first season with eight being produced in season two. + /ttQ88gTleT28qZEBG2R4QNMjhaH.jpg + 7.2 + + + 1987-03-31 + + + 1987-03-31 + Blipverts + /fFrBgW7H91cR2odGfPRdsWUA53Y.jpg + In the near future, when TVs can't be shut off and ratings are all that matter, investigative reporter Edison Carter and his computer-generated alter ego Max Headroom battle to keep the "blank" generation informed. In the opener, Carter stumbles across his own network's cover-up of a sometimes deadly new form of TV advertising called "blipverts". + /fFrBgW7H91cR2odGfPRdsWUA53Y.jpg + + + 1987-04-07 + Rakers Vengeance + /bL22cbfKlqpCSmoW4kwX6SC4dv5.jpg + Theora goes AWOL when she learns her estranged brother is involved in the brutal and dangerous ""sport"" of raking, which the promoters are trying to have legalized and televised. + /bL22cbfKlqpCSmoW4kwX6SC4dv5.jpg + + + 1987-04-14 + Body Banks + /5cKidH349rHdUKRbZw4I9zTLhhG.jpg + Breughel and Mahler are stealing live bodies from the Fringes and selling them to Nightingales Body Bank. The wealthy Plantaganet wants pituitarys from the bodies for an operation which could save his aging mother. While Carter races to save a Fringer girl's life, Cheviot is more concerned that Max is offending Network 23's biggest sponsor, ZikZak, who have decided to buy him. + /5cKidH349rHdUKRbZw4I9zTLhhG.jpg + + + 1987-04-21 + Security Systems + /naFl6vzyrbOH6qos97nUP8Ej2BG.jpg + Carter is accused of credit fraud and becomes a fugitive after delving into the hostile takeover of Security Systems, the world's most powerful corporation. + /naFl6vzyrbOH6qos97nUP8Ej2BG.jpg + + + 1987-04-28 + War + /PX2Z3DzA1mZ91phi1L7sGzVxC6.jpg + In the middle of a global ratings sweep programmer packager Frank Braddock tries to sell Network 23 a package covering the activities of a terrorist group, the White Brigade. Edison and Murray become suspicious when Breakthru TV, who have bought the package, start broadcasting terrorist bombings as soon as they occur. + /PX2Z3DzA1mZ91phi1L7sGzVxC6.jpg + + + 1987-05-05 + The Blanks + /w574u6aBMY1XjDFasfHtRqHO9OR.jpg + As the ""blanks"" -- undesirables with no computer records -- are rounded up and arrested, the networks face permanent cancellation by hackers who threaten to crash the city's entire computer system if their companions aren't released. + /w574u6aBMY1XjDFasfHtRqHO9OR.jpg + + + /iS2dRzydElGQEox98Qhm6YPVAGS.jpg + Season 1 + + + 1987-09-18 + + + 1987-09-18 + Academy + /nbZs5VjcA5B8FkNJ8i6CwiqAIso.jpg + Network 23 becomes the victim of signal zipping - illegal interruption of their satellite feed. When Bryce tracks the zipping to Big Time Television, Reg is arrested and sent for trial by gameshow on ""You the Jury"". Meanwhile Edison and Theora trace the real zippers to the Academy of Computer Sciences, and Bryce's old schoolfriends. + /nbZs5VjcA5B8FkNJ8i6CwiqAIso.jpg + + + 1987-09-25 + Deities + /3Wv5AHF7rcfTs03Vb5E8XCNVQ6C.jpg + The Vu-Age Church is running a phony resurrection service, claiming to be able to store cortical scans of its members and keep them on-line for the day when cloning is perfected and their personalities can be placed in new bodies. Edison is reluctant to pursue the story because Vu- Age's leading televangelist, Vanna Smith, is an old flame. + /3Wv5AHF7rcfTs03Vb5E8XCNVQ6C.jpg + + + 1987-10-02 + Grossberg's Return + /49BY7qItLJEuxefuYOJFAAfnapO.jpg + Rival Network 66 attempts to defeat Network 23 in a ratings-based election by introducing a ""watch while you sleep"" device into its programming to cause people to leave their TV sets on all night. + /49BY7qItLJEuxefuYOJFAAfnapO.jpg + + + 1987-10-09 + Dream Thieves + /65K8caLihJj4pdafzFWbWcUaKMH.jpg + Some shady entrepreneurs are stealing people's dreams and selling them to the highest bidders. Edison goes undercover to expose their lethal business. + /65K8caLihJj4pdafzFWbWcUaKMH.jpg + + + 1987-10-16 + Whackets + /rVLLV4TCbHGep6UHhFMlRENtHEa.jpg + A video narcotic is causing people to leave their TVs tuned to Big Time Television twenty-four hours a day. + /rVLLV4TCbHGep6UHhFMlRENtHEa.jpg + + + 1988-04-28 + Neurostim + /9GasydbXiNBZkKfN6rQKRZjXJ2Q.jpg + Zik-Zak introduces Neurostim, a device to directly stimulate the brain and bypass the need to use television for advertising. + /9GasydbXiNBZkKfN6rQKRZjXJ2Q.jpg + + + 1988-05-05 + Lessons + /quG4ihO9Z0ttnT3RXyOWQsfSC01.jpg + Network 23 censors go a step too far when they try to shut own a secret school in the fringes, because it's using pirated Network 23 instructional programming. + /quG4ihO9Z0ttnT3RXyOWQsfSC01.jpg + + + 1997-04-01 + Baby Grobags + /jpJuyz0E01491pPbMk7aFb2ReJc.jpg + Edison Carter is on the trail of some rather dark people who are stealing babies from the baby pods where they are grown while Bryce carefully considers working for Grossberg and channel 66. + /jpJuyz0E01491pPbMk7aFb2ReJc.jpg + + + /ktYBAOcG8M238vBZuzeX30b3NP7.jpg + Season 2 + + + + + /lW4LMzMFf93xxWjmO0jT75kpvgu.jpg + Chris Roland, Robert Wertheimer + Charlie Jade + 60 + Sci-Fi & Fantasy - Drama + http://www.charliejade.net + Charlie Jade + Space + 1 + CA, ZA + Charlie Jade is a science fiction television program filmed mainly in Cape Town, South Africa. It stars Jeffrey Pierce in the title role, as a detective from a parallel universe who finds himself trapped in our universe. This is a Canadian and South African co-production filmed in conjunction with CHUM Television and the South African Industrial Development Corporation. The special effects were produced by the Montreal-based company Cinegroupe led by Michel Lemire. + +The show started in 2004 and was aired on the Canadian Space Channel. It premiered on the Space Channel April 16, 2005 and aired in Eastern Europe, France, Italy, on SABC 3 in South Africa, on Fox Japan, and on AXN in Hong Kong. The show began airing in the United Kingdom in October 2007, on FX. The Sci Fi Channel in the United States premiered the show on June 6, 2008, but after 2 episodes on Friday prime-time, moved it to overnight Mon/Tue. + /1aEIOFMIVFb6rrXGJCd8IYvJAiD.jpg + 7.1 + + + 2005-04-16 + + + 2005-04-16 + The Big Bang + /e4D9L9HAPQS40RoGHFpFa0MlPqy.jpg + While on a hunt for a women with no identity. Detective Charlie Jade is shot into a strange parallel universe + /e4D9L9HAPQS40RoGHFpFa0MlPqy.jpg + + + 2005-04-16 + Sand + /hl6cPq6waebjyw11woTFCWPhOpy.jpg + While on a hunt for a women with no identity. Detective Charlie Jade is shot into a strange parallel universe + /hl6cPq6waebjyw11woTFCWPhOpy.jpg + + + 2005-04-23 + You Are Here + /9Ge0I7QQmZOb34zuIGWsOlQlS2G.jpg + In the search for answers regarding the explosion, Charlie teams up with journalist Karl Lubinsky. + /9Ge0I7QQmZOb34zuIGWsOlQlS2G.jpg + + + 2005-04-30 + The Power of Suggestion + /v2LTl2hkt5SmhEM4DW5q6SHy48t.jpg + Charlie's investigation lands him in the centre of 01 Boxer's insidious conspiracy to take over Vexcor in Betaverse. + /v2LTl2hkt5SmhEM4DW5q6SHy48t.jpg + + + 2005-05-07 + And Not a Drop to Drink + /sHPbrsEtqjtYp4vwpZIpacDEHQ7.jpg + When Charlie sees 01 pour water on his head, then literally vanish before his eyes, his probing into the bizarre incident turns up evidence that contaminated water supplies have induced visions and psychic powers in several residents of the nearby Vexcor facility. + /sHPbrsEtqjtYp4vwpZIpacDEHQ7.jpg + + + 2005-05-14 + Dirty Laundry + /k7i9viLJpBx8ItjiEDN0oWJWBsO.jpg + Charlie searches for Themba Makande, a civil rights crusader. + /k7i9viLJpBx8ItjiEDN0oWJWBsO.jpg + + + 2005-05-21 + Diamants + /5A4Sp83vp0430LptJ4N06ud3z4Q.jpg + Charlie's hunt for his artificial diamond ring - stolen from the shop where he pawned it to buy a car - leads him to Eckman, a ruthless diamond merchant who has been quietly manufacturing cultured diamonds for Vexcor. Not only is Eckman undermining the Betaverse diamond industry, but he's unwittingly working with Vexcor to create enough artificial diamond chips to implant in every Betaverse citizen. + /5A4Sp83vp0430LptJ4N06ud3z4Q.jpg + + + 2005-05-28 + Devotion + /rblMysc6Q228nR3jiIqKKDjvPvA.jpg + Charlie investigates the case of a new missing person in Cape Town and finds that once again, a local mystery is linked to Vexcorp. Reena is faced with a difficult decision when she meets a young woman who is dying of AIDS. 01 Boxer makes an important trade with his father, at a high price. Also, in a series of flashbacks, Charlie remembers his days working for Vexcorp Security Services. + /rblMysc6Q228nR3jiIqKKDjvPvA.jpg + + + 2005-06-04 + Betrayal + /6LhJx9zHaStKocfSkQNWeXGDMiR.jpg + While 01 recovers in Gamma, Charlie takes his investigation of Vexcor to the next step. Karl has an unfortunate meeting with an informant, Reena visits Vexcor HR. + /6LhJx9zHaStKocfSkQNWeXGDMiR.jpg + + + 2005-06-11 + Identity + /8ozRnRDfctVeoRaI6mh5VZwKvVc.jpg + While tracking some stolen Vexcor property, Charlie runs into somebody unexpected from his past. + /8ozRnRDfctVeoRaI6mh5VZwKvVc.jpg + + + 2005-06-18 + Thicker Than Water + /q7tJ1tClzKErI6twHZoTr4pPhC6.jpg + With help from his friends, Charlie daringly breaks into Vexcor to try and find information to help him get home. + /q7tJ1tClzKErI6twHZoTr4pPhC6.jpg + + + 2005-06-25 + Choosing Sides + /5QZxiG86MoxvaiF0OKMQR9IFvhP.jpg + Charlie decides to have a face to face with 01 Boxer but when he gets to 01's club he learns the police have the same idea. + /5QZxiG86MoxvaiF0OKMQR9IFvhP.jpg + + + 2005-07-02 + Through A Mirror Darkly + /kIhdaHo51NHY0KA9VmQP4dAWAnQ.jpg + Charlie and 01 have a real heart-to-heart while Reena diffuses an explosive situation. Jasmine's day at work is murder. + /kIhdaHo51NHY0KA9VmQP4dAWAnQ.jpg + + + 2005-07-09 + The Enemy Of My Enemy + /4M1sDYhA8geIkCb1aUTaIWBCpCY.jpg + After receiving a package with information on Vexcor, Charlie and Karl track the anonymous source, Reena. + +01 and Julius come to an arrangement. + /4M1sDYhA8geIkCb1aUTaIWBCpCY.jpg + + + 2005-07-16 + Things Unseen + /5isrjDNSvN6NgvZ8pntFHGvN3z8.jpg + Charlie takes Blues Paddock into his confidence and learns he's being hunted. Reena comes face to face with her programmer and, in Alpha, Jasmine and Tukarrs get closer. + /5isrjDNSvN6NgvZ8pntFHGvN3z8.jpg + + + 2005-07-23 + The Shortening of the Way + /po7HetBVAtDQg95Kaod1L1fmpHe.jpg + Charlie goes to see an old friend for help controlling his visions while Reena goes to see an old friend for help controlling herself. + /po7HetBVAtDQg95Kaod1L1fmpHe.jpg + + + 2005-07-30 + Spin + /4u7nxfcClLqtMnReUL3lrpVuBv8.jpg + Finally home Charlie must re-adjust to life in Alpha and find a way to save a friend he has inadvertantly put on Vexcor's naughty list. Brion Boxer visits 01's family in Gamma. + /4u7nxfcClLqtMnReUL3lrpVuBv8.jpg + + + 2005-08-06 + Bedtime Story + /bqgOqBRpnjSNtqekmCs3z6dnMNn.jpg + Back in Alpha, Charlie considers how he has been changed by his time in Beta. 01 meets with a mysterious associate. + /bqgOqBRpnjSNtqekmCs3z6dnMNn.jpg + + + 2005-08-13 + Flesh + /bz6Z3Un1c1huZ9h2zVOfnVQ0WW8.jpg + With Essa and 01 both vying for control of Vexcor, Charlie works with Sew Sew to see that it's the devil he knows that takes the throne. + +In Beta: Karl, Reena and Blues continue their own quest to bring down Vexcor. + /bz6Z3Un1c1huZ9h2zVOfnVQ0WW8.jpg + + + 2005-08-20 + Ouroboros + /tvFKD9BeaAUecGDpp09ZgO0Frkq.jpg + Season Finale: Charlie and his allies must desperately find a way to keep the link from activating and destroying Beta but one of their own has other plans. Can Vexcor and 01 be stopped in time? + /tvFKD9BeaAUecGDpp09ZgO0Frkq.jpg + + + /gZwQd4o6fDzVk5WV2CG0MdOxagA.jpg + Season 1 + + + + + /i6fke2nVpK6iV1rt6hs2shR8zzW.jpg + + The Stand + 90 + Sci-Fi & Fantasy + + The Stand + ABC + 1 + US + The Stand is a 1994 television miniseries based on the novel of the same name by Stephen King. King also wrote the teleplay, and has a cameo role in the series. It was directed by Mick Garris and stars Gary Sinise, Miguel Ferrer, Rob Lowe, Ossie Davis, Ruby Dee, Jamey Sheridan, Laura San Giacomo, Molly Ringwald, Corin Nemec, Adam Storke, Ray Walston and Matt Frewer. It originally aired on ABC starting on May 8, 1994. + /43GfSryOACjBeqbIL6VEwoxOU6t.jpg + 6.8 + + + 1994-05-08 + + + 1994-05-08 + The Plague + When a deadly virus escapes from a government research facility, few prove to be immune to its effects. With symptoms similar to the flu, those who come into contact with it quickly die. One survivor is Stu Redmond, a gas station attendant from Texas, who suffers no ill effects whatsoever. Kept in a medical research facility in Vermont, doctors try to determine why he is still alive. Others that also survive include Frannie Goldsmith who lives with her dad; Nick Andros, a deaf-mute; a rock musician, Larry Underwood; and Lloyd Henreid, in jail for murder. Survivors begin to have dreams, either about an old Afican-American woman, Mother Abigail, or a much scarier evil man. + + + 1994-05-09 + The Dreams + The plague has taken its toll and only those immune to the virus are alive. The forces of good and evil are slowly taking shape. Those that have been dreaming about Mother Abigail are slowly making their way towards her in Nebraska. Stu Redmond joins up with Frannie Goldsmith and others. When Nick Andros and the first of the travelers arrive, Mother Abigail tells them they will soon be moving further west, to Colorado. Randall Flagg is gathering his own forces as he releases Lloyd Henreid from jail. Through her dreams, he also recruits Nadine Cross, who had been traveling with Larry Underwood. + + + 1994-05-11 + The Betrayal + Hundreds are now in Boulder, Colorado with Mother Abigail but Randall Flagg has sent Nadine Cross to infiltrate the group. Unable to seduce Larry, she then sets her sights on Harold. But just as the citizens begin to organize their lives, Mother Abigail leaves Boulder. The residents do become concerned about what Randall Flagg, based in Las Vegas, may be up to and decide to send three people west to find out. + + + 1994-05-12 + The Stand + The final confrontation between good and evil takes shape. Tom gathers information and tries to return to Boulder. With Mother Abigail gone and several members of the committee killed in an explosion, Stu, Larry, Glen and Ralph set off West as instructed. Nadine and Harold set off for Las Vegas but Randall Flagg has something special in store for both of them. Flagg's group starts to fall apart. Trashcan Man decides to set the biggest fire of his life. + + + Season 1 + + + + + /dkBz53Nfju8RiHYBOOzIC3LN15.jpg + Philippe Lyon, David Wolkove + XIII + 86 + Action & Adventure - War & Politics + + XIII + Canal+ + 1 + FR + The first female US President Sally Sheridan is shot dead by a sniper during her Veterans Day speech. Her assassin narrowly escapes the scene with his life, national security hot on his heels - or so it seems. Three months later, an elderly couple discover the body of a wounded man in a tree, wearing a parachute. The young man cannot remember the slightest thing about his own identity. + /g7DTqPi0hNnJApE2jguji6Rm9Et.jpg + 6.2 + + + 2008-10-06 + + + 2008-10-06 + Day of The Black Sun + /7zLzjgUw7lyC2pNPuIIdjUhdyhc.jpg + The first female President of the United States is assassinated by a sniper as she is giving a speech on Independence Day and it becomes evident that it's a conspiracy. + /7zLzjgUw7lyC2pNPuIIdjUhdyhc.jpg + + + 2008-10-13 + All The Tears of Hell + /vbO6mK3qOEm6hkaPtRrK5p9jJc0.jpg + The amnesiac hunts down and kills the ops soldiers one by one as he searches for answers to help him restore his memory. + /vbO6mK3qOEm6hkaPtRrK5p9jJc0.jpg + + + /r0b6XqoXGRWdv7PtptV3mKwQKPC.jpg + Season 1 + + + + + /6lYM8Xs6R4Uc5iYEIQsypwVigqi.jpg + + The 10th Kingdom + 60 + Sci-Fi & Fantasy - Comedy - Action & Adventure + http://www.rhifilms.com/property.php?propertyId=10thKingdom + The 10th Kingdom + Hallmark Channel + 1 + US + The 10th Kingdom is an American fairytale fantasy miniseries written by Simon Moore and produced by Britain's Carnival Films, Germany's Babelsberg Film und Fernsehen, and the USA's Hallmark Entertainment. It depicts the adventures of a young woman and her father after they are transported from Manhattan, New York, through a magical mirror into a parallel world of fairy tales, magical beings, evil stepmothers and self-discovery. + +The miniseries was initially broadcast over five nights in two-hour episodes on NBC, beginning February 27, 2000. It garnered good reviews but very poor ratings. It won an Emmy Award for Outstanding Main Title Design in 2000. + /6rNs7VUiCaLIU1EZNNSA3rHi98e.jpg + 7.6 + + + 2000-02-27 + + + 2000-02-27 + Part 1 + Thanks to Relish the Troll King, the Evil Queen is once again free, and she has a trap ready for Prince Wendell. Her dog transforms into Prince Wendell and Prince Wendell becomes a dog. While trying to escape, the real Prince Wendell accidentally turns on a magic mirror, and runs away into 10th kingdom. Virginia hits him with her bicycle, feeling bad about hitting a dog; she takes him to work with her. Wolf and Relish the Troll Kings kids are after the real Prince, and they are looking all over New York for him. + + + 2000-02-28 + Part 2 + Virginia is hiding from the Troll kids at her grandma's, while Tony is busy with his new servants. The Trolls are still trapped in the broken elevator, and they are trying to find a way to break "the spell" they think Virginia cast on them. Wolf finds Virginia and Prince at her Grandma’s. He tries to eat Virginia’s Grandma but decides he can’t when he meets Virginia. Virginia escapes with Prince by pushing Wolf through a window. Wolf then visits a shrink to try and decide if he is in love with Virginia or if he just wants to eat her. + + + 2000-02-29 + Part 3 + While the Troll kids are taking an unconscious Virginia to their kingdom, Tony must find a way to escape the Snow White Memorial prison. News about the Evil Queen's prison break is all around the nine kingdoms. The Evil Queen rides undetected in Prince Wendell’s coach with the false Prince Wendell. When Wolf realizes he loves Virginia, he becomes determined to help her escape the Trolls and reunite her with her father. + + + 2000-03-01 + Part 4 + The journey to find The Magic Traveling Mirror continues and Virginia, Tony and Wolf are traveling in a boat trying to find Acorn the Dwarf. When they reach River Town, Acorn the Dwarf has already left and has gone through The Disenchanted Forest. Prince found his body but The Evil Queen stops him from returning to his right form. While trying to escape the Trolls, Tony accidentally turns Prince and the Trolls into a golden statue. With golden Prince, they continue travelling through The Disenchanted Forest. The Evil Queens Huntsman follows them. Gypsies give them a sanctuary for the night and Tony gives them a performance. + + + 2000-03-02 + Part 5 + The Evil Queens Huntsman has captured Virginia. She then sends a letter to Prince Wendell’s council explaining that The Prince had an injury and he is staying in his Hunting lodge to heal. In the meantime, Tony and Wolf are looking for a Magic Axe that will break a curse cast on Virginia’s hair. With the help of the Magic Birds, Virginia is free, and they finally find Acorn the Dwarf. But the mirror was sold, and Virginia, Tony and Wolf must go to the Little Lamb Village to find it. + + + Season 1 + + + + + /uzsWldStvfUJqNiSDKB8sBLzvDN.jpg + Lars von Trier, Stephen King + Stephen King's Kingdom Hospital + 40 + Drama - Mystery - Sci-Fi & Fantasy + + Stephen King's Kingdom Hospital + ABC + 1 + US + Kingdom is a hospital whose bizarre population includes a brilliant surgeon who lives in the basement, a nearly blind security guard and a nurse who regularly faints at the sight of blood. But when patients and staff hear the voice of a girl crying through the halls and a patient destined for life as a paraplegic miraculously recovers, they are dismissive of any suggestion of mysticism or unseen powers... at their own peril. + /3vn1V7UvBSdnVl9HNivrNjXveJU.jpg + 8.0 + + + 2004-03-02 + + + 2004-03-03 + Thy Kingdom Come (1) + Artist Peter Rickman is run down by a stoned, two-time loser driving a minivan. He is admitted comatose to Kingdom Hospital, but not before encountering a frightening, ghostly figure whose mission is to use him to rid the hospital of malevolence, both human and inhuman, and to free its nine-year old mistress, Mary, from the hospital's haunted halls. When he awakens in an altered state with newfound but not necessarily welcome telepathic powers, Rickman finds he can communicate with the spirits, good and evil, man and beast, inhabiting the hospital. + + + 2004-03-03 + Thy Kingdom Come (2) + Artist Peter Rickman is run down by a stoned, two-time loser driving a minivan. He is admitted comatose to Kingdom Hospital, but not before encountering a frightening, ghostly figure whose mission is to use him to rid the hospital of malevolence, both human and inhuman, and to free its nine-year old mistress, Mary, from the hospital's haunted halls. When he awakens in an altered state with newfound but not necessarily welcome telepathic powers, Rickman finds he can communicate with the spirits, good and evil, man and beast, inhabiting the hospital. + + + 2004-03-10 + Death's Kingdom + Despite being forcibly discharged from the hospital by Dr. Stegman, Mrs. Druse recruits the semi-conscious, telepathic Peter to join her at a seance to identify the spirit whose cries continue to haunt the hospital's elevator shafts. Meanwhile, the man responsible for Peter's condition becomes acutely aware of a much stronger and frightening presence at Kingdom Hospital. + + + 2004-03-17 + Goodbye Kiss + After seeing a girl and finding a toy doll in the elevator shaft, Dr. Hook is convinced to help Druse stay in the hospital while she finds the source of the haunting. Meanwhile, a prisoner and his girlfriend plan out a suicide pact that goes wrong when he is saved by the Kingdom Hospital staff, in a not so common fashion. We also learn that Dr. Stegman killed a patient while in surgery at his last job in Boston, and is now being accused of messing up another surgery with a young girl. The mother now has plans to sue for malpractice. And finally, Peter Rickman is visited in his mind by the beast in his painting, and also comes in contact with Mary and Paul. + + + 2004-03-24 + The West Side of Midnight + The ex-wife of Dr. Traff dies from a heart attack in his care, while his son Elmer has a dream involving the anteater. Lenny passes onto the other side, and tries to help Druse find out more about Mary. After a night of anger and harrassment, Stegman goes off the deep end and starts trying to find out who defaced his car. Finally, while Druse finds out through Lenny that Rickman knows what's going on in the hospital, Paul starts to use Pedersen to make sure Druse doesn't find out. + + + 2004-03-31 + Hook's Kingdom + The psychic Mrs. Druse is called to assist when the trapped evil spirit of a tortured teenaged boy wreaks havoc on the staff, patients and innocent spirits inhabiting Kingdom Hospital. Meanwhile Dr. Hook forges a relationship of the mortal variety. + + + 2004-04-08 + The Young and The Headless + Using Peter Rickman's drawings as a guide, Mrs. Druse and Hook make contact with Mary and her nemesis, Paul, and begin to navigate through the trenches of Kingdom Hospital's horrifying past. Meanwhile, Dr. Traff's attempt at a love prank on sleep psychologist Dr. Lona Massingale goes terrifyingly wrong! + + + 2004-04-15 + Black Noise + Still unable to speak, Peter gets a message to Dr. Hook and Mrs. Druse that a very dark presence within Kingdom Hospital is channeling his evil through a hallucinating alcoholic and pyromaniac to harm patients, staff and their most powerful spiritual allies, Mary and Antibus. And Dr. Stegman's unethical medical practices and questionable past begin to haunt him at every turn. + + + 2004-04-22 + Heartless + An attorney in need of a heart transplant rues the day he checked into Kingdom Hospital. Meanwhile, Hook discovers authentic newspaper clippings inside Mary's doll that reveal the horrific details of the 1869 Gates Falls Mills fire that killed scores of children on the very ground where the hospital now stands. + + + 2004-04-29 + Butterfingers + When a retired major league baseball player attempts to take his own life and is admitted to Kingdom Hospital, he begins a chain reaction that opens up some horrific old wounds and reverses history for those -- living and dead -- who inhabit the hospital. + + + 2004-06-24 + The Passion of Reverend Jimmy + When the reverend of the Christ-Oly-Christ mission is sacrificed, new life resurges in and around Kingdom Hospital and the mystery behind Mary's death is revealed. Meanwhile, maintenance man Jack Handlemann delivers a very destructive blow to Stegman's ego and most prized possession. + + + 2004-07-01 + Seizure Day + When two different patients have seizures, they awaken to frightening visions of the living dead haunting Kingdom Hospital's halls, and the reverberations from Mona Klingerman's seizure brings Dr. Stegman's worst nightmares to the surface. + + + 2004-07-08 + Shoulda Stood in Bed + When Peter Rickman has yet another seizure, he witnesses the eventual fate of Kingdom Hospital and makes a tangible connection with its frightening past. When Peter awakes, his drawings help Mrs. Druse make a direct connection to Mary, and serve as the key to correcting evil deeds done by the Kingdom's forefathers. Meanwhile, Brenda and Dr. Hook finally make public Stegman's guilt in the Mona Klingerman medical malpractice incident -- and send him on a crazed and violent tear for vengeance. + + + 2004-07-15 + Season Finale + The collective strengths of Peter, Dr. Hook, Antibus and Sally Druse uncover the real answers to Kingdom Hospital's horrifying history and forever alter it's future. A séance held by Sally Druse sends Dr. Hook and Peter back to the Old Kingdom. When they finally return with answers to buried secrets of the Gates Falls Mill fire, Mary's trapped spirit is freed and the future of Kingdom Hospital is altered forever. Meanwhile, when a vengeful Dr. Stegman finally catches up with the real Johnny B. Goode and Antibus, his most terrifying visions of The Old Kingdom are realized. + + + Season 1 + + + + + /g7tionLZH4VlPVTEUy19qZzcfyM.jpg + Stephen King + Storm of the Century + 256 + Drama - Sci-Fi & Fantasy + + Storm of the Century + ABC + 1 + US + Storm of the Century, alternatively known as Stephen King's Storm of the Century, is a 1999 horror TV miniseries written by Stephen King and directed by Craig R. Baxley. Unlike many other King mini-series, Storm of the Century was not based upon a Stephen King novel—King wrote it as a screenplay from the beginning. The screenplay was published in February 1999. + /rqHdxPR5mF607ObVoxOKkHXgVGj.jpg + 6.9 + + + 1999-02-14 + + + 1999-02-14 + Part 1 + /cUsPdUwUy5uNtXZEazwW363eepG.jpg + A very powerful blizzard hits the fictional small town of Little Tall Island (also the setting of King's novel Dolores Claiborne) off the coast of Maine. This storm is so powerful that all access off the island is blocked, and no one is able to leave the island, until the storm is over. While trying to deal with the storm, the citizens of the town are visited by Andre Linoge (Colm Feore), a menacing stranger who apparently knows all of the townsfolk's darkest secrets (among which are abortion, adultery, growing marijuana, and gay-bashing). After having killed one of the town's residents, Linoge is jailed. Even though he is kept in jail by the town's trusted constable, Mike Anderson (Timothy Daly), Linoge is somehow able to force people to commit suicide or kill others from within his cell. Linoge constantly repeats "Give me what I want and I'll go away" through his victims as well as to his victims. Interestingly, although the adults are terrified of the stranger, all the children are drawn to him. + /cUsPdUwUy5uNtXZEazwW363eepG.jpg + + + 1999-02-15 + Part 2 + /gozg3JFeOt26XzCy7PhKfHbDnkX.jpg + In a dream, the townspeople see themselves walking into the sea two-by-two with the word Croatoan (a reference to the colony of Roanoke) carved on their heads. Eventually, Mike finds out that Linoge is an anagram of the demon Legion and agrees to organize the townspeople so they can hear his demands. + /gozg3JFeOt26XzCy7PhKfHbDnkX.jpg + + + 1999-02-16 + Part 3 + /hm5zQYlJqWDsBa6087GL937UuUY.jpg + What Linoge desires is an heir, one of the eight small children that he had incapacitated early on in the miniseries — someone to "carry on his work when he can no longer do it himself", although Linoge's life spans millennia, he is not immortal. Any of the eight children, he states, will suit him. + /hm5zQYlJqWDsBa6087GL937UuUY.jpg + + + /fgx8RolE6Fj2fHwNc3uUQaykYky.jpg + Season 1 + + + + + /5qJ5bAqJrFbkaLo7kq3WpWD2SRv.jpg + Paul Scheuring + Halo: Nightfall + 24 + Action & Adventure - Sci-Fi & Fantasy + https://www.halowaypoint.com/en-us/halo-channel/halo-nightfall + Halo: Nightfall + + 1 + US + Taking place between the events of Halo 4 and Halo 5: Guardians, Halo: Nightfall follows the origin story of legendary manhunter Jameson Locke (Mike Colter) and his team as they are caught in a horrific terrorist attack while investigating terrorist activity on the distant colony world of Sedra. + /30N3LYmprtyCscMK44Z2AX90BVR.jpg + 5.9 + + + 2014-11-11 + + + 2014-11-11 + It's Only Just Beginning + /l9BhW8diYIanFjVSopFm9j8IBEx.jpg + Plans are set in motion to complete the mission at all costs, but will they survive long enough to see it through? + /l9BhW8diYIanFjVSopFm9j8IBEx.jpg + + + 2014-11-18 + Sourced From Hell + /xXLeBCrXMme6iIBvRyNHyw0rd55.jpg + Locke and Aiken lead their soldiers onto the ring fragment’s surface, but encounter a deadly new threat. + /xXLeBCrXMme6iIBvRyNHyw0rd55.jpg + + + 2014-11-25 + Lifeboat Rules + /mbKcLSXcpljccpcU06D4M9rxspX.jpg + Plans are set in motion to complete the mission at all costs, but will they survive long enough to see it through? + /mbKcLSXcpljccpcU06D4M9rxspX.jpg + + + 2014-12-02 + Gods of the Damned + /LDGVgbgxY1dKhJ9dDlnW4M7cXH.jpg + With each passing moment, choices are made, battle lines drawn, and each soldier’s resolve is put to the ultimate test. When the pieces start falling, who will remain loyal, and who will remain alive? + /LDGVgbgxY1dKhJ9dDlnW4M7cXH.jpg + + + 2014-12-09 + Devil Take the Hindmost + /lXZEmScgZQjA6Xhallnsh3HZN0Q.jpg + /lXZEmScgZQjA6Xhallnsh3HZN0Q.jpg + + + /dEESxWXLkayAr0XIeO1JVgWFINO.jpg + Season 1 + + + + + /oGrLYgUc3Cw3vUTg8fUC8uKC2XW.jpg + + Halo 4 Forward Unto Dawn + 20 + Drama - Action & Adventure + + Halo 4 Forward Unto Dawn + YouTube + 1 + US + Halo 4: Forward Unto Dawn is a science fiction web series set in the universe of the Halo franchise. Forward Unto Dawn consists of five 15-minute episodes released weekly starting on October 5, 2012, and was later released as a single film on DVD and Blu-ray. The series was produced as a marketing effort for the video game Halo 4 intended to widen the audience of the Halo series and as a stepping stone to a potential Halo film. It was written by Aaron Helbing and Todd Helbing, and directed by Stewart Hendler. Forward Unto Dawn was shot in Vancouver over 25 days in May 2012 on a budget just under USD $10 million. It has just under 500 shots with computer generated imagery, approximately a quarter of what a feature film would have, but the visual effects received praise from reviewers. + +A coming-of-age story, Forward Unto Dawn follows a cadet, Thomas Lasky, at a twenty-sixth century military training academy as it is attacked by the Covenant, an alliance of alien zealots. Lasky is unsure of his future within the military but feels pressured to follow in the footsteps of his mother and brother. Lasky and his surviving squad mates are rescued by the Master Chief and, after the death of his romantic interest, Chyler Silva, Lasky is inspired by the Chief to take initiative and aids him in saving the remaining cadets. + /8JJTib7QM8rE3j0cxWQzSbgFIJD.jpg + 6.4 + + + 2012-10-05 + + + 2012-10-05 + Part I + Hastati Squad, the newest batch of freshman cadets at the UNSC's Corbulo Academy of Military Science, pays the price for cadet Thomas Lasky's tactics. + + + 2012-10-05 + Part II + Cadet Michael "Sully" Sullivan continues to decode the hidden ONI combat video as Lasky's struggle with his place in the UNSC ignites with fellow cadet Walter Vickers. After a classroom confrontation with Captain Mehaffey and a challenge from Chyler, Lasky pulls Hastati Squad back from the brink...at a terrible physical cost to himself. + + + 2012-10-19 + Part III + Sully's illicit intelligence video shows Hastati Squad that their world is even more complicated than they knew. Lasky’s collapse at the end of his brilliant field maneuver turns into a pivotal choice for him, and just as he and Chyler realize what that choice might mean for their relationship, the academy is shaken by the first blow of a terrifying invasion. + + + 2012-10-26 + Part IV + While Corbulo Academy is being destroyed by the Covenant invasion, the surviving cadets fight bravely alongside their only hope: The Master Chief. + + + 2012-11-02 + Part V + After a terrifying night of combat and loss, Lasky makes a life-or-death decision to help the Master Chief... but will it be enough to save them all from the Covenant? + + + Season 1 + + + + + /tPILzBgiPrEJ3uhlmmNmHYGzRlM.jpg + + Legend of Earthsea + 180 + Sci-Fi & Fantasy + http://www.scifi.com/earthsea/ + Legend of Earthsea + Syfy + 1 + US + Legend of Earthsea is a two-night television miniseries adaptation of the "Earthsea" novels by Ursula K. Le Guin. It premiered on the Sci-Fi Channel in December 2004. + /mqJ6deVvx6OkGmWMt13yAF037GT.jpg + 5.8 + + + 2004-12-13 + + + 2004-12-13 + Part 1 + Impulsive and rebellious Ged is always near trouble - and that's why his Master sends him to Wizard school to learn about his strengths, as well as weaknesses. But one day, in a state of anger, Ged invokes the Nameless One and sets in motion his true journey. + + + 2004-12-14 + Part 2 + In the tomb of Atuan, Tenar is dreaming about a young man in trouble. Ged decides it's time to stand up to Gebbeth, and fight him. And the only salvation lies in bringing two parts of the amulet back together. + + + Season 1 + + + + + /64DLqKJ6K0RlqS5csUMXpFGvU9N.jpg + Christopher Leone + The Lost Room + 60 + Mystery - Sci-Fi & Fantasy + + The Lost Room + Syfy + 1 + US + A detective investigates a mysterious motel room, which acts as a portal to an alternate universe. + /luf6fd2QTdUQWXqZZ2J5zXdfL6G.jpg + 7.8 + + + 2006-12-11 + + + 2006-12-11 + The Key and the Clock + /3yP2QOj1PXNjbShUHTmaneochJc.jpg + Detective Joe Miller finds himself on a case involving two men that are found burned to death in a pawn shop, apparently involving a mysterious key and a deal gone bad. After receiving the key, Joe discovers that it is just one of nearly one hundred objects with supernatural powers and a link to a hidden motel room. Detective Joe Miller and the Wiesel try to get the clock from object collector Karl Reutzfeld's hands. Joe gets accused of his partner's murder. + /3yP2QOj1PXNjbShUHTmaneochJc.jpg + + + 2006-12-11 + The Comb and the Box + /eJAOSmuHef8GlCQIZ833yu6Lvr5.jpg + Joe Miller is on the run after being framed for his partner's murder. He joins forces with Legion member Jennifer Bloom to find the Object that will help find his daughter, Anna. Along the way they learn about the Room's mysterious past.Martin Ruber searches for an object to gain membership in the Order of the Reunification. + /eJAOSmuHef8GlCQIZ833yu6Lvr5.jpg + + + 2006-12-12 + The Eye and the Primary object + /9bdgl6MqxlaiXl2qOUBZBRek3aL.jpg + After discovering the existence of The Occupant of Room 10, Joe attempts to find him and another object that will allow him to access the Vault. Kreutzfeld hatches a plan that could destroy the world. Ruber has a vision while in the desert, and Joe finally finds The Occupant. + /9bdgl6MqxlaiXl2qOUBZBRek3aL.jpg + + + /8OQpF203USIHc51CuFmSu8aSOsq.jpg + Season 1 + + + + + /7oeGKw5Mt3HkhfxxrR08APkqEIr.jpg + + Total Recall 2070 + 60 + Sci-Fi & Fantasy - Drama + + Total Recall 2070 + CHCH-DT + 1 + US, CA + Total Recall 2070 is a science fiction television series first broadcast in 1999 on the Canadian television channel CHCH-TV and later the same year on the American Showtime channel. It was later syndicated in the United States with some editing to remove scenes of nudity, violence and strong language. The series was inspired by the 1990 film Total Recall, based on Philip K. Dick's short story "We Can Remember It for You Wholesale", and by Dick's novel Do Androids Dream of Electric Sheep?, with a visual style heavily influenced by the film Blade Runner, itself very loosely based on the same novel. However, other than the Rekall company and the concept of virtual vacations, the series shares no major plot points or characters with any of these works. Philip K. Dick is not credited in any way on the series main or end titles. + +The series was filmed in Toronto. It was a Canadian/German co-production. Only one season, consisting of 22 episodes, was produced. + /ipeTk1wjQ6AUlTDru2zfS3y2aZC.jpg + 6.2 + + + 1999-01-05 + + + 1999-01-05 + Machine Dreams (1) + /n40y0E4Mwhhb7v7DasjUYjWcMFl.jpg + David Hume and his new partner Ian Farve must track down a gang of androids with abnormally high intelligence gained from experimental use of memory implant technology from the big corporation Rekall. + /n40y0E4Mwhhb7v7DasjUYjWcMFl.jpg + + + 1999-01-12 + Machine Dreams (2) + /z8USfgF1IKeB9RHHIWK0EFbG6Al.jpg + The Detectives hunt for the androids take them to Mars. + /z8USfgF1IKeB9RHHIWK0EFbG6Al.jpg + + + 1999-01-19 + Nothing Like the Real Thing + /pYvCpJQgiE1RZGPLBR8ChWzde5H.jpg + An accountant kills a deliveryman for seemingly no reason and then falls into a trance. Marks on his head suggest he had bought a cheap black-market memory implant, and Hume and Farve have to find the seller before more people get hurt. + /pYvCpJQgiE1RZGPLBR8ChWzde5H.jpg + + + 1999-02-02 + Self-Inflicted + /mXbzqzLrU23MmRQ3T7wsN6sggyG.jpg + A corporate doctor just returned from a space station finds her husband in the bathroom dying and coughing up blood. CPB investigates it as a potential biohazard situation, but have to fight over jurisdiction with the doctor's employer. + /mXbzqzLrU23MmRQ3T7wsN6sggyG.jpg + + + 1999-02-09 + Allure + /lq9RDKO1KqdCGSvt6MmYvhLRt7E.jpg + After failing to stop a young woman's suicide, Hume is puzzled when he sees someone looking just like her. Things get weirder still when the suicide victim turns into a withered old corpse. + /lq9RDKO1KqdCGSvt6MmYvhLRt7E.jpg + + + 1999-02-16 + Infiltration + /txAFfafD4ZgjEgoETsQToXTOBB2.jpg + Hume and Farve's investigation of the murder of an Uber-Braun employee is severly hampered by the company itself and Rekall's new head of security Vincent Nagle. + /txAFfafD4ZgjEgoETsQToXTOBB2.jpg + + + 1999-02-23 + Rough Whimper of Insanity + /j86hJV5Q2gEUQGLGWtTs3SgNanZ.jpg + Farve starts behaving erratically after he and Hume investigate a service android that attacked two people who walked on the floor he'd just polished. + /j86hJV5Q2gEUQGLGWtTs3SgNanZ.jpg + + + 1999-03-02 + First Wave + /zIh8wUaIJC5of36HlBwxEvE62Uu.jpg + The CPB's computer network goes haywire after a young man posing as a computer service technician sets off a security alarm. When interrogating him they discover that he's a product of a genetic engineering project that failed, and is now a member of a cult opposed to non-human sentience. + /zIh8wUaIJC5of36HlBwxEvE62Uu.jpg + + + 1999-03-09 + Baby Lottery + /hfZkpWF0wGEXGNq6KEVqXTIjZus.jpg + A baby taken from his parents because of a genetic disposition towards crime disappears from the Reproductive Selection Board. Investigating, Farve and Hume find that his parents aren't the only ones interested in him. + /hfZkpWF0wGEXGNq6KEVqXTIjZus.jpg + + + 1999-03-16 + Brain Fever (1) + /b6sSSyHx43wp7CJCo53GwnSvE8J.jpg + The head of the Mars Miners Union is shot by a member who the attempts to kill himself. They are both sent to a hospital where Farve tries to find out why he felt a connection with the shooter, while Hume investigates the shooter's background. + /b6sSSyHx43wp7CJCo53GwnSvE8J.jpg + + + 1999-03-23 + Begotten Not Made (2) + /q7QbYHbhDwy0qAnJw9xyMoUG4gS.jpg + Dr. Latham is starting to cooperate, when a lawyer from Recall shows up demands his release. Moments after his release the doctor is assassinated. Surprisingly, an autopsy reveals it was just a clone, so Hume and Farve try to find the real Latham. + /q7QbYHbhDwy0qAnJw9xyMoUG4gS.jpg + + + 1999-03-30 + Brightness Falls + /zcnT9qlSEGURrUswJ0s9HrIB0L0.jpg + Farve and Moralez investigate the death of a cult leader who was crucified in his home, while Hume looks in on his paranoid father who's convinced the retirement home is spying on him. + /zcnT9qlSEGURrUswJ0s9HrIB0L0.jpg + + + 1999-04-06 + Burning Desire + /zGB9Vq7beyAJkFInRVgO4a7j7EM.jpg + The CPB investigates the death of a man who was fried in his sublimator, and Hume becomes worried that the same might happen to Olivia. + /zGB9Vq7beyAJkFInRVgO4a7j7EM.jpg + + + 1999-04-13 + Astral Projections + /4umqbfTLMrtvtmMkk0v5OTJ5xRZ.jpg + Hume and Farve travel to a crashed interplanetary cargo transport that went down in the freezing ""New Territories"". While all the six crewmembers survived the crash itself, 3 of them were murdered before help could arrive. + /4umqbfTLMrtvtmMkk0v5OTJ5xRZ.jpg + + + 1999-04-20 + Paranoid + /5WfDLLPaJMYu4Ph6HtvjRzYDWYM.jpg + When investigating the murder of the head of the Nexus dating service, Farve finds a list of people implanted by a Rekall mind-control project, and much to Hume's horror Olivia is on it. Adding to his trouble is his father, who once again has trouble with his retirement home. + /5WfDLLPaJMYu4Ph6HtvjRzYDWYM.jpg + + + 1999-04-27 + Restitution + Brant is kidnapped on his way to a Mars safe house, and the assessor's office is prepared to pay the 40 million ransom in fear of loosing him to Rekall. Meanwhile Hume's personal problems continue as Olivia's memories don't seem to be returning. + + + 1999-05-04 + Bones Beneath My Skin + Farve and Hume investigate the destruction of an android at a chemical company. The owner blames his human workers, who came from the company ""Muscle and Blood"" run by the extremely anti-android Belasarius. Meanwhile David and Olivia split up, while they deal with the fact that she was under Rekall's control during their entire relationship. + + + 1999-05-11 + Assessment + On their way to investigate a report about berserk androids, Farve and Hume are ambushed and captured by a rouge section of the assessor's office. They seek Hume's help in discovering Farve's part in what they see as a plot by machines to eradicate humans. + + + 1999-05-18 + Eye Witness + When visiting a friend's apartment Olivia hears screaming, and finds her friend's rich husband standing over a bloody corpse. She is willing to testify, but given her recent memory problem she starts wondering if she just imagined the whole thing. + + + 1999-05-25 + Personal Effects + Olan decides to keep a vial found on corpse in a crashed shuttle out of her report because of concerns of what it might be. Unfortunately, its real owners, Vari Dyne Inc., is willing to go to great length to get it back. + + + 1999-06-01 + Virtual Justice + After seeing a fellow cop killing a cornered prison escapee, Hume looks into the dead mans case and finds that the cop may have been taking the law into his own hands. + + + 1999-06-08 + Meet My Maker + After Hume nearly dies trying to interface with Farve's backup memory banks, Farve finally takes Hume to meet the alpha-android's creator. + + + /uUAJ8pjICDoIF4wltE1F00JcPA.jpg + Season 1 + + + + + /7JTIK3lM4Yv0TT9qANRTP6XnXcn.jpg + + Merlin's Apprentice + 180 + Sci-Fi & Fantasy + + Merlin's Apprentice + Channel 4 + 1 + GB + Merlin's Apprentice is a British miniseries that aired on Channel 4 in 2006. The series is a sequel to the 1998 miniseries Merlin starring Sam Neill and Miranda Richardson. In this sequel, Merlin awakes after a nap of fifty years. + /896g1RLaVRCsts7vgYRD25l3rIK.jpg + 5.3 + + + 2006-04-14 + + + 2006-04-14 + Part 1 + Satisfied at Camelot's conditions, Merlin decides to go on a holiday in order to rejuvenate. This vacation nap is supposed to last a few months, but when Merlin awakes, he finds he has slept for fifty years. Upon his return to Camelot, he discovers a downtrodden place. Almost all of those he knew have died; Lord Weston runs the kingdom; and the Holy Grail has departed from the castle. However, Merlin's protective enchantments have held invaders in check. + +A young thief named Jack and his tagalong pig Sir Snout stowaway in a cart entering Camelot, angering its driver Squire Brian. Jack is no ordinary vagrant, as he possesses some rudimentary magical skills. Jack enters the chamber of Yvonne, granddaughter of Sir Gawain and steals a pendant. Yvonne enters and while Jack hides, Master Graham, a local blacksmith whom she loves, visits her. Jack then attempts to steal Merlin's wand while Merlin concentrates on the whereabouts of the Grail. Merlin senses the visitor, and at first evicts him, but later apprentices Jack after a vision of the Holy Grail appears to both of them. + + + Part 2 + The remaining people of Camelot have traveled the countryside for several months, seeking the Grail while fleeing their enemy. Jack is frustrated that his concentration does not give him insight, so the Lady of the Lake sends him a vision of the Grail's whereabouts. The group goes there, to discover that the water is cursed and several knights are murdered by a beast attempting to swim to the Grail's cave. Meanwhile, the Lady has told Rauskaug of their location and the barbarians begin their pursuit. + + + Season 1 + + + + + /f8Yc2ynQnbsy5dSIHkYg4bAdD2U.jpg + + Human Trafficking + 240 + Drama + + Human Trafficking + Lifetime + 1 + CA + Human Trafficking is a television miniseries about an American Immigration and Customs Enforcement agent going undercover to stop an organization from trafficking people, and shows the struggles of three trafficked women. It premiered in the United States on Lifetime Television on October 24 and 25, 2005 and was broadcast in Canada on Citytv on January 2 and 3, 2006. It stars Mira Sorvino, Donald Sutherland, Rémy Girard, and Robert Carlyle. + /6pTS7l1FnWowbkb9kpBW9oEWGC9.jpg + 6.8 + + + 2005-10-24 + + + 2005-10-24 + Part 1 + + + 2005-10-25 + Part 2 + + + Season 1 + + + + + /42nnihT7P6LBDfAJBFX0Io6m2cL.jpg + + The Infinite Worlds of H.G. Wells + 88 + Drama - Sci-Fi & Fantasy + + The Infinite Worlds of H.G. Wells + Hallmark Channel + 1 + US + On a night in London in 1946, newspaper reporter Ellen McGillivray arrives at the home of legendary literary figure, Herbert George Wells. Expecting to hear of the events and people who formed his prophetic imagination, she is informed of a world in which known scientific boundaries no longer exist. It begins a half-century earlier at London's Imperial College of Science where Wells meets Jane Robbins, a scientist equally fascinated by unnatural phenomenon, and a woman who immediately captures Wells' heart. Through midnight experiments and secret investigations into the paranormal, through the follies of chance and the miracles of fate, Wells and Robbins find themselves slipping into whirlpools of time, both past and present. + /qkQAi4nowXnJGV6q0tvDMeHmazn.jpg + 7.0 + + + 2001-08-05 + + + 2001-08-05 + Part 1 + The episode is based upon the stories "The New Accelerator" and "The Queer Story of Brownlow's Newspaper" + + + 2001-08-06 + Part 2 + The episode is based on the stories "The Crystal Egg" and "The Remarkable Case of Davidson's Eyes" + + + 2001-08-07 + Part 3 + The episode is based on the stories "The Truth About Pyecraft" and "The Stolen Bacillus" + + + Miniseries + + + + + /gSsfbblFqvZdp0e5B7ZlbccF1kQ.jpg + + Invasion + 88 + Sci-Fi & Fantasy + + Invasion + + 1 + US + Small rocks fall from the sky which, when touched, trigger a latent virus that has always existed in humans and begins mutating them into an alien species. Taking advantage of its hive mentality, the aliens are absolutely dedicated to transforming every human on Earth and do so with alarming swiftness. Only a small group of humans remain who have the medical knowledge to devise antibodies to reverse the effects of the virus. + /rbHB9LnyY7jfYiKPar9FioaPj4Y.jpg + 5.3 + + + 1997-05-04 + + + 1997-05-04 + Episode 1 + + + 1997-05-05 + Episode 2 + + + Season 1 + + + + + /5oFP15MGaVjdmkrbAUp6IjSFLB0.jpg + Michael Dante DiMartino, Bryan Konietzko + The Legend of Korra + 30 + Action & Adventure - Animation - Drama - Family - Sci-Fi & Fantasy + http://www.nick.com/shows/legend-of-korra/ + The Legend of Korra + Nickelodeon + 4 + US + Avatar Korra, a headstrong, rebellious, feisty young woman who continually challenges and breaks with tradition, is on her quest to become a fully realized Avatar. In this story, the Avatar struggles to find balance within herself. + /qsp8RtGvPHQ55ukKImVu0aWBCWk.jpg + 7.9 + + + 2012-04-14 + + + 2012-04-14 + Welcome to Republic City + /rxB7UzsYL3sULMcqYcBNBmNyB40.jpg + Korra, the new Avatar, travels to Republic city to start her Airbending training. + /rxB7UzsYL3sULMcqYcBNBmNyB40.jpg + + + 2012-04-14 + A Leaf in the Wind + /7FnBpFDNORX6YGPa0SqbJP5QBKI.jpg + Against Tenzin's prohibition, a frustrated Korra sneaks out to visit the pro-bending sports arena. + /7FnBpFDNORX6YGPa0SqbJP5QBKI.jpg + + + 2012-04-21 + The Revelation + /8bs59H5mjYLR7ulnQG8ectVSfSy.jpg + Korra attempts to infiltrate the Equalist movement and learn more about its mysterious leader. + /8bs59H5mjYLR7ulnQG8ectVSfSy.jpg + + + 2012-04-28 + The Voice in the Night + /19xNVPVSfMYssEpHEG4NSGCuXP6.jpg + Korra becomes part of Councilman Tarrlok's task force which aims to rid Republic City of the Equalists. + /19xNVPVSfMYssEpHEG4NSGCuXP6.jpg + + + 2012-05-05 + The Spirit of Competition + /jFTYcFVXPOeRSAubpWH76t0SZHm.jpg + As Asami steals Mako's heart, Korra struggles to express her feelings for Mako and also at the same time Bolin tries to win Korra's heart by being brave enough to ask Korra to go out with him. The tension gets higher as the Pro bending tournament starts. + /jFTYcFVXPOeRSAubpWH76t0SZHm.jpg + + + 2012-05-12 + And the Winner is... + /t7sg3EY4nPcGOz05bwX2Ea9OhsK.jpg + Korra and the Fire Ferrets are in the pro-bending championship, but will the Equalists allow the game to go on? + /t7sg3EY4nPcGOz05bwX2Ea9OhsK.jpg + + + 2012-05-19 + The Aftermath + /fSa7o3FcwArptHikthalGAuVTbv.jpg + Korra suspects that an ally is working with the Equalists. + /fSa7o3FcwArptHikthalGAuVTbv.jpg + + + 2012-06-02 + When Extremes Meet + /6mbkwHLEuxPXC8kBf4TQtWK6mKW.jpg + Korra faces off with Councilman Tarrlok as Equalist activity continues to rise in Republic City. + /6mbkwHLEuxPXC8kBf4TQtWK6mKW.jpg + + + 2012-06-09 + Out of the Past + /arzwQaAjumNd7zE53pf7t4VpxjI.jpg + After being imprisoned by Tarrlok, Korra attempts to analyze the mysterious visions she has been having. Meanwhile, Tenzin, Lin, Mako, Bolin and Asami search for Korra, having been given false information by Tarrlok. + /arzwQaAjumNd7zE53pf7t4VpxjI.jpg + + + 2012-06-16 + Turning the Tides + /4bMT828aaNIhswrw7sWac6vby8J.jpg + The Equalists begin their attack on Republic City. + /4bMT828aaNIhswrw7sWac6vby8J.jpg + + + 2012-06-23 + Skeletons in the Closet + /iPMLEQyqElKsHZk0PiT0zJWFUQ.jpg + Korra goes undercover as the war between benders and non-benders intensifies. + /iPMLEQyqElKsHZk0PiT0zJWFUQ.jpg + + + 2012-06-23 + Endgame + /cKFqN32VbmfAm2wSOt1GNHNdaEh.jpg + The duel between Amon and Korra - will Korra be powerful enough to beat Amon? + /cKFqN32VbmfAm2wSOt1GNHNdaEh.jpg + + + In Book One, Avatar Korra—a headstrong, rebellious, feisty young woman who continually challenges and breaks with tradition—sets out on her quest to become a fully realized Avatar, struggling to find balance between tradition and modernity, the bending and non-bending world, and within herself. + /MZviFVuu9UxGsSjc2UFMixMRMm.jpg + Book One: Air + + + 2013-09-13 + + + 2013-09-13 + Rebel Spirit + /deLGV202U8erTPTvyXaqyLQKcD5.jpg + Korra struggles to find a deeper connection with the Spirit World as she and the gang attend a Southern Water Tribe festival. + /deLGV202U8erTPTvyXaqyLQKcD5.jpg + + + 2013-09-13 + The Southern Lights + /bqr3moChSMkSIDquutpCluL1E4l.jpg + Korra and Chief Unalaq journey into a dangerous maelstrom and find a source of great spiritual power. + /bqr3moChSMkSIDquutpCluL1E4l.jpg + + + 2013-09-20 + Civil Wars (1) + /gxQWnbcK3CkUddw0dgjwotyJGU7.jpg + While tensions flare between the Northern and Southern Water Tribes, Korra struggles to remain neutral. + /gxQWnbcK3CkUddw0dgjwotyJGU7.jpg + + + 2013-09-27 + Civil Wars (2) + /iWUsMZzBaUGwTQjw5YcK159CmTV.jpg + When Korra's parents are wrongfully arrested, Korra fights for their freedom. + /iWUsMZzBaUGwTQjw5YcK159CmTV.jpg + + + 2013-10-04 + Peacekeepers + /d7UUYU3FKBAH8PHQOqELpgVzbky.jpg + When the President of the United Republic refuses to help Korra, she decides to take matters into her own hands. + /d7UUYU3FKBAH8PHQOqELpgVzbky.jpg + + + 2013-10-11 + The Sting + /d5eOBrjAjxQb7KO77C4h9aoF9aD.jpg + When Triad activity threatens to put Future Industries out of business, Mako performs an investigation and discovers a much bigger conspiracy. + /d5eOBrjAjxQb7KO77C4h9aoF9aD.jpg + + + 2013-10-18 + Beginnings (1) + /oz3X1elprfQsDpM5lSt4VImDDi4.jpg + Korra learns about the epic and mythic origins of the first Avatar. + /oz3X1elprfQsDpM5lSt4VImDDi4.jpg + + + 2013-10-18 + Beginnings (2) + /67Er0biH04tU2jjT6wOvtvDI4Kn.jpg + Korra delves deeper into the Avatar's past and realizes what she must do in order to restore balance between the physical and spirit worlds. + /67Er0biH04tU2jjT6wOvtvDI4Kn.jpg + + + 2013-11-01 + The Guide + /uuObaC9UP3EWtiyUw4H37q9ynLN.jpg + Korra seeks Tenzin's help to enter the Spirit World for the first time. + /uuObaC9UP3EWtiyUw4H37q9ynLN.jpg + + + 2013-11-08 + A New Spiritual Age + /4hfHZHJHYuEuz6YMmsH2oLRgY6J.jpg + Korra enters the Spirit World and struggles with the Avatar's relationship with the spirits. + /4hfHZHJHYuEuz6YMmsH2oLRgY6J.jpg + + + 2013-11-15 + Night of a Thousand Stars + /gPV6XQ8AKoXARsykHsVRvgVfSBg.jpg + When President Raiko is attacked, Bolin saves the day. + /gPV6XQ8AKoXARsykHsVRvgVfSBg.jpg + + + 2013-11-15 + Harmonic Convergence + /fJ6x70fg6uJpc1hyCFL2Zvb08Tf.jpg + Korra and company attempt to close the spirit portals before Harmonic Convergence. + /fJ6x70fg6uJpc1hyCFL2Zvb08Tf.jpg + + + 2013-11-22 + Darkness Falls + /5tGbOQEIORNYBqSWZ31iZVflV5w.jpg + Korra discovers a new twist in Unalaq's evil plan. Meanwhile, Tenzin realizes he must face his own demons in order to save his daughter. + /5tGbOQEIORNYBqSWZ31iZVflV5w.jpg + + + 2013-11-22 + Light in the Dark + /nunitPOBzKLYNK3tlG1LnsMS8b0.jpg + Korra discovers a way she may be able to defeat the ultimate dark spirit and save the world. + /nunitPOBzKLYNK3tlG1LnsMS8b0.jpg + + + In Book Two, the Spirit and Human worlds are colliding and Team Avatar must embark on a journey diving deep into the mythology of the mystical Spirit World, encountering creatures like nothing they've seen before, and discovering the truth about the very first Avatar! + /4Ev7tsxWx0QCBl5ViaOLPb0JEMs.jpg + Book Two: Spirits + + + 2014-06-27 + + + 2014-06-27 + A Breath of Fresh Air + /7YBNR5q2xmqnxGtqa0gur9F3UR7.jpg + After the events of Harmonic Convergence, Korra has her hands full with trying to remove all the spirit vines that have overgrown Republic City. Her lack of success strains her relationship with President Raiko and brings down her approval rate among the city's populace. When airbenders are suddenly popping up across the world and causing more trouble for the city, President Raiko demands Korra to leave the city, which she takes as an opportunity to travel the world to find the new airbenders. Meanwhile, a dangerous criminal uses his newfound airbending abilities to escape. + /7YBNR5q2xmqnxGtqa0gur9F3UR7.jpg + + + 2014-06-27 + Rebirth + /ziYqxtdomIjYqJV7iaaSFPU2S2h.jpg + Tenzin, Jinora, and Team Avatar travel toward Ba Sing Se in order to find the new airbenders. Stopping at various villages along the way, they hope to recruit them in order to rebuild the Air Nation, though with little success as they were only able to convince a young boy named Kai to join them. Meanwhile, Zaheer travels the four nations to free his fellow criminals from their prison. After freeing Ghazan and Ming-Hua, they set course for the Northern Water Tribe to free their last member, P'Li. Upon learning of their escape, Lord Zuko sets course for the Northern Water Tribe himself in an attempt to stop them. + /ziYqxtdomIjYqJV7iaaSFPU2S2h.jpg + + + 2014-06-27 + The Earth Queen + /wm5b2Y9XqhVAyj0PJ424ClPgZtq.jpg + Team Avatar arrives in Ba Sing Se. While Korra has an audience with the Earth Queen, the others notice that Kai has gone missing, prompting Mako and Bolin to go look for him. They track him down, but he manages to shake them in the monorail, which takes the brothers to the Lower Ring, where they eventually run into their family from their father's side. Meanwhile, Korra and Asami set course for a small village to collect taxes as a favor to the Queen. After getting her money, the Queen brushes off Korra's request for help in tracking down the airbenders, leaving the Avatar to storm out of the palace. In the city, Kai found himself arrested by the Dai Li and subsequently conscripted in the Earth Queen's first airbending regiment. + /wm5b2Y9XqhVAyj0PJ424ClPgZtq.jpg + + + 2014-07-11 + In Harm's Way + /nE8XTR1sxBwneEKtyRKJEKo2lR8.jpg + Lord Zuko, Tonraq, Desna, and Eska try to prevent Zaheer from freeing the last prisoner, P'Li, while Korra discovers that the Earth Queen is forcing all the airbenders in Ba Sing Se to join her army. Team Avatar thus devises a plan to free them from the monarch's captivity. + /nE8XTR1sxBwneEKtyRKJEKo2lR8.jpg + + + 2014-07-11 + The Metal Clan + /1DGuf0HLWWvpOiVtztDMlSRKxQZ.jpg + Korra's quest leads her and her friends to the metal city of Zaofu. + /1DGuf0HLWWvpOiVtztDMlSRKxQZ.jpg + + + 2014-07-18 + Old Wounds + /vRttEhr8eTBAsutZop26yCxP1Mu.jpg + Per Su's suggestion, Korra begins to learn metalbending. Opal admits her reluctance to leave Zaofu due to her obligations to her family while Bolin deals with his fear of learning how to bend metal. Meanwhile, Lin faces her past during an acupuncture sessions, forcing her to relive the circumstances which led to her and Su's strained relationship. After a cathartic release of her repressed emotions, Lin makes amends with her sister as well as Opal, who she convinces to travel to the Northern Air Temple to train with Tenzin. Elsewhere, Zaheer and his group determine Korra's whereabouts shortly after escaping Republic City, deducing that she was under the Metal Clan's protection in Zaofu. + /vRttEhr8eTBAsutZop26yCxP1Mu.jpg + + + 2014-07-18 + Original Airbenders + /jEnZQcJI1T81MlsCUqhO0VJORDr.jpg + Despite Bumi's bad attitude, Tenzin attempts to train the new members of the Air Nation with little success. Things become more complicated for the airbending master as Jinora, with Kai's influence, begins to exert her independence and demand her airbending tattoos. The new airbenders are tested when they are forced to face a group of bison rustlers who have taken Jinora and Kai along with several bison calves. + /jEnZQcJI1T81MlsCUqhO0VJORDr.jpg + + + 2014-07-25 + The Terror Within + /dxhHf3exNKTPRfkfipo775ZFgZ0.jpg + Zaheer and his gang try to kidnap Korra. + /dxhHf3exNKTPRfkfipo775ZFgZ0.jpg + + + 2014-08-01 + The Stakeout + /3sVrcSVGtOTvcmPWcz30eCD8s77.jpg + Korra learns the truth about the group that is planning to destroy her. + /3sVrcSVGtOTvcmPWcz30eCD8s77.jpg + + + 2014-08-08 + Long Live the Queen + /k94qlK8ZjRLWKr7IcGLdHZToKZl.jpg + /k94qlK8ZjRLWKr7IcGLdHZToKZl.jpg + + + 2014-08-15 + The Ultimatum + /pGXfa0ivWZHqtDr2r8DU4xPN0CK.jpg + /pGXfa0ivWZHqtDr2r8DU4xPN0CK.jpg + + + 2014-08-22 + Enter the Void + /wmXI0zc26ZYkF8oiNy0MNsx1TGf.jpg + /wmXI0zc26ZYkF8oiNy0MNsx1TGf.jpg + + + 2014-08-22 + Venom of the Red Lotus + /glqHWJvop38kUawoKXDdnPCjgA5.jpg + /glqHWJvop38kUawoKXDdnPCjgA5.jpg + + + Set two weeks after the end of Book Two, Book Three finds Korra discovering that new Airbenders are popping up all over the Earth Kingdom. While she tries to find these Airbenders and rebuild the Air Nation, a group of dangerous criminals embark on a mission of their own. + /zXUWNGU6f5LGT4fl2zqDqYyiWDG.jpg + Book Three: Change + + + 2014-10-03 + + + 2014-10-03 + After All These Years + /5FMM9bvo6ENuq2SJS6XDKcDjsA8.jpg + It's been three years since Zaheer poisoned Korra and the members of Team Avatar have moved on with their lives; Kai and Opal help a struggling Earth Kingdom town. + /5FMM9bvo6ENuq2SJS6XDKcDjsA8.jpg + + + 2014-10-10 + Korra Alone + /e5QJnXMYD0Fz8GnvaSYc9TNtj92.jpg + Korra's three-year journey of healing takes her to unexpected places. + /e5QJnXMYD0Fz8GnvaSYc9TNtj92.jpg + + + 2014-10-17 + The Coronation + /fOEig2jRmm8NDtKWVDbz2pmDPK7.jpg + Prince Wu's big day is ruined by Kuvira; Korra thinks she may have found the key to a full recovery. + /fOEig2jRmm8NDtKWVDbz2pmDPK7.jpg + + + 2014-10-24 + The Calling + /vmBXqMEwDSlEhhMdnkn42utHM3W.jpg + While the young airbenders look far and wide for Korra, Ikki is briefly captured by two Earth Empire soldiers. Based on what they say, Ikki leads the trio to the swamp. There, Korra is still haunted by visions of being hurt by her past enemies, but manages to connect to the siblings through the great banyan-grove tree's roots. After they beg her to resume her Avatar duties to face Kuvira, Toph's advice helps Korra to let go of her fears, bend the rest of the poison out of herself and re-enter the Avatar State. + /vmBXqMEwDSlEhhMdnkn42utHM3W.jpg + + + 2014-10-31 + Enemy at the Gates + /yZSgjeZafgqUYHWBYdfuSK8z9zO.jpg + Kuvira threatens Zaofu; Bolin is caught in the middle of the bad blood between Su Beifong and Kuvira. + /yZSgjeZafgqUYHWBYdfuSK8z9zO.jpg + + + 2014-11-07 + Battle of Zaofu + /vKlISfDACYJxHnNJnJ3xkwmzXfw.jpg + Korra returns to her role as the Avatar, but is she really ready for action? Bolin and Varrick break from Kuvira's army. + /vKlISfDACYJxHnNJnJ3xkwmzXfw.jpg + + + 2014-11-14 + Reunion + /cNlLuS0Xfws3MgG1LeQvzm3uzmj.jpg + Korra returns to Republic City and Team Avatar faces their first mission together in three years when Prince Wu goes missing; Bolin and Varrick are on the lam. + /cNlLuS0Xfws3MgG1LeQvzm3uzmj.jpg + + + 2014-11-21 + Remembrances + /yG0H77SCWKkB7L6VMeArYNgUseh.jpg + In a clip show episode, Mako, Korra, and Bolin recollect their past. Mako tells Wu about his romantic entanglements and eventual breakup with Asami and Korra. Korra talks to Asami about her confrontations with Amon, Unalaq, Vaatu, and Zaheer. Varrick presents Bolin's life to the Earth Empire refugees in the style of an action film in which Bolin defeats all of Korra's previous enemies. + /yG0H77SCWKkB7L6VMeArYNgUseh.jpg + + + 2014-11-28 + Beyond the Wilds + /fgCiWg5JZpc3bcN2ttBxdSRvoA9.jpg + The spirit vines in Republic City start abducting people and it's up to Korra to figure out why. + /fgCiWg5JZpc3bcN2ttBxdSRvoA9.jpg + + + 2014-12-05 + Operation: Beifong + /o5FrsNhADbyfLhBzRQuGY1XZfbB.jpg + Bolin helps Opal and Lin save the Beifongs from Kuvira. Korra visits the Spirit World looking for help. + /o5FrsNhADbyfLhBzRQuGY1XZfbB.jpg + + + 2014-12-12 + Kuvira's Gambit + /ou6pnScKzH1IbaKgWetxCUAwy2R.jpg + Korra and Team Avatar try to stop Kuvira from moving against Republic City; Kuvira unveils a deadly new weapon. + /ou6pnScKzH1IbaKgWetxCUAwy2R.jpg + + + 2014-12-18 + Day of the Colossus + /2q280iSy1s3iyN0iF5OSMcUBCB9.jpg + Team Avatar clashes with Kuvira on the streets of Republic City; Pema and Prince Wu help evacuate innocent citizens. + /2q280iSy1s3iyN0iF5OSMcUBCB9.jpg + + + 2014-12-18 + The Last Stand + /kbrMScIRyNPJOE6pj3QJo1MweQ1.jpg + The fate of the Earth Kingdom and the Avatar's life is at stake, when Korra comes face to face with Kuvira. + /kbrMScIRyNPJOE6pj3QJo1MweQ1.jpg + + + Book Four is set three years after Book Three. Now broken and bruised, Korra begins a journey of self-discovery and survival as the strong prey upon the weak. When an aggressive military force rises up led by the power-hungry Kuvira, the fate of the Earth Kingdom hangs in the balance and only the Avatar can set things right. + /1KpFAA5KQUjnTtn3aTQMaeTxG0R.jpg + Book Four: Balance + + + + + /gNlnxM9yc2H50WVDHi12tnjESEt.jpg + Glen A. Larson + Automan + 50 + Action & Adventure - Sci-Fi & Fantasy + + Automan + ABC + 1 + US + Automan is an American science fiction superhero television series produced by Glen A. Larson. It aired for only 12 episodes on ABC between 1983 and 1984. + /4dOlxvavpgpDyAFmLNIre1JmcCf.jpg + 7.8 + + + 1983-12-15 + + + 1983-12-15 + Automan + /sr9vOcrpNcUyWVNbRsYafIIrHwB.jpg + Walter Nebicher is a young police officer who wants desperately to get out on the streets and experience some action. Unfortunately, his superior Captain Boyd has assigned Nebicher to a desk job where he can utilize his skills as a computer expert. Still wanting to make a difference, Nebicher goes to work creating the ultimate crime-solving computer program. It turns out so well that the program actually takes on a life of it's own, by taking the holographic form of a man called Automan. Due to the large amount of power needed to exist outside of the computer, Automan can only exist at night, when the rest of the city's power useage is low. Together, he and Walter become one of television's most unusual crime fighting teams. They jump into their first case when Walter's friend Lt. Jack Curtis disappears while investigating the disappearances of several top scientists. Their investigation uncovers an international plot to kidnap the world's top scientific minds, who are then taken to a + /sr9vOcrpNcUyWVNbRsYafIIrHwB.jpg + + + 1983-12-22 + Staying Alive While Running a High Flashdance Fever + /lHSDGIHYfmzd8pBwCmpxr9xsdpv.jpg + Walter and Automan investigate a judge that appears to be corrupt and involved with the mob. + /lHSDGIHYfmzd8pBwCmpxr9xsdpv.jpg + + + 1983-12-29 + The Great Pretender + /5tqL8maofxG2uYuPqIsu2N4woeb.jpg + When a truck load of paper the government uses to print money is hi-jacked, Automan, with the help of Cursor, poses as an rich criminal competing to undermine the existing network of a known criminal dealing in counterfit money. + /5tqL8maofxG2uYuPqIsu2N4woeb.jpg + + + 1984-01-05 + Ships in the Night + Walter and Auto fly to San Cristobal to investigate the disappearances of Americans. They discover a man, aided by the local authorities, that lures investors in order to kill them and take their money. + + + 1984-01-12 + Unreasonable Facsimile + /55dQCEcP469Pl0ulPa7Fo7DkxPf.jpg + Automan and Walter attempt to solve the murder of a businessman and the crash of a police helicopter. Automan begins acting peculiar after watching soap-operas on television. + /55dQCEcP469Pl0ulPa7Fo7DkxPf.jpg + + + 1984-01-19 + Flashes and Ashes + /iGlKx1Ejk0n5ImN33KlVeiQhyCc.jpg + Walter's friend and fellow cop, Frank Cooney is killed during the theft of police weaponry. But when the Internal Affairs agent believes Frank was involved, Walter is suspended when he and Auto interfere trying to prove his friends' innocence. + /iGlKx1Ejk0n5ImN33KlVeiQhyCc.jpg + + + 1984-01-26 + The Biggest Game in Town + /1nJaBTHSBRyQDAjdO3DIN6lZF84.jpg + Automan and Walter attend a computer game convention where they must track down Ronald Tilson, a computer genius who has programmed computers to cause disasters that will kill people unless he gets $10 million dollars. + /1nJaBTHSBRyQDAjdO3DIN6lZF84.jpg + + + 1984-03-05 + Renegade Run + /6r8qxq8Q4ubAsI8RaiKXZ6tAhXP.jpg + When Walter investigates a crooked sheriff who is using illegal immigrants for manual labor, he and a friend are put in jail. Automan teams up with a motorcycle gang to free him. + /6r8qxq8Q4ubAsI8RaiKXZ6tAhXP.jpg + + + 1984-03-12 + Murder MTV + /xYa8cgQUDBQEyocUJBgTRE1GxgZ.jpg + Walter and Automan investigate an apparent attempt to kill the members of an all-girl band called Sweet Kicks. But their investigation if hampered when the father of one of the girls seeks assistance from a crime syndicate. + /xYa8cgQUDBQEyocUJBgTRE1GxgZ.jpg + + + 1984-03-19 + Murder, Take One + /wrUjFSyctdg3WmE8Yc0Wf4K17Jo.jpg + Former movie star Veronica Everly is a suspect in the murder of gossip columnist, Ray Gillette. However, when Automan discovers that a Hollywood producer had a greater motive for murder, he goes undercover as an actor to catch the real killer. + /wrUjFSyctdg3WmE8Yc0Wf4K17Jo.jpg + + + 1984-03-26 + Zippers + /ndOUDxOX4zoFn6KCMXygXRixH7c.jpg + Automan goes undercover as an erotic dancer in a ladies only strip club. + /ndOUDxOX4zoFn6KCMXygXRixH7c.jpg + + + 1984-04-02 + Death By Design + When a ruthless crime syndicate kills one of Jack's best friends, Automan poses as a vigilante cop by the name of Mad Dog who is out for justice. + + + 1984-04-09 + Club Ten + /7fHcEWpjzsPaH1W0nek61scODZi.jpg + The Club Ten resort is a center of diamond smuggling. One of the gang, Felipe, has double-crossed his cohorts and they are after him. Golf pro Ted and henchman Randy catch him, and when he refuses to divulge the whereabouts of the diamonds he stole, they capture his companion, Laura Ferguson, in the act of making a call for help. + /7fHcEWpjzsPaH1W0nek61scODZi.jpg + + + /7SS7FQYeNcBpp9rKqcp1J0CMdNc.jpg + Season 1 + + + + + /rY4HsR1MLlddyrotCDskeC4ROXb.jpg + Gene Roddenberry, Robert Hewitt Wolfe + Andromeda + 45 + Action & Adventure - Drama - Sci-Fi & Fantasy + + Andromeda + Global TV + 5 + CA, US + Captain Dylan Hunt and his crew quest to restore a government that once presided over an extended peace and prosperity. + /wJHCks9QrBOcxyYx1H8dvEjQE7E.jpg + 7.2 + + + 2000-10-02 + + + 2000-10-02 + Under the Night (1) + /kpXhrf3R4QyEIftBfpvWksMiiC5.jpg + It's the start of the war between the Systems Commonwealth and the Nietzschean fleets. Captain Dylan Hunt and his ship the Andromeda Ascendant try to flee the first Nietzschean attack to warn the Commonwealth. In his attempt to escape, the Andromeda and Captain Hunt are caught in the event horizon of a black hole and frozen in time for 300 years. + +The crew of the Eureka Maru with Captain Beka Valentine try to salvage the Andromeda to sell for a Nightsider's ransom. After the Andromeda is pulled free, Hunt is unfrozen and forced to defend his ship against the salvagers and the Nietzschean mercenaries lead by Tyr Anasazi. + /kpXhrf3R4QyEIftBfpvWksMiiC5.jpg + + + 2000-10-09 + An Affirming Flame (2) + /vQslGqyaVvVho4mpxvY6B5dOOqt.jpg + Dylan and the crew of the Eureka Maru agree to join forces and become one team aboard the Andromeda Ascendant as they set forth on his mission to restore the Systems Commonwealth. + /vQslGqyaVvVho4mpxvY6B5dOOqt.jpg + + + 2000-10-16 + To Loose the Fateful Lightning + /1JvBQeKj2rBHNfAEK3nX2cuCAnD.jpg + Dylan inadvertently gives a group of child warriors power to destroy a solar system. + /1JvBQeKj2rBHNfAEK3nX2cuCAnD.jpg + + + 2000-10-23 + D Minus Zero + /8llz9n0UI2ptJ1qypXICqbQQN7I.jpg + Beka and Tyr square off against Dylan for leadership of Andromeda during a dangerous face-off with an unknown enemy. + /8llz9n0UI2ptJ1qypXICqbQQN7I.jpg + + + 2000-10-30 + Double Helix + /8xd8QGnIhVBR4xaIc5UrRFtbCvL.jpg + Captain Dylan Hunt must save the Andromeda from the Nietzscheans, who are trying to persuade Tyr to help them destroy the ship and rebuild his Nietzschean life. His new life would include a wife to carry on his lineage. + /8xd8QGnIhVBR4xaIc5UrRFtbCvL.jpg + + + 2000-11-06 + Angel Dark, Demon Bright + /wRvNkAbG9g9zV9lEtviuc8YdWGj.jpg + Dylan is faced with a difficult decision when Andromeda slipstreams back in time -- days before the climactic battle of the Nietzschean Revolution where the Commonwealth was defeated and the Nietzschean Alliance was destroyed. + /wRvNkAbG9g9zV9lEtviuc8YdWGj.jpg + + + 2000-11-13 + The Ties That Blind + /mv9AeghWila3zmTYc75dsuNs6de.jpg + Beka's con-artist brother unexpectedly shows up claiming to be a devout Wayist making the Andromeda a prime target for Restorian attack. + /mv9AeghWila3zmTYc75dsuNs6de.jpg + + + 2000-11-20 + The Banks of the Lethe + /tYHrM1btjKVjNkd2jrtYPBhmiUt.jpg + Finally, after 300 years and a black hole keeping them apart, Captain Dylan Hunt reunites with his true love, Sara. + /tYHrM1btjKVjNkd2jrtYPBhmiUt.jpg + + + 2000-11-27 + A Rose in the Ashes + /CtIoPuUFKL3O8LCg70UwUir8GS.jpg + With their communication with the crew of the Eureka Maru completely cut off, Dylan and Rommie are forced into exile on a prison planet and must befriend fellow inmates to attempt any escape. + /CtIoPuUFKL3O8LCg70UwUir8GS.jpg + + + 2001-01-15 + All Great Neptune's Ocean + /w6ZdnYCN0uSFW7Tzp2V39GMZZ98.jpg + Tyr and Rommie are framed for the assassination of the Castalian president. + /w6ZdnYCN0uSFW7Tzp2V39GMZZ98.jpg + + + 2001-01-22 + The Pearls that Were His Eyes + /e2IWdaMVRiGDn3SYJ2KkL0e5jHw.jpg + Beka Valentine receives a distress call from her beloved Uncle Sid , but to her disdain realizes that he has become Sam Profit, a big business tycoon. + /e2IWdaMVRiGDn3SYJ2KkL0e5jHw.jpg + + + 2001-01-29 + The Mathematics of Tears + /vEjZTL9wl6oRpIorEb48zjnwuf4.jpg + Andromeda encounters her damaged sister ship, the Pax Magellanic, that leads the crew of the Andromeda Ascendant on an eerie mission. + /vEjZTL9wl6oRpIorEb48zjnwuf4.jpg + + + 2001-02-05 + Music of a Distant Drum + /96vkIsvYgRwENaUr0HawQi87aDh.jpg + A crash landing on a strange planet leaves Tyr with a complete loss of memory and a mystery crate to protect from not-so-brotherly Nietzcheans. + /96vkIsvYgRwENaUr0HawQi87aDh.jpg + + + 2001-02-12 + Harper 2.0 + /8CZHyYmeDxhW1gKaFpWsr8s05lQ.jpg + Harper finds himself overloaded with information when a dying Perseid transfers data into his brain. + /8CZHyYmeDxhW1gKaFpWsr8s05lQ.jpg + + + 2001-02-19 + Forced Perspective + /lK1oR9iA8Ha7tP2NbLkHFet066l.jpg + Dylan is taken captive and forced to admit that he killed the Mobius leader and overthrew the Mobius government more than 300 years ago. + /lK1oR9iA8Ha7tP2NbLkHFet066l.jpg + + + 2001-02-26 + The Sum of Its Parts + /74XPyELtwRnE3qtCT20DI9o64y7.jpg + A humanoid robot visits the Andromeda crew, helps them fight off a culture of organized machines and learns what it means to be a living being. + /74XPyELtwRnE3qtCT20DI9o64y7.jpg + + + 2001-04-09 + Fear and Loathing in the Milky Way + /yrE1P8Bosn51rO3uGK4pv5xcoXk.jpg + Trance, Harper and their former employer Gerentex are unwilling partners on a wild ride to find a valuable artifact. + /yrE1P8Bosn51rO3uGK4pv5xcoXk.jpg + + + 2001-04-16 + The Devil Take the Hindmost + /dEzl7VOJvLpKlyq6DyUeKz0QkmM.jpg + Rev Bem gets a call from a Wayist friend in need of his help to save the Hajira and its settlement, Serendipity, from being taken over by slavers. + /dEzl7VOJvLpKlyq6DyUeKz0QkmM.jpg + + + 2001-04-23 + The Honey Offering + /mlGIQMfUImAiUdEL6QYesaY6b4e.jpg + An arranged marriage between two rival Nietzschean Prides puts the Andromeda Ascendant in danger when Captain Dylan Hunt agrees to transport the bride to the wedding. + /mlGIQMfUImAiUdEL6QYesaY6b4e.jpg + + + 2001-04-30 + Star-Crossed + /ycLkmZoQ2PXEWeanh9IPnq51lfC.jpg + Rommie falls in love with a surviving android (Michael Shanks) of a destroyed ship, only to be betrayed as he turns out to be the ultimate enemy. + /ycLkmZoQ2PXEWeanh9IPnq51lfC.jpg + + + 2001-05-07 + It Makes a Lovely Light + /2DztMjaIrhh0LblVd7fLAUVTfV0.jpg + Beka jeopardizes the crew when she takes a mind-altering drug while attempting an exhaustive piloting mission that could bring Dylan to his long-lost home planet. + /2DztMjaIrhh0LblVd7fLAUVTfV0.jpg + + + 2001-05-14 + Its Hour Come 'Round at Last (1) + /7hDWqoQZNP3sxMI1UshhT9rTa3R.jpg + When Harper accidentally overrides Andromeda's personality with an older version, she hunts down the crew and goes on an old mission in which her former crew was slaughtered. + /7hDWqoQZNP3sxMI1UshhT9rTa3R.jpg + + + /1mYJsoQh2WmcXegaEwpSXCy3gMO.jpg + Season 1 + + + 2001-10-01 + + + 2001-10-01 + The Widening Gyre (2) + /yKPbZfax2Gm6o1EETqCWHVbuiQC.jpg + Trance gets Beka and Dylan to medbay, while Rev goes to see a man about his god and Tyr and Harper are injected with Magog eggs and tied up. Dylan and the Andromeda avatar go down to get Tyr and Harper, leaving Beka behind with orders to use a nova bomb to detonate the "bound" planets' sun in three hours. Meanwhile Rev meets with Bloodmist, and begins to give into his bestial nature. The two of them confront the Magog "god", which seems to convince Rev to kill his friends. Bloodmist takes him to Tyr and Harper, but its a trick and Rev kills Bloodmist. Dylan and Andromeda are overwhelmed when Beka launches the nova bomb, but the Magog "god" manages to absorb all the energy. The distraction gives them time to free Tyr and Harper and get out of there. Trance manages to remove Tyr's spider eggs, but the procedure would kill Harper. He has to take medication to keep them in check, but the medicine won't work forever. Meanwhile, they've figured out that the Magog travelling "bound planets" w + /yKPbZfax2Gm6o1EETqCWHVbuiQC.jpg + + + 2001-10-08 + Exit Strategies + /z3QB5wDKsfCDzT7JzLe4IFCKtrK.jpg + Dylan, Beka, Rev Bem and Tyr pursued by a gang of Neitzscheans, are forced to make a crash landing on an icy planet. + /z3QB5wDKsfCDzT7JzLe4IFCKtrK.jpg + + + 2001-10-15 + A Heart for Falsehood Framed + /l0OqEs4ZJoDtcEwVQwUcazZDVVk.jpg + The crew of the Andromeda replaces a sacred relic with a fake, attempting to negotiate peace between two battling parties. + /l0OqEs4ZJoDtcEwVQwUcazZDVVk.jpg + + + 2001-10-22 + Pitiless as the Sun + /pKtMgaJgfHz14HKNuQLc5yNRDrj.jpg + Trance is held captive, while Dylan and the rest of the crew try to uncover the source behind mysterious attacks on cargo ships. + /pKtMgaJgfHz14HKNuQLc5yNRDrj.jpg + + + 2001-10-29 + Last Call at the Broken Hammer + /uWg0vsbxcZPxugfsWcp8Dkp5P9w.jpg + Hunting for the woman who set up the only major interstellar alliance since the Fall, Dylan finds himself in a bar at the edge of a desert wasteland, trying to fend of a Kalderan attack. + /uWg0vsbxcZPxugfsWcp8Dkp5P9w.jpg + + + 2001-11-05 + All Too Human + /jYvy7Hj6fgVez1GeQ7eRTBZoYs7.jpg + Rommie sets out to extract an informant, but winds up stuck on a planet with a strong hatred and fear of Androids. + /jYvy7Hj6fgVez1GeQ7eRTBZoYs7.jpg + + + 2001-11-12 + Una Salus Victus + /cNtcAJQaRAQ6vqiz0t9pU101NOd.jpg + After discovering Tyr has hidden the remains of Drago Musevini on board the Andromeda, Dylan questions Tyr's loyalty. Beka and a Nietzchean both race to repair their ships before the other destroys them, and Harper is left in command of the Andromeda, and must decide whether or not to protect a convoy and risk losing the Andromeda. + /cNtcAJQaRAQ6vqiz0t9pU101NOd.jpg + + + 2001-11-19 + Home Fires + /ngR8Bg2g7ASMBGtLHq2gUT0niXO.jpg + A stranger gives Dylan a message from his dead fiancée leading him to an untouched world with descendants of his former crew and friends, including the descendant of his treachorous former best friend. + /ngR8Bg2g7ASMBGtLHq2gUT0niXO.jpg + + + 2001-11-26 + Into the Labyrinth + /pOBtFd5opm671VawNtagI7eoC1h.jpg + A Commonwealth conference becomes a backdrop for Magog espionage, while Harper tries to discover how one of their spies managed to remove some of his Magog larvae. + /pOBtFd5opm671VawNtagI7eoC1h.jpg + + + 2002-01-19 + The Prince + /pNTVOLzVommNUJ1xE3jgbXLHYFE.jpg + Teen royalty is the key to the crew quelling an alien uprising, as Dylan and Tyr become co-regents to a recently orphaned young prince. + /pNTVOLzVommNUJ1xE3jgbXLHYFE.jpg + + + 2002-01-26 + Bunker Hill + /pqA5F09ACiDyLkE03YsvixE56ys.jpg + The crew returns for the first time to Earth, where Harper and his cousin try to save the homeworld from Nietzschean occupation. + /pqA5F09ACiDyLkE03YsvixE56ys.jpg + + + 2002-02-02 + Ouroboros + /bNBIalUAGcZ1kR1XqONS1Kw2POV.jpg + The crew watches Rev Bem's fairwell message, not sure whether or not to pursue him, or let him leave. Dylan says that they should respect Rev's decision to leave, but Harper snaps at Dylan and storms out. He is upset because Rev had promised to remove the Magog larvae from his gut. He writhes in pain, but when he tries to take his medication, it has no effect, as the larvae have grown immune to it, as Trance and Rev had warned him they would. Soon after, Harper enlists in Chief Technical Director Hohne's help, as well as the other Persieds. Harper plans to build a machine that will fold space to remove the eggs, but it's affecting time, as well. + /bNBIalUAGcZ1kR1XqONS1Kw2POV.jpg + + + 2002-02-09 + Lava and Rockets + /gz3n1DLZwumoXRpGdS8mAtrA1h6.jpg + Dylan hijacks a starship to lose the Ogami. + /gz3n1DLZwumoXRpGdS8mAtrA1h6.jpg + + + 2002-02-16 + Be All My Sins Remembered + /bLodFAD3iSPJThvvcSS22TCwlW1.jpg + As an old friend of Beka's has died, she tells the crew about her past. + /bLodFAD3iSPJThvvcSS22TCwlW1.jpg + + + 2002-02-23 + Dance of the Mayflies + /18muM0128auMyLc9FOgfQKlwM3g.jpg + The crew of Andromed encounter plague victims infected by a hostile, nanobot-based lifeform out to take over the ship. + /18muM0128auMyLc9FOgfQKlwM3g.jpg + + + 2002-03-02 + In Heaven Now Are Three + /vUva34WWOJ6utLnkIBSK15FTxa.jpg + Beka, Dylan and Trance attempt to find the Engine of Creation, an artifact able to rearrange space and time. + /vUva34WWOJ6utLnkIBSK15FTxa.jpg + + + 2002-04-13 + The Things We Cannot Change + /7ihWuFV3gZzpoIzJdnCkXCEE4B5.jpg + Dylan runs into a problem while analysing a black hole and imagines what his life would be like with a family before the common wealth fell. + /7ihWuFV3gZzpoIzJdnCkXCEE4B5.jpg + + + 2002-04-20 + The Fair Unknown + /xUfgOfc28XdJY9I80IdjPV2Pfi5.jpg + The crew encounter the Vedrans the long-lost founders of the Commonwealth. + /xUfgOfc28XdJY9I80IdjPV2Pfi5.jpg + + + 2002-04-27 + Belly of the Beast + /fDGMBCk6EoSs3h3MMvK6crg2ndH.jpg + The Andromeda is swallowed by a space creature. + /fDGMBCk6EoSs3h3MMvK6crg2ndH.jpg + + + 2002-05-04 + The Knight, Death, and the Devil + /4SwyQfphOgXWZCvnqakZZOVi4lK.jpg + The crew encounter a POW camp full of captured High Guard starships and their AI avatars. + /4SwyQfphOgXWZCvnqakZZOVi4lK.jpg + + + 2002-05-11 + Immaculate Perception + /7RoPzmMe3dCcTf7pRqY5E5j75te.jpg + Tyr learns that he is a father. + /7RoPzmMe3dCcTf7pRqY5E5j75te.jpg + + + 2002-05-18 + Tunnel at the End of the Light (1) + /lYsGArfaAFqviBAw0Pbz1905PJp.jpg + The crew of the Andromeda meet an alien race they were destined to face. + /lYsGArfaAFqviBAw0Pbz1905PJp.jpg + + + /cRZjgRc23fL51BsAlVfcJB3YIFX.jpg + Season 2 + + + 2002-09-21 + + + 2002-09-21 + If the Wheel Is Fixed (2) + /6PPXcfVq9QdVgjLmlOKlRxVNnp4.jpg + Resuming from the previous season, the Andromeda is on the edge of a dimensional portal searching for Beka and Tyr. In an attempt to save them, Harper has constructed a device to reopen the portal. Using this Dylan enters the portal in the Maru. + +As he returns to Andromeda without his missing crew members, they appear on the ship. With no explanation to where they have been, they both attempt to get the ship away from the dimensional rift. Beka and Tyr seem to be acting very strangely and Harper discovers that there is a signal coming from the portal that is controlling Beka and Tyr. + +As Beka tries to get the Andromeda to enter the portal and kidnaps Trance, Tyr kidnaps Rommie and then erases the ships core AI. Trance frees herself from Beka's restrains and fights her on the deck of the Maru.Tyr and Dylan then get into a fight while the Andromeda is slowly moving towards the rift. + +Harper manages to close the rift just as Tyr is about to kill Dylan. This severs the connections and Tyr and + /6PPXcfVq9QdVgjLmlOKlRxVNnp4.jpg + + + 2002-09-28 + The Shards of Rimni + /Ac2JAvzek07mmBtN47xdSMdfsKC.jpg + Dylan is framed for murder in order to blackmail him for a shard he possesses. + /Ac2JAvzek07mmBtN47xdSMdfsKC.jpg + + + 2002-10-05 + Mad to Be Saved + /n8vCNunRi4WSPK8jJolu2d8grVq.jpg + The Andromeda picks up a group of refugees who have been subjected to psychological and physical torture. + /n8vCNunRi4WSPK8jJolu2d8grVq.jpg + + + 2002-10-11 + Cui Bono + /qSLCjBOBgFTAlwDrBeg5HgMRi3V.jpg + Beka's Uncle Sid returns, as a candidate for a leader of the Commonwealth. He plans to use the Andromeda to help his chances, but an assassin has other plans for him. + /qSLCjBOBgFTAlwDrBeg5HgMRi3V.jpg + + + 2002-10-21 + The Lone and Level Sands + /2TQ7KaST2fhfWACkSEmRuF3d5hy.jpg + As Dylan, Rommie, Tyr and Harper flee from the Ogami, they encounter a ship sent from Earth to explore space over 3000 years ago. As the ship is a giant engine, it travels so fast that the crew never age. As the Maru has no slipstream engine, Dylan is faced with a decision that could change the future of the commonwealth. Can the Andromeda come to the rescue? + /2TQ7KaST2fhfWACkSEmRuF3d5hy.jpg + + + 2002-10-28 + Slipfighter the Dogs of War + /nSivxWDhndZkOxJU337domzW2AX.jpg + After finding out that a planet is developing nova bombs and testing them on nearby star and planet, Dylan takes it upon himself to disarm them. The commonwealth refuses to help so its a mission for the Andromeda and her crew! + /nSivxWDhndZkOxJU337domzW2AX.jpg + + + 2002-11-11 + The Leper's Kiss + /cojpYqejD08EmmOhPQCEMrDhbXH.jpg + Dylan sets out to find an assassin known as The Leper who is trying to kill his good friend. + /cojpYqejD08EmmOhPQCEMrDhbXH.jpg + + + 2002-11-18 + For Whom the Bell Tolls + /lXxGyrYuX6BNZfbZelT4eQfPVdm.jpg + After rescuing some people from a storm, a 'maggot' is brought onto Andromeda. This maggot chews through the systems and activations an old hologram of a crew member. This member had sealed himself in one of the hidden decks before the event horizon and had some through it. Believing that Dylan has betrayed the Commonwealth, an avatar and android of the crew man takes over the ship to bring Dylan to justice... + /lXxGyrYuX6BNZfbZelT4eQfPVdm.jpg + + + 2002-11-25 + And Your Heart Will Fly Away + /wY1uTTjhFHc4zaPLOpT5stzyNZJ.jpg + Tyr receives a communication from a human on an abandoned planet and leaves to meet her. As he does, a mad scientist boards the Andromeda using dark matter ninjas. After beating them, the man introduces himself. He loves the woman Tyr is with and wants to kill her, if he cant have her, nobody can. After saving her, he forgives her and lets her live. + +The episode ends with Tyr revealing that she is actually a Neitzian, the last female from Codiac, Tyrs pride. He says that he wants them to start a new Codiac pride but she refuses and Tyr leaves. + /wY1uTTjhFHc4zaPLOpT5stzyNZJ.jpg + + + 2003-01-20 + The Unconquerable Man + /jbvAk3CKnIJyPxM8IKrNMhab3Vi.jpg + Gaheris Rhade sets out to reshape the universe according to his will and restore order amid the chaos + /jbvAk3CKnIJyPxM8IKrNMhab3Vi.jpg + + + 2003-01-27 + Delenda Est + /g5PqTuFzrNyZh3IWuZds4oLK9B4.jpg + The Andromeda tries to stop mysterious attacks occurring on nearby planets and outposts. + /g5PqTuFzrNyZh3IWuZds4oLK9B4.jpg + + + 2003-02-03 + The Dark Backward + /nQXY8QX2NdsRnMJRHRZAeoQcyjZ.jpg + The episode opens with Beka, dead on the floor of Command. She has a hole in her chest. Harper's body is propped against a machine, being electrocuted. Tyr lies on the floor of a deck, also dead. Dylan is leaning against some bars, bleeding. In Slipstream Control, Rommie is picked up by a large stranger in black armor, and thrown down to the Core. The stranger activates an overload, and the Andromeda splits in two, then explodes. Trance, in a mysterious blue space, watches in horror. She is with one of her Bonzai trees. ""Okay, that did not work."" she says, ""Let's try again."" + /nQXY8QX2NdsRnMJRHRZAeoQcyjZ.jpg + + + 2003-02-10 + The Risk-All Point + /ibmIEtpW2lc0ENp51llC2VdLZfH.jpg + When Dylan is invited to the launch of the first Commonwealth ship made in 307 years, you can tell something will go wrong. As the ship explodes sabotage is suspected. As Dylan and the crew try to find the culprit, they encounter many different suspects while being attacked a violent pride. Can Dylan find the culprit before the Maru is next? + /ibmIEtpW2lc0ENp51llC2VdLZfH.jpg + + + 2003-02-17 + The Right Horse + /2ULtAuOKIaKSnyDvl0A1Bis0yFY.jpg + When an old flame of Beka's is arrested on a planet where only the truth is told, its up to the Andromeda and her crew to save the day. After repeatedly lying, Beka gets no-where so she breaks the suspect out in flees to the Andromeda. As the story unravels, it seems that all is not as it seems..... + /2ULtAuOKIaKSnyDvl0A1Bis0yFY.jpg + + + 2003-02-24 + What Happens to a Rev Deferred? + /i16cLHN7vCT3hTYAZ6SDTnJFNqT.jpg + As the Andromeda responds to a distress call from a planet on the brink of destruction, the crew intercept a transmission from a ship returning to the surface. After seeing the message from Rev Bem the crew loads up to save him from the planet. As Rev is following the path of the Divine flashbacks occur of the Andromeda crew to help him on his way. + /i16cLHN7vCT3hTYAZ6SDTnJFNqT.jpg + + + 2003-03-31 + Point of the Spear + /3z27VRCrGoqdQcVwNn225vh1jm0.jpg + When the Andromeda responds to a request to destroy atmosphere generators on Samsarra, they encounter a battle group of Pyrians and stand off until the Commonwealth fleet arrives. in a revelation from Trance, Dylan finds out that Trances people believe the Pyrian fleet stronger and better equipped to handle the forthcoming war. With this information, she tells Dylan to pull out and let the Pyrians win so that they can take on the Magog World Ship instead of the renewed Commonwealth. + +Dylan sees that the only way to stop them is to destroy the planet that he is trying so hard to save.... + /3z27VRCrGoqdQcVwNn225vh1jm0.jpg + + + 2003-04-07 + Vault of the Heavens + /aTxBAGMXwZjVDsvrzxnSI8djVWz.jpg + After receiving a message from an unknown planet 3 days in Slipstream away, the crew of the Andromeda take it upon themselves to save the people. The strange thing is that the message is a woman and it is going directly into Dylans head and no-one else can hear it. + +As they enter the ice moon of one of the planets, they come upon the Vault of the Heavens. A large palace made of ice. in discovering this the comm is cut and on Dylan's orders, Try destroys an energy cloud above the planet. After discovering that the aliens mean no harm, Dylan finds out that they need the cloud, or the entire species will die! + +Will they be able to return the cloud before the time runs out? + /aTxBAGMXwZjVDsvrzxnSI8djVWz.jpg + + + 2003-04-14 + Deep Midnight's Voice + /2PkOpxHySz2oGxCU3mKz5yeTXfn.jpg + Dylan and the crew search for a Nietzschean slip-scout carrying a probe that enables one to map every meter of the slipstream + /2PkOpxHySz2oGxCU3mKz5yeTXfn.jpg + + + 2003-04-21 + The Illusion of Majesty + /uAlfPlnvxhtD2ued4kpoByMnoYM.jpg + The Andromeda end up in the Prolon System where they discover a hibernation capsule occupied by a woman impersonating a dead princess. + /uAlfPlnvxhtD2ued4kpoByMnoYM.jpg + + + 2003-04-28 + Twilight of the Idols + /vfpjJHgrhdfduB6JDQrUZkPBNUO.jpg + The Andromeda crew search for a colony that disappeared. + /vfpjJHgrhdfduB6JDQrUZkPBNUO.jpg + + + 2003-05-05 + Day of Judgement, Day of Wrath + /4LQkP0UwWkfUsWYfQVf7gJJaunj.jpg + When the crew prepares for the launch of The Resolution of Hector, they soon discover that Rommie has had a change of mind and is now working against the crew. Knowing that this is not normal, Dylan sets out to reclaim the ship, and find out what is controlling his friend. + /4LQkP0UwWkfUsWYfQVf7gJJaunj.jpg + + + 2003-05-12 + Shadows Cast by a Final Salute (1) + /eiewDiqcsTxKKCDCxSCtQkM8pKo.jpg + When the Andromeda is attacked by the Dragons to receive the bones of Drago Mussevni something seems array. Dylan then discovers that Tyr has united all of the Neitzian people under his son, the genetic reincarnation of Drago Mussevni. Will Tyr make the right decision and help the crew of the Andromeda or lead his new people into battle? + /eiewDiqcsTxKKCDCxSCtQkM8pKo.jpg + + + /riovqVMOdol4Zd24tGBYmjUDQOs.jpg + Season 3 + + + 2003-09-29 + + + 2003-09-29 + Answers Given to Questions Never Asked (2) + /adnQY3lP8ND2ObcC7QX6PCpIAZP.jpg + A seemingly psychotic ""Collector"" simultaneously takes credit and blames Dylan for the fall of the Commonwealth. He also claims to be hosting (or holding captive?) the Triumvir Tri-Jema. The crew must decide whether to accompany Dylan on yet another odds-defying journey to save the Universe or to retire in relative safety. + /adnQY3lP8ND2ObcC7QX6PCpIAZP.jpg + + + 2003-10-06 + Pieces of Eight + /qMopHi7H8u1RaFrxt9fHaxgIL5t.jpg + A power-hungry citizen seeks to manipulate the Commonwealth for his own gain. Dylan receives an unsettling view of his future from a prophetic alien. + /qMopHi7H8u1RaFrxt9fHaxgIL5t.jpg + + + 2003-10-13 + Waking the Tyrant's Device + /br6P5sOlLJp5kw6e24TetOX0Za9.jpg + Dylan and an old friend try to prevent the maker of the Magog Worldship from deploying an army of androids. + /br6P5sOlLJp5kw6e24TetOX0Za9.jpg + + + 2003-10-20 + Double or Nothingness + /u7VXmL3tzzQRfL9XQhNNhizgfHC.jpg + Dylan plays a dangerous game against two gamblers, but not everything is as real as it seems. + /u7VXmL3tzzQRfL9XQhNNhizgfHC.jpg + + + 2003-10-27 + Harper/Delete + /bqjQwHTwVo2RgvNn2qFO4V90X9o.jpg + The ultimate weapon falls into the hands of a Nietzschean pirate. Can Harper disarm it before the Magog arrive? + /bqjQwHTwVo2RgvNn2qFO4V90X9o.jpg + + + 2003-11-03 + Soon the Nearing Vortex (1) + /6bhlwv1cDlJO5kRE7sx45nMTlca.jpg + The reappearance of Tyr Anasazi and Telemachus Rhade leads to a race to obtain the Route of Ages, which will direct the owner to the location of the Abyss itself. Dylan and the crew plan to use it as a weapon, while Tyr plans on bargaining with the Abyss in hopes of it sparing his empire. + /6bhlwv1cDlJO5kRE7sx45nMTlca.jpg + + + 2003-11-10 + The World Turns All Around Her (2) + /1aYT38QXwhPc5UuKENUCu2npaUL.jpg + In a race against Tyr to control the Route of Ages, the crew find themselves in another universe. To save them, Trance finally reveals who and what she really is. + /1aYT38QXwhPc5UuKENUCu2npaUL.jpg + + + 2003-11-17 + Conduit to Destiny + /2Li3asOQORPJEyYNNbN5JyyiJiS.jpg + The crew assists in the search for escaped prisoners on a new Commonwealth member world. Dylan finds himself playing a role in an ancient prophecy. + /2Li3asOQORPJEyYNNbN5JyyiJiS.jpg + + + 2004-01-12 + Machinery of the Mind + /mbwoIUsccustCDOtKFoBsNWCkYh.jpg + Harper attends a conference of the Commonwealth's greatest minds. Unfortunately, a mysterious assassin has plans for that collected brilliance. Meanwhile, Dylan is being escorted to meet with Tri-Lorn... or is he? + /mbwoIUsccustCDOtKFoBsNWCkYh.jpg + + + 2004-01-19 + Exalted Reason, Resplendent Daughter + /uC6rKhUUxUuZPNWMkRMSmf082oj.jpg + The crew searches for a princess abducted by a ruthless pirate. As usual, nothing is as it seems. Along the way, a secret from Beka's past is revealed. + /uC6rKhUUxUuZPNWMkRMSmf082oj.jpg + + + 2004-01-26 + The Torment, the Release + /ebG1ekwY3CXfq65seRURqcKyaCl.jpg + Dylan is put on trial for high crimes against the Commonwealth. + /ebG1ekwY3CXfq65seRURqcKyaCl.jpg + + + 2004-02-02 + The Spider's Stratagem + /i346qWsHOLzKn18r6F1qIxdHWXK.jpg + The crew intercepts a mysterious cargo en route to a war zone. + /i346qWsHOLzKn18r6F1qIxdHWXK.jpg + + + 2004-02-09 + The Warmth of an Invisible Light + /rm9yRmXRnukrtVXGYUTk6kmREMc.jpg + One of Harper's experiments goes awry, and Dylan ends up in an alternate reality. + /rm9yRmXRnukrtVXGYUTk6kmREMc.jpg + + + 2004-02-16 + The Others + /ig0hftmBxnRVu9OLxOLm2uBCixK.jpg + The crew rescues two people from a spaceship, the leaders of opposing sides in a long civil war on a nearby planet. The two warring sides have built an immense wall separating the northern and southern halves of the planet, and the Northerners are suffering from a plague that is blamed on the Southerners. After Dylan contracts the plague, the crew try to assist in settling the dispute and find a cure for the plague, but nothing goes as planned. + /ig0hftmBxnRVu9OLxOLm2uBCixK.jpg + + + 2004-02-23 + Fear Burns Down to Ashes + /orAd6AbCrhDPHwmJIC0ppn08i9o.jpg + The Collectors have been using a drug to modify people's behavior, discovering their fears in efforts to control or break them. This is their solution for dealing with Dylan. Led by a message from Rev Bem, claiming to have a weapon that can defeat the oncoming darkness, Dylan lands on a drug-trafficking planet and is soon taken captive by the Collectors. + /orAd6AbCrhDPHwmJIC0ppn08i9o.jpg + + + 2004-04-05 + Lost in a Space that Isn't There + /wbltR1Bt4JzoBUnEKTqkDcCicGD.jpg + After being repeatedly attacked by bounty hunters after several evasive slipstream jumps, Dylan determines that there must be a mole on board. After analyzing data recordings, he discovers that Beka has been infected by The Abyss and has unknowingly been giving away Andromeda's position. Dylan and the crew have to come up with a way to rid Beka of The Abyss -- without killing her. + /wbltR1Bt4JzoBUnEKTqkDcCicGD.jpg + + + 2004-04-12 + Abridging the Devil's Divide + /qWWXnipGm3AZhgRpAYUxbyCIQ1k.jpg + While on a mission on the Maru, Dylan, Rhade and Harper (and the Maru) are captured by the Templars. The Patriarch of the Templars presses Harper to help him build a bridge -- a time bridge to 210 years in the future. However, sometimes even the future is unpredictable. Meanwhile, Beka, Trance and Rommie chase down smuggler ships. + /qWWXnipGm3AZhgRpAYUxbyCIQ1k.jpg + + + 2004-04-19 + Trusting the Gordian Maze + /vqY8nWHqjimcCm5TXGwwIMHKGZW.jpg + While the Andromeda is confronted by the Commonwealth fleet and Tri-Jema, Dylan must decide whether or not he can entrust the Route of Ages to them. + /vqY8nWHqjimcCm5TXGwwIMHKGZW.jpg + + + 2004-04-26 + A Symmetry of Imperfection + /g8V9QVDnGrjXGMf8N2rGAJ9yETH.jpg + Rommie's emotions cause one of Harpers fail-safes to cut in, cutting her off from her core AI and shutting down all the ships systems. This creates problems, especially when a satellite ship from the Magog world ship could come out of slipstream at any moment! + /g8V9QVDnGrjXGMf8N2rGAJ9yETH.jpg + + + 2004-05-03 + Time out of Mind + /bey26Y3sJb3BcvNTCkt2xwcSBXk.jpg + The death of a man from Beka's past named Weslow, sends the crew in search of an archive that can let Beka relive some of her childhood experiences so that she may make sense of Weslow's dying words. + /bey26Y3sJb3BcvNTCkt2xwcSBXk.jpg + + + 2004-05-10 + The Dissonant Interval (1) + /z2Wn0krg5cl2x87gygrp7AieOQr.jpg + The Andromeda encounters the Arkology, a society that they believe is the closest to perfection humanity will ever achieve. But the Magog are close, and Dylan and the crew must convince the utopia that peace is not the answer. Conflict arises in the core crew when the leaders of Arkology do not wish to leave. Dylan wants to defend them, and Beka warns him that she's not going to stay and die defending an idea of peace. + /z2Wn0krg5cl2x87gygrp7AieOQr.jpg + + + 2004-05-17 + The Dissonant Interval (2) + /qzvzDMzIBF5DozP4V9OAMbYMp93.jpg + Beka decides to leave the crew to fight for themselves, but after all of the promises that everyone will be reunited, Trance tells them that they will never be as they are again. When the Magog Worldship finally re-encounters the Andromeda after two years, Rommie and Harper race to take the Arkology to slipstream, Rhade must teach the inhabitants to defend themselves, and Dylan and Trance fight off the invading Magog. But as the Andromeda becomes covered in swarmships, Trance tells Dylan that he--and only he--may escape this alive. + /qzvzDMzIBF5DozP4V9OAMbYMp93.jpg + + + /wIhZCtMx9dGya8qgaIUQBUy0tlO.jpg + Season 4 + + + 2004-09-24 + + + 2004-09-24 + The Weight (1) + /xPy0ucEZZdp69jX1Zcd0lgOlGsA.jpg + Dylan finds himself on Seefra-1, one of nine identical planets orbiting two suns. He soon encounters Rhade, who has abandoned all hope. Rhade hates Dylan for the hope he has brought, and when someone asks Dylan be killed, Rhade agrees to do it. + /xPy0ucEZZdp69jX1Zcd0lgOlGsA.jpg + + + 2004-10-01 + The Weight (2) + /4D1URcvy4A5jfpKkhhtEjLp0lbL.jpg + Dylan and Rhade receive a month-old distress signal from Beka. After following the coordinates she left, they find the Andromeda dead in space. On board, he finds Darregacorp engineers trying to salvage it, led by Jonah Derrega, and Beka Valentine. + /4D1URcvy4A5jfpKkhhtEjLp0lbL.jpg + + + 2004-10-08 + Phear Phactor Phenom + /jFdegCXJhUGkEnqAkZERBXjKh1d.jpg + When a valuable painting gets stolen after Beka, Rhade, and everyone else in the bar inhales a mysterious mist, Dylan jumps at the opportunity to win the reward for reclaiming it so the Andromeda can be repaired. After tracing the nanobots in the mist, they encounter Harper who is accompanied by a beautiful woman named Doyle. But Harper is caught up in the plans of Marika, who wants him to genetically engineer Vedrans, as well as to take over the Seefra system. + /jFdegCXJhUGkEnqAkZERBXjKh1d.jpg + + + 2004-10-15 + Decay of the Angel + /dAhrgk6NK6rhdoBZnt0VIc5UGyE.jpg + When a slipstream event is detected in the Seefra system, Dylan, Rhade, and Beka try to find it, and their way out. Meanwhile, a man claiming to be from the future approaches Doyle, addressing her as Andromeda. + /dAhrgk6NK6rhdoBZnt0VIc5UGyE.jpg + + + 2004-10-22 + The Eschatology of Our Present + /eBvPvZ04oPOh4b1zz5DnPlHYwms.jpg + Beka learns she has existed in more than one place at one time when she meets a man who she knows is her father. + /eBvPvZ04oPOh4b1zz5DnPlHYwms.jpg + + + 2004-10-29 + When Goes Around... + /cTbAj2MUQSgPLMB0En4UL1bbR0J.jpg + Dylan encounters Celine, a woman from his past and is trapped in time loops. The two are happy to see each other, but Dylan knows he may have to choose between Celine and the survival of Seefra. + /cTbAj2MUQSgPLMB0En4UL1bbR0J.jpg + + + 2004-11-05 + Attempting Screed + /wCKZUoX24Zu6INM9nVu2GcAIFCf.jpg + The unexpected return of Flavin takes Dylan on a journey through time, revealing mysteries surrounding Tarn Vedra, the Paradine, the battle with the Worldship, and Trance. + /wCKZUoX24Zu6INM9nVu2GcAIFCf.jpg + + + 2004-11-12 + So Burn the Untamed Lands + /1ZXbcYtXm30ZZrFmKTB9doRiahC.jpg + Dylan and Rhade attempt to infiltrate a mining camp where crystals are extracted, which contain the power needed to restore the Andromeda and leave the Seefra system. + /1ZXbcYtXm30ZZrFmKTB9doRiahC.jpg + + + 2004-11-19 + What Will Be Was Not + /e7sXpUDUA6sfd9zAEjVFHQTJQ90.jpg + When Trance believes Rhade and the crew blame her for their situation, she runs off into Seefra-1's underground tunnels. As Dylan and Doyle pursue her, they discover the use of ancient Vedran technology. + /e7sXpUDUA6sfd9zAEjVFHQTJQ90.jpg + + + 2005-01-07 + The Test + /cBJGhOALZsWUlbbihIdFjRPq5yj.jpg + The crew is tormented by a mysterious stranger who accuses them of murder. + /cBJGhOALZsWUlbbihIdFjRPq5yj.jpg + + + 2005-01-14 + Through a Glass Darkly + /2rE2i8RJKtXovTjiHUrgsRCCzEO.jpg + An old friend who Harper thought was dead returns to help the crew in a battle for Seefra-5. + /2rE2i8RJKtXovTjiHUrgsRCCzEO.jpg + + + 2005-01-21 + Pride Before the Fall + /6UXiZiolTRam4BQWRiw2tRAeejl.jpg + A deadly enemy from the past returns with plans to create an elite warrior race. + /6UXiZiolTRam4BQWRiw2tRAeejl.jpg + + + 2005-01-28 + Moonlight Becomes You + /7pKjuBIQ5SgPr78NmzVJF9gunbW.jpg + When Trance becomes attracted to a mysterious young man from her past, the reunion causes her to begin regaining her memories. + /7pKjuBIQ5SgPr78NmzVJF9gunbW.jpg + + + 2005-02-04 + Past Is Prolix + /5wPT6UTY3kRtAwOrOtR7VmvuBnQ.jpg + The arrival of Trance's sun threatens to destroy all the planets except Seefra-1 unless the system problem is fixed. + /5wPT6UTY3kRtAwOrOtR7VmvuBnQ.jpg + + + 2005-02-11 + The Opposites of Attraction + /67LlKdEF4Jh8ZHvCQfZbweZrbAD.jpg + The avatar of the black hole, that trapped Dylan after the Nietzschean ambush, returns to get him back. + /67LlKdEF4Jh8ZHvCQfZbweZrbAD.jpg + + + 2005-02-18 + Saving Light from a Black Sun + /6PAGmlttBy7czdaCNLn1PnST4Pm.jpg + The crew travels to the core of Seefra's sun Methus-2 to repair it. + /6PAGmlttBy7czdaCNLn1PnST4Pm.jpg + + + 2005-04-08 + Totaled Recall + /eff4EEs4bh0UMC6HSK27KHyvhYZ.jpg + An explosion sends Dylan into an inter-dimensional loop, with a man named Elysian telling him to decipher a riddle. + /eff4EEs4bh0UMC6HSK27KHyvhYZ.jpg + + + 2005-04-15 + Quantum Tractate Delirium + /wXZ5gUQMRho0y8L0KU6ROSsPZPQ.jpg + As Trance's sun closes on Seefra-9, Rommie is rebuilt by Doyle to help evacuate the planet. + /wXZ5gUQMRho0y8L0KU6ROSsPZPQ.jpg + + + 2005-04-22 + One More Day's Light (1) + /uUnvLM31lAvBTgLvRWRZrPIhYK5.jpg + The evacuation of Seefra-5 is at risk when a religious sect decides to stay on the planet. + /uUnvLM31lAvBTgLvRWRZrPIhYK5.jpg + + + 2005-04-29 + Chaos and the Stillness of It (2) + /pZbqQp2LDCaTQNsCXJB5tSd8r2x.jpg + As General Burma arrives on Andromeda, with Harper in tow, Dylan and Rhade head for Methis 2, about to be crushed by Trance's sun, leaving Doyle, Rommie, and Beka to face Burma, and the forgotten enemy he brings with him. + /pZbqQp2LDCaTQNsCXJB5tSd8r2x.jpg + + + 2005-05-06 + The Heart of the Journey (1) + /vZLJ8YrNq7Gk6JjorhrM455NeIJ.jpg + With the help of the avatars of the nebula, the Andromeda goes through the Route of Ages, back to the Known Worlds, and the Commonwealth. + /vZLJ8YrNq7Gk6JjorhrM455NeIJ.jpg + + + 2005-05-13 + The Heart of the Journey (2) + /rZvsEaemErPSK5RUibzw1LDRLGK.jpg + As the Nietzschean fleet approaches, the Andromeda prepares for the final battle. + /rZvsEaemErPSK5RUibzw1LDRLGK.jpg + + + /l0mzfm7xSWeqz1hFkNiZfldImFc.jpg + Season 5 + + + + + + + + + + + + + + + + 3 + \ No newline at end of file diff --git a/DvdCollection/wwwroot/css/bootstrap/bootstrap.min.css b/DvdCollection/wwwroot/css/bootstrap/bootstrap.min.css new file mode 100644 index 0000000..02ae65b --- /dev/null +++ b/DvdCollection/wwwroot/css/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/DvdCollection/wwwroot/css/bootstrap/bootstrap.min.css.map b/DvdCollection/wwwroot/css/bootstrap/bootstrap.min.css.map new file mode 100644 index 0000000..afcd9e3 --- /dev/null +++ b/DvdCollection/wwwroot/css/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/mixins/_backdrop.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/_placeholders.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_stacks.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/helpers/_vr.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n@import \"placeholders\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$variable-prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$variable-prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$variable-prefix}white-rgb: #{to-rgb($white)};\n --#{$variable-prefix}black-rgb: #{to-rgb($black)};\n --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n\n // Root and body\n // stylelint-disable custom-property-empty-line-before\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$variable-prefix}root-font-size: #{$font-size-root};\n }\n --#{$variable-prefix}body-font-family: #{$font-family-base};\n --#{$variable-prefix}body-font-size: #{$font-size-base};\n --#{$variable-prefix}body-font-weight: #{$font-weight-base};\n --#{$variable-prefix}body-line-height: #{$line-height-base};\n --#{$variable-prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$variable-prefix}body-text-align: #{$body-text-align};\n }\n --#{$variable-prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n // stylelint-enable custom-property-empty-line-before\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`