From ce137dc4c6b83326807d96035a13b7fb1585a910 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 29 Oct 2025 10:04:28 +0100 Subject: [PATCH 01/33] Add basic command lines to control Git --- git/week1/apples-file.txt | 2 ++ git/week1/bananas-file.txt | 1 + git/week1/oranges-file.txt | 1 + git/week1/session-playground/my-assignment.txt | 6 ++++++ hyf-assignments | 1 + 5 files changed, 11 insertions(+) create mode 100644 git/week1/apples-file.txt create mode 100644 git/week1/bananas-file.txt create mode 100644 git/week1/oranges-file.txt create mode 100644 git/week1/session-playground/my-assignment.txt create mode 160000 hyf-assignments diff --git a/git/week1/apples-file.txt b/git/week1/apples-file.txt new file mode 100644 index 000000000..73bc58777 --- /dev/null +++ b/git/week1/apples-file.txt @@ -0,0 +1,2 @@ +Apples are good for your health. +An apple a day keeps doctors away. diff --git a/git/week1/bananas-file.txt b/git/week1/bananas-file.txt new file mode 100644 index 000000000..57c88571a --- /dev/null +++ b/git/week1/bananas-file.txt @@ -0,0 +1 @@ +Bananas contain magnesium. diff --git a/git/week1/oranges-file.txt b/git/week1/oranges-file.txt new file mode 100644 index 000000000..2dc613961 --- /dev/null +++ b/git/week1/oranges-file.txt @@ -0,0 +1 @@ +Oranges are rich in vitamin C. \ No newline at end of file diff --git a/git/week1/session-playground/my-assignment.txt b/git/week1/session-playground/my-assignment.txt new file mode 100644 index 000000000..f6b0b5978 --- /dev/null +++ b/git/week1/session-playground/my-assignment.txt @@ -0,0 +1,6 @@ +Here are some basic command lines to control Git: +pwd +ls +cd +cd .. +mkdir \ No newline at end of file diff --git a/hyf-assignments b/hyf-assignments new file mode 160000 index 000000000..9342ddca6 --- /dev/null +++ b/hyf-assignments @@ -0,0 +1 @@ +Subproject commit 9342ddca650963162333ebbac89d17dad265cfdc From cfd460d5ff9b16156de6454fae5e26927c9baaf4 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 29 Oct 2025 13:12:31 +0100 Subject: [PATCH 02/33] Add favorite food recipes and countries list --- git/week1/countries.txt | 3 +++ git/week1/my-favourite-food.txt | 1 + git/week1/my-second-favourite-food.txt | 1 + 3 files changed, 5 insertions(+) create mode 100644 git/week1/countries.txt create mode 100644 git/week1/my-favourite-food.txt create mode 100644 git/week1/my-second-favourite-food.txt diff --git a/git/week1/countries.txt b/git/week1/countries.txt new file mode 100644 index 000000000..e3e43d570 --- /dev/null +++ b/git/week1/countries.txt @@ -0,0 +1,3 @@ +Italy +Germany +Spain diff --git a/git/week1/my-favourite-food.txt b/git/week1/my-favourite-food.txt new file mode 100644 index 000000000..f828bf26d --- /dev/null +++ b/git/week1/my-favourite-food.txt @@ -0,0 +1 @@ +Spaghetti Carbonara Recipe: Boil pasta, fry pancetta, mix eggs and cheese, combine. diff --git a/git/week1/my-second-favourite-food.txt b/git/week1/my-second-favourite-food.txt new file mode 100644 index 000000000..c188e97d5 --- /dev/null +++ b/git/week1/my-second-favourite-food.txt @@ -0,0 +1 @@ +Tacos Recipe: Cook meat, chop veggies, fill tortillas, add salsa. From 253ce38b7198393de17d2306acb6a67d969acf69 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 5 Nov 2025 20:40:24 +0100 Subject: [PATCH 03/33] index.html create About me page,style.css add font:merriweather, inter, center the heading,script.css add button to change the background,reflection.md reflect on Copilot use --- .../README.md | 0 ai-week1-mila/index.html | 29 +++++++++++++++ ai-week1-mila/reflection.md | 19 ++++++++++ ai-week1-mila/script.js | 11 ++++++ ai-week1-mila/style.css | 37 +++++++++++++++++++ git/week1/session-playground/branch-exercise | 1 + hyf-assignments | 1 - 7 files changed, 97 insertions(+), 1 deletion(-) rename {courses/foundation/intro-to-using-ai => ai-week1-mila}/README.md (100%) create mode 100644 ai-week1-mila/index.html create mode 100644 ai-week1-mila/reflection.md create mode 100644 ai-week1-mila/script.js create mode 100644 ai-week1-mila/style.css create mode 160000 git/week1/session-playground/branch-exercise delete mode 160000 hyf-assignments diff --git a/courses/foundation/intro-to-using-ai/README.md b/ai-week1-mila/README.md similarity index 100% rename from courses/foundation/intro-to-using-ai/README.md rename to ai-week1-mila/README.md diff --git a/ai-week1-mila/index.html b/ai-week1-mila/index.html new file mode 100644 index 000000000..b1a3d4251 --- /dev/null +++ b/ai-week1-mila/index.html @@ -0,0 +1,29 @@ + + + + + + Index + + + + + +
+

About Me

+
+ +

Hi, I’m Mila — a front-end developer who believes every website should tell a story.

+

After years in linguistics and tour guiding, I fell in love with coding and creating beautiful, secure, and user-friendly websites.

+

I’m passionate about learning new technologies, exploring cybersecurity, and designing interfaces that make people feel comfortable, inspired, and safe online.

+

Outside of coding, I enjoy: + +

    +
  • books,
  • +
  • lifelong learning,
  • +
  • cozy hygge moments.
  • +
+ + + + \ No newline at end of file diff --git a/ai-week1-mila/reflection.md b/ai-week1-mila/reflection.md new file mode 100644 index 000000000..cf78b380d --- /dev/null +++ b/ai-week1-mila/reflection.md @@ -0,0 +1,19 @@ +Reflection + +I. Identify and share 3 new things you learned from AI in the above task. + + 1. It took minimum time to create Minimal HTML5 boilerplate using Copilot agent. I intentionally completed almost all teh tasks using AI. + 2. The comparison between Internal CSS, External CSS, Inline CSS, their pros and cons. + 3. The solution to how to change the background depending on the size of device was so simple and nice. AI helped me providing the information on the fonts that are highly readable, modern and blog-friendly, it also suggests combination for body and heading. + 4. Difference between const and let. As I am a complete beginner in JavaScript, I found the video on how to make the background be randomly changed when the button is clicked. I copied the code form the video, checked if it worked and asked Copilot to explain the code step by step. Then I asked it to improve the text and found out that const is a better choice to be used. + +Where did you have to tweak or correct Copilot’s suggestions to suit your needs? +The common reason I had to tweak Copilot was because of its desire to make things more complex and grandeur. As for the explanations I also often asked for three types of explanations (for a 5 year old kid, for a complete beginner and an experienced front-end developer). + +How would you explain the difference between using Copilot to generate code for you vs. using it as an effective learning partner? +While the code being generated we get the work done for us, when we ask questions and specify the unclear moments, we keep the code under control, can develop our skills and avoid mistakes, otherwise we stagnate or even worse. + +Identify 3 risks of relying too much on AI tools when learning at HackYourFuture. +- not learning; +- making errors we cannot notice and understand; +- wasting time instead of developing; diff --git a/ai-week1-mila/script.js b/ai-week1-mila/script.js new file mode 100644 index 000000000..c438392f0 --- /dev/null +++ b/ai-week1-mila/script.js @@ -0,0 +1,11 @@ +const changeBgButton = document.querySelector('button'); + +if (changeBgButton) { + changeBgButton.addEventListener('click', () => { + document.body.style.backgroundColor = getRandomColor(); + }); +} + +function getRandomColor() { + const color = "#" + Math.floor(Math.random() * 16777215).toString(16).padStart(6, '0'); + return color;} \ No newline at end of file diff --git a/ai-week1-mila/style.css b/ai-week1-mila/style.css new file mode 100644 index 000000000..35f374fe2 --- /dev/null +++ b/ai-week1-mila/style.css @@ -0,0 +1,37 @@ + +body { + background-color:white; +} + + h1 { + text-align: center; + font-size: clamp(1.75rem, 2.5vw + 1rem, 3rem); + font-family: 'merriweather', sans-serif; +} +p { + font-weight: 400; + margin-bottom: 0.25rem; + font-size: 1rem; + font-family: 'inter', sans-serif; +} + +button { + display: block; + margin: 0 auto; + padding: 5px 20px; + font-size: 1rem; +} + +@media (max-width: 1200px) { + body { + background-color: lightgreen; /* For medium screens */ + } +} + +@media (max-width: 768px) { + body { + background-color: pink; /* For smaller screens */ + } +} + + diff --git a/git/week1/session-playground/branch-exercise b/git/week1/session-playground/branch-exercise new file mode 160000 index 000000000..806eb3ec3 --- /dev/null +++ b/git/week1/session-playground/branch-exercise @@ -0,0 +1 @@ +Subproject commit 806eb3ec302a3d72efcecf51d228f1376c069ce7 diff --git a/hyf-assignments b/hyf-assignments deleted file mode 160000 index 9342ddca6..000000000 --- a/hyf-assignments +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 9342ddca650963162333ebbac89d17dad265cfdc From 69f6a0bd34fa1e0c2a3a944ecce5bed595eda2e7 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Tue, 20 Jan 2026 12:42:45 +0100 Subject: [PATCH 04/33] Add file with a link to Trello --- trello.html | 1 + 1 file changed, 1 insertion(+) create mode 100644 trello.html diff --git a/trello.html b/trello.html new file mode 100644 index 000000000..f3abbbaf7 --- /dev/null +++ b/trello.html @@ -0,0 +1 @@ +https://trello.com/invite/b/696e1d1fa4a4876d56c14c9d/ATTI028c0348bcdd01f04f6e917db76a3e3cB1AAEF82/trip-to-the-uk-in-august From 691e59b88209e5854e2ce416e365e79b4c482021 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 29 Oct 2025 10:04:28 +0100 Subject: [PATCH 05/33] Add basic command lines to control Git --- git/week1/apples-file.txt | 2 ++ git/week1/bananas-file.txt | 1 + git/week1/oranges-file.txt | 1 + git/week1/session-playground/my-assignment.txt | 6 ++++++ hyf-assignments | 1 + 5 files changed, 11 insertions(+) create mode 100644 git/week1/apples-file.txt create mode 100644 git/week1/bananas-file.txt create mode 100644 git/week1/oranges-file.txt create mode 100644 git/week1/session-playground/my-assignment.txt create mode 160000 hyf-assignments diff --git a/git/week1/apples-file.txt b/git/week1/apples-file.txt new file mode 100644 index 000000000..73bc58777 --- /dev/null +++ b/git/week1/apples-file.txt @@ -0,0 +1,2 @@ +Apples are good for your health. +An apple a day keeps doctors away. diff --git a/git/week1/bananas-file.txt b/git/week1/bananas-file.txt new file mode 100644 index 000000000..57c88571a --- /dev/null +++ b/git/week1/bananas-file.txt @@ -0,0 +1 @@ +Bananas contain magnesium. diff --git a/git/week1/oranges-file.txt b/git/week1/oranges-file.txt new file mode 100644 index 000000000..2dc613961 --- /dev/null +++ b/git/week1/oranges-file.txt @@ -0,0 +1 @@ +Oranges are rich in vitamin C. \ No newline at end of file diff --git a/git/week1/session-playground/my-assignment.txt b/git/week1/session-playground/my-assignment.txt new file mode 100644 index 000000000..f6b0b5978 --- /dev/null +++ b/git/week1/session-playground/my-assignment.txt @@ -0,0 +1,6 @@ +Here are some basic command lines to control Git: +pwd +ls +cd +cd .. +mkdir \ No newline at end of file diff --git a/hyf-assignments b/hyf-assignments new file mode 160000 index 000000000..9342ddca6 --- /dev/null +++ b/hyf-assignments @@ -0,0 +1 @@ +Subproject commit 9342ddca650963162333ebbac89d17dad265cfdc From 9d856efa45eb9d5f09022ab8674febc309acc715 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Sun, 8 Feb 2026 13:17:29 +0100 Subject: [PATCH 06/33] create a structure --- FINAL-PROJECT/README.md | 0 file.txt | 2 ++ 2 files changed, 2 insertions(+) create mode 100644 FINAL-PROJECT/README.md create mode 100644 file.txt diff --git a/FINAL-PROJECT/README.md b/FINAL-PROJECT/README.md new file mode 100644 index 000000000..e69de29bb diff --git a/file.txt b/file.txt new file mode 100644 index 000000000..83f252c49 --- /dev/null +++ b/file.txt @@ -0,0 +1,2 @@ +LinkedIn: https://www.linkedin.com/in/mila-siamionava/ +Github: https://github.com/lucy-semenova \ No newline at end of file From 3b26116db8191ac1d0e5953dbec9f5eca8683efc Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Tue, 11 Nov 2025 15:49:19 +0100 Subject: [PATCH 07/33] Add JS week1 exercises: Ez-Namey, Goodboy-Oldboy, Housey Pricey, Age-ify --- js-week1-mila/Ez-Namey.js | 14 ++++++++++++ js-week1-mila/Goodboy-Oldboy.js | 15 +++++++++++++ js-week1-mila/Housey pricey.js | 39 +++++++++++++++++++++++++++++++++ js-week1-mila/age-ify.js | 5 +++++ 4 files changed, 73 insertions(+) create mode 100644 js-week1-mila/Ez-Namey.js create mode 100644 js-week1-mila/Goodboy-Oldboy.js create mode 100644 js-week1-mila/Housey pricey.js create mode 100644 js-week1-mila/age-ify.js diff --git a/js-week1-mila/Ez-Namey.js b/js-week1-mila/Ez-Namey.js new file mode 100644 index 000000000..8d6061bc3 --- /dev/null +++ b/js-week1-mila/Ez-Namey.js @@ -0,0 +1,14 @@ +const firstWords = ["Awesome", "Agile", "Bright", "Advanced", "Fantastic", "Inspiring", "Modern", "Cutting-edge", "Confident", "Dynamic"]; + +const secondWords = ["Labs", "Works", "Space", "Path", "Tech", "Mind", "Cloud", "Loop", "AI", "Solutions"]; + +// Function to get random element from an array +function getRandomElement(arr) { + const randomIndex = Math.floor(Math.random() * arr.length); + return arr[randomIndex]; +} + +const randomFirstWords= getRandomElement(firstWords); +const randomSecondWords = getRandomElement(secondWords); + +console.log(`The startup name is ${randomFirstWords} ${randomSecondWords} and it contains ${randomFirstWords.length + randomSecondWords.length} characters.`); \ No newline at end of file diff --git a/js-week1-mila/Goodboy-Oldboy.js b/js-week1-mila/Goodboy-Oldboy.js new file mode 100644 index 000000000..8ecb79777 --- /dev/null +++ b/js-week1-mila/Goodboy-Oldboy.js @@ -0,0 +1,15 @@ +const dogYearOfBirth = 2017; +const dogYearFuture = 2027; + +const ageInHumanYears = dogYearFuture - dogYearOfBirth; +const ageInDogYears = ageInHumanYears *7 ; + + +const shouldShowResultInDogYears = true; + +if (shouldShowResultInDogYears) { + console.log("Your dog will be " + ageInDogYears + " dog years old in " + dogYearFuture + "."); +} else { + console.log("Your dog will be " + ageInHumanYears + " human years old in " + dogYearFuture + "."); +} + diff --git a/js-week1-mila/Housey pricey.js b/js-week1-mila/Housey pricey.js new file mode 100644 index 000000000..2cf156d8d --- /dev/null +++ b/js-week1-mila/Housey pricey.js @@ -0,0 +1,39 @@ +const houseOfPeterWidth = 8; +const houseOfPeterDepth = 10; +const houseOfPeterHeight = 10; +const gardenOfPeterSize = 100; +const houseOfPeterPrice = 2500000; + +const houseOfJuliaWidth = 5; +const houseOfJuliaDepth = 11; +const houseOfJuliaHeight = 8; +const gardenOfJuliaSize = 70; +const houseOfJuliaPrice = 1000000; + + +const pricePerCubicMeterHouse = 2.5 * 1000; +const pricePerSquareMeterGarden = 300; +const houseOfPeterMarketPrice = houseOfPeterWidth * houseOfPeterDepth * houseOfPeterHeight * pricePerCubicMeterHouse + gardenOfPeterSize * pricePerSquareMeterGarden; +const houseOfJuliaMarketPrice = houseOfJuliaWidth * houseOfJuliaDepth *houseOfJuliaHeight * pricePerCubicMeterHouse + gardenOfJuliaSize * pricePerSquareMeterGarden; + +//compare houseOfPeterPrice vs houseOfPeterPriceByFormula +if (houseOfPeterPrice > houseOfPeterMarketPrice) { + console.log("Peter is paying more than market price!"); +} +else if (houseOfPeterPrice == houseOfPeterMarketPrice) { + console.log("Peter is paying market price!"); +} +else { + console.log("Peter is paying less than market price!"); +} + +////compare houseOfJuliaPrice vs houseOfJuliaPriceByFormula +if (houseOfJuliaPrice > houseOfJuliaMarketPrice) { + console.log("Julia is paying more than market price!"); +} +else if (houseOfJuliaPrice == houseOfJuliaMarketPrice) { + console.log("Julia is paying market price!"); +} +else { + console.log("Julia is paying less than market price!"); +} diff --git a/js-week1-mila/age-ify.js b/js-week1-mila/age-ify.js new file mode 100644 index 000000000..0de35e87a --- /dev/null +++ b/js-week1-mila/age-ify.js @@ -0,0 +1,5 @@ +const yearOfBirth = 1987; +const yearFuture = 2027; + +const age = yearFuture - yearOfBirth; +console.log("You will be " + age + " in " + yearFuture + ".") \ No newline at end of file From 6bffac1d5177b456ae04d8874975ff0a485a92a4 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 8 Dec 2025 14:09:00 +0100 Subject: [PATCH 08/33] Add recipe-app-design.txt and recipe-app-design.jpg with diagrams --- recipe-app-design.jpg | Bin 0 -> 77042 bytes recipe-app-design.txt | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 recipe-app-design.jpg create mode 100644 recipe-app-design.txt diff --git a/recipe-app-design.jpg b/recipe-app-design.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3baa0be322aebee97a035f33b77d08a673f901c GIT binary patch literal 77042 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 fMXL!uONLaz;f^ZxwiQj`@h@w$H@Nz2s(*M literal 0 HcmV?d00001 diff --git a/recipe-app-design.txt b/recipe-app-design.txt new file mode 100644 index 000000000..e69de29bb From db0dc70a9acc39c584ea80b776491202d6ca03b5 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Tue, 9 Dec 2025 09:18:42 +0100 Subject: [PATCH 09/33] Add Recipe-app-diagram.jpg with corrected diagram --- Recipe-app-diagram.jpg | Bin 0 -> 138955 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Recipe-app-diagram.jpg diff --git a/Recipe-app-diagram.jpg b/Recipe-app-diagram.jpg new file mode 100644 index 0000000000000000000000000000000000000000..655b06fe00f7c621fe9884c85f606bc70c38c6df GIT binary patch literal 138955 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

!>woXAlAZ4Bz}T^ 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 za Date: Tue, 16 Dec 2025 11:53:43 +0100 Subject: [PATCH 10/33] Add database_assignment.sql --- databse_assignment.sql | 55 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 databse_assignment.sql diff --git a/databse_assignment.sql b/databse_assignment.sql new file mode 100644 index 000000000..6c1c56a1a --- /dev/null +++ b/databse_assignment.sql @@ -0,0 +1,55 @@ +-- How many tasks are in the task table? +SELECT count (*) +FROM task; + +-- How many tasks in the task table do not have a valid due date? +SELECT * +FROM task +WHERE due_date IS NULL; + +--Find all the tasks that are marked as done. +SELECT * +FROM task +WHERE status_id = 3; + +-- Find all the tasks that are not marked as done. +SELECT * +FROM task +WHERE status_id != 3 OR status_id IS NULL; + +-- Get all the tasks, sorted with the most recently created first. +SELECT * +FROM task +ORDER BY created DESC; + +-- Get the single most recently created task. +SELECT * +FROM task +ORDER BY created DESC +LIMIT 1; + +-- Get the title and due date of all tasks where the title or description contains database. +SELECT title, due_date +FROM task +WHERE title LIKE '%database%' OR description LIKE '%database%'; + +-- Get the title and status (as text) of all tasks. +SELECT title, name +FROM task t +LEFT JOIN status s ON t.status_id = s.id; + +-- Get the name of each status, along with a count of how many tasks have that status. + +SELECT name, +COUNT(status_id) AS Number +FROM task +RIGHT JOIN Status ON task.status_id = status.id +GROUP BY status_id; + +-- Get the names of all statuses, sorted by the status with most tasks first. +SELECT name, +COUNT(status_id) AS Number +FROM task +RIGHT JOIN Status ON task.status_id = status.id +GROUP BY status_id +ORDER BY Number DESC; \ No newline at end of file From cbe8209638e86a4576f195cba8e5650931e050d5 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 17 Dec 2025 12:45:58 +0100 Subject: [PATCH 11/33] Fix: update the file. --- databse_assignment.sql | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/databse_assignment.sql b/databse_assignment.sql index 6c1c56a1a..687216fd4 100644 --- a/databse_assignment.sql +++ b/databse_assignment.sql @@ -3,19 +3,28 @@ SELECT count (*) FROM task; -- How many tasks in the task table do not have a valid due date? -SELECT * -FROM task -WHERE due_date IS NULL; +SELECT COUNT(*) AS invalid_due_date +FROM task +WHERE due_date IS NULL + OR due_date = ''; --Find all the tasks that are marked as done. SELECT * FROM task -WHERE status_id = 3; +WHERE status_id = ( + SELECT id + FROM status + WHERE name = 'Done'); + -- Find all the tasks that are not marked as done. SELECT * FROM task -WHERE status_id != 3 OR status_id IS NULL; +WHERE status_id != ( + SELECT id + FROM status + WHERE name = 'Done') + OR status_id IS NULL; -- Get all the tasks, sorted with the most recently created first. SELECT * @@ -34,22 +43,22 @@ FROM task WHERE title LIKE '%database%' OR description LIKE '%database%'; -- Get the title and status (as text) of all tasks. -SELECT title, name +SELECT title, s.name AS name FROM task t LEFT JOIN status s ON t.status_id = s.id; -- Get the name of each status, along with a count of how many tasks have that status. - SELECT name, COUNT(status_id) AS Number -FROM task -RIGHT JOIN Status ON task.status_id = status.id -GROUP BY status_id; +FROM status s +LEFT JOIN task t ON t.status_id = s.id +GROUP BY t.status_id; + -- Get the names of all statuses, sorted by the status with most tasks first. -SELECT name, -COUNT(status_id) AS Number -FROM task -RIGHT JOIN Status ON task.status_id = status.id -GROUP BY status_id +SELECT s.name, +COUNT(t.status_id) AS Number +FROM status s +LEFT JOIN task t ON t.status_id = s.id +GROUP BY t.status_id ORDER BY Number DESC; \ No newline at end of file From f19e0b3e455f828d13b22943ce9ff65d6b9d16d8 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 17 Dec 2025 13:37:58 +0100 Subject: [PATCH 12/33] Fix: update file --- databse_assignment.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databse_assignment.sql b/databse_assignment.sql index 687216fd4..a8faae387 100644 --- a/databse_assignment.sql +++ b/databse_assignment.sql @@ -20,7 +20,7 @@ WHERE status_id = ( -- Find all the tasks that are not marked as done. SELECT * FROM task -WHERE status_id != ( +WHERE status_id <> ( SELECT id FROM status WHERE name = 'Done') From 98ff5921a256659e1161b8409fcb5812efd4413a Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 19 Nov 2025 22:51:51 +0100 Subject: [PATCH 13/33] Add js-week2-mila assignments --- git/week1/apples-file.txt | 2 - git/week1/bananas-file.txt | 1 - git/week1/oranges-file.txt | 1 - .../session-playground/my-assignment.txt | 6 --- hyf-assignments | 1 - js-week2-mila/Candy.js | 44 ++++++++++++++++ js-week2-mila/Day-count.js | 9 ++++ js-week2-mila/Flight-booking.js | 52 +++++++++++++++++++ js-week2-mila/Student.js | 43 +++++++++++++++ js-week2-mila/Weather-wear.js | 31 +++++++++++ 10 files changed, 179 insertions(+), 11 deletions(-) delete mode 100644 git/week1/apples-file.txt delete mode 100644 git/week1/bananas-file.txt delete mode 100644 git/week1/oranges-file.txt delete mode 100644 git/week1/session-playground/my-assignment.txt delete mode 160000 hyf-assignments create mode 100644 js-week2-mila/Candy.js create mode 100644 js-week2-mila/Day-count.js create mode 100644 js-week2-mila/Flight-booking.js create mode 100644 js-week2-mila/Student.js create mode 100644 js-week2-mila/Weather-wear.js diff --git a/git/week1/apples-file.txt b/git/week1/apples-file.txt deleted file mode 100644 index 73bc58777..000000000 --- a/git/week1/apples-file.txt +++ /dev/null @@ -1,2 +0,0 @@ -Apples are good for your health. -An apple a day keeps doctors away. diff --git a/git/week1/bananas-file.txt b/git/week1/bananas-file.txt deleted file mode 100644 index 57c88571a..000000000 --- a/git/week1/bananas-file.txt +++ /dev/null @@ -1 +0,0 @@ -Bananas contain magnesium. diff --git a/git/week1/oranges-file.txt b/git/week1/oranges-file.txt deleted file mode 100644 index 2dc613961..000000000 --- a/git/week1/oranges-file.txt +++ /dev/null @@ -1 +0,0 @@ -Oranges are rich in vitamin C. \ No newline at end of file diff --git a/git/week1/session-playground/my-assignment.txt b/git/week1/session-playground/my-assignment.txt deleted file mode 100644 index f6b0b5978..000000000 --- a/git/week1/session-playground/my-assignment.txt +++ /dev/null @@ -1,6 +0,0 @@ -Here are some basic command lines to control Git: -pwd -ls -cd -cd .. -mkdir \ No newline at end of file diff --git a/hyf-assignments b/hyf-assignments deleted file mode 160000 index 9342ddca6..000000000 --- a/hyf-assignments +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 9342ddca650963162333ebbac89d17dad265cfdc diff --git a/js-week2-mila/Candy.js b/js-week2-mila/Candy.js new file mode 100644 index 000000000..d81400ccf --- /dev/null +++ b/js-week2-mila/Candy.js @@ -0,0 +1,44 @@ + +//Candy helper optional +let boughtCandy = []; + +function addCandy(candyType, weight) { + let candyPricePerGram = [ + 0.5, //sweet: 0.5 + 0.7, //chocolate: 0.7 + 1.1, //toffee: 1.1 + 0.03 //chewing-gum: 0.03 + ]; + let candyNumber; + switch(candyType) { + case 'sweet': candyNumber = 0 + break; + case 'chocolate': candyNumber = 1 + break; + case 'toffee': candyNumber = 2 + break; + case 'chewing-gum': candyNumber = 3 + break; + } + boughtCandy.push(candyPricePerGram[candyNumber] * weight); +} +addCandy("chocolate", 30); +addCandy("sweet", 10); + alert(boughtCandy.length) +let amountToSpend = Math.random() * 100; + alert(amountToSpend); +function canBuyMoreCandy(amountToSpend) { + let totalSpent = 0 + for (const candy of boughtCandy) { + totalSpent += candy; + } + alert(totalSpent); + if (totalSpent < amountToSpend) { + console.log("You can buy more, so please do!"); + } else { console.log("Enough candy for you!")} +} + +canBuyMoreCandy(amountToSpend); + + + diff --git a/js-week2-mila/Day-count.js b/js-week2-mila/Day-count.js new file mode 100644 index 000000000..4f16e828d --- /dev/null +++ b/js-week2-mila/Day-count.js @@ -0,0 +1,9 @@ +// Event application + const dayName = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]; + +function getEventDay(today, daysTillEvent) { + + + return dayName[(today+daysTillEvent)%7]; +} +console.log(getEventDay(0, 1)); \ No newline at end of file diff --git a/js-week2-mila/Flight-booking.js b/js-week2-mila/Flight-booking.js new file mode 100644 index 000000000..eb4846f58 --- /dev/null +++ b/js-week2-mila/Flight-booking.js @@ -0,0 +1,52 @@ +// Solution #1 +function getFullName(firstName, surname) { + return `${firstName} ${surname}`; +} + +let firstName1 = prompt("What is the first name?"); +let surname1 = prompt("What is the surname?"); +let fullName1 = getFullName(firstName1, surname1); +console.log(`Full name 1: ${fullName1}`); + +let firstName2 = prompt("What is the first name?"); +let surname2 = prompt("What is the surname?"); +let fullName2 = getFullName(firstName2, surname2); +console.log(`Full name 2: ${fullName2}`); + + +// Solution #2 +function getFullName(firstName, surname) { + return `${firstName} ${surname}`; +} + +let fullName1 = getFullName("Anna", "Smith"); +let fullName2 = getFullName("Jeppe", "Thor"); +console.log(fullName1); +console.log(fullName2); + +function useFormalFullName(firstName, surname, useFormalName, gender) { + if (useFormalName) { + if (gender == "male") { + return `Lord ${firstName} ${surname}`; + } + else { + return `Lady ${firstName} ${surname}`; + } + } + else { + return `${firstName} ${surname}`; + } +} + +console.log(useFormalFullName("Anna", "Karr", true, "female")); +console.log(useFormalFullName("Anna", "Karr", false, "female")); +console.log(useFormalFullName("Bob", "Smith", true, "male")); +console.log(useFormalFullName("Bob", "Smith", false, "male")); + + + + + + + + diff --git a/js-week2-mila/Student.js b/js-week2-mila/Student.js new file mode 100644 index 000000000..ceb8b5cf4 --- /dev/null +++ b/js-week2-mila/Student.js @@ -0,0 +1,43 @@ + +// Student manager + + +let newStudentName = prompt("Enter the name of a new student."); + +let class07Students = ["Ann", "Bob", "Sam", "Abby", "Brandon", "Carry"]; +const queenOfDenmark = "Queen"; + +// addStudentToClass function + +function addStudentToClass(studentName) { + if (newStudentName == "Queen") { + class07Students.push(studentName); + return; + } + if (studentName === "") { + console.log("You cannot add an empty string to a class"); + return; + } + + if (class07Students.includes(studentName)) { + console.log(`${studentName} is already in the class`); + return; + } + + if (class07Students.length < 6 ) { + class07Students.push(studentName); + } + else { + console.log("You cannot add more students to class 07"); + } +} +addStudentToClass(newStudentName) +console.log(class07Students) + + +function getNumberOfStudents() { + return class07Students.length +} + +console.log(getNumberOfStudents()) + \ No newline at end of file diff --git a/js-week2-mila/Weather-wear.js b/js-week2-mila/Weather-wear.js new file mode 100644 index 000000000..4ecbf3de4 --- /dev/null +++ b/js-week2-mila/Weather-wear.js @@ -0,0 +1,31 @@ +//Weather wear + +let temperature = prompt("What is the temperature in °C?"); +temperature = Number(temperature); + + +function adviceClothesToWear(temperature) { + + if (temperature == "") { + return "Please, enter the value of temperature in °C "; + } + if (isNaN(temperature)) { + return "Please, enter the temperature as number in °C "; + } + if (temperature < 0) { + return "It is cold outside, you should wear a hat, scarf, jacket, and boots."; + } + else if (temperature < 15) { + return "It is cool outside, you should wear a jacket and shoes."; + } + else if (temperature < 25) { + return "It is warm outside, you should wear a sweater and shoes."; + } + else { + return "It is hot outside, you should wear a T-shirt and shorts."; + } +} + +const clothesToWear = adviceClothesToWear(temperature); +alert(clothesToWear); +console.log(clothesToWear); From be4de8bbeafbe58efca96644c76bca5e3617356f Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 22 Dec 2025 08:43:17 +0100 Subject: [PATCH 14/33] Fix: update files --- js-week2-mila/Candy.js | 50 ++++++++++++++++----------------- js-week2-mila/Day-count.js | 10 ++++--- js-week2-mila/Flight-booking.js | 13 ++++----- js-week2-mila/Student.js | 13 +++++---- js-week2-mila/Weather-wear.js | 4 +-- 5 files changed, 45 insertions(+), 45 deletions(-) diff --git a/js-week2-mila/Candy.js b/js-week2-mila/Candy.js index d81400ccf..7cbb1f02a 100644 --- a/js-week2-mila/Candy.js +++ b/js-week2-mila/Candy.js @@ -1,44 +1,44 @@ - //Candy helper optional let boughtCandy = []; function addCandy(candyType, weight) { - let candyPricePerGram = [ - 0.5, //sweet: 0.5 - 0.7, //chocolate: 0.7 - 1.1, //toffee: 1.1 - 0.03 //chewing-gum: 0.03 - ]; - let candyNumber; - switch(candyType) { - case 'sweet': candyNumber = 0 - break; - case 'chocolate': candyNumber = 1 - break; - case 'toffee': candyNumber = 2 - break; - case 'chewing-gum': candyNumber = 3 - break; - } - boughtCandy.push(candyPricePerGram[candyNumber] * weight); + const candyPricePerGram = { + sweet: 0.5, + chocolate: 0.7, + toffee: 1.1, + chewing_gum: 0.03 +}; + +if (!candyPricePerGram[candyType]) { + console.error("Unknown candy type"); + return; + } + + const price = candyPricePerGram[candyType] * weight; + boughtCandy.push(price); } + + addCandy("chocolate", 30); addCandy("sweet", 10); alert(boughtCandy.length) + + let amountToSpend = Math.random() * 100; alert(amountToSpend); + function canBuyMoreCandy(amountToSpend) { let totalSpent = 0 + for (const candy of boughtCandy) { totalSpent += candy; } + alert(totalSpent); + if (totalSpent < amountToSpend) { console.log("You can buy more, so please do!"); - } else { console.log("Enough candy for you!")} -} - -canBuyMoreCandy(amountToSpend); - - + } console.log("Enough candy for you!") + } +canBuyMoreCandy(amountToSpend); \ No newline at end of file diff --git a/js-week2-mila/Day-count.js b/js-week2-mila/Day-count.js index 4f16e828d..a1f995137 100644 --- a/js-week2-mila/Day-count.js +++ b/js-week2-mila/Day-count.js @@ -1,9 +1,11 @@ // Event application - const dayName = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]; +const dayName = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]; -function getEventDay(today, daysTillEvent) { - + +function getEventDay(daysTillEvent) { + const today = new Date().getDay(); return dayName[(today+daysTillEvent)%7]; } -console.log(getEventDay(0, 1)); \ No newline at end of file +console.log(getEventDay(1)); +console.log(getEventDay(3)); \ No newline at end of file diff --git a/js-week2-mila/Flight-booking.js b/js-week2-mila/Flight-booking.js index eb4846f58..bfc64744a 100644 --- a/js-week2-mila/Flight-booking.js +++ b/js-week2-mila/Flight-booking.js @@ -24,19 +24,16 @@ let fullName2 = getFullName("Jeppe", "Thor"); console.log(fullName1); console.log(fullName2); -function useFormalFullName(firstName, surname, useFormalName, gender) { - if (useFormalName) { +function useFormalFullName(firstName, surname, useFormalName = false, gender) { + if (!useFormalName) { + return `${firstName} ${surname}`; + } if (gender == "male") { return `Lord ${firstName} ${surname}`; } - else { + return `Lady ${firstName} ${surname}`; - } } - else { - return `${firstName} ${surname}`; - } -} console.log(useFormalFullName("Anna", "Karr", true, "female")); console.log(useFormalFullName("Anna", "Karr", false, "female")); diff --git a/js-week2-mila/Student.js b/js-week2-mila/Student.js index ceb8b5cf4..e9d5375d4 100644 --- a/js-week2-mila/Student.js +++ b/js-week2-mila/Student.js @@ -27,17 +27,18 @@ function addStudentToClass(studentName) { if (class07Students.length < 6 ) { class07Students.push(studentName); } - else { + console.log("You cannot add more students to class 07"); - } + } -addStudentToClass(newStudentName) -console.log(class07Students) + +addStudentToClass(newStudentName); +console.log(class07Students); function getNumberOfStudents() { - return class07Students.length + return class07Students.length; } -console.log(getNumberOfStudents()) +console.log(getNumberOfStudents()); \ No newline at end of file diff --git a/js-week2-mila/Weather-wear.js b/js-week2-mila/Weather-wear.js index 4ecbf3de4..73ed24d0d 100644 --- a/js-week2-mila/Weather-wear.js +++ b/js-week2-mila/Weather-wear.js @@ -21,9 +21,9 @@ function adviceClothesToWear(temperature) { else if (temperature < 25) { return "It is warm outside, you should wear a sweater and shoes."; } - else { + return "It is hot outside, you should wear a T-shirt and shorts."; - } + } const clothesToWear = adviceClothesToWear(temperature); From 29bc2c487144a08736e0d99dc3292751700565c4 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 3 Dec 2025 23:58:54 +0100 Subject: [PATCH 15/33] JS-week4-mila --- js-week4.js | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 js-week4.js diff --git a/js-week4.js b/js-week4.js new file mode 100644 index 000000000..0e312b26e --- /dev/null +++ b/js-week4.js @@ -0,0 +1,87 @@ +let userName = ""; + +let todoList = []; + +function getReply(command = "") { + if (command.indexOf("Hello my name is") != -1) { + userName = command.split(" ").slice(-1); + return (`Nice to meet you ${userName} `); + } + if ((command.indexOf("todo") != -1) && + (command.indexOf("Add") != -1)) { + todoList.push(command.substring(4, command.length-11)); + return command.substring(4, command.length - 11)+ " added to your todo" + } + + if ((command.indexOf("todo") != -1) && + (command.indexOf("Remove") != -1)) { + if (todoList.indexOf(command.substring(7, command.length - 13)) != -1) { + return "Removed " + todoList.splice(todoList.indexOf(command.substring(7, command.length - 13)), 1) + " from your todo" + } else { + return "There is no such activity in todo."+ (todoList.indexOf(command.substring(7, command.length - 13))) + + } + } + if ((command.indexOf("todo") != -1) && + (command.indexOf("Add") != -1)) { + todoList.push(command.substring(4, command.length-11)); + return command.substring(4, command.length - 11)+ " added to your todo" + } + + if ((command.indexOf("+") != -1) || + (command.indexOf("-") != -1) || + (command.indexOf("*") != -1) || + (command.indexOf("/") != -1)) { + mathExpression = command.split(" "); + switch (mathExpression) { + case "+": + return Number(Number(mathExpression[0]) + Number(mathExpression[2])); + break; + case "-": + return Number(Number(mathExpression[0]) - Number(mathExpression[2])); + break; + case "*": + return Number(mathExpression[0]) * Number(mathExpression[2]); + break; + case "/": + return Number(mathExpression[0]) / Number(mathExpression[2]); + break; + }; + }; + + + + switch (command) { + case "What is my name?": + if (userName != "") { + return (`Your name is ${userName}`) + } else { + return ("Please, introduce yourself") + }; + break; + + case "What is on my todo?": + return todoList; + break; + case "What day is it today?": + //respond with the date in a human readable format. ; + const date = new Date(); + return date.getDate()+ " of " + date.toLocaleString('default', { month: 'long' }) + " " + date.getFullYear(); + break; + default: + return ("Sorry, command is not recognized."); + } +} +console.log(getReply("Hello my name is Benjamin")); +console.log(getReply("What is my name?")); +console.log(getReply("Add fishing to my todo")); +console.log(getReply("Add singing in the shower to my todo")); +console.log(getReply("Add shopping to my todo")); +console.log(getReply("What is on my todo?")); +console.log(getReply("Remove fishing from my todo")); +console.log(getReply("Remove singing in the shower from my todo")); +console.log(getReply("What is on my todo?")); +console.log(getReply("What day is it today?")); +console.log(getReply("Set a timer for 1 minutes")); +console.log(getReply()); +console.log(getReply("3+3")); From 5029a300528b34bf70f68e4e229215392826a150 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 22 Dec 2025 18:49:19 +0100 Subject: [PATCH 16/33] Fix:update files --- JS4 HW/index.html | 12 +++++ JS4 HW/index.js | 119 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 131 insertions(+) create mode 100644 JS4 HW/index.html create mode 100644 JS4 HW/index.js diff --git a/JS4 HW/index.html b/JS4 HW/index.html new file mode 100644 index 000000000..772e91ec3 --- /dev/null +++ b/JS4 HW/index.html @@ -0,0 +1,12 @@ + + + + + + JS4-HW + + +

Hello

+ + + \ No newline at end of file diff --git a/JS4 HW/index.js b/JS4 HW/index.js new file mode 100644 index 000000000..41550c5fe --- /dev/null +++ b/JS4 HW/index.js @@ -0,0 +1,119 @@ +const userName = ""; + +const todoList = []; + +function getReply(command = "") { + + if (command.toLowerCase().includes("hello my name is")) { + const userName = command.split(" ").pop(); + return `Nice to meet you ${userName} `; + } + + if (command.toLowerCase().includes("what is my name?")) { + if (userName != "") { + return (`Your name is ${userName}`) + } else { + return ("Please, introduce yourself") + }; + } + + if ((command.toLowerCase().includes("todo")) && + command.toLowerCase().includes("add")) { + const task = (command.substring("add ".length, command.length - " to my todo".length)); + todoList.push(task); + return `${task} added to your todo`; + } + + if (command.toLowerCase().includes("what is on my todo")) { + return todoList; + } + + if ((command.toLowerCase().includes("todo")) && + (command.toLowerCase().includes("remove"))) { + const taskToRemove = command.substring("remove ".length, command.length - " from my todo".length); + if (todoList.includes(taskToRemove)) { + return "Removed " + todoList.splice(todoList.indexOf(taskToRemove), 1) + " from your todo"; + } else { + return "There is no such activity in todo."+ (todoList.indexOf(taskToRemove)); + } + } + + if ((command.includes("+")) || + (command.includes("-")) || + (command.includes("*")) || + (command.includes("/"))) { + const mathExpression = command.split(" "); + + if (mathExpression.length !== 3) { + return "Invalid math expression"; + } + const a = Number(mathExpression[0]); + const operator = mathExpression[1]; + const b = Number(mathExpression[2]); + + if (Number.isNaN(a) && Number.isNaN(b)) { + return "Invalid numbers in expression"; + } + switch (operator) { + case "+": + return a + b; + break; + + case "-": + return a - b; + break; + + case "/": + if (b === 0) { + return "Division by zero is not allowed"; + } + return a / b; + break; + + case "*": + return a * b; + } + } + + if (command.toLowerCase().includes("what day is it today")) { + //respond with the date in a human readable format. ; + const date = new Date(); + return date.getDate()+ " of " + date.toLocaleString('default', { month: 'long' }) + " " + date.getFullYear(); + } + + if (command.toLowerCase().includes("set a timer for")) { + const timeString = command.substring("set a timer for ".length, command.length - " minutes".length); + const time = Number(timeString); + return `Timer set for ${time} minutes`; + } + + return ("Sorry, command is not recognized."); +} + +console.log("What is my name?"); +console.log(getReply("What is my name?")); +console.log("Hello my name is Benjamin"); +console.log(getReply("Hello my name is Benjamin")); +console.log("What is my name?") +console.log(getReply("What is my name?")); +console.log("Add fishing to my todo"); +console.log(getReply("Add fishing to my todo")); +console.log("Add singing in the shower to my todo"); +console.log(getReply("Add singing in the shower to my todo")); +console.log("Add shopping to my todo"); +console.log(getReply("Add shopping to my todo")); +console.log("What is on my todo?"); +console.log(getReply("What is on my todo?")); +console.log("Remove fishing from my todo"); +console.log(getReply("Remove fishing from my todo")); +console.log("Remove singing in the shower from my todo"); +console.log(getReply("Remove singing in the shower from my todo")); +console.log("What is on my todo?"); +console.log(getReply("What is on my todo?")); +console.log("What day is it today?"); +console.log(getReply("What day is it today?")); +console.log("Set a timer for 5 minutes"); +console.log(getReply("Set a timer for 4 minutes")); +console.log(getReply()); +console.log("3 + 3"); +console.log(getReply("3 + 3")); \ No newline at end of file From 1cd55bf22ecf138422db1464fb8d733b162cf929 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 22 Dec 2025 19:30:51 +0100 Subject: [PATCH 17/33] Fix:update file --- js-week4.js | 146 ++++++++++++++++++++++++++++++++-------------------- 1 file changed, 89 insertions(+), 57 deletions(-) diff --git a/js-week4.js b/js-week4.js index 0e312b26e..41550c5fe 100644 --- a/js-week4.js +++ b/js-week4.js @@ -1,87 +1,119 @@ -let userName = ""; +const userName = ""; -let todoList = []; +const todoList = []; function getReply(command = "") { - if (command.indexOf("Hello my name is") != -1) { - userName = command.split(" ").slice(-1); - return (`Nice to meet you ${userName} `); + + if (command.toLowerCase().includes("hello my name is")) { + const userName = command.split(" ").pop(); + return `Nice to meet you ${userName} `; + } + + if (command.toLowerCase().includes("what is my name?")) { + if (userName != "") { + return (`Your name is ${userName}`) + } else { + return ("Please, introduce yourself") + }; } - if ((command.indexOf("todo") != -1) && - (command.indexOf("Add") != -1)) { - todoList.push(command.substring(4, command.length-11)); - return command.substring(4, command.length - 11)+ " added to your todo" + + if ((command.toLowerCase().includes("todo")) && + command.toLowerCase().includes("add")) { + const task = (command.substring("add ".length, command.length - " to my todo".length)); + todoList.push(task); + return `${task} added to your todo`; + } + + if (command.toLowerCase().includes("what is on my todo")) { + return todoList; } - - if ((command.indexOf("todo") != -1) && - (command.indexOf("Remove") != -1)) { - if (todoList.indexOf(command.substring(7, command.length - 13)) != -1) { - return "Removed " + todoList.splice(todoList.indexOf(command.substring(7, command.length - 13)), 1) + " from your todo" + + if ((command.toLowerCase().includes("todo")) && + (command.toLowerCase().includes("remove"))) { + const taskToRemove = command.substring("remove ".length, command.length - " from my todo".length); + if (todoList.includes(taskToRemove)) { + return "Removed " + todoList.splice(todoList.indexOf(taskToRemove), 1) + " from your todo"; } else { - return "There is no such activity in todo."+ (todoList.indexOf(command.substring(7, command.length - 13))) - + return "There is no such activity in todo."+ (todoList.indexOf(taskToRemove)); } } - if ((command.indexOf("todo") != -1) && - (command.indexOf("Add") != -1)) { - todoList.push(command.substring(4, command.length-11)); - return command.substring(4, command.length - 11)+ " added to your todo" - } - if ((command.indexOf("+") != -1) || - (command.indexOf("-") != -1) || - (command.indexOf("*") != -1) || - (command.indexOf("/") != -1)) { - mathExpression = command.split(" "); - switch (mathExpression) { + if ((command.includes("+")) || + (command.includes("-")) || + (command.includes("*")) || + (command.includes("/"))) { + const mathExpression = command.split(" "); + + if (mathExpression.length !== 3) { + return "Invalid math expression"; + } + const a = Number(mathExpression[0]); + const operator = mathExpression[1]; + const b = Number(mathExpression[2]); + + if (Number.isNaN(a) && Number.isNaN(b)) { + return "Invalid numbers in expression"; + } + switch (operator) { case "+": - return Number(Number(mathExpression[0]) + Number(mathExpression[2])); + return a + b; break; + case "-": - return Number(Number(mathExpression[0]) - Number(mathExpression[2])); - break; - case "*": - return Number(mathExpression[0]) * Number(mathExpression[2]); + return a - b; break; + case "/": - return Number(mathExpression[0]) / Number(mathExpression[2]); + if (b === 0) { + return "Division by zero is not allowed"; + } + return a / b; break; - }; - }; + + case "*": + return a * b; + } + } - - - switch (command) { - case "What is my name?": - if (userName != "") { - return (`Your name is ${userName}`) - } else { - return ("Please, introduce yourself") - }; - break; - - case "What is on my todo?": - return todoList; - break; - case "What day is it today?": + if (command.toLowerCase().includes("what day is it today")) { //respond with the date in a human readable format. ; - const date = new Date(); - return date.getDate()+ " of " + date.toLocaleString('default', { month: 'long' }) + " " + date.getFullYear(); - break; - default: - return ("Sorry, command is not recognized."); + const date = new Date(); + return date.getDate()+ " of " + date.toLocaleString('default', { month: 'long' }) + " " + date.getFullYear(); } + + if (command.toLowerCase().includes("set a timer for")) { + const timeString = command.substring("set a timer for ".length, command.length - " minutes".length); + const time = Number(timeString); + return `Timer set for ${time} minutes`; + } + + return ("Sorry, command is not recognized."); } + +console.log("What is my name?"); +console.log(getReply("What is my name?")); +console.log("Hello my name is Benjamin"); console.log(getReply("Hello my name is Benjamin")); +console.log("What is my name?") console.log(getReply("What is my name?")); +console.log("Add fishing to my todo"); console.log(getReply("Add fishing to my todo")); +console.log("Add singing in the shower to my todo"); console.log(getReply("Add singing in the shower to my todo")); +console.log("Add shopping to my todo"); console.log(getReply("Add shopping to my todo")); +console.log("What is on my todo?"); console.log(getReply("What is on my todo?")); +console.log("Remove fishing from my todo"); console.log(getReply("Remove fishing from my todo")); +console.log("Remove singing in the shower from my todo"); console.log(getReply("Remove singing in the shower from my todo")); +console.log("What is on my todo?"); console.log(getReply("What is on my todo?")); +console.log("What day is it today?"); console.log(getReply("What day is it today?")); -console.log(getReply("Set a timer for 1 minutes")); +console.log("Set a timer for 5 minutes"); +console.log(getReply("Set a timer for 4 minutes")); console.log(getReply()); -console.log(getReply("3+3")); +console.log("3 + 3"); +console.log(getReply("3 + 3")); \ No newline at end of file From e987224053291c612c9ca9a55cad13f3d02f5233 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 26 Nov 2025 20:41:01 +0100 Subject: [PATCH 18/33] Add tasks 1-5 from js-week3 --- task1.js | 17 +++++++++++++ task2.js | 31 ++++++++++++++++++++++++ task3.js | 58 ++++++++++++++++++++++++++++++++++++++++++++ task4.js | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ task5.js | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 251 insertions(+) create mode 100644 task1.js create mode 100644 task2.js create mode 100644 task3.js create mode 100644 task4.js create mode 100644 task5.js diff --git a/task1.js b/task1.js new file mode 100644 index 000000000..b682486a4 --- /dev/null +++ b/task1.js @@ -0,0 +1,17 @@ +//#1 Item array removal + +const names = [ + "Peter", + "Ahmad", + "Yana", + "kristina", + "Rasmus", + "Samuel", + "Katrine", + "Tala", +]; + +const nameToRemove = names.indexOf("Ahmad"); +names.splice(nameToRemove, 1); + +console.log(names); \ No newline at end of file diff --git a/task2.js b/task2.js new file mode 100644 index 000000000..7e3eae6d0 --- /dev/null +++ b/task2.js @@ -0,0 +1,31 @@ +//#2 Calculate time to reach the destination in minutes + +const travelInformation = { + speed: 50, + destinationDistance: 432, +}; + +function calculateTravelTimeInMinutes(distance, speed) { + return (distance / speed) * 60; +} + +console.log( + calculateTravelTimeInMinutes( + travelInformation.destinationDistance, + travelInformation.speed + ) +); + +const travelTimeInInMinutes = calculateTravelTimeInMinutes( + travelInformation.destinationDistance, + travelInformation.speed +); + +//Converted minutes into hours and minutes + +function calculateTravelTimeInHoursAndMinutes(totalMinutes) { + const hours = Math.floor(totalMinutes / 60); + const minutes = Math.round(totalMinutes % 60); + return `${hours}hours ${minutes}minutes`; +} +console.log(calculateTravelTimeInHoursAndMinutes(travelTimeInInMinutes)); // 8 hours and 38 minutes \ No newline at end of file diff --git a/task3.js b/task3.js new file mode 100644 index 000000000..3b204b99c --- /dev/null +++ b/task3.js @@ -0,0 +1,58 @@ +//#3 Series duration of my life + +const seriesDurations = [ + { + title: "Lost", + days: 3, + hours: 16, + minutes: 30, + }, + { + title: "The Residence", + days: 0, + hours: 7, + minutes: 44, + }, + { + title: "The The Queen's Gambit", + days: 0, + hours: 6, + minutes: 32, + }, +]; + +//Calculate total series duration in minutes + +let totalSeriesDurationInMinutes = 0; + +for (const duration of seriesDurations) { + totalSeriesDurationInMinutes += + duration.days * 24 * 60 + duration.hours * 60 + duration.minutes; +} + +console.log(totalSeriesDurationInMinutes); + +// Convert Life span into minutes + +function convertLifeSpanYearsIntoMinutes(years) { + return years * 525600; //1 year = 525600 minutes +} + +//Ask for age +let lifeSpanInYears = prompt("How old are you?"); +lifeSpanInYears = Number(lifeSpanInYears); + +const lifeSpanInMinutes = convertLifeSpanYearsIntoMinutes(lifeSpanInYears); + +//Calculate series duration as a percentage of life span +function seriesDurationsOutOfLifeSpan(seriesMinutes, lifeSpanMinutes) { + return (seriesMinutes / lifeSpanMinutes) * 100; +} + +console.log( + "Series duration as percentage of life span:", + seriesDurationsOutOfLifeSpan( + totalSeriesDurationInMinutes, + lifeSpanInMinutes + ).toFixed(2) + "%" +); \ No newline at end of file diff --git a/task4.js b/task4.js new file mode 100644 index 000000000..19137af16 --- /dev/null +++ b/task4.js @@ -0,0 +1,72 @@ +//#4 Note taking app + +//Save a note + +let notes = []; + +function saveNote(content, id) { + notes.push({ + content: content, + id: id, + }); +} + +saveNote("Pick up groceries", 1); +saveNote("Do laundry", 2); + +console.log("Current notes:", notes); + +//Get a note by id + +function getNote(id) { + //Check if id is missing or not a number + if (id === undefined || typeof id !== "number") { + console.log("Error"); + return; + } + //Loop to find the note with the id + for (let i = 0; i < notes.length; i++) { + if (notes[i].id === id) { + return notes[i]; // return the note object + } + } + //If the id is not found + return "Not found"; +} + +const firstNote = getNote(1); +console.log(firstNote); // {content: 'Pick up groceries', id: 1} + +//Log out notes + +function logOutNotesFormatted() { + for (let note of notes) { + console.log( + `The note with id: ${note.id}, has the following note text:${note.content}` + ); + } +} + +logOutNotesFormatted(); + +//Delete a note + +//Keep undeleted notes +function deleteNote(id) { + let newNotes = []; + for (let i = 0; i < notes.length; i++) { + if (notes[i].id !== id) { + newNotes.push(notes[i]); + } + } + notes = newNotes; + + renumberNotes(); + renderNotes(); +} + +function renumberNotes() { + for (let i = 0; i < notes.length; i++) { + notes[i].id = i; + } +} diff --git a/task5.js b/task5.js new file mode 100644 index 000000000..69cccb8a4 --- /dev/null +++ b/task5.js @@ -0,0 +1,73 @@ +//#5 Adding an activity + +let activities = [ + { + date: "23/7-18", + activity: "Youtube", + duration: 30, + }, + { + date: "24/7-18", + activity: "Instagram", + duration: 40, + }, + { + date: "25/7-18", + activity: "Facebook", + duration: 50, + }, +]; + +function addActivities(date, activity, duration) { + activities.push({ + date: date, + activity: activity, + duration: duration, + }); +} + +addActivities("26/7-18", "Twitter", 10); +console.log(activities); + +//Calculate total Activity Duration + +function getTotalDuration() { + let totalActivitiesDurationInMinutes = 0; + + for (const activity of activities) { + totalActivitiesDurationInMinutes += activity.duration; + } + return totalActivitiesDurationInMinutes; +} + +//Show my status + +function showStatus() { + const totalActivitiesDurationInMinutes = getTotalDuration(); + + if (totalActivitiesDurationInMinutes === 0) { + return "Add some activities before calling showStatus"; + } + + return `You have added ${activities.length} activities. They amount to ${totalActivitiesDurationInMinutes} min. of usage.`; +} + +console.log(showStatus()); + +//Usage limit + +let timeToUseSmartphone = Number( + prompt("How long can you use the smartphone?") +); + +timeToUseSmartphone = Number(timeToUseSmartphone); + +function canUseMoreSmartphone(timeLimit) { + if (totalActivitiesDurationInMinutes < timeLimit) { + console.log("You can use the smartphone!"); + } else { + console.log("You have reached your limit, no more smartphoning for you!"); + } +} + +canUseMoreSmartphone(timeToUseSmartphone); From e09f6ca4d0d618af0e5d3d52310b718aa5e6f9be Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Tue, 9 Dec 2025 15:12:17 +0100 Subject: [PATCH 19/33] Fixed in accordance with comments, update the file JS3-hw.js --- JS3-hw.js | 262 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 262 insertions(+) create mode 100644 JS3-hw.js diff --git a/JS3-hw.js b/JS3-hw.js new file mode 100644 index 000000000..0d511ab00 --- /dev/null +++ b/JS3-hw.js @@ -0,0 +1,262 @@ +//#1 Item array removal + +const names = [ + "Peter", + "Ahmad", + "Yana", + "kristina", + "Rasmus", + "Samuel", + "Katrine", + "Tala", +]; + +const nameToRemove = names.indexOf("Ahmad"); +if (nameToRemove !== -1) { + names.splice(nameToRemove, 1); +} + +console.log(names); + +//#2 Calculate time to reach the destination in minutes + +const travelInformation = { + speed: 50, + destinationDistance: 432, +}; + +function calculateTravelTimeInMinutes(distance, speed) { + return (distance/speed) * 60; +}; + +console.log( + calculateTravelTimeInMinutes( + travelInformation.destinationDistance, + travelInformation.speed + ) +); + + + +const travelTimeInMinutes = calculateTravelTimeInMinutes( + travelInformation.destinationDistance, + travelInformation.speed +); + +//Converted minutes into hours and minutes + +function calculateTravelTimeInHoursAndMinutes(totalMinutes) { + if (totalMinutes < 60) { + return `${totalMinutes} minutes`; + } + const hours = Math.floor(totalMinutes / 60); + const minutes = Math.round(totalMinutes % 60); + return `${hours} hours ${minutes} minutes`; +} +console.log(calculateTravelTimeInHoursAndMinutes(travelTimeInInMinutes) +); // 8 hours and 38 minutes + +//#3 Series duration of my life + +const seriesDurations = [ + { + title: "Lost", + days: 3, + hours: 16, + minutes: 30, + }, + { + title: "The Residence", + days: 0, + hours: 7, + minutes: 44, + }, + { + title: "The The Queen's Gambit", + days: 0, + hours: 6, + minutes: 32, + }, +]; + +//Calculate total series duration in minutes + + let totalSeriesDurationInMinutes = 0; + + for (const duration of seriesDurations) { + totalSeriesDurationInMinutes +=((duration.days*24*60)+(duration.hours *60)+duration.minutes); + } + +console.log(totalSeriesDurationInMinutes); + +// Convert Life span into minutes + +function convertLifeSpanYearsIntoMinutes(years) { + return (years*525600);//1 year = 525600 minutes +} + +//Ask for age +let lifeSpanInYears = prompt("How old are you?"); +lifeSpanInYears = Number(lifeSpanInYears); + +function validateLifeSpanInput(lifeSpanInYears) { + if (isNaN(lifeSpanInYears) || lifeSpanInYears === "" || lifeSpanInYears == null) { + console.log("Please enter a valid number."); + return; + } + +const lifeSpanInMinutes = convertLifeSpanYearsIntoMinutes(lifeSpanInYears); + +//Calculate series duration as a percentage of life span +function seriesDurationsOutOfLifeSpan(seriesMinutes, lifeSpanMinutes) { + return (seriesMinutes/lifeSpanMinutes) * 100; +}; + +console.log( + "Series duration as percentage of life span:", + seriesDurationsOutOfLifeSpan( + totalSeriesDurationInMinutes, + lifeSpanInMinutes + ).toFixed(2) + "%" +); + + +//#4 Note taking app + +//Save a note + +let notes = []; + + function saveNote(content, id) { + if (content.trim() !== "") { + notes.push({ id, content }) + } + } + +saveNote("Pick up groceries", 1); +saveNote("Do laundry", 2); + +console.log("Current notes:", notes); + +//Get a note by id + +function getNote(id){ + //Check if id is missing or not a number + if (id === undefined || + typeof id !== "number") { + console.log("Error"); + return; + } + //Loop to find the note with the id + for (let i = 0; i < notes.length; i++) { + if (notes[i].id === id) { + return notes[i]; // return the note object + } + } + //If the id is not found + return "Not found"; + } + +const firstNote = getNote(1); +console.log(firstNote); // {content: 'Pick up groceries', id: 1} + +//Log out notes + +function logOutNotesFormatted() { + for (let note of notes) { + console.log(`The note with id: ${note.id}, has the following note text:${note.content}`); + } + } + +logOutNotesFormatted(); + +//Delete a note + +//Keep undeleted notes +function deleteNote(id) { + let newNotes = []; + for (let i = 0; i < notes.length; i++) { + if (notes[i].id !== id) { + newNotes.push(notes[i]); + } + } + notes = newNotes; + + +} + +//#5 Adding an activity + +let activities = [ + { + date: '23/7-18', + activity: 'Youtube', + duration: 30, + }, + { + date: '24/7-18', + activity: 'Instagram', + duration: 40, + }, + { + date: '25/7-18', + activity: 'Facebook', + duration: 50, + } +]; + +function addActivities(date, activity, duration) { + activities.push({ + date: date, + activity: activity, + duration: duration + }); +} + +addActivities('26/7-18', 'Twitter', 10); +console.log(activities); + + +//Calculate total Activity Duration + +function getTotalDuration() { + + let totalActivitiesDurationInMinutes = 0; + + for (const activity of activities) { + totalActivitiesDurationInMinutes += activity.duration; + } + return totalActivitiesDurationInMinutes; +} + +//Show my status + +function showStatus() { + const totalActivitiesDurationInMinutes = getTotalDuration(); + + if (totalActivitiesDurationInMinutes === 0) { + return("Add some activities before calling showStatus"); + } + + return (`You have added ${activities.length} activities. They amount to ${totalActivitiesDurationInMinutes} min. of usage.`) +} +JS +console.log(showStatus()); + + +//Usage limit + +let timeToUseSmartphone = Number(prompt("How long can you use the smartphone?")); + +timeToUseSmartphone = Number(timeToUseSmartphone); + +function canUseMoreSmartphone(timeLimit, totalActivitiesDurationInMinutes) { + + if (totalActivitiesDurationInMinutes < timeLimit) { + console.log("You can use the smartphone!"); + } else { + console.log("You have reached your limit, no more smartphoning for you!") + } +} + + canUseMoreSmartphone(timeToUseSmartphone, getTotalDuration()); \ No newline at end of file From ae04ec82a66cdfd05b9e4acf57e5af649146c760 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 18 Mar 2026 23:26:57 +0100 Subject: [PATCH 20/33] Add movies project --- .../advanced-javascript/week1/movies/data.js | 44577 ++++++++++++++++ .../week1/movies/movies.html | 67 + .../week1/movies/movies.js | 101 + .../week1/movies/script.js | 121 + .../week1/movies/styles.css | 42 + 5 files changed, 44908 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week1/movies/data.js create mode 100644 courses/frontend/advanced-javascript/week1/movies/movies.html create mode 100644 courses/frontend/advanced-javascript/week1/movies/movies.js create mode 100644 courses/frontend/advanced-javascript/week1/movies/script.js create mode 100644 courses/frontend/advanced-javascript/week1/movies/styles.css diff --git a/courses/frontend/advanced-javascript/week1/movies/data.js b/courses/frontend/advanced-javascript/week1/movies/data.js new file mode 100644 index 000000000..6dd8cb5aa --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/movies/data.js @@ -0,0 +1,44577 @@ +export const movies = [ + { + title: "'Breaker' Morant", + year: 1980, + rating: 7.9, + votes: 10702, + running_times: 6420, +}, + { + title: "'Crocodile' Dundee II", + year: 1988, + rating: 5.5, + votes: 47180, + running_times: 6480, + }, + { + title: "(500) Days of Summer", + year: 2009, + rating: 7.7, + votes: 412368, + running_times: 5700, + }, + { + title: "*batteries not included", + year: 1987, + rating: 6.6, + votes: 25636, + running_times: 6360, + }, + { + title: "...E tu vivrai nel terrore! L'aldilà", + year: 1981, + rating: 6.9, + votes: 16484, + running_times: 5220, + }, + { + title: "...and justice for all.", + year: 1979, + rating: 7.4, + votes: 25408, + running_times: 7140, + }, + { title: "10", year: 1979, rating: 6, votes: 13152, running_times: 7320 }, + { + title: "10 Cloverfield Lane", + year: 2016, + rating: 7.2, + votes: 216151, + running_times: 6240, + }, + { + title: "10 Items or Less", + year: 2006, + rating: 6.7, + votes: 13342, + running_times: 4920, + }, + { + title: "10 Things I Hate About You", + year: 1999, + rating: 7.2, + votes: 247070, + running_times: 5820, + }, + { + title: "10 Years", + year: 2011, + rating: 6.1, + votes: 20790, + running_times: 6000, + }, + { + title: "10,000 BC", + year: 2008, + rating: 5.1, + votes: 114750, + running_times: 6540, + }, + { + title: "100 Feet", + year: 2008, + rating: 5.5, + votes: 10979, + running_times: 6240, + }, + { + title: "100 Girls", + year: 2000, + rating: 5.9, + votes: 19232, + running_times: 5640, + }, + { + title: "101 Dalmatians", + year: 1996, + rating: 5.7, + votes: 83245, + running_times: 6180, + }, + { + title: "102 Dalmatians", + year: 2000, + rating: 4.9, + votes: 28927, + running_times: 6000, + }, + { + title: "11-11-11", + year: 2011, + rating: 4, + votes: 11425, + running_times: 5400, + }, + { + title: "11:14", + year: 2003, + rating: 7.2, + votes: 40149, + running_times: 5700, + }, + { + title: "12 Angry Men", + year: 1957, + rating: 8.9, + votes: 518449, + running_times: 5760, + }, + { + title: "12 Rounds", + year: 2009, + rating: 5.6, + votes: 24457, + running_times: 6480, + }, + { + title: "12 Years a Slave", + year: 2013, + rating: 8.1, + votes: 513047, + running_times: 8040, + }, + { + title: "127 Hours", + year: 2010, + rating: 7.6, + votes: 302809, + running_times: 5640, + }, + { title: "13", year: 2010, rating: 6.1, votes: 36623, running_times: 5460 }, + { + title: "13 Going on 30", + year: 2004, + rating: 6.1, + votes: 134434, + running_times: 5880, + }, + { + title: "13 Hours", + year: 2016, + rating: 7.3, + votes: 85771, + running_times: 8640, + }, + { + title: "13 Sins", + year: 2014, + rating: 6.3, + votes: 26738, + running_times: 5580, + }, + { title: "13th", year: 2016, rating: 8.2, votes: 15188, running_times: 6000 }, + { + title: "1408", + year: 2007, + rating: 6.8, + votes: 228738, + running_times: 6840, + }, + { + title: "1492: Conquest of Paradise", + year: 1992, + rating: 6.5, + votes: 24439, + running_times: 9240, + }, + { + title: "15 Minutes", + year: 2001, + rating: 6.1, + votes: 44647, + running_times: 7200, + }, + { + title: "16 Blocks", + year: 2006, + rating: 6.6, + votes: 117443, + running_times: 6600, + }, + { + title: "17 Again", + year: 2009, + rating: 6.4, + votes: 156663, + running_times: 6120, + }, + { title: "1922", year: 2017, rating: 6.4, votes: 15416, running_times: 6120 }, + { title: "1941", year: 1979, rating: 5.9, votes: 27172, running_times: 8760 }, + { + title: "2 Days in New York", + year: 2012, + rating: 6, + votes: 12766, + running_times: 5760, + }, + { + title: "2 Days in Paris", + year: 2007, + rating: 6.8, + votes: 28106, + running_times: 5760, + }, + { + title: "2 Days in the Valley", + year: 1996, + rating: 6.5, + votes: 16528, + running_times: 6240, + }, + { + title: "2 Fast 2 Furious", + year: 2003, + rating: 5.9, + votes: 213674, + running_times: 6420, + }, + { + title: "2 Guns", + year: 2013, + rating: 6.7, + votes: 170412, + running_times: 6540, + }, + { + title: "20,000 Leagues Under the Sea", + year: 1954, + rating: 7.2, + votes: 24094, + running_times: 7620, + }, + { + title: "200 Cigarettes", + year: 1999, + rating: 5.9, + votes: 13532, + running_times: 6060, + }, + { + title: "2001 Maniacs", + year: 2005, + rating: 5.4, + votes: 10889, + running_times: 5220, + }, + { + title: "2001: A Space Odyssey", + year: 1968, + rating: 8.3, + votes: 481800, + running_times: 9660, + }, + { + title: "2001: A Space Travesty", + year: 2000, + rating: 3.4, + votes: 10094, + running_times: 5940, + }, + { title: "2010", year: 1984, rating: 6.8, votes: 44155, running_times: 6960 }, + { + title: "2012", + year: 2009, + rating: 5.8, + votes: 306797, + running_times: 9480, + }, + { + title: "20th Century Women", + year: 2016, + rating: 7.4, + votes: 22965, + running_times: 7140, + }, + { + title: "21 & Over", + year: 2013, + rating: 5.9, + votes: 65298, + running_times: 5580, + }, + { title: "21", year: 2008, rating: 6.8, votes: 203251, running_times: 7380 }, + { + title: "21 Grams", + year: 2003, + rating: 7.7, + votes: 202129, + running_times: 7440, + }, + { + title: "21 Jump Street", + year: 2012, + rating: 7.2, + votes: 446476, + running_times: 6540, + }, + { + title: "22 Jump Street", + year: 2014, + rating: 7.1, + votes: 292991, + running_times: 6720, + }, + { + title: "24 Hour Party People", + year: 2002, + rating: 7.4, + votes: 28750, + running_times: 7020, + }, + { + title: "25th Hour", + year: 2002, + rating: 7.7, + votes: 157063, + running_times: 8100, + }, + { + title: "27 Dresses", + year: 2008, + rating: 6.1, + votes: 134861, + running_times: 6660, + }, + { + title: "28 Days", + year: 2000, + rating: 6, + votes: 37395, + running_times: 6180, + }, + { + title: "28 Days Later...", + year: 2002, + rating: 7.6, + votes: 323591, + running_times: 6780, + }, + { + title: "28 Weeks Later", + year: 2007, + rating: 7, + votes: 228033, + running_times: 6000, + }, + { title: "2:22", year: 2017, rating: 5.7, votes: 10266, running_times: 5880 }, + { + title: "3 Days to Kill", + year: 2014, + rating: 6.2, + votes: 75906, + running_times: 7380, + }, + { + title: "3 Idiots", + year: 2009, + rating: 8.4, + votes: 256619, + running_times: 10200, + }, + { + title: "3 Men and a Baby", + year: 1987, + rating: 5.9, + votes: 39924, + running_times: 6120, + }, + { + title: "3 Men and a Little Lady", + year: 1990, + rating: 5.3, + votes: 19005, + running_times: 6240, + }, + { + title: "3 Ninjas", + year: 1992, + rating: 5.2, + votes: 17582, + running_times: 5880, + }, + { + title: "3 Women", + year: 1977, + rating: 7.9, + votes: 10852, + running_times: 7440, + }, + { + title: "30 Days of Night", + year: 2007, + rating: 6.6, + votes: 148004, + running_times: 6780, + }, + { + title: "30 Minutes or Less", + year: 2011, + rating: 6.1, + votes: 83073, + running_times: 4980, + }, + { title: "300", year: 2006, rating: 7.7, votes: 654380, running_times: 7020 }, + { + title: "3000 Miles to Graceland", + year: 2001, + rating: 5.9, + votes: 39646, + running_times: 7500, + }, + { + title: "300: Rise of an Empire", + year: 2014, + rating: 6.2, + votes: 245690, + running_times: 6120, + }, + { title: "31", year: 2016, rating: 5, votes: 12536, running_times: 6120 }, + { title: "360", year: 2011, rating: 6.2, votes: 14275, running_times: 6600 }, + { + title: "3:10 to Yuma", + year: 1957, + rating: 7.6, + votes: 15498, + running_times: 5520, + }, + { + title: "3:10 to Yuma", + year: 2007, + rating: 7.7, + votes: 254591, + running_times: 7320, + }, + { + title: "40 Days and 40 Nights", + year: 2002, + rating: 5.6, + votes: 64777, + running_times: 5760, + }, + { title: "42", year: 2013, rating: 7.5, votes: 71968, running_times: 7680 }, + { + title: "45 Years", + year: 2015, + rating: 7.1, + votes: 24269, + running_times: 5460, + }, + { + title: "47 Meters Down", + year: 2017, + rating: 5.7, + votes: 23125, + running_times: 5340, + }, + { + title: "47 Ronin", + year: 2013, + rating: 6.3, + votes: 127026, + running_times: 7680, + }, + { + title: "48 Hrs.", + year: 1982, + rating: 6.9, + votes: 58092, + running_times: 5760, + }, + { + title: "4: Rise of the Silver Surfer", + year: 2007, + rating: 5.6, + votes: 225698, + running_times: 5520, + }, + { + title: "5 Days of War", + year: 2011, + rating: 5.6, + votes: 12658, + running_times: 6780, + }, + { + title: "5 to 7", + year: 2014, + rating: 7.1, + votes: 13647, + running_times: 6000, + }, + { + title: "50 First Dates", + year: 2004, + rating: 6.8, + votes: 286325, + running_times: 5940, + }, + { + title: "50/50", + year: 2011, + rating: 7.7, + votes: 287608, + running_times: 6000, + }, + { title: "54", year: 1998, rating: 5.8, votes: 28964, running_times: 7260 }, + { + title: "6 Bullets", + year: 2012, + rating: 6.1, + votes: 12351, + running_times: 6900, + }, + { + title: "6 Souls", + year: 2010, + rating: 6.1, + votes: 27608, + running_times: 6720, + }, + { + title: "8 Mile", + year: 2002, + rating: 7.1, + votes: 208201, + running_times: 6600, + }, + { + title: "8 femmes", + year: 2002, + rating: 7.1, + votes: 25351, + running_times: 6660, + }, + { + title: "88 Minutes", + year: 2007, + rating: 5.9, + votes: 69067, + running_times: 6480, + }, + { title: "8MM", year: 1999, rating: 6.5, votes: 110165, running_times: 7380 }, + { title: "8½", year: 1963, rating: 8.1, votes: 88077, running_times: 8280 }, + { title: "9", year: 2009, rating: 7.1, votes: 118743, running_times: 4740 }, + { + title: "9 Songs", + year: 2004, + rating: 4.9, + votes: 19175, + running_times: 4260, + }, + { + title: "99 Homes", + year: 2014, + rating: 7.1, + votes: 23100, + running_times: 6720, + }, + { + title: "A Beautiful Mind", + year: 2001, + rating: 8.2, + votes: 692444, + running_times: 8100, + }, + { + title: "A Better Life", + year: 2011, + rating: 7.2, + votes: 13931, + running_times: 5880, + }, + { + title: "A Bigger Splash", + year: 2015, + rating: 6.4, + votes: 17641, + running_times: 7500, + }, + { + title: "A Boy and His Dog", + year: 1975, + rating: 6.6, + votes: 14010, + running_times: 5460, + }, + { + title: "A Bridge Too Far", + year: 1977, + rating: 7.4, + votes: 43717, + running_times: 10500, + }, + { + title: "A Bronx Tale", + year: 1993, + rating: 7.8, + votes: 107443, + running_times: 7260, + }, + { + title: "A Bug's Life", + year: 1998, + rating: 7.2, + votes: 229465, + running_times: 5700, + }, + { + title: "A Christmas Carol", + year: 2009, + rating: 6.8, + votes: 82681, + running_times: 5760, + }, + { + title: "A Christmas Story", + year: 1983, + rating: 8, + votes: 113032, + running_times: 5640, + }, + { + title: "A Cinderella Story", + year: 2004, + rating: 5.9, + votes: 69295, + running_times: 5700, + }, + { + title: "A Civil Action", + year: 1998, + rating: 6.5, + votes: 24558, + running_times: 6900, + }, + { + title: "A Clockwork Orange", + year: 1971, + rating: 8.3, + votes: 623645, + running_times: 8160, + }, + { + title: "A Close Shave", + year: 1995, + rating: 8.2, + votes: 33053, + running_times: 1800, + }, + { + title: "A Cock and Bull Story", + year: 2005, + rating: 6.8, + votes: 11624, + running_times: 5640, + }, + { + title: "A Cure for Wellness", + year: 2016, + rating: 6.4, + votes: 50746, + running_times: 8760, + }, + { + title: "A Dangerous Method", + year: 2011, + rating: 6.5, + votes: 87773, + running_times: 5940, + }, + { + title: "A Day at the Races", + year: 1937, + rating: 7.7, + votes: 11369, + running_times: 6660, + }, + { + title: "A Dirty Shame", + year: 2004, + rating: 5.1, + votes: 11191, + running_times: 5340, + }, + { + title: "A Dog's Purpose", + year: 2017, + rating: 6.9, + votes: 38675, + running_times: 6000, + }, + { + title: "A Face in the Crowd", + year: 1957, + rating: 8.2, + votes: 10910, + running_times: 7560, + }, + { + title: "A Fantastic Fear of Everything", + year: 2012, + rating: 5.9, + votes: 12446, + running_times: 6000, + }, + { + title: "A Few Best Men", + year: 2011, + rating: 5.7, + votes: 11321, + running_times: 5820, + }, + { + title: "A Few Good Men", + year: 1992, + rating: 7.7, + votes: 198227, + running_times: 8280, + }, + { + title: "A Fish Called Wanda", + year: 1988, + rating: 7.6, + votes: 115086, + running_times: 6480, + }, + { + title: "A Ghost Story", + year: 2017, + rating: 6.9, + votes: 21003, + running_times: 5520, + }, + { + title: "A Good Day to Die Hard", + year: 2013, + rating: 5.3, + votes: 177298, + running_times: 6060, + }, + { + title: "A Good Old Fashioned Orgy", + year: 2011, + rating: 6.2, + votes: 18997, + running_times: 5700, + }, + { + title: "A Good Woman", + year: 2004, + rating: 6.5, + votes: 10271, + running_times: 5580, + }, + { + title: "A Good Year", + year: 2006, + rating: 6.9, + votes: 77087, + running_times: 7020, + }, + { + title: "A Goofy Movie", + year: 1995, + rating: 6.8, + votes: 37406, + running_times: 4680, + }, + { + title: "A Grand Day Out", + year: 1989, + rating: 7.8, + votes: 25751, + running_times: 1380, + }, + { + title: "A Guide to Recognizing Your Saints", + year: 2006, + rating: 7, + votes: 23140, + running_times: 6000, + }, + { + title: "A Guy Thing", + year: 2003, + rating: 5.6, + votes: 15052, + running_times: 6060, + }, + { + title: "A Hard Day's Night", + year: 1964, + rating: 7.7, + votes: 34132, + running_times: 5220, + }, + { + title: "A Haunted House", + year: 2013, + rating: 5.1, + votes: 37624, + running_times: 5160, + }, + { + title: "A Haunted House 2", + year: 2014, + rating: 4.7, + votes: 16458, + running_times: 5160, + }, + { + title: "A History of Violence", + year: 2005, + rating: 7.5, + votes: 200459, + running_times: 5760, + }, + { + title: "A Hologram for the King", + year: 2016, + rating: 6.1, + votes: 30336, + running_times: 5880, + }, + { + title: "A Home at the End of the World", + year: 2004, + rating: 6.8, + votes: 12481, + running_times: 5820, + }, + { + title: "A Knight's Tale", + year: 2001, + rating: 6.9, + votes: 147493, + running_times: 8640, + }, + { + title: "A Late Quartet", + year: 2012, + rating: 7.1, + votes: 12157, + running_times: 6300, + }, + { + title: "A League of Their Own", + year: 1992, + rating: 7.2, + votes: 77777, + running_times: 7680, + }, + { + title: "A Life Less Ordinary", + year: 1997, + rating: 6.4, + votes: 31642, + running_times: 6180, + }, + { + title: "A Little Bit of Heaven", + year: 2011, + rating: 6.3, + votes: 25008, + running_times: 6360, + }, + { + title: "A Little Chaos", + year: 2014, + rating: 6.5, + votes: 15692, + running_times: 6720, + }, + { + title: "A Little Princess", + year: 1995, + rating: 7.7, + votes: 27204, + running_times: 5820, + }, + { + title: "A Lonely Place to Die", + year: 2011, + rating: 6.3, + votes: 23882, + running_times: 5940, + }, + { + title: "A Long Way Down", + year: 2014, + rating: 6.4, + votes: 27396, + running_times: 5760, + }, + { + title: "A Lot Like Love", + year: 2005, + rating: 6.6, + votes: 61471, + running_times: 6420, + }, + { + title: "A Love Song for Bobby Long", + year: 2004, + rating: 7.2, + votes: 23145, + running_times: 7140, + }, + { + title: "A Man Apart", + year: 2003, + rating: 6.1, + votes: 40595, + running_times: 6540, + }, + { + title: "A Man for All Seasons", + year: 1966, + rating: 7.9, + votes: 25716, + running_times: 7200, + }, + { + title: "A Matter of Life and Death", + year: 1946, + rating: 8.1, + votes: 15190, + running_times: 6240, + }, + { + title: "A Matter of Loaf and Death", + year: 2008, + rating: 7.6, + votes: 11464, + running_times: 1800, + }, + { + title: "A Midsummer Night's Dream", + year: 1999, + rating: 6.5, + votes: 22260, + running_times: 6960, + }, + { + title: "A Midsummer Night's Sex Comedy", + year: 1982, + rating: 6.7, + votes: 16072, + running_times: 5280, + }, + { + title: "A Mighty Heart", + year: 2007, + rating: 6.7, + votes: 25029, + running_times: 6480, + }, + { + title: "A Mighty Wind", + year: 2003, + rating: 7.3, + votes: 23379, + running_times: 5460, + }, + { + title: "A Million Ways to Die in the West", + year: 2014, + rating: 6.1, + votes: 149454, + running_times: 8160, + }, + { + title: "A Monster Calls", + year: 2016, + rating: 7.5, + votes: 54692, + running_times: 6480, + }, + { + title: "A Most Violent Year", + year: 2014, + rating: 7, + votes: 53486, + running_times: 7500, + }, + { + title: "A Most Wanted Man", + year: 2014, + rating: 6.8, + votes: 63277, + running_times: 7320, + }, + { + title: "A Night at the Opera", + year: 1935, + rating: 8, + votes: 26694, + running_times: 5760, + }, + { + title: "A Night at the Roxbury", + year: 1998, + rating: 6.2, + votes: 51079, + running_times: 4920, + }, + { + title: "A Night to Remember", + year: 1958, + rating: 7.9, + votes: 11342, + running_times: 7380, + }, + { + title: "A Nightmare on Elm Street", + year: 1984, + rating: 7.5, + votes: 168011, + running_times: 6060, + }, + { + title: "A Nightmare on Elm Street", + year: 2010, + rating: 5.2, + votes: 80750, + running_times: 5700, + }, + { + title: "A Nightmare on Elm Street 3: Dream Warriors", + year: 1987, + rating: 6.6, + votes: 56620, + running_times: 5760, + }, + { + title: "A Nightmare on Elm Street 4: The Dream Master", + year: 1988, + rating: 5.7, + votes: 40437, + running_times: 5940, + }, + { + title: "A Nightmare on Elm Street Part 2: Freddy's Revenge", + year: 1985, + rating: 5.4, + votes: 49036, + running_times: 5220, + }, + { + title: "A Nightmare on Elm Street: The Dream Child", + year: 1989, + rating: 5.1, + votes: 33151, + running_times: 5340, + }, + { + title: "A Passage to India", + year: 1984, + rating: 7.4, + votes: 14283, + running_times: 9840, + }, + { + title: "A Perfect Day", + year: 2015, + rating: 6.8, + votes: 14727, + running_times: 6360, + }, + { + title: "A Perfect Getaway", + year: 2009, + rating: 6.5, + votes: 60120, + running_times: 6480, + }, + { + title: "A Perfect Murder", + year: 1998, + rating: 6.5, + votes: 68812, + running_times: 6420, + }, + { + title: "A Perfect World", + year: 1993, + rating: 7.5, + votes: 62447, + running_times: 8280, + }, + { + title: "A Place in the Sun", + year: 1951, + rating: 7.8, + votes: 16542, + running_times: 7320, + }, + { + title: "A Prairie Home Companion", + year: 2006, + rating: 6.8, + votes: 20330, + running_times: 6300, + }, + { + title: "A River Runs Through It", + year: 1992, + rating: 7.3, + votes: 45327, + running_times: 7380, + }, + { + title: "A Room with a View", + year: 1985, + rating: 7.4, + votes: 32554, + running_times: 7020, + }, + { + title: "A Scanner Darkly", + year: 2006, + rating: 7.1, + votes: 95310, + running_times: 6000, + }, + { + title: "A Series of Unfortunate Events", + year: 2004, + rating: 6.8, + votes: 173998, + running_times: 6480, + }, + { + title: "A Serious Man", + year: 2009, + rating: 7, + votes: 111295, + running_times: 6360, + }, + { + title: "A Shot in the Dark", + year: 1964, + rating: 7.6, + votes: 21546, + running_times: 6120, + }, + { + title: "A Simple Plan", + year: 1998, + rating: 7.5, + votes: 54525, + running_times: 7260, + }, + { + title: "A Single Man", + year: 2009, + rating: 7.6, + votes: 93627, + running_times: 5940, + }, + { + title: "A Sound of Thunder", + year: 2005, + rating: 4.2, + votes: 17277, + running_times: 6600, + }, + { + title: "A Star Is Born", + year: 1954, + rating: 7.8, + votes: 11576, + running_times: 10860, + }, + { + title: "A Street Cat Named Bob", + year: 2016, + rating: 7.4, + votes: 18086, + running_times: 6180, + }, + { + title: "A Streetcar Named Desire", + year: 1951, + rating: 8, + votes: 84993, + running_times: 7500, + }, + { + title: "A Thousand Words", + year: 2012, + rating: 5.9, + votes: 33739, + running_times: 5460, + }, + { + title: "A Time to Kill", + year: 1996, + rating: 7.4, + votes: 110362, + running_times: 8940, + }, + { + title: "A Very Harold & Kumar 3D Christmas", + year: 2011, + rating: 6.3, + votes: 58988, + running_times: 5760, + }, + { + title: "A View to a Kill", + year: 1985, + rating: 6.3, + votes: 74476, + running_times: 7860, + }, + { + title: "A Walk Among the Tombstones", + year: 2014, + rating: 6.5, + votes: 96762, + running_times: 6840, + }, + { + title: "A Walk in the Clouds", + year: 1995, + rating: 6.7, + votes: 26854, + running_times: 6120, + }, + { + title: "A Walk in the Woods", + year: 2015, + rating: 6.3, + votes: 19128, + running_times: 6240, + }, + { + title: "A Walk to Remember", + year: 2002, + rating: 7.4, + votes: 176490, + running_times: 6060, + }, + { + title: "A Wednesday", + year: 2008, + rating: 8.3, + votes: 56214, + running_times: 6240, + }, + { + title: "A Woman Under the Influence", + year: 1974, + rating: 8.2, + votes: 16018, + running_times: 9300, + }, + { + title: "A.C.O.D.", + year: 2013, + rating: 5.7, + votes: 11540, + running_times: 5280, + }, + { title: "ARQ", year: 2016, rating: 6.4, votes: 22206, running_times: 5280 }, + { title: "ATM", year: 2012, rating: 4.7, votes: 20365, running_times: 5400 }, + { + title: "AVP: Alien vs. Predator", + year: 2004, + rating: 5.6, + votes: 159110, + running_times: 6540, + }, + { + title: "AVPR: Aliens vs Predator - Requiem", + year: 2007, + rating: 4.7, + votes: 101047, + running_times: 6120, + }, + { + title: "Abduction", + year: 2011, + rating: 5.1, + votes: 68802, + running_times: 6360, + }, + { + title: "About Last Night", + year: 2014, + rating: 6.1, + votes: 18754, + running_times: 6000, + }, + { + title: "About Last Night...", + year: 1986, + rating: 6.2, + votes: 12416, + running_times: 6780, + }, + { + title: "About Schmidt", + year: 2002, + rating: 7.2, + votes: 112727, + running_times: 7500, + }, + { + title: "About Time", + year: 2013, + rating: 7.8, + votes: 232322, + running_times: 7380, + }, + { + title: "About a Boy", + year: 2002, + rating: 7.1, + votes: 152115, + running_times: 6060, + }, + { + title: "Above the Law", + year: 1988, + rating: 6, + votes: 24301, + running_times: 5940, + }, + { + title: "Above the Rim", + year: 1994, + rating: 6.6, + votes: 11650, + running_times: 5760, + }, + { + title: "Abraham Lincoln: Vampire Hunter", + year: 2012, + rating: 5.9, + votes: 136196, + running_times: 6300, + }, + { + title: "Absentia", + year: 2011, + rating: 5.8, + votes: 14480, + running_times: 5220, + }, + { + title: "Absolute Power", + year: 1997, + rating: 6.7, + votes: 42869, + running_times: 7260, + }, + { + title: "Absolutely Anything", + year: 2015, + rating: 6, + votes: 29541, + running_times: 5100, + }, + { + title: "Accepted", + year: 2006, + rating: 6.5, + votes: 111434, + running_times: 5580, + }, + { + title: "Ace Ventura: Pet Detective", + year: 1994, + rating: 6.9, + votes: 236240, + running_times: 5160, + }, + { + title: "Ace Ventura: When Nature Calls", + year: 1995, + rating: 6.3, + votes: 174677, + running_times: 5400, + }, + { + title: "Ace in the Hole", + year: 1951, + rating: 8.2, + votes: 21834, + running_times: 6660, + }, + { + title: "Across the Universe", + year: 2007, + rating: 7.4, + votes: 97183, + running_times: 7980, + }, + { + title: "Act of Valor", + year: 2012, + rating: 6.5, + votes: 61069, + running_times: 6600, + }, + { title: "Adam", year: 2009, rating: 7.2, votes: 31090, running_times: 5940 }, + { + title: "Adam's Rib", + year: 1949, + rating: 7.6, + votes: 16857, + running_times: 6060, + }, + { + title: "Adaptation.", + year: 2002, + rating: 7.7, + votes: 155220, + running_times: 6840, + }, + { + title: "Addams Family Values", + year: 1993, + rating: 6.6, + votes: 63626, + running_times: 5640, + }, + { + title: "Addicted to Love", + year: 1997, + rating: 6.1, + votes: 20962, + running_times: 6000, + }, + { + title: "Admission", + year: 2013, + rating: 5.7, + votes: 30216, + running_times: 6420, + }, + { + title: "Adoration", + year: 2013, + rating: 6.2, + votes: 26611, + running_times: 6720, + }, + { + title: "Adult World", + year: 2013, + rating: 6.2, + votes: 14875, + running_times: 5820, + }, + { + title: "Adulthood", + year: 2008, + rating: 6.7, + votes: 10672, + running_times: 5940, + }, + { + title: "Adventureland", + year: 2009, + rating: 6.8, + votes: 139933, + running_times: 6420, + }, + { + title: "Adventures in Babysitting", + year: 1987, + rating: 6.9, + votes: 31300, + running_times: 6120, + }, + { + title: "Afflicted", + year: 2013, + rating: 6.3, + votes: 18513, + running_times: 5100, + }, + { + title: "Affliction", + year: 1997, + rating: 7, + votes: 12755, + running_times: 6840, + }, + { + title: "After Earth", + year: 2013, + rating: 4.9, + votes: 170966, + running_times: 6000, + }, + { + title: "After Hours", + year: 1985, + rating: 7.7, + votes: 44784, + running_times: 5820, + }, + { + title: "After the Dark", + year: 2013, + rating: 5.7, + votes: 18607, + running_times: 6420, + }, + { + title: "After the Sunset", + year: 2004, + rating: 6.3, + votes: 40364, + running_times: 5820, + }, + { + title: "After.Life", + year: 2009, + rating: 5.9, + votes: 32865, + running_times: 6240, + }, + { + title: "Aftermath", + year: 2017, + rating: 5.7, + votes: 12202, + running_times: 5640, + }, + { + title: "Agent Cody Banks", + year: 2003, + rating: 5.1, + votes: 28946, + running_times: 6120, + }, + { + title: "Agent Cody Banks 2: Destination London", + year: 2004, + rating: 4.5, + votes: 12154, + running_times: 6000, + }, + { + title: "Agneepath", + year: 2012, + rating: 7, + votes: 19127, + running_times: 10440, + }, + { + title: "Agora", + year: 2009, + rating: 7.2, + votes: 57484, + running_times: 8460, + }, + { + title: "Aguirre, der Zorn Gottes", + year: 1972, + rating: 8, + votes: 42543, + running_times: 5700, + }, + { + title: "Ah fei zing zyun", + year: 1990, + rating: 7.6, + votes: 13683, + running_times: 5640, + }, + { + title: "Ain't Them Bodies Saints", + year: 2013, + rating: 6.4, + votes: 18005, + running_times: 5760, + }, + { title: "Air", year: 2015, rating: 5.1, votes: 10524, running_times: 5700 }, + { + title: "Air America", + year: 1990, + rating: 5.7, + votes: 23513, + running_times: 6780, + }, + { + title: "Air Bud", + year: 1997, + rating: 5.1, + votes: 14077, + running_times: 5880, + }, + { + title: "Air Force One", + year: 1997, + rating: 6.5, + votes: 157206, + running_times: 7440, + }, + { + title: "Airheads", + year: 1994, + rating: 6.1, + votes: 40608, + running_times: 5520, + }, + { + title: "Airplane II: The Sequel", + year: 1982, + rating: 6.1, + votes: 41313, + running_times: 5100, + }, + { + title: "Airplane!", + year: 1980, + rating: 7.8, + votes: 176142, + running_times: 5280, + }, + { + title: "Airport", + year: 1970, + rating: 6.6, + votes: 14456, + running_times: 8220, + }, + { + title: "Ajeossi", + year: 2010, + rating: 7.8, + votes: 49601, + running_times: 7140, + }, + { + title: "Akeelah and the Bee", + year: 2006, + rating: 7.5, + votes: 16346, + running_times: 6720, + }, + { + title: "Aladdin", + year: 1992, + rating: 8, + votes: 291038, + running_times: 5400, + }, + { + title: "Alan Partridge: Alpha Papa", + year: 2013, + rating: 7, + votes: 26193, + running_times: 5400, + }, + { + title: "Albert Nobbs", + year: 2011, + rating: 6.7, + votes: 21042, + running_times: 6780, + }, + { + title: "Alex & Emma", + year: 2003, + rating: 5.6, + votes: 12051, + running_times: 5760, + }, + { + title: "Alex Cross", + year: 2012, + rating: 5.1, + votes: 29794, + running_times: 6060, + }, + { + title: "Alexander", + year: 2004, + rating: 5.6, + votes: 147126, + running_times: 12840, + }, + { + title: "Alexander and the Terrible, Horrible, No Good, Very Bad Day", + year: 2014, + rating: 6.2, + votes: 33699, + running_times: 4860, + }, + { + title: "Alexis Zorbas", + year: 1964, + rating: 7.8, + votes: 16943, + running_times: 8520, + }, + { + title: "Alferd Packer: The Musical", + year: 1993, + rating: 7.2, + votes: 10661, + running_times: 5820, + }, + { + title: "Alfie", + year: 1966, + rating: 7.1, + votes: 11435, + running_times: 6840, + }, + { + title: "Alfie", + year: 2004, + rating: 6.2, + votes: 46025, + running_times: 6180, + }, + { title: "Ali", year: 2001, rating: 6.8, votes: 83884, running_times: 9900 }, + { + title: "Ali Baba ve 7 Cüceler", + year: 2015, + rating: 6.1, + votes: 12986, + running_times: 6840, + }, + { + title: "Ali G Indahouse", + year: 2002, + rating: 6.2, + votes: 73785, + running_times: 5100, + }, + { + title: "Alice", + year: 1990, + rating: 6.6, + votes: 11437, + running_times: 6360, + }, + { + title: "Alice Doesn't Live Here Anymore", + year: 1974, + rating: 7.4, + votes: 17090, + running_times: 6720, + }, + { + title: "Alice Through the Looking Glass", + year: 2016, + rating: 6.2, + votes: 65458, + running_times: 6780, + }, + { + title: "Alice in Wonderland", + year: 1951, + rating: 7.4, + votes: 106178, + running_times: 4500, + }, + { + title: "Alice in Wonderland", + year: 2010, + rating: 6.5, + votes: 334849, + running_times: 6480, + }, + { + title: "Alien", + year: 1979, + rating: 8.5, + votes: 643183, + running_times: 7020, + }, + { + title: "Alien Nation", + year: 1988, + rating: 6.3, + votes: 12239, + running_times: 5460, + }, + { + title: "Alien: Covenant", + year: 2017, + rating: 6.5, + votes: 176022, + running_times: 7320, + }, + { + title: "Alien: Resurrection", + year: 1997, + rating: 6.2, + votes: 193440, + running_times: 6960, + }, + { + title: "Aliens", + year: 1986, + rating: 8.4, + votes: 547487, + running_times: 9240, + }, + { + title: "Aliens in the Attic", + year: 2009, + rating: 5.4, + votes: 18127, + running_times: 5160, + }, + { + title: "Alien³", + year: 1992, + rating: 6.4, + votes: 234564, + running_times: 8700, + }, + { + title: "Alive", + year: 1993, + rating: 7.1, + votes: 42628, + running_times: 7200, + }, + { + title: "All About Eve", + year: 1950, + rating: 8.3, + votes: 93769, + running_times: 8280, + }, + { + title: "All About Steve", + year: 2009, + rating: 4.8, + votes: 35167, + running_times: 5940, + }, + { + title: "All About the Benjamins", + year: 2002, + rating: 5.8, + votes: 10378, + running_times: 5700, + }, + { + title: "All Dogs Go to Heaven", + year: 1989, + rating: 6.7, + votes: 29536, + running_times: 5040, + }, + { + title: "All Eyez on Me", + year: 2017, + rating: 5.8, + votes: 12426, + running_times: 8340, + }, + { + title: "All Good Things", + year: 2010, + rating: 6.3, + votes: 45790, + running_times: 6060, + }, + { + title: "All Is Lost", + year: 2013, + rating: 6.9, + votes: 65230, + running_times: 6360, + }, + { + title: "All Quiet on the Western Front", + year: 1930, + rating: 8.1, + votes: 50226, + running_times: 8820, + }, + { + title: "All That Heaven Allows", + year: 1955, + rating: 7.7, + votes: 10431, + running_times: 5340, + }, + { + title: "All That Jazz", + year: 1979, + rating: 7.8, + votes: 21615, + running_times: 7380, + }, + { + title: "All of Me", + year: 1984, + rating: 6.7, + votes: 14228, + running_times: 5580, + }, + { + title: "All the Boys Love Mandy Lane", + year: 2006, + rating: 5.6, + votes: 27574, + running_times: 5400, + }, + { + title: "All the King's Men", + year: 1949, + rating: 7.6, + votes: 10818, + running_times: 6600, + }, + { + title: "All the King's Men", + year: 2006, + rating: 6.2, + votes: 21751, + running_times: 7680, + }, + { + title: "All the President's Men", + year: 1976, + rating: 8, + votes: 82613, + running_times: 8280, + }, + { + title: "All the Pretty Horses", + year: 2000, + rating: 5.8, + votes: 11937, + running_times: 13200, + }, + { + title: "All the Right Moves", + year: 1983, + rating: 5.9, + votes: 13281, + running_times: 5460, + }, + { + title: "Allegiant", + year: 2016, + rating: 5.7, + votes: 79153, + running_times: 7200, + }, + { + title: "Allied", + year: 2016, + rating: 7.1, + votes: 101406, + running_times: 7440, + }, + { + title: "Almost Famous", + year: 2000, + rating: 7.9, + votes: 222016, + running_times: 9720, + }, + { + title: "Almost Heroes", + year: 1998, + rating: 5.8, + votes: 13847, + running_times: 5400, + }, + { + title: "Aloha", + year: 2015, + rating: 5.4, + votes: 47563, + running_times: 6300, + }, + { + title: "Alone in the Dark", + year: 2005, + rating: 2.3, + votes: 39084, + running_times: 5940, + }, + { + title: "Along Came Polly", + year: 2004, + rating: 5.9, + votes: 112528, + running_times: 5400, + }, + { + title: "Along Came a Spider", + year: 2001, + rating: 6.3, + votes: 63476, + running_times: 6240, + }, + { + title: "Alpha Dog", + year: 2006, + rating: 6.9, + votes: 91925, + running_times: 7320, + }, + { + title: "Alpha and Omega", + year: 2010, + rating: 5.3, + votes: 11716, + running_times: 5400, + }, + { + title: "Altered States", + year: 1980, + rating: 6.9, + votes: 26407, + running_times: 6120, + }, + { + title: "Alvin and the Chipmunks", + year: 2007, + rating: 5.2, + votes: 62965, + running_times: 5520, + }, + { + title: "Alvin and the Chipmunks: Chipwrecked", + year: 2011, + rating: 4.4, + votes: 25279, + running_times: 5220, + }, + { + title: "Alvin and the Chipmunks: The Road Chip", + year: 2015, + rating: 5.1, + votes: 12390, + running_times: 5520, + }, + { + title: "Alvin and the Chipmunks: The Squeakquel", + year: 2009, + rating: 4.5, + votes: 35242, + running_times: 5340, + }, + { + title: "Always", + year: 1989, + rating: 6.4, + votes: 24085, + running_times: 7320, + }, + { + title: "Amadeus", + year: 1984, + rating: 8.3, + votes: 303203, + running_times: 10800, + }, + { + title: "Amanda Knox", + year: 2016, + rating: 7, + votes: 12227, + running_times: 5520, + }, + { + title: "Amazing Grace", + year: 2006, + rating: 7.5, + votes: 22038, + running_times: 7080, + }, + { + title: "Amelia", + year: 2009, + rating: 5.8, + votes: 10698, + running_times: 6660, + }, + { + title: "Amen.", + year: 2002, + rating: 7.3, + votes: 11925, + running_times: 7920, + }, + { + title: "America's Sweethearts", + year: 2001, + rating: 5.7, + votes: 49926, + running_times: 6120, + }, + { + title: "American Assassin", + year: 2017, + rating: 6.2, + votes: 28116, + running_times: 6720, + }, + { + title: "American Beauty", + year: 1999, + rating: 8.4, + votes: 911446, + running_times: 7320, + }, + { + title: "American Dreamz", + year: 2006, + rating: 5.5, + votes: 23250, + running_times: 6420, + }, + { + title: "American Gangster", + year: 2007, + rating: 7.8, + votes: 345631, + running_times: 10560, + }, + { + title: "American Gigolo", + year: 1980, + rating: 6.2, + votes: 17629, + running_times: 7020, + }, + { + title: "American Graffiti", + year: 1973, + rating: 7.5, + votes: 68973, + running_times: 12600, + }, + { + title: "American Heist", + year: 2014, + rating: 5.2, + votes: 14405, + running_times: 5640, + }, + { + title: "American History X", + year: 1998, + rating: 8.5, + votes: 868976, + running_times: 7140, + }, + { + title: "American Honey", + year: 2016, + rating: 7, + votes: 24638, + running_times: 9780, + }, + { + title: "American Hustle", + year: 2013, + rating: 7.3, + votes: 390260, + running_times: 8280, + }, + { + title: "American Made", + year: 2017, + rating: 7.2, + votes: 54330, + running_times: 6900, + }, + { + title: "American Mary", + year: 2012, + rating: 6.3, + votes: 18886, + running_times: 6180, + }, + { + title: "American Movie", + year: 1999, + rating: 7.9, + votes: 14634, + running_times: 6420, + }, + { + title: "American Ninja", + year: 1985, + rating: 5.4, + votes: 11392, + running_times: 5700, + }, + { + title: "American Outlaws", + year: 2001, + rating: 6, + votes: 12644, + running_times: 5640, + }, + { + title: "American Pie", + year: 1999, + rating: 7, + votes: 334732, + running_times: 5700, + }, + { + title: "American Pie 2", + year: 2001, + rating: 6.4, + votes: 213276, + running_times: 6480, + }, + { + title: "American Psycho", + year: 2000, + rating: 7.6, + votes: 396021, + running_times: 6120, + }, + { + title: "American Reunion", + year: 2012, + rating: 6.7, + votes: 182331, + running_times: 6780, + }, + { + title: "American Sniper", + year: 2014, + rating: 7.3, + votes: 368132, + running_times: 7980, + }, + { + title: "American Splendor", + year: 2003, + rating: 7.5, + votes: 43842, + running_times: 6060, + }, + { + title: "American Ultra", + year: 2015, + rating: 6.1, + votes: 68944, + running_times: 5760, + }, + { + title: "American Wedding", + year: 2003, + rating: 6.3, + votes: 172946, + running_times: 6180, + }, + { + title: "Amistad", + year: 1997, + rating: 7.3, + votes: 61388, + running_times: 9300, + }, + { + title: "Amour", + year: 2012, + rating: 7.9, + votes: 78257, + running_times: 7620, + }, + { title: "Amy", year: 2015, rating: 7.8, votes: 38716, running_times: 7680 }, + { + title: "An Affair to Remember", + year: 1957, + rating: 7.6, + votes: 23942, + running_times: 6900, + }, + { + title: "An American Crime", + year: 2007, + rating: 7.4, + votes: 27534, + running_times: 5880, + }, + { + title: "An American Haunting", + year: 2005, + rating: 5, + votes: 23087, + running_times: 5460, + }, + { + title: "An American Tail", + year: 1986, + rating: 6.9, + votes: 41433, + running_times: 4800, + }, + { + title: "An American Tail: Fievel Goes West", + year: 1991, + rating: 6.5, + votes: 19175, + running_times: 4500, + }, + { + title: "An American Werewolf in London", + year: 1981, + rating: 7.6, + votes: 74437, + running_times: 5820, + }, + { + title: "An American Werewolf in Paris", + year: 1997, + rating: 5.1, + votes: 20423, + running_times: 6300, + }, + { + title: "An American in Paris", + year: 1951, + rating: 7.2, + votes: 24711, + running_times: 6840, + }, + { + title: "An Education", + year: 2009, + rating: 7.3, + votes: 117913, + running_times: 6000, + }, + { + title: "An Ideal Husband", + year: 1999, + rating: 6.9, + votes: 13647, + running_times: 5820, + }, + { + title: "An Inconvenient Truth", + year: 2006, + rating: 7.5, + votes: 73591, + running_times: 5760, + }, + { + title: "An Officer and a Gentleman", + year: 1982, + rating: 7, + votes: 41135, + running_times: 7440, + }, + { + title: "An Unfinished Life", + year: 2005, + rating: 7, + votes: 25784, + running_times: 6480, + }, + { + title: "Anaconda", + year: 1997, + rating: 4.7, + votes: 80526, + running_times: 5340, + }, + { + title: "Anacondas: The Hunt for the Blood Orchid", + year: 2004, + rating: 4.6, + votes: 24190, + running_times: 5820, + }, + { + title: "Analyze That", + year: 2002, + rating: 5.9, + votes: 74001, + running_times: 5760, + }, + { + title: "Analyze This", + year: 1999, + rating: 6.7, + votes: 131399, + running_times: 6540, + }, + { + title: "Anastasia", + year: 1997, + rating: 7.1, + votes: 95743, + running_times: 5640, + }, + { + title: "Anatomy of a Murder", + year: 1959, + rating: 8.1, + votes: 50250, + running_times: 9600, + }, + { + title: "Anchorman 2: The Legend Continues", + year: 2013, + rating: 6.3, + votes: 143995, + running_times: 8580, + }, + { + title: "Anchorman: The Legend of Ron Burgundy", + year: 2004, + rating: 7.2, + votes: 288977, + running_times: 6240, + }, + { + title: "And Now for Something Completely Different", + year: 1971, + rating: 7.6, + votes: 25816, + running_times: 5280, + }, + { + title: "And So It Goes", + year: 2014, + rating: 5.8, + votes: 10471, + running_times: 5640, + }, + { + title: "And Soon the Darkness", + year: 2010, + rating: 5.2, + votes: 14637, + running_times: 5460, + }, + { + title: "And Then There Were None", + year: 1945, + rating: 7.6, + votes: 10271, + running_times: 5820, + }, + { + title: "Angel Eyes", + year: 2001, + rating: 5.6, + votes: 20391, + running_times: 6120, + }, + { + title: "Angel Heart", + year: 1987, + rating: 7.3, + votes: 68210, + running_times: 6780, + }, + { + title: "Angela's Ashes", + year: 1999, + rating: 7.3, + votes: 18063, + running_times: 8700, + }, + { + title: "Angels & Demons", + year: 2009, + rating: 6.7, + votes: 235481, + running_times: 8760, + }, + { + title: "Angels in the Outfield", + year: 1994, + rating: 6.1, + votes: 24230, + running_times: 6120, + }, + { + title: "Angels with Dirty Faces", + year: 1938, + rating: 8, + votes: 17119, + running_times: 5820, + }, + { + title: "Anger Management", + year: 2003, + rating: 6.2, + votes: 181738, + running_times: 6360, + }, + { + title: "Angry Birds", + year: 2016, + rating: 6.3, + votes: 61016, + running_times: 5820, + }, + { + title: "Angus, Thongs and Perfect Snogging", + year: 2008, + rating: 6.4, + votes: 22067, + running_times: 6000, + }, + { + title: "Animal Crackers", + year: 1930, + rating: 7.7, + votes: 11502, + running_times: 5880, + }, + { + title: "Animal Factory", + year: 2000, + rating: 6.6, + votes: 11266, + running_times: 5640, + }, + { + title: "Animal Farm", + year: 1954, + rating: 7.2, + votes: 11658, + running_times: 4320, + }, + { + title: "Animal House", + year: 1978, + rating: 7.6, + votes: 97022, + running_times: 6540, + }, + { + title: "Animal Kingdom", + year: 2010, + rating: 7.3, + votes: 48897, + running_times: 6780, + }, + { title: "Anna", year: 2013, rating: 6.5, votes: 17073, running_times: 5940 }, + { + title: "Anna Karenina", + year: 2012, + rating: 6.6, + votes: 78137, + running_times: 7740, + }, + { + title: "Anna and the King", + year: 1999, + rating: 6.7, + votes: 32703, + running_times: 8880, + }, + { + title: "Annabelle", + year: 2014, + rating: 5.4, + votes: 103295, + running_times: 5940, + }, + { + title: "Annabelle: Creation", + year: 2017, + rating: 6.6, + votes: 58319, + running_times: 6540, + }, + { + title: "Annapolis", + year: 2006, + rating: 5.8, + votes: 18758, + running_times: 6480, + }, + { + title: "Annie", + year: 1982, + rating: 6.5, + votes: 33623, + running_times: 7620, + }, + { + title: "Annie", + year: 2014, + rating: 5.3, + votes: 28526, + running_times: 7080, + }, + { + title: "Annie Hall", + year: 1977, + rating: 8.1, + votes: 217245, + running_times: 5580, + }, + { + title: "Anomalisa", + year: 2015, + rating: 7.2, + votes: 49074, + running_times: 5400, + }, + { + title: "Anonymous", + year: 2011, + rating: 6.9, + votes: 36351, + running_times: 7800, + }, + { + title: "Another 48 Hrs.", + year: 1990, + rating: 5.8, + votes: 32415, + running_times: 5580, + }, + { + title: "Another Earth", + year: 2011, + rating: 7, + votes: 80028, + running_times: 5520, + }, + { + title: "Another Stakeout", + year: 1993, + rating: 5.5, + votes: 11646, + running_times: 6480, + }, + { + title: "Another Woman", + year: 1988, + rating: 7.4, + votes: 10953, + running_times: 4860, + }, + { + title: "Another Year", + year: 2010, + rating: 7.3, + votes: 25033, + running_times: 7740, + }, + { + title: "Ant-Man", + year: 2015, + rating: 7.3, + votes: 399388, + running_times: 7020, + }, + { + title: "Anthropoid", + year: 2016, + rating: 7.2, + votes: 30614, + running_times: 7200, + }, + { + title: "Antichrist", + year: 2009, + rating: 6.6, + votes: 97620, + running_times: 6480, + }, + { + title: "Antitrust", + year: 2001, + rating: 6.1, + votes: 26509, + running_times: 6300, + }, + { + title: "Antiviral", + year: 2012, + rating: 5.7, + votes: 10297, + running_times: 6480, + }, + { + title: "Antwone Fisher", + year: 2002, + rating: 7.3, + votes: 28617, + running_times: 7200, + }, + { + title: "Antz", + year: 1998, + rating: 6.6, + votes: 132303, + running_times: 4980, + }, + { + title: "Anvil: The Story of Anvil", + year: 2008, + rating: 8, + votes: 14104, + running_times: 4800, + }, + { + title: "Any Given Sunday", + year: 1999, + rating: 6.8, + votes: 102436, + running_times: 9720, + }, + { + title: "Any Which Way You Can", + year: 1980, + rating: 6, + votes: 14435, + running_times: 6960, + }, + { + title: "Anything Else", + year: 2003, + rating: 6.4, + votes: 26831, + running_times: 6480, + }, + { + title: "Anywhere But Here", + year: 1999, + rating: 6.2, + votes: 15513, + running_times: 6840, + }, + { + title: "Apocalypse Now", + year: 1979, + rating: 8.5, + votes: 497723, + running_times: 19800, + }, + { + title: "Apollo 13", + year: 1995, + rating: 7.6, + votes: 227008, + running_times: 8400, + }, + { + title: "Apollo 18", + year: 2011, + rating: 5.2, + votes: 49390, + running_times: 5160, + }, + { + title: "Appaloosa", + year: 2008, + rating: 6.8, + votes: 53205, + running_times: 6900, + }, + { + title: "April Fool's Day", + year: 1986, + rating: 6.2, + votes: 11611, + running_times: 5340, + }, + { + title: "Apt Pupil", + year: 1998, + rating: 6.7, + votes: 31118, + running_times: 6720, + }, + { + title: "Aqua Teen Hunger Force Colon Movie Film for Theaters", + year: 2007, + rating: 6.9, + votes: 12541, + running_times: 5160, + }, + { + title: "Aquamarine", + year: 2006, + rating: 5.3, + votes: 33298, + running_times: 6240, + }, + { + title: "Arachnophobia", + year: 1990, + rating: 6.4, + votes: 54159, + running_times: 6180, + }, + { + title: "Ararat", + year: 2002, + rating: 6.6, + votes: 10789, + running_times: 6900, + }, + { + title: "Arbitrage", + year: 2012, + rating: 6.6, + votes: 44620, + running_times: 6420, + }, + { + title: "Are We Done Yet?", + year: 2007, + rating: 4.1, + votes: 16925, + running_times: 5520, + }, + { + title: "Are We There Yet?", + year: 2005, + rating: 4.6, + votes: 24773, + running_times: 5700, + }, + { + title: "Are You Here", + year: 2013, + rating: 5.3, + votes: 12834, + running_times: 6840, + }, + { + title: "Area 51", + year: 2015, + rating: 4.2, + votes: 10299, + running_times: 5460, + }, + { + title: "Argo", + year: 2012, + rating: 7.7, + votes: 497169, + running_times: 7800, + }, + { + title: "Arizona Dream", + year: 1993, + rating: 7.4, + votes: 36586, + running_times: 8520, + }, + { + title: "Arlington Road", + year: 1999, + rating: 7.2, + votes: 73649, + running_times: 7020, + }, + { + title: "Armageddon", + year: 1998, + rating: 6.6, + votes: 347486, + running_times: 9180, + }, + { + title: "Armored", + year: 2009, + rating: 5.7, + votes: 27421, + running_times: 5280, + }, + { + title: "Army of Darkness", + year: 1992, + rating: 7.6, + votes: 140929, + running_times: 5760, + }, + { + title: "Arn: Tempelriddaren", + year: 2007, + rating: 6.6, + votes: 19100, + running_times: 16200, + }, + { + title: "Around the World in 80 Days", + year: 1956, + rating: 6.8, + votes: 20004, + running_times: 10980, + }, + { + title: "Around the World in 80 Days", + year: 2004, + rating: 5.8, + votes: 74283, + running_times: 7200, + }, + { + title: "Arrival", + year: 2016, + rating: 8, + votes: 414134, + running_times: 6960, + }, + { + title: "Arsenic and Old Lace", + year: 1944, + rating: 8, + votes: 58127, + running_times: 7080, + }, + { + title: "Art School Confidential", + year: 2006, + rating: 6.3, + votes: 15550, + running_times: 6120, + }, + { + title: "Arthur", + year: 1981, + rating: 6.9, + votes: 22746, + running_times: 5820, + }, + { + title: "Arthur", + year: 2011, + rating: 5.7, + votes: 47295, + running_times: 6600, + }, + { + title: "Arthur Christmas", + year: 2011, + rating: 7.1, + votes: 40559, + running_times: 5820, + }, + { + title: "Arthur et les Minimoys", + year: 2006, + rating: 6, + votes: 28009, + running_times: 6240, + }, + { + title: "Artificial Intelligence: AI", + year: 2001, + rating: 7.1, + votes: 258640, + running_times: 8760, + }, + { + title: "As Above, So Below", + year: 2014, + rating: 6.2, + votes: 58359, + running_times: 5580, + }, + { + title: "As Good as It Gets", + year: 1997, + rating: 7.7, + votes: 240006, + running_times: 8340, + }, + { + title: "Ashby", + year: 2015, + rating: 6.4, + votes: 12069, + running_times: 6000, + }, + { + title: "Assassin's Creed", + year: 2016, + rating: 5.8, + votes: 142293, + running_times: 6900, + }, + { + title: "Assassination Games", + year: 2011, + rating: 6.2, + votes: 14739, + running_times: 6060, + }, + { + title: "Assassination of a High School President", + year: 2008, + rating: 6.3, + votes: 14585, + running_times: 5580, + }, + { + title: "Assassins", + year: 1995, + rating: 6.3, + votes: 68009, + running_times: 7920, + }, + { + title: "Assault on Precinct 13", + year: 1976, + rating: 7.4, + votes: 35219, + running_times: 5460, + }, + { + title: "Assault on Precinct 13", + year: 2005, + rating: 6.3, + votes: 68464, + running_times: 6540, + }, + { + title: "Astro Boy", + year: 2009, + rating: 6.3, + votes: 28054, + running_times: 5640, + }, + { + title: "At Close Range", + year: 1986, + rating: 7, + votes: 11734, + running_times: 6660, + }, + { + title: "At First Sight", + year: 1999, + rating: 5.9, + votes: 11898, + running_times: 7680, + }, + { + title: "Atlantic City, USA", + year: 1980, + rating: 7.4, + votes: 12335, + running_times: 6240, + }, + { + title: "Atlantis: The Lost Empire", + year: 2001, + rating: 6.8, + votes: 82313, + running_times: 5700, + }, + { + title: "Atlas Shrugged: Part I", + year: 2011, + rating: 5.7, + votes: 11880, + running_times: 5820, + }, + { + title: "Atomic Blonde", + year: 2017, + rating: 6.8, + votes: 84987, + running_times: 6900, + }, + { + title: "Atonement", + year: 2007, + rating: 7.8, + votes: 210033, + running_times: 7380, + }, + { + title: "Attack of the Killer Tomatoes!", + year: 1978, + rating: 4.6, + votes: 10524, + running_times: 5400, + }, + { + title: "Attack the Block", + year: 2011, + rating: 6.6, + votes: 88476, + running_times: 5280, + }, + { + title: "Au revoir les enfants", + year: 1987, + rating: 8, + votes: 26271, + running_times: 6240, + }, + { + title: "Auf der anderen Seite", + year: 2007, + rating: 7.9, + votes: 27515, + running_times: 7320, + }, + { + title: "August Rush", + year: 2007, + rating: 7.5, + votes: 93885, + running_times: 6840, + }, + { + title: "August: Osage County", + year: 2013, + rating: 7.2, + votes: 74140, + running_times: 7260, + }, + { + title: "Austenland", + year: 2013, + rating: 6.3, + votes: 16601, + running_times: 5820, + }, + { + title: "Austin Powers in Goldmember", + year: 2002, + rating: 6.2, + votes: 173560, + running_times: 5640, + }, + { + title: "Austin Powers: International Man of Mystery", + year: 1997, + rating: 7, + votes: 195127, + running_times: 5640, + }, + { + title: "Austin Powers: The Spy Who Shagged Me", + year: 1999, + rating: 6.6, + votes: 192813, + running_times: 5700, + }, + { + title: "Australia", + year: 2008, + rating: 6.6, + votes: 108464, + running_times: 9900, + }, + { + title: "Auto Focus", + year: 2002, + rating: 6.6, + votes: 11840, + running_times: 6300, + }, + { + title: "Autoreiji", + year: 2010, + rating: 6.8, + votes: 10080, + running_times: 6540, + }, + { + title: "Autumn in New York", + year: 2000, + rating: 5.5, + votes: 21753, + running_times: 6180, + }, + { + title: "Autómata", + year: 2014, + rating: 6.1, + votes: 47310, + running_times: 6540, + }, + { + title: "Avatar", + year: 2009, + rating: 7.8, + votes: 965391, + running_times: 10680, + }, + { + title: "Avengers: Age of Ultron", + year: 2015, + rating: 7.4, + votes: 549839, + running_times: 8460, + }, + { + title: "Awake", + year: 2007, + rating: 6.5, + votes: 66756, + running_times: 5040, + }, + { + title: "Awakenings", + year: 1990, + rating: 7.8, + votes: 102781, + running_times: 7260, + }, + { + title: "Away We Go", + year: 2009, + rating: 7.1, + votes: 47856, + running_times: 5880, + }, + { + title: "Away from Her", + year: 2006, + rating: 7.6, + votes: 19754, + running_times: 6600, + }, + { + title: "Ayla: The Daughter of War", + year: 2017, + rating: 9.1, + votes: 15688, + running_times: 7500, + }, + { + title: "BASEketball", + year: 1998, + rating: 6.6, + votes: 51153, + running_times: 6180, + }, + { + title: "Babe", + year: 1995, + rating: 6.8, + votes: 101472, + running_times: 5460, + }, + { + title: "Babe: Pig in the City", + year: 1998, + rating: 5.8, + votes: 27221, + running_times: 5820, + }, + { + title: "Babel", + year: 2006, + rating: 7.5, + votes: 259583, + running_times: 8580, + }, + { + title: "Baby Boom", + year: 1987, + rating: 6.2, + votes: 11562, + running_times: 6600, + }, + { + title: "Baby Boy", + year: 2001, + rating: 6.4, + votes: 10653, + running_times: 7800, + }, + { + title: "Baby Driver", + year: 2017, + rating: 7.8, + votes: 228946, + running_times: 6720, + }, + { + title: "Baby Geniuses", + year: 1999, + rating: 2.6, + votes: 21448, + running_times: 5820, + }, + { + title: "Baby Mama", + year: 2008, + rating: 6, + votes: 36224, + running_times: 5940, + }, + { + title: "Baby's Day Out", + year: 1994, + rating: 6, + votes: 37128, + running_times: 5940, + }, + { + title: "Babylon A.D.", + year: 2008, + rating: 5.6, + votes: 86189, + running_times: 6060, + }, + { + title: "Bachelor Party", + year: 1984, + rating: 6.3, + votes: 30852, + running_times: 6300, + }, + { + title: "Bachelorette", + year: 2012, + rating: 5.3, + votes: 40392, + running_times: 5220, + }, + { + title: "Back to School", + year: 1986, + rating: 6.6, + votes: 23321, + running_times: 5760, + }, + { + title: "Back to the Future", + year: 1985, + rating: 8.5, + votes: 829676, + running_times: 6960, + }, + { + title: "Back to the Future Part II", + year: 1989, + rating: 7.8, + votes: 382721, + running_times: 6480, + }, + { + title: "Back to the Future Part III", + year: 1990, + rating: 7.4, + votes: 321449, + running_times: 7080, + }, + { + title: "Backcountry", + year: 2014, + rating: 6, + votes: 13092, + running_times: 5520, + }, + { + title: "Backdraft", + year: 1991, + rating: 6.7, + votes: 62230, + running_times: 8220, + }, + { + title: "Bad Ass", + year: 2012, + rating: 5.5, + votes: 16900, + running_times: 5400, + }, + { + title: "Bad Boy Bubby", + year: 1993, + rating: 7.4, + votes: 10399, + running_times: 6840, + }, + { + title: "Bad Boys", + year: 1983, + rating: 7.2, + votes: 11737, + running_times: 7380, + }, + { + title: "Bad Boys", + year: 1995, + rating: 6.8, + votes: 189209, + running_times: 7140, + }, + { + title: "Bad Boys II", + year: 2003, + rating: 6.6, + votes: 192281, + running_times: 8820, + }, + { + title: "Bad Company", + year: 2002, + rating: 5.6, + votes: 41533, + running_times: 7500, + }, + { + title: "Bad Day at Black Rock", + year: 1955, + rating: 7.8, + votes: 15934, + running_times: 4860, + }, + { + title: "Bad Girls", + year: 1994, + rating: 5.1, + votes: 10276, + running_times: 5940, + }, + { + title: "Bad Grandpa", + year: 2013, + rating: 6.5, + votes: 82213, + running_times: 6120, + }, + { + title: "Bad Lieutenant", + year: 1992, + rating: 7.1, + votes: 32064, + running_times: 5760, + }, + { + title: "Bad Moms", + year: 2016, + rating: 6.2, + votes: 82020, + running_times: 6000, + }, + { + title: "Bad News Bears", + year: 2005, + rating: 5.8, + votes: 18370, + running_times: 6780, + }, + { + title: "Bad Santa", + year: 2003, + rating: 7.1, + votes: 119914, + running_times: 5940, + }, + { + title: "Bad Santa 2", + year: 2016, + rating: 5.6, + votes: 14963, + running_times: 5520, + }, + { + title: "Bad Taste", + year: 1987, + rating: 6.7, + votes: 38949, + running_times: 5880, + }, + { + title: "Bad Teacher", + year: 2011, + rating: 5.7, + votes: 171167, + running_times: 5820, + }, + { + title: "Bad Words", + year: 2013, + rating: 6.7, + votes: 41335, + running_times: 5340, + }, + { + title: "Badlands", + year: 1973, + rating: 7.9, + votes: 53019, + running_times: 5640, + }, + { + title: "Bailout: The Age of Greed", + year: 2013, + rating: 6.1, + votes: 18091, + running_times: 5940, + }, + { + title: "Baiohazâdo: Dijenerêshon", + year: 2008, + rating: 6.6, + votes: 26286, + running_times: 5880, + }, + { title: "Bait", year: 2012, rating: 5.2, votes: 13089, running_times: 5580 }, + { + title: "Bakjwi", + year: 2009, + rating: 7.2, + votes: 34458, + running_times: 8880, + }, + { + title: "Ballerina", + year: 2016, + rating: 6.8, + votes: 10767, + running_times: 5340, + }, + { + title: "Ballistic: Ecks vs. Sever", + year: 2002, + rating: 3.6, + votes: 17379, + running_times: 5460, + }, + { + title: "Balls of Fury", + year: 2007, + rating: 5.3, + votes: 37437, + running_times: 5400, + }, + { + title: "Balto", + year: 1995, + rating: 7.1, + votes: 33431, + running_times: 4680, + }, + { + title: "Bambi", + year: 1942, + rating: 7.3, + votes: 105971, + running_times: 4200, + }, + { + title: "Bana Masal Anlatma", + year: 2015, + rating: 7.8, + votes: 11133, + running_times: 6180, + }, + { + title: "Bananas", + year: 1971, + rating: 7.1, + votes: 29990, + running_times: 4920, + }, + { + title: "Band Baaja Baaraat", + year: 2010, + rating: 7.3, + votes: 11333, + running_times: 8340, + }, + { + title: "Bande à part", + year: 1964, + rating: 7.8, + votes: 18308, + running_times: 5700, + }, + { + title: "Bandidas", + year: 2006, + rating: 5.7, + votes: 30735, + running_times: 5580, + }, + { + title: "Bandits", + year: 2001, + rating: 6.5, + votes: 59840, + running_times: 7380, + }, + { + title: "Bandslam", + year: 2009, + rating: 6.4, + votes: 12646, + running_times: 6660, + }, + { + title: "Bang Bang You're Dead", + year: 2002, + rating: 7.9, + votes: 11636, + running_times: 5580, + }, + { + title: "Bangkok Dangerous", + year: 2008, + rating: 5.4, + votes: 50670, + running_times: 5940, + }, + { + title: "Banlieue 13: Ultimatum", + year: 2009, + rating: 6.5, + votes: 39420, + running_times: 6060, + }, + { + title: "Barb Wire", + year: 1996, + rating: 3.2, + votes: 21839, + running_times: 6000, + }, + { + title: "Barbarella", + year: 1968, + rating: 5.9, + votes: 26937, + running_times: 5880, + }, + { + title: "Barbershop", + year: 2002, + rating: 6.3, + votes: 24682, + running_times: 6120, + }, + { + title: "Barbershop 2: Back in Business", + year: 2004, + rating: 5.7, + votes: 11461, + running_times: 6360, + }, + { + title: "Barbershop: The Next Cut", + year: 2016, + rating: 5.9, + votes: 11117, + running_times: 6660, + }, + { + title: "Barefoot", + year: 2014, + rating: 6.6, + votes: 19458, + running_times: 5400, + }, + { + title: "Barefoot in the Park", + year: 1967, + rating: 7, + votes: 13053, + running_times: 6360, + }, + { + title: "Barely Lethal", + year: 2015, + rating: 5.4, + votes: 14428, + running_times: 5760, + }, + { + title: "Barfly", + year: 1987, + rating: 7.3, + votes: 15840, + running_times: 6000, + }, + { + title: "Barney's Version", + year: 2010, + rating: 7.3, + votes: 22142, + running_times: 8040, + }, + { + title: "Barnyard", + year: 2006, + rating: 5.6, + votes: 22961, + running_times: 5400, + }, + { + title: "Barry Lyndon", + year: 1975, + rating: 8.1, + votes: 114697, + running_times: 11100, + }, + { + title: "Barton Fink", + year: 1991, + rating: 7.7, + votes: 97076, + running_times: 6960, + }, + { + title: "Basic", + year: 2003, + rating: 6.5, + votes: 53220, + running_times: 5880, + }, + { + title: "Basic Instinct", + year: 1992, + rating: 6.9, + votes: 145427, + running_times: 7680, + }, + { + title: "Basic Instinct 2", + year: 2006, + rating: 4.3, + votes: 33147, + running_times: 6960, + }, + { + title: "Basket Case", + year: 1982, + rating: 6.1, + votes: 12730, + running_times: 5460, + }, + { + title: "Basquiat", + year: 1996, + rating: 6.9, + votes: 17003, + running_times: 6480, + }, + { + title: "Bastille Day", + year: 2016, + rating: 6.3, + votes: 24569, + running_times: 5520, + }, + { + title: "Batman & Robin", + year: 1997, + rating: 3.7, + votes: 204277, + running_times: 7500, + }, + { + title: "Batman", + year: 1989, + rating: 7.6, + votes: 292105, + running_times: 7560, + }, + { + title: "Batman Begins", + year: 2005, + rating: 8.3, + votes: 1089733, + running_times: 8400, + }, + { + title: "Batman Forever", + year: 1995, + rating: 5.4, + votes: 206110, + running_times: 7260, + }, + { + title: "Batman Returns", + year: 1992, + rating: 7, + votes: 234839, + running_times: 7560, + }, + { + title: "Batman v Superman: Dawn of Justice", + year: 2016, + rating: 6.6, + votes: 512936, + running_times: 10980, + }, + { + title: "Batman: Mask of the Phantasm", + year: 1993, + rating: 7.9, + votes: 34069, + running_times: 4560, + }, + { + title: "Batman: The Killing Joke", + year: 2016, + rating: 6.5, + votes: 37257, + running_times: 5160, + }, + { + title: "Batman: The Movie", + year: 1966, + rating: 6.5, + votes: 25655, + running_times: 6300, + }, + { + title: "Battle Los Angeles", + year: 2011, + rating: 5.8, + votes: 161428, + running_times: 6960, + }, + { + title: "Battle for the Planet of the Apes", + year: 1973, + rating: 5.5, + votes: 25097, + running_times: 5760, + }, + { + title: "Battle in Seattle", + year: 2007, + rating: 6.7, + votes: 13340, + running_times: 5940, + }, + { + title: "Battle of Britain", + year: 1969, + rating: 7, + votes: 17536, + running_times: 7920, + }, + { + title: "Battle of the Bulge", + year: 1965, + rating: 6.8, + votes: 12257, + running_times: 10020, + }, + { + title: "Battlefield Earth", + year: 2000, + rating: 2.4, + votes: 68599, + running_times: 7140, + }, + { + title: "Battleship", + year: 2012, + rating: 5.8, + votes: 214998, + running_times: 7860, + }, + { + title: "Baywatch", + year: 2017, + rating: 5.6, + votes: 82335, + running_times: 7260, + }, + { + title: "Be Cool", + year: 2005, + rating: 5.7, + votes: 62138, + running_times: 7080, + }, + { + title: "Be Kind Rewind", + year: 2008, + rating: 6.4, + votes: 83213, + running_times: 6120, + }, + { + title: "Beaches", + year: 1988, + rating: 6.8, + votes: 19848, + running_times: 7380, + }, + { title: "Bean", year: 1997, rating: 6.4, votes: 82345, running_times: 5340 }, + { + title: "Beastly", + year: 2011, + rating: 5.6, + votes: 68792, + running_times: 5160, + }, + { + title: "Beasts of No Nation", + year: 2015, + rating: 7.8, + votes: 54204, + running_times: 8220, + }, + { + title: "Beasts of the Southern Wild", + year: 2012, + rating: 7.3, + votes: 74360, + running_times: 5580, + }, + { + title: "Beautiful Creatures", + year: 2013, + rating: 6.2, + votes: 74302, + running_times: 7440, + }, + { + title: "Beautiful Girls", + year: 1996, + rating: 7.2, + votes: 28097, + running_times: 6720, + }, + { + title: "Beautiful Thing", + year: 1996, + rating: 7.7, + votes: 19989, + running_times: 5400, + }, + { + title: "Beauty Shop", + year: 2005, + rating: 5.5, + votes: 14381, + running_times: 6300, + }, + { + title: "Beauty and the Beast", + year: 1991, + rating: 8, + votes: 350813, + running_times: 5460, + }, + { + title: "Beauty and the Beast", + year: 2017, + rating: 7.3, + votes: 184598, + running_times: 7740, + }, + { + title: "Beavis and Butt-Head Do America", + year: 1996, + rating: 6.8, + votes: 45803, + running_times: 4860, + }, + { + title: "Because I Said So", + year: 2007, + rating: 5.6, + votes: 34147, + running_times: 6120, + }, + { title: "Becket", year: 1964, rating: 8, votes: 11879, running_times: 9000 }, + { + title: "Becoming Jane", + year: 2007, + rating: 7.1, + votes: 50882, + running_times: 7200, + }, + { + title: "Bedazzled", + year: 2000, + rating: 6, + votes: 86774, + running_times: 5580, + }, + { + title: "Bedknobs and Broomsticks", + year: 1971, + rating: 7, + votes: 28432, + running_times: 8340, + }, + { + title: "Bedtime Stories", + year: 2008, + rating: 6.1, + votes: 77344, + running_times: 5940, + }, + { + title: "Bee Movie", + year: 2007, + rating: 6.1, + votes: 116761, + running_times: 5460, + }, + { + title: "Beerfest", + year: 2006, + rating: 6.3, + votes: 57341, + running_times: 6600, + }, + { + title: "Beethoven", + year: 1992, + rating: 5.6, + votes: 54880, + running_times: 5220, + }, + { + title: "Beethoven's 2nd", + year: 1993, + rating: 4.8, + votes: 21277, + running_times: 5340, + }, + { + title: "Beetlejuice", + year: 1988, + rating: 7.5, + votes: 210761, + running_times: 5520, + }, + { + title: "Before I Fall", + year: 2017, + rating: 6.4, + votes: 25814, + running_times: 5880, + }, + { + title: "Before I Go to Sleep", + year: 2014, + rating: 6.3, + votes: 57345, + running_times: 5520, + }, + { + title: "Before I Wake", + year: 2016, + rating: 6.1, + votes: 21958, + running_times: 5820, + }, + { + title: "Before Midnight", + year: 2013, + rating: 7.9, + votes: 110256, + running_times: 6540, + }, + { + title: "Before Night Falls", + year: 2000, + rating: 7.3, + votes: 21900, + running_times: 7980, + }, + { + title: "Before Sunrise", + year: 1995, + rating: 8.1, + votes: 210714, + running_times: 6060, + }, + { + title: "Before Sunset", + year: 2004, + rating: 8, + votes: 185303, + running_times: 4800, + }, + { + title: "Before We Go", + year: 2014, + rating: 6.9, + votes: 35613, + running_times: 5700, + }, + { + title: "Before the Devil Knows You're Dead", + year: 2007, + rating: 7.3, + votes: 86289, + running_times: 7020, + }, + { + title: "Before the Flood", + year: 2016, + rating: 8.3, + votes: 18725, + running_times: 5760, + }, + { + title: "Before the Rain", + year: 1994, + rating: 8.1, + votes: 12111, + running_times: 6780, + }, + { + title: "Begin Again", + year: 2013, + rating: 7.4, + votes: 118069, + running_times: 6240, + }, + { + title: "Beginners", + year: 2010, + rating: 7.2, + votes: 79601, + running_times: 6300, + }, + { + title: "Behind Enemy Lines", + year: 2001, + rating: 6.4, + votes: 91282, + running_times: 6360, + }, + { + title: "Behind the Mask: The Rise of Leslie Vernon", + year: 2006, + rating: 6.8, + votes: 18319, + running_times: 5520, + }, + { + title: "Being Flynn", + year: 2012, + rating: 6.4, + votes: 14976, + running_times: 6120, + }, + { + title: "Being John Malkovich", + year: 1999, + rating: 7.8, + votes: 272442, + running_times: 6720, + }, + { + title: "Being Julia", + year: 2004, + rating: 7, + votes: 11098, + running_times: 6240, + }, + { + title: "Being There", + year: 1979, + rating: 8, + votes: 56236, + running_times: 7800, + }, + { + title: "Bel Ami", + year: 2012, + rating: 5.4, + votes: 16345, + running_times: 6120, + }, + { + title: "Belle", + year: 2013, + rating: 7.4, + votes: 23459, + running_times: 6000, + }, + { + title: "Below", + year: 2002, + rating: 6.2, + votes: 18954, + running_times: 6300, + }, + { + title: "Ben-Hur", + year: 1959, + rating: 8.1, + votes: 180774, + running_times: 13440, + }, + { + title: "Ben-Hur", + year: 2016, + rating: 5.7, + votes: 33045, + running_times: 7380, + }, + { + title: "Bend It Like Beckham", + year: 2002, + rating: 6.7, + votes: 95098, + running_times: 6900, + }, + { + title: "Beneath the Planet of the Apes", + year: 1970, + rating: 6.1, + votes: 36158, + running_times: 5700, + }, + { + title: "Benny & Joon", + year: 1993, + rating: 7.2, + votes: 49002, + running_times: 5880, + }, + { + title: "Benny's Video", + year: 1992, + rating: 7.2, + votes: 10776, + running_times: 6300, + }, + { + title: "Beowulf & Grendel", + year: 2005, + rating: 5.9, + votes: 16350, + running_times: 6180, + }, + { + title: "Beowulf", + year: 1999, + rating: 4, + votes: 10148, + running_times: 5940, + }, + { + title: "Beowulf", + year: 2007, + rating: 6.2, + votes: 149083, + running_times: 6900, + }, + { + title: "Berberian Sound Studio", + year: 2012, + rating: 6.2, + votes: 11697, + running_times: 5520, + }, + { + title: "Berlin Syndrome", + year: 2017, + rating: 6.3, + votes: 11929, + running_times: 6960, + }, + { + title: "Bernie", + year: 2011, + rating: 6.8, + votes: 50518, + running_times: 6240, + }, + { + title: "Best in Show", + year: 2000, + rating: 7.5, + votes: 48767, + running_times: 5400, + }, + { + title: "Best of the Best", + year: 1989, + rating: 6.4, + votes: 10324, + running_times: 5820, + }, + { + title: "Better Living Through Chemistry", + year: 2014, + rating: 6.3, + votes: 12403, + running_times: 5460, + }, + { + title: "Better Off Dead...", + year: 1985, + rating: 7.2, + votes: 36214, + running_times: 5820, + }, + { + title: "Beverly Hills Chihuahua", + year: 2008, + rating: 3.7, + votes: 18917, + running_times: 5460, + }, + { + title: "Beverly Hills Cop", + year: 1984, + rating: 7.3, + votes: 138092, + running_times: 6300, + }, + { + title: "Beverly Hills Cop II", + year: 1987, + rating: 6.5, + votes: 91948, + running_times: 6000, + }, + { + title: "Beverly Hills Cop III", + year: 1994, + rating: 5.5, + votes: 65593, + running_times: 6240, + }, + { + title: "Beverly Hills Ninja", + year: 1997, + rating: 5.5, + votes: 33242, + running_times: 5280, + }, + { + title: "Bewitched", + year: 2005, + rating: 4.8, + votes: 61926, + running_times: 6120, + }, + { + title: "Beyond Borders", + year: 2003, + rating: 6.5, + votes: 23974, + running_times: 7620, + }, + { + title: "Beyond a Reasonable Doubt", + year: 2009, + rating: 5.9, + votes: 11253, + running_times: 6360, + }, + { + title: "Beyond the Lights", + year: 2014, + rating: 6.9, + votes: 12882, + running_times: 6960, + }, + { + title: "Beyond the Sea", + year: 2004, + rating: 6.7, + votes: 13535, + running_times: 7080, + }, + { + title: "Bicentennial Man", + year: 1999, + rating: 6.8, + votes: 95874, + running_times: 7920, + }, + { title: "Big", year: 1988, rating: 7.3, votes: 165755, running_times: 7800 }, + { + title: "Big Daddy", + year: 1999, + rating: 6.4, + votes: 173724, + running_times: 5580, + }, + { + title: "Big Eyes", + year: 2014, + rating: 7, + votes: 68354, + running_times: 6360, + }, + { + title: "Big Fat Liar", + year: 2002, + rating: 5.4, + votes: 30820, + running_times: 5280, + }, + { + title: "Big Fish", + year: 2003, + rating: 8, + votes: 372206, + running_times: 7500, + }, + { + title: "Big Game", + year: 2014, + rating: 5.4, + votes: 25066, + running_times: 6600, + }, + { + title: "Big Hero 6", + year: 2014, + rating: 7.8, + votes: 325944, + running_times: 6120, + }, + { + title: "Big Miracle", + year: 2012, + rating: 6.5, + votes: 16311, + running_times: 6420, + }, + { + title: "Big Momma's House", + year: 2000, + rating: 5.1, + votes: 71764, + running_times: 5940, + }, + { + title: "Big Momma's House 2", + year: 2006, + rating: 4.6, + votes: 34990, + running_times: 5940, + }, + { + title: "Big Mommas: Like Father, Like Son", + year: 2011, + rating: 4.4, + votes: 21699, + running_times: 6780, + }, + { + title: "Big Night", + year: 1996, + rating: 7.3, + votes: 14157, + running_times: 6540, + }, + { + title: "Big Nothing", + year: 2006, + rating: 6.8, + votes: 27146, + running_times: 5160, + }, + { + title: "Big Stan", + year: 2007, + rating: 6.2, + votes: 36691, + running_times: 6300, + }, + { + title: "Big Trouble", + year: 2002, + rating: 6.5, + votes: 18242, + running_times: 5100, + }, + { + title: "Big Trouble in Little China", + year: 1986, + rating: 7.3, + votes: 103133, + running_times: 5940, + }, + { + title: "Bigger Stronger Faster*", + year: 2008, + rating: 7.6, + votes: 12389, + running_times: 6300, + }, + { + title: "Biker Boyz", + year: 2003, + rating: 4.6, + votes: 11604, + running_times: 6600, + }, + { + title: "Bikur Ha-Tizmoret", + year: 2007, + rating: 7.6, + votes: 11513, + running_times: 5220, + }, + { + title: "Bill & Ted's Bogus Journey", + year: 1991, + rating: 6.2, + votes: 53320, + running_times: 5580, + }, + { + title: "Bill & Ted's Excellent Adventure", + year: 1989, + rating: 6.9, + votes: 91698, + running_times: 5400, + }, + { title: "Bill", year: 2007, rating: 6.3, votes: 18340, running_times: 5580 }, + { + title: "Billy Bathgate", + year: 1991, + rating: 5.9, + votes: 10143, + running_times: 6360, + }, + { + title: "Billy Elliot", + year: 2000, + rating: 7.7, + votes: 105511, + running_times: 6600, + }, + { + title: "Billy Lynn's Long Halftime Walk", + year: 2016, + rating: 6.3, + votes: 15639, + running_times: 6780, + }, + { + title: "Billy Madison", + year: 1995, + rating: 6.4, + votes: 113436, + running_times: 5340, + }, + { + title: "Biloxi Blues", + year: 1988, + rating: 6.6, + votes: 12664, + running_times: 6360, + }, + { + title: "Bio-Dome", + year: 1996, + rating: 4.4, + votes: 22920, + running_times: 5700, + }, + { + title: "Bird on a Wire", + year: 1990, + rating: 5.9, + votes: 33891, + running_times: 6600, + }, + { + title: "Birdemic: Shock and Terror", + year: 2010, + rating: 1.8, + votes: 16894, + running_times: 6300, + }, + { + title: "Birdman of Alcatraz", + year: 1962, + rating: 7.8, + votes: 13386, + running_times: 8820, + }, + { + title: "Birdman or (The Unexpected Virtue of Ignorance)", + year: 2014, + rating: 7.8, + votes: 463395, + running_times: 7140, + }, + { + title: "Birdy", + year: 1984, + rating: 7.3, + votes: 18621, + running_times: 7200, + }, + { + title: "Birth", + year: 2004, + rating: 6.1, + votes: 31442, + running_times: 6000, + }, + { + title: "Birthday Girl", + year: 2001, + rating: 6.1, + votes: 22488, + running_times: 5580, + }, + { + title: "Bitch Slap", + year: 2009, + rating: 4.5, + votes: 12541, + running_times: 6540, + }, + { + title: "Bitter Moon", + year: 1992, + rating: 7.2, + votes: 28437, + running_times: 8340, + }, + { + title: "Black", + year: 2005, + rating: 8.2, + votes: 28133, + running_times: 7320, + }, + { + title: "Black Christmas", + year: 1974, + rating: 7.2, + votes: 24393, + running_times: 5880, + }, + { + title: "Black Christmas", + year: 2006, + rating: 4.6, + votes: 21469, + running_times: 5640, + }, + { + title: "Black Death", + year: 2010, + rating: 6.4, + votes: 38775, + running_times: 6120, + }, + { + title: "Black Dynamite", + year: 2009, + rating: 7.4, + votes: 38921, + running_times: 5040, + }, + { + title: "Black Hawk Down", + year: 2001, + rating: 7.7, + votes: 317178, + running_times: 9120, + }, + { + title: "Black Knight", + year: 2001, + rating: 4.8, + votes: 33164, + running_times: 5700, + }, + { + title: "Black Mass", + year: 2015, + rating: 6.9, + votes: 142953, + running_times: 7380, + }, + { + title: "Black Narcissus", + year: 1947, + rating: 8, + votes: 17316, + running_times: 6060, + }, + { + title: "Black Rain", + year: 1989, + rating: 6.6, + votes: 42471, + running_times: 7500, + }, + { + title: "Black Sea", + year: 2014, + rating: 6.4, + votes: 28893, + running_times: 6840, + }, + { + title: "Black Sheep", + year: 1996, + rating: 6.2, + votes: 31823, + running_times: 5220, + }, + { + title: "Black Sheep", + year: 2006, + rating: 5.8, + votes: 36324, + running_times: 5220, + }, + { + title: "Black Snake Moan", + year: 2006, + rating: 7, + votes: 55960, + running_times: 6960, + }, + { + title: "Black Swan", + year: 2010, + rating: 8, + votes: 601083, + running_times: 6480, + }, + { + title: "Black Water", + year: 2007, + rating: 6, + votes: 10724, + running_times: 5400, + }, + { + title: "Blackadder Back & Forth", + year: 1999, + rating: 7.7, + votes: 11766, + running_times: 1980, + }, + { + title: "Blackfish", + year: 2013, + rating: 8.1, + votes: 51958, + running_times: 4980, + }, + { + title: "Blackhat", + year: 2015, + rating: 5.4, + votes: 44981, + running_times: 7980, + }, + { + title: "Blade", + year: 1998, + rating: 7.1, + votes: 209150, + running_times: 7200, + }, + { + title: "Blade II", + year: 2002, + rating: 6.7, + votes: 173270, + running_times: 7020, + }, + { + title: "Blade Runner", + year: 1982, + rating: 8.2, + votes: 549243, + running_times: 7020, + }, + { + title: "Blade Runner 2049", + year: 2017, + rating: 8.4, + votes: 159689, + running_times: 9840, + }, + { + title: "Blade: Trinity", + year: 2004, + rating: 5.9, + votes: 145063, + running_times: 7320, + }, + { + title: "Blades of Glory", + year: 2007, + rating: 6.3, + votes: 138656, + running_times: 5580, + }, + { + title: "Blair Witch", + year: 2016, + rating: 5, + votes: 31208, + running_times: 5340, + }, + { + title: "Blank Check", + year: 1994, + rating: 5.2, + votes: 15623, + running_times: 5580, + }, + { + title: "Blast from the Past", + year: 1999, + rating: 6.6, + votes: 52616, + running_times: 6720, + }, + { + title: "Blazing Saddles", + year: 1974, + rating: 7.8, + votes: 106624, + running_times: 5580, + }, + { + title: "Bleed for This", + year: 2016, + rating: 6.8, + votes: 16729, + running_times: 7020, + }, + { + title: "Blended", + year: 2014, + rating: 6.5, + votes: 97403, + running_times: 7020, + }, + { + title: "Bless the Child", + year: 2000, + rating: 5.1, + votes: 12753, + running_times: 6420, + }, + { + title: "Blind Date", + year: 1987, + rating: 5.9, + votes: 18050, + running_times: 5700, + }, + { + title: "Blind Dating", + year: 2006, + rating: 6.1, + votes: 10481, + running_times: 5700, + }, + { + title: "Blind Fury", + year: 1989, + rating: 6.3, + votes: 11747, + running_times: 5160, + }, + { + title: "Blindness", + year: 2008, + rating: 6.6, + votes: 62790, + running_times: 7260, + }, + { + title: "Blitz", + year: 2011, + rating: 6.2, + votes: 73267, + running_times: 5820, + }, + { + title: "Blood Diamond", + year: 2006, + rating: 8, + votes: 434531, + running_times: 8580, + }, + { + title: "Blood Father", + year: 2016, + rating: 6.4, + votes: 45527, + running_times: 5280, + }, + { + title: "Blood Simple.", + year: 1984, + rating: 7.7, + votes: 73424, + running_times: 5940, + }, + { + title: "Blood Ties", + year: 2013, + rating: 6.5, + votes: 16346, + running_times: 8640, + }, + { + title: "Blood Work", + year: 2002, + rating: 6.4, + votes: 36930, + running_times: 6600, + }, + { + title: "Blood and Bone", + year: 2009, + rating: 6.7, + votes: 27624, + running_times: 5580, + }, + { + title: "Blood and Chocolate", + year: 2007, + rating: 5.5, + votes: 16063, + running_times: 5880, + }, + { + title: "Blood: The Last Vampire", + year: 2000, + rating: 6.7, + votes: 10762, + running_times: 2880, + }, + { + title: "Blood: The Last Vampire", + year: 2009, + rating: 5.3, + votes: 13610, + running_times: 5460, + }, + { + title: "BloodRayne", + year: 2005, + rating: 2.9, + votes: 31603, + running_times: 5700, + }, + { + title: "Bloodsport", + year: 1988, + rating: 6.8, + votes: 64098, + running_times: 5520, + }, + { + title: "Bloody Sunday", + year: 2002, + rating: 7.7, + votes: 21001, + running_times: 6420, + }, + { + title: "Blow", + year: 2001, + rating: 7.6, + votes: 212868, + running_times: 7440, + }, + { + title: "Blow Out", + year: 1981, + rating: 7.4, + votes: 32263, + running_times: 6420, + }, + { + title: "Blown Away", + year: 1994, + rating: 6.2, + votes: 24653, + running_times: 7260, + }, + { + title: "Blowup", + year: 1966, + rating: 7.6, + votes: 46137, + running_times: 6660, + }, + { + title: "Blue Chips", + year: 1994, + rating: 6.1, + votes: 10259, + running_times: 6480, + }, + { + title: "Blue Crush", + year: 2002, + rating: 5.6, + votes: 27345, + running_times: 6240, + }, + { + title: "Blue Jasmine", + year: 2013, + rating: 7.3, + votes: 166439, + running_times: 5880, + }, + { + title: "Blue Mountain State: The Rise of Thadland", + year: 2016, + rating: 5.9, + votes: 11882, + running_times: 5400, + }, + { + title: "Blue Ruin", + year: 2013, + rating: 7.1, + votes: 52383, + running_times: 5400, + }, + { + title: "Blue Steel", + year: 1989, + rating: 5.6, + votes: 10090, + running_times: 6120, + }, + { + title: "Blue Streak", + year: 1999, + rating: 6.3, + votes: 64619, + running_times: 5580, + }, + { + title: "Blue Thunder", + year: 1983, + rating: 6.4, + votes: 13524, + running_times: 6540, + }, + { + title: "Blue Valentine", + year: 2010, + rating: 7.4, + votes: 156851, + running_times: 6720, + }, + { + title: "Blue Velvet", + year: 1986, + rating: 7.8, + votes: 148871, + running_times: 10320, + }, + { + title: "Blues Brothers 2000", + year: 1998, + rating: 4.8, + votes: 27755, + running_times: 7380, + }, + { + title: "Boat Trip", + year: 2002, + rating: 4.9, + votes: 28039, + running_times: 5820, + }, + { + title: "Bob Roberts", + year: 1992, + rating: 7, + votes: 12125, + running_times: 6120, + }, + { title: "Bobby", year: 2006, rating: 7, votes: 39233, running_times: 7020 }, + { + title: "Body Double", + year: 1984, + rating: 6.8, + votes: 22822, + running_times: 6840, + }, + { + title: "Body Heat", + year: 1981, + rating: 7.4, + votes: 25400, + running_times: 6780, + }, + { + title: "Body Snatchers", + year: 1993, + rating: 5.9, + votes: 14485, + running_times: 5220, + }, + { + title: "Body of Evidence", + year: 1993, + rating: 4.4, + votes: 12109, + running_times: 6120, + }, + { + title: "Body of Lies", + year: 2008, + rating: 7.1, + votes: 187229, + running_times: 7680, + }, + { + title: "Bodyguard", + year: 2011, + rating: 4.6, + votes: 18446, + running_times: 7800, + }, + { + title: "Boiler Room", + year: 2000, + rating: 7, + votes: 44177, + running_times: 7200, + }, + { + title: "Bolt", + year: 2008, + rating: 6.9, + votes: 160434, + running_times: 5760, + }, + { + title: "Bon Cop, Bad Cop", + year: 2006, + rating: 6.9, + votes: 10218, + running_times: 7200, + }, + { + title: "Bone Tomahawk", + year: 2015, + rating: 7.1, + votes: 53235, + running_times: 7920, + }, + { + title: "Bonnie and Clyde", + year: 1967, + rating: 7.9, + votes: 87339, + running_times: 6660, + }, + { + title: "Boogeyman", + year: 2005, + rating: 4.1, + votes: 27541, + running_times: 5340, + }, + { + title: "Boogie Nights", + year: 1997, + rating: 7.9, + votes: 204133, + running_times: 9300, + }, + { + title: "Book of Shadows: Blair Witch 2", + year: 2000, + rating: 4, + votes: 31854, + running_times: 5400, + }, + { + title: "Boomerang", + year: 1992, + rating: 5.4, + votes: 21930, + running_times: 7020, + }, + { + title: + "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", + year: 2006, + rating: 7.3, + votes: 315298, + running_times: 5040, + }, + { + title: "Bordello of Blood", + year: 1996, + rating: 5.3, + votes: 11395, + running_times: 5220, + }, + { + title: "Borgman", + year: 2013, + rating: 6.8, + votes: 13256, + running_times: 6780, + }, + { + title: "Born Into Brothels: Calcutta's Red Light Kids", + year: 2004, + rating: 7.4, + votes: 13355, + running_times: 5100, + }, + { + title: "Born on the Fourth of July", + year: 1989, + rating: 7.2, + votes: 83568, + running_times: 8700, + }, + { + title: "Bottle Rocket", + year: 1996, + rating: 7.1, + votes: 59209, + running_times: 5700, + }, + { + title: "Bottle Shock", + year: 2008, + rating: 6.8, + votes: 13142, + running_times: 6600, + }, + { + title: "Bounce", + year: 2000, + rating: 5.7, + votes: 18442, + running_times: 6360, + }, + { + title: "Bound", + year: 1996, + rating: 7.4, + votes: 44030, + running_times: 6540, + }, + { + title: "Bound by Honor", + year: 1993, + rating: 8, + votes: 24940, + running_times: 19800, + }, + { + title: "Boundin'", + year: 2003, + rating: 7, + votes: 10569, + running_times: 300, + }, + { + title: "Bowfinger", + year: 1999, + rating: 6.4, + votes: 59927, + running_times: 5820, + }, + { + title: "Bowling for Columbine", + year: 2002, + rating: 8, + votes: 129424, + running_times: 7200, + }, + { + title: "Boxing Helena", + year: 1993, + rating: 4.6, + votes: 10175, + running_times: 6420, + }, + { title: "Boy", year: 2010, rating: 7.5, votes: 12607, running_times: 5220 }, + { + title: "Boy A", + year: 2007, + rating: 7.7, + votes: 34618, + running_times: 6120, + }, + { + title: "Boyhood", + year: 2014, + rating: 7.9, + votes: 296371, + running_times: 9900, + }, + { + title: "Boys Don't Cry", + year: 1999, + rating: 7.6, + votes: 82611, + running_times: 7080, + }, + { + title: "Boys and Girls", + year: 2000, + rating: 5.4, + votes: 14502, + running_times: 5640, + }, + { + title: "Boys on the Side", + year: 1995, + rating: 6.4, + votes: 10282, + running_times: 6900, + }, + { + title: "Boyz n the Hood", + year: 1991, + rating: 7.8, + votes: 103550, + running_times: 6720, + }, + { + title: "Braindead", + year: 1992, + rating: 7.5, + votes: 82550, + running_times: 6240, + }, + { + title: "Brake", + year: 2012, + rating: 6.1, + votes: 10558, + running_times: 5520, + }, + { + title: "Brassed Off", + year: 1996, + rating: 7.1, + votes: 16742, + running_times: 6180, + }, + { title: "Brat", year: 1997, rating: 8, votes: 12125, running_times: 5940 }, + { + title: "Bratz", + year: 2007, + rating: 2.9, + votes: 15681, + running_times: 6600, + }, + { + title: "Brave", + year: 2012, + rating: 7.2, + votes: 306335, + running_times: 5580, + }, + { + title: "Braveheart", + year: 1995, + rating: 8.4, + votes: 817912, + running_times: 13500, + }, + { + title: "Brawl in Cell Block 99", + year: 2017, + rating: 7.2, + votes: 11487, + running_times: 7920, + }, + { + title: "Brazil", + year: 1985, + rating: 8, + votes: 164563, + running_times: 8520, + }, + { title: "Breach", year: 2007, rating: 7, votes: 53971, running_times: 6600 }, + { + title: "Breakdown", + year: 1997, + rating: 6.9, + votes: 41285, + running_times: 5580, + }, + { + title: "Breakfast at Tiffany's", + year: 1961, + rating: 7.7, + votes: 137679, + running_times: 6900, + }, + { + title: "Breakfast on Pluto", + year: 2005, + rating: 7.3, + votes: 18572, + running_times: 7680, + }, + { + title: "Breaking Away", + year: 1979, + rating: 7.7, + votes: 18743, + running_times: 6060, + }, + { + title: "Breaking and Entering", + year: 2006, + rating: 6.5, + votes: 20696, + running_times: 7200, + }, + { + title: "Breaking the Waves", + year: 1996, + rating: 7.9, + votes: 52970, + running_times: 9540, + }, + { + title: "Breathe In", + year: 2013, + rating: 6.4, + votes: 12109, + running_times: 5880, + }, + { + title: "Brewster's Millions", + year: 1985, + rating: 6.5, + votes: 30512, + running_times: 6120, + }, + { + title: "Brick", + year: 2005, + rating: 7.4, + votes: 90277, + running_times: 6600, + }, + { + title: "Brick Mansions", + year: 2014, + rating: 5.7, + votes: 35186, + running_times: 6000, + }, + { + title: "Bride & Prejudice", + year: 2004, + rating: 6.2, + votes: 18303, + running_times: 7320, + }, + { + title: "Bride Wars", + year: 2009, + rating: 5.5, + votes: 87239, + running_times: 5340, + }, + { + title: "Bride of Chucky", + year: 1998, + rating: 5.4, + votes: 43904, + running_times: 5340, + }, + { + title: "Bride of Frankenstein", + year: 1935, + rating: 7.9, + votes: 35950, + running_times: 4500, + }, + { + title: "Bride of Re-Animator", + year: 1989, + rating: 6.3, + votes: 10648, + running_times: 5760, + }, + { + title: "Brideshead Revisited", + year: 2008, + rating: 6.7, + votes: 10686, + running_times: 7980, + }, + { + title: "Bridesmaids", + year: 2011, + rating: 6.8, + votes: 234286, + running_times: 7800, + }, + { + title: "Bridge of Spies", + year: 2015, + rating: 7.6, + votes: 232893, + running_times: 8520, + }, + { + title: "Bridge to Terabithia", + year: 2007, + rating: 7.2, + votes: 121347, + running_times: 5760, + }, + { + title: "Bridget Jones's Baby", + year: 2016, + rating: 6.6, + votes: 50177, + running_times: 7080, + }, + { + title: "Bridget Jones's Diary", + year: 2001, + rating: 6.7, + votes: 191145, + running_times: 5820, + }, + { + title: "Bridget Jones: The Edge of Reason", + year: 2004, + rating: 5.9, + votes: 87286, + running_times: 6480, + }, + { + title: "Brief Encounter", + year: 1945, + rating: 8.1, + votes: 28907, + running_times: 5160, + }, + { + title: "Bright Star", + year: 2009, + rating: 7, + votes: 22780, + running_times: 7140, + }, + { + title: "Brimstone", + year: 2016, + rating: 7.1, + votes: 20832, + running_times: 8880, + }, + { + title: "Bring It On", + year: 2000, + rating: 6, + votes: 75286, + running_times: 5880, + }, + { + title: "Bring Me the Head of Alfredo Garcia", + year: 1974, + rating: 7.5, + votes: 15116, + running_times: 6720, + }, + { + title: "Bringing Down the House", + year: 2003, + rating: 5.6, + votes: 31573, + running_times: 6300, + }, + { + title: "Bringing Out the Dead", + year: 1999, + rating: 6.8, + votes: 56164, + running_times: 7260, + }, + { + title: "Bringing Up Baby", + year: 1938, + rating: 8, + votes: 47943, + running_times: 6120, + }, + { + title: "Broadcast News", + year: 1987, + rating: 7.2, + votes: 23019, + running_times: 7980, + }, + { + title: "Broadway Danny Rose", + year: 1984, + rating: 7.5, + votes: 20316, + running_times: 5040, + }, + { + title: "Brokeback Mountain", + year: 2005, + rating: 7.7, + votes: 279350, + running_times: 8040, + }, + { + title: "Brokedown Palace", + year: 1999, + rating: 6.4, + votes: 19642, + running_times: 6000, + }, + { + title: "Broken", + year: 2012, + rating: 7.3, + votes: 11713, + running_times: 5460, + }, + { + title: "Broken Arrow", + year: 1996, + rating: 6, + votes: 81632, + running_times: 6480, + }, + { + title: "Broken City", + year: 2013, + rating: 6.2, + votes: 68201, + running_times: 6540, + }, + { + title: "Broken Flowers", + year: 2005, + rating: 7.2, + votes: 87301, + running_times: 6360, + }, + { + title: "Bronson", + year: 2008, + rating: 7.1, + votes: 99451, + running_times: 5520, + }, + { + title: "Brooklyn", + year: 2015, + rating: 7.5, + votes: 101435, + running_times: 7020, + }, + { + title: "Brooklyn's Finest", + year: 2009, + rating: 6.7, + votes: 55474, + running_times: 7920, + }, + { + title: "Brother", + year: 2000, + rating: 7.2, + votes: 19732, + running_times: 6840, + }, + { + title: "Brother Bear", + year: 2003, + rating: 6.8, + votes: 78629, + running_times: 5100, + }, + { + title: "Brothers", + year: 2009, + rating: 7.1, + votes: 95987, + running_times: 6300, + }, + { + title: "Brubaker", + year: 1980, + rating: 7.1, + votes: 13091, + running_times: 7860, + }, + { + title: "Bruce Almighty", + year: 2003, + rating: 6.7, + votes: 322967, + running_times: 6060, + }, + { + title: "Brüno", + year: 2009, + rating: 5.8, + votes: 126745, + running_times: 4860, + }, + { + title: "Bubba Ho-Tep", + year: 2002, + rating: 7.2, + votes: 40966, + running_times: 5520, + }, + { + title: "Bubble Boy", + year: 2001, + rating: 5.6, + votes: 27195, + running_times: 5040, + }, + { + title: "Bucky Larson: Born to Be a Star", + year: 2011, + rating: 3.3, + votes: 10028, + running_times: 5820, + }, + { + title: "Bud Abbott Lou Costello Meet Frankenstein", + year: 1948, + rating: 7.6, + votes: 12025, + running_times: 5400, + }, + { + title: "Buena Vista Social Club", + year: 1999, + rating: 7.6, + votes: 14396, + running_times: 6300, + }, + { + title: "Buffalo '66", + year: 1998, + rating: 7.5, + votes: 39780, + running_times: 6600, + }, + { + title: "Buffalo Soldiers", + year: 2001, + rating: 6.9, + votes: 21482, + running_times: 5880, + }, + { + title: "Buffy the Vampire Slayer", + year: 1992, + rating: 5.6, + votes: 34513, + running_times: 5160, + }, + { title: "Bug", year: 2006, rating: 6.1, votes: 29613, running_times: 6120 }, + { + title: "Bugsy", + year: 1991, + rating: 6.8, + votes: 22391, + running_times: 8940, + }, + { + title: "Bugsy Malone", + year: 1976, + rating: 6.8, + votes: 13397, + running_times: 5580, + }, + { + title: "Bull Durham", + year: 1988, + rating: 7.1, + votes: 39732, + running_times: 6480, + }, + { + title: "Bullet to the Head", + year: 2012, + rating: 5.7, + votes: 42174, + running_times: 5520, + }, + { + title: "Bulletproof", + year: 1996, + rating: 5.8, + votes: 31443, + running_times: 5040, + }, + { + title: "Bulletproof Monk", + year: 2003, + rating: 5.5, + votes: 44196, + running_times: 6240, + }, + { + title: "Bullets Over Broadway", + year: 1994, + rating: 7.5, + votes: 31528, + running_times: 5880, + }, + { + title: "Bullitt", + year: 1968, + rating: 7.5, + votes: 50729, + running_times: 6840, + }, + { title: "Bully", year: 2001, rating: 7, votes: 30991, running_times: 6780 }, + { + title: "Bulworth", + year: 1998, + rating: 6.8, + votes: 22996, + running_times: 6480, + }, + { + title: "Bunraku", + year: 2010, + rating: 6.2, + votes: 17571, + running_times: 7440, + }, + { + title: "Buried", + year: 2010, + rating: 7, + votes: 129590, + running_times: 5700, + }, + { + title: "Burke and Hare", + year: 2010, + rating: 6.2, + votes: 17376, + running_times: 5460, + }, + { + title: "Burlesque", + year: 2010, + rating: 6.4, + votes: 66239, + running_times: 7140, + }, + { + title: "Burn After Reading", + year: 2008, + rating: 7, + votes: 267214, + running_times: 5760, + }, + { + title: "Burnt", + year: 2015, + rating: 6.6, + votes: 82978, + running_times: 6060, + }, + { + title: "But I'm a Cheerleader", + year: 1999, + rating: 6.6, + votes: 21535, + running_times: 5100, + }, + { + title: "Butch Cassidy and the Sundance Kid", + year: 1969, + rating: 8.1, + votes: 168819, + running_times: 6600, + }, + { + title: "Butter", + year: 2011, + rating: 6.2, + votes: 18455, + running_times: 5400, + }, + { + title: "Butterfly on a Wheel", + year: 2007, + rating: 6.7, + votes: 27161, + running_times: 5880, + }, + { + title: "By the Sea", + year: 2015, + rating: 5.2, + votes: 13448, + running_times: 7320, + }, + { + title: "Byzantium", + year: 2012, + rating: 6.5, + votes: 35211, + running_times: 7080, + }, + { + title: "Byôsoku 5 senchimêtoru", + year: 2007, + rating: 7.7, + votes: 35965, + running_times: 3780, + }, + { + title: "Bølgen", + year: 2015, + rating: 6.7, + votes: 21289, + running_times: 6300, + }, + { + title: "C.R.A.Z.Y.", + year: 2005, + rating: 8, + votes: 28956, + running_times: 7620, + }, + { title: "CHIPS", year: 2017, rating: 6, votes: 24799, running_times: 6060 }, + { + title: "Cabaret", + year: 1972, + rating: 7.8, + votes: 39966, + running_times: 7440, + }, + { + title: "Cabin Fever", + year: 2002, + rating: 5.6, + votes: 66293, + running_times: 5880, + }, + { + title: "Cabin Fever 2: Spring Fever", + year: 2009, + rating: 4.3, + votes: 11073, + running_times: 5160, + }, + { + title: "Caddyshack", + year: 1980, + rating: 7.3, + votes: 88789, + running_times: 5880, + }, + { + title: "Caddyshack II", + year: 1988, + rating: 3.7, + votes: 13034, + running_times: 5880, + }, + { + title: "Cadillac Man", + year: 1990, + rating: 5.6, + votes: 11472, + running_times: 5820, + }, + { + title: "Cadillac Records", + year: 2008, + rating: 7, + votes: 16892, + running_times: 6540, + }, + { + title: "Café Society", + year: 2016, + rating: 6.6, + votes: 52800, + running_times: 5760, + }, + { title: "Cake", year: 2014, rating: 6.4, votes: 30781, running_times: 6120 }, + { + title: "Calendar Girls", + year: 2003, + rating: 6.9, + votes: 20684, + running_times: 6480, + }, + { + title: "Caligola", + year: 1979, + rating: 5.3, + votes: 29361, + running_times: 9360, + }, + { + title: "Calvary", + year: 2014, + rating: 7.4, + votes: 47886, + running_times: 6120, + }, + { + title: "Camp X-Ray", + year: 2014, + rating: 7, + votes: 33991, + running_times: 7020, + }, + { + title: "Can't Buy Me Love", + year: 1987, + rating: 6.7, + votes: 26695, + running_times: 5640, + }, + { + title: "Can't Hardly Wait", + year: 1998, + rating: 6.5, + votes: 39898, + running_times: 6060, + }, + { + title: "Canadian Bacon", + year: 1995, + rating: 5.9, + votes: 14379, + running_times: 5460, + }, + { + title: "Candy", + year: 2006, + rating: 7.3, + votes: 38489, + running_times: 6960, + }, + { + title: "Candyman", + year: 1992, + rating: 6.6, + votes: 54767, + running_times: 5940, + }, + { + title: "Cannibal Holocaust", + year: 1980, + rating: 6, + votes: 42774, + running_times: 5700, + }, + { + title: "Cannonball Run II", + year: 1984, + rating: 4.9, + votes: 12651, + running_times: 6480, + }, + { + title: "Cape Fear", + year: 1962, + rating: 7.8, + votes: 22104, + running_times: 6360, + }, + { + title: "Cape Fear", + year: 1991, + rating: 7.3, + votes: 140015, + running_times: 7680, + }, + { + title: "Capitalism: A Love Story", + year: 2009, + rating: 7.4, + votes: 37838, + running_times: 7620, + }, + { + title: "Capote", + year: 2005, + rating: 7.4, + votes: 109265, + running_times: 6840, + }, + { + title: "Capricorn One", + year: 1977, + rating: 6.8, + votes: 17173, + running_times: 7800, + }, + { + title: "Captain America: Civil War", + year: 2016, + rating: 7.9, + votes: 457587, + running_times: 8820, + }, + { + title: "Captain America: The First Avenger", + year: 2011, + rating: 6.9, + votes: 572492, + running_times: 7440, + }, + { + title: "Captain America: The Winter Soldier", + year: 2014, + rating: 7.8, + votes: 570329, + running_times: 8160, + }, + { + title: "Captain Blood", + year: 1935, + rating: 7.8, + votes: 10708, + running_times: 7140, + }, + { + title: "Captain Corelli's Mandolin", + year: 2001, + rating: 5.9, + votes: 29674, + running_times: 7860, + }, + { + title: "Captain Fantastic", + year: 2016, + rating: 7.9, + votes: 127916, + running_times: 7080, + }, + { + title: "Captain Phillips", + year: 2013, + rating: 7.8, + votes: 358882, + running_times: 8040, + }, + { + title: "Captain Ron", + year: 1992, + rating: 5.7, + votes: 18068, + running_times: 5760, + }, + { + title: "Captain Underpants: The First Epic Movie", + year: 2017, + rating: 6.2, + votes: 13648, + running_times: 5340, + }, + { + title: "Captivity", + year: 2007, + rating: 4.7, + votes: 21294, + running_times: 5760, + }, + { + title: "Capturing the Friedmans", + year: 2003, + rating: 7.8, + votes: 20887, + running_times: 6420, + }, + { + title: "Carlito's Way", + year: 1993, + rating: 7.9, + votes: 174852, + running_times: 8640, + }, + { + title: "Carnage", + year: 2011, + rating: 7.2, + votes: 104582, + running_times: 4800, + }, + { + title: "Carnival of Souls", + year: 1962, + rating: 7.2, + votes: 15495, + running_times: 5460, + }, + { + title: "Carol", + year: 2015, + rating: 7.2, + votes: 84444, + running_times: 7080, + }, + { + title: "Carrie", + year: 1976, + rating: 7.4, + votes: 138986, + running_times: 5880, + }, + { + title: "Carrie", + year: 2013, + rating: 5.9, + votes: 117179, + running_times: 6000, + }, + { + title: "Carriers", + year: 2009, + rating: 6, + votes: 37502, + running_times: 5040, + }, + { + title: "Cars", + year: 2006, + rating: 7.1, + votes: 295881, + running_times: 7020, + }, + { + title: "Cars 2", + year: 2011, + rating: 6.2, + votes: 119432, + running_times: 6360, + }, + { + title: "Cars 3", + year: 2017, + rating: 6.9, + votes: 32897, + running_times: 6120, + }, + { + title: "Cartel Land", + year: 2015, + rating: 7.4, + votes: 14922, + running_times: 6000, + }, + { + title: "Casa de mi Padre", + year: 2012, + rating: 5.5, + votes: 18263, + running_times: 5040, + }, + { + title: "Casablanca", + year: 1942, + rating: 8.5, + votes: 430019, + running_times: 6120, + }, + { + title: "Casanova", + year: 2005, + rating: 6.5, + votes: 47010, + running_times: 6720, + }, + { + title: "Case 39", + year: 2009, + rating: 6.2, + votes: 66072, + running_times: 6540, + }, + { + title: "Cashback", + year: 2006, + rating: 7.2, + votes: 76620, + running_times: 6120, + }, + { + title: "Casino", + year: 1995, + rating: 8.2, + votes: 372920, + running_times: 10680, + }, + { + title: "Casino Jack", + year: 2010, + rating: 6.2, + votes: 15537, + running_times: 6480, + }, + { + title: "Casino Royale", + year: 1967, + rating: 5.2, + votes: 23463, + running_times: 7860, + }, + { + title: "Casino Royale", + year: 2006, + rating: 8, + votes: 508304, + running_times: 8640, + }, + { + title: "Casper", + year: 1995, + rating: 6.1, + votes: 96437, + running_times: 6000, + }, + { + title: "Cassandra's Dream", + year: 2007, + rating: 6.7, + votes: 46383, + running_times: 6480, + }, + { + title: "Casse-tête chinois", + year: 2013, + rating: 7, + votes: 11298, + running_times: 7020, + }, + { + title: "Cast Away", + year: 2000, + rating: 7.8, + votes: 435433, + running_times: 8580, + }, + { + title: "Casualties of War", + year: 1989, + rating: 7.1, + votes: 35750, + running_times: 7140, + }, + { + title: "Cat Ballou", + year: 1965, + rating: 6.9, + votes: 11292, + running_times: 5820, + }, + { + title: "Cat People", + year: 1942, + rating: 7.4, + votes: 15253, + running_times: 4380, + }, + { + title: "Cat People", + year: 1982, + rating: 6.1, + votes: 15650, + running_times: 7080, + }, + { + title: "Cat on a Hot Tin Roof", + year: 1958, + rating: 8.1, + votes: 37011, + running_times: 6480, + }, + { + title: "Cat's Eye", + year: 1985, + rating: 6.3, + votes: 18823, + running_times: 5640, + }, + { + title: "Catch .44", + year: 2011, + rating: 4.6, + votes: 15331, + running_times: 5640, + }, + { + title: "Catch Me If You Can", + year: 2002, + rating: 8.1, + votes: 624495, + running_times: 8460, + }, + { + title: "Catch and Release", + year: 2006, + rating: 6, + votes: 20037, + running_times: 7440, + }, + { + title: "Catch-22", + year: 1970, + rating: 7.2, + votes: 18485, + running_times: 7320, + }, + { + title: "Catfish", + year: 2010, + rating: 7.1, + votes: 37245, + running_times: 5220, + }, + { + title: "Cats & Dogs", + year: 2001, + rating: 5.1, + votes: 49443, + running_times: 5220, + }, + { + title: "Cats & Dogs: The Revenge of Kitty Galore", + year: 2010, + rating: 4.3, + votes: 11291, + running_times: 4920, + }, + { + title: "Catwoman", + year: 2004, + rating: 3.3, + votes: 94234, + running_times: 6240, + }, + { + title: "Cave of Forgotten Dreams", + year: 2010, + rating: 7.4, + votes: 12911, + running_times: 5700, + }, + { + title: "Cecil B. DeMented", + year: 2000, + rating: 6.2, + votes: 12003, + running_times: 5220, + }, + { + title: "Cedar Rapids", + year: 2011, + rating: 6.3, + votes: 33876, + running_times: 5220, + }, + { + title: "Celda 211", + year: 2009, + rating: 7.7, + votes: 54977, + running_times: 6780, + }, + { + title: "Celebrity", + year: 1998, + rating: 6.3, + votes: 21809, + running_times: 6780, + }, + { + title: "Celeste & Jesse Forever", + year: 2012, + rating: 6.6, + votes: 26184, + running_times: 5520, + }, + { title: "Cell", year: 2016, rating: 4.3, votes: 18673, running_times: 5880 }, + { + title: "Cellular", + year: 2004, + rating: 6.5, + votes: 83353, + running_times: 5640, + }, + { + title: "Cemetery Junction", + year: 2010, + rating: 6.9, + votes: 18430, + running_times: 5700, + }, + { + title: "Center Stage", + year: 2000, + rating: 6.7, + votes: 16679, + running_times: 6900, + }, + { + title: "Central Intelligence", + year: 2016, + rating: 6.3, + votes: 109993, + running_times: 6960, + }, + { + title: "Centurion", + year: 2010, + rating: 6.4, + votes: 69872, + running_times: 5820, + }, + { + title: "Chain Reaction", + year: 1996, + rating: 5.6, + votes: 42923, + running_times: 6420, + }, + { + title: "Chained", + year: 2012, + rating: 6.4, + votes: 13885, + running_times: 5640, + }, + { + title: "Chakushin ari", + year: 2003, + rating: 6.2, + votes: 15089, + running_times: 6720, + }, + { + title: "Chalet Girl", + year: 2011, + rating: 6.3, + votes: 20636, + running_times: 5820, + }, + { + title: "Changeling", + year: 2008, + rating: 7.8, + votes: 211563, + running_times: 8460, + }, + { + title: "Changing Lanes", + year: 2002, + rating: 6.5, + votes: 60854, + running_times: 5880, + }, + { + title: "Chaos", + year: 2005, + rating: 6.5, + votes: 46470, + running_times: 6360, + }, + { + title: "Chaos Theory", + year: 2008, + rating: 6.7, + votes: 29293, + running_times: 5220, + }, + { + title: "Chaplin", + year: 1992, + rating: 7.6, + votes: 46419, + running_times: 8580, + }, + { + title: "Chappie", + year: 2015, + rating: 6.8, + votes: 197879, + running_times: 7200, + }, + { + title: "Charade", + year: 1963, + rating: 8, + votes: 54637, + running_times: 6780, + }, + { + title: "Chariots of Fire", + year: 1981, + rating: 7.2, + votes: 44814, + running_times: 7500, + }, + { + title: "Charlie Bartlett", + year: 2007, + rating: 7, + votes: 58841, + running_times: 5820, + }, + { + title: "Charlie St. Cloud", + year: 2010, + rating: 6.5, + votes: 51299, + running_times: 5940, + }, + { + title: "Charlie Wilson's War", + year: 2007, + rating: 7.1, + votes: 94821, + running_times: 6120, + }, + { + title: "Charlie and the Chocolate Factory", + year: 2005, + rating: 6.7, + votes: 355757, + running_times: 6900, + }, + { + title: "Charlie's Angels", + year: 2000, + rating: 5.5, + votes: 154142, + running_times: 5880, + }, + { + title: "Charlie's Angels: Full Throttle", + year: 2003, + rating: 4.8, + votes: 106759, + running_times: 6420, + }, + { + title: "Charlotte's Web", + year: 1973, + rating: 6.9, + votes: 14527, + running_times: 5640, + }, + { + title: "Charlotte's Web", + year: 2006, + rating: 6.3, + votes: 30791, + running_times: 5820, + }, + { + title: "Chasing Amy", + year: 1997, + rating: 7.3, + votes: 120382, + running_times: 6780, + }, + { + title: "Chasing Liberty", + year: 2004, + rating: 6.1, + votes: 32180, + running_times: 6660, + }, + { + title: "Chasing Mavericks", + year: 2012, + rating: 7.2, + votes: 27345, + running_times: 6960, + }, + { + title: "Che: Part One", + year: 2008, + rating: 7.2, + votes: 40419, + running_times: 8040, + }, + { + title: "Che: Part Two", + year: 2008, + rating: 6.9, + votes: 29183, + running_times: 8100, + }, + { + title: "Cheap Thrills", + year: 2013, + rating: 6.8, + votes: 14997, + running_times: 5280, + }, + { + title: "Cheaper by the Dozen", + year: 2003, + rating: 5.8, + votes: 81367, + running_times: 5880, + }, + { + title: "Cheaper by the Dozen 2", + year: 2005, + rating: 5.5, + votes: 46696, + running_times: 5640, + }, + { + title: "Chef", + year: 2014, + rating: 7.3, + votes: 158787, + running_times: 6840, + }, + { + title: "Chennai Express", + year: 2013, + rating: 6, + votes: 40979, + running_times: 8460, + }, + { + title: "Chernobyl Diaries", + year: 2012, + rating: 5, + votes: 56089, + running_times: 5160, + }, + { + title: "Cherry Falls", + year: 2000, + rating: 5.1, + votes: 10550, + running_times: 5520, + }, + { + title: "Chicago", + year: 2002, + rating: 7.2, + votes: 186928, + running_times: 6780, + }, + { + title: "Chicken Little", + year: 2005, + rating: 5.8, + votes: 71208, + running_times: 4860, + }, + { + title: "Chicken Run", + year: 2000, + rating: 7, + votes: 152354, + running_times: 5040, + }, + { + title: "Child 44", + year: 2015, + rating: 6.5, + votes: 51699, + running_times: 8220, + }, + { + title: "Child's Play", + year: 1988, + rating: 6.6, + votes: 69387, + running_times: 5220, + }, + { + title: "Child's Play 2", + year: 1990, + rating: 5.8, + votes: 35756, + running_times: 5400, + }, + { + title: "Child's Play 3", + year: 1991, + rating: 5, + votes: 28492, + running_times: 5400, + }, + { + title: "Children of Men", + year: 2006, + rating: 7.9, + votes: 396186, + running_times: 6540, + }, + { + title: "Children of a Lesser God", + year: 1986, + rating: 7.2, + votes: 12664, + running_times: 7140, + }, + { + title: "Children of the Corn", + year: 1984, + rating: 5.6, + votes: 39139, + running_times: 5520, + }, + { + title: "Chinatown", + year: 1974, + rating: 8.2, + votes: 240563, + running_times: 7800, + }, + { + title: "Chinjeolhan geumjassi", + year: 2005, + rating: 7.6, + votes: 59464, + running_times: 6900, + }, + { + title: "Chitty Chitty Bang Bang", + year: 1968, + rating: 6.9, + votes: 33986, + running_times: 8640, + }, + { + title: "Chloe", + year: 2009, + rating: 6.3, + votes: 61084, + running_times: 5760, + }, + { + title: "Chocolat", + year: 2000, + rating: 7.3, + votes: 160087, + running_times: 7260, + }, + { + title: "Chocolate", + year: 2008, + rating: 7, + votes: 15889, + running_times: 6600, + }, + { + title: "Choke", + year: 2008, + rating: 6.5, + votes: 29570, + running_times: 5520, + }, + { + title: "Chopper", + year: 2000, + rating: 7.2, + votes: 33112, + running_times: 5640, + }, + { + title: "Christine", + year: 1983, + rating: 6.7, + votes: 56332, + running_times: 6600, + }, + { + title: "Christmas with the Kranks", + year: 2004, + rating: 5.2, + votes: 32280, + running_times: 5940, + }, + { + title: "Chronicle", + year: 2012, + rating: 7.1, + votes: 218220, + running_times: 5340, + }, + { + title: "Chung Hing sam lam", + year: 1994, + rating: 8.1, + votes: 46274, + running_times: 6120, + }, + { + title: "Cinderella", + year: 1950, + rating: 7.3, + votes: 118829, + running_times: 4440, + }, + { + title: "Cinderella", + year: 2015, + rating: 7, + votes: 123774, + running_times: 6840, + }, + { + title: "Cinderella Man", + year: 2005, + rating: 8, + votes: 158231, + running_times: 8640, + }, + { title: "Circle", year: 2015, rating: 6, votes: 22091, running_times: 5220 }, + { + title: "Cirque du Freak: The Vampire's Assistant", + year: 2009, + rating: 5.9, + votes: 38122, + running_times: 6540, + }, + { + title: "Citizen Kane", + year: 1941, + rating: 8.4, + votes: 329256, + running_times: 7140, + }, + { + title: "Citizenfour", + year: 2014, + rating: 8.1, + votes: 44407, + running_times: 6840, + }, + { + title: "City Hall", + year: 1996, + rating: 6.2, + votes: 17638, + running_times: 6660, + }, + { + title: "City Island", + year: 2009, + rating: 7.4, + votes: 28457, + running_times: 6240, + }, + { + title: "City Lights", + year: 1931, + rating: 8.6, + votes: 125731, + running_times: 5220, + }, + { + title: "City Slickers", + year: 1991, + rating: 6.7, + votes: 41722, + running_times: 6780, + }, + { + title: "City Slickers II: The Legend of Curly's Gold", + year: 1994, + rating: 5.5, + votes: 16077, + running_times: 6960, + }, + { + title: "City by the Sea", + year: 2002, + rating: 6.1, + votes: 22301, + running_times: 6480, + }, + { + title: "City of Angels", + year: 1998, + rating: 6.7, + votes: 100989, + running_times: 6840, + }, + { + title: "City of Ember", + year: 2008, + rating: 6.5, + votes: 56656, + running_times: 5400, + }, + { + title: "Clash of the Titans", + year: 1981, + rating: 6.9, + votes: 35380, + running_times: 7080, + }, + { + title: "Clash of the Titans", + year: 2010, + rating: 5.8, + votes: 243626, + running_times: 6360, + }, + { + title: "Cleaner", + year: 2007, + rating: 6.1, + votes: 34279, + running_times: 5580, + }, + { + title: "Cleanskin", + year: 2012, + rating: 6.3, + votes: 18425, + running_times: 6480, + }, + { + title: "Clear and Present Danger", + year: 1994, + rating: 6.9, + votes: 75175, + running_times: 8460, + }, + { + title: "Cleopatra", + year: 1963, + rating: 7, + votes: 24093, + running_times: 19200, + }, + { + title: "Clerks", + year: 1994, + rating: 7.8, + votes: 191979, + running_times: 6120, + }, + { + title: "Clerks II", + year: 2006, + rating: 7.4, + votes: 120022, + running_times: 5820, + }, + { + title: "Click", + year: 2006, + rating: 6.4, + votes: 266298, + running_times: 6420, + }, + { + title: "Cliffhanger", + year: 1993, + rating: 6.4, + votes: 103922, + running_times: 7440, + }, + { + title: "Clockers", + year: 1995, + rating: 6.9, + votes: 17806, + running_times: 7740, + }, + { + title: "Clockstoppers", + year: 2002, + rating: 5.2, + votes: 12024, + running_times: 5640, + }, + { + title: "Close Encounters of the Third Kind", + year: 1977, + rating: 7.7, + votes: 154463, + running_times: 8280, + }, + { + title: "Closed Circuit", + year: 2013, + rating: 6.2, + votes: 19118, + running_times: 5760, + }, + { + title: "Closer", + year: 2004, + rating: 7.3, + votes: 179295, + running_times: 6240, + }, + { + title: "Cloud Atlas", + year: 2012, + rating: 7.5, + votes: 307896, + running_times: 10320, + }, + { + title: "Clouds of Sils Maria", + year: 2014, + rating: 6.7, + votes: 22177, + running_times: 7440, + }, + { + title: "Cloudy with a Chance of Meatballs", + year: 2009, + rating: 7, + votes: 169393, + running_times: 5400, + }, + { + title: "Cloudy with a Chance of Meatballs 2", + year: 2013, + rating: 6.4, + votes: 72622, + running_times: 5700, + }, + { + title: "Cloverfield", + year: 2008, + rating: 7, + votes: 322764, + running_times: 5100, + }, + { + title: "Clown", + year: 2014, + rating: 5.7, + votes: 16910, + running_times: 6000, + }, + { + title: "Club Dread", + year: 2004, + rating: 5.7, + votes: 25170, + running_times: 7140, + }, + { title: "Clue", year: 1985, rating: 7.3, votes: 63435, running_times: 5820 }, + { + title: "Clueless", + year: 1995, + rating: 6.8, + votes: 139268, + running_times: 5820, + }, + { + title: "Coach Carter", + year: 2005, + rating: 7.3, + votes: 101888, + running_times: 8160, + }, + { + title: "Coal Miner's Daughter", + year: 1980, + rating: 7.5, + votes: 14038, + running_times: 7440, + }, + { + title: "Cobain: Montage of Heck", + year: 2015, + rating: 7.6, + votes: 23885, + running_times: 8700, + }, + { + title: "Cobra", + year: 1986, + rating: 5.7, + votes: 55581, + running_times: 5220, + }, + { + title: "Cocaine Cowboys", + year: 2006, + rating: 7.9, + votes: 11305, + running_times: 9120, + }, + { + title: "Cockneys vs Zombies", + year: 2012, + rating: 5.9, + votes: 16293, + running_times: 5280, + }, + { + title: "Cocktail", + year: 1988, + rating: 5.8, + votes: 66672, + running_times: 6240, + }, + { title: "Coco", year: 2017, rating: 8.8, votes: 38493, running_times: 6300 }, + { + title: "Coco avant Chanel", + year: 2009, + rating: 6.7, + votes: 34380, + running_times: 6660, + }, + { + title: "Cocoon", + year: 1985, + rating: 6.7, + votes: 48540, + running_times: 7020, + }, + { + title: "Cocoon: The Return", + year: 1988, + rating: 5.3, + votes: 13077, + running_times: 6960, + }, + { + title: "Code 46", + year: 2003, + rating: 6.2, + votes: 18825, + running_times: 5580, + }, + { + title: "Code Name: The Cleaner", + year: 2007, + rating: 4.5, + votes: 10369, + running_times: 5460, + }, + { + title: "Coffee and Cigarettes", + year: 2003, + rating: 7.1, + votes: 51479, + running_times: 5700, + }, + { + title: "Coherence", + year: 2013, + rating: 7.2, + votes: 74162, + running_times: 5340, + }, + { + title: "Cold Creek Manor", + year: 2003, + rating: 4.9, + votes: 19224, + running_times: 7080, + }, + { + title: "Cold Mountain", + year: 2003, + rating: 7.2, + votes: 125299, + running_times: 9240, + }, + { + title: "Cold in July", + year: 2014, + rating: 6.8, + votes: 29209, + running_times: 6540, + }, + { + title: "Collateral", + year: 2004, + rating: 7.6, + votes: 314995, + running_times: 6900, + }, + { + title: "Collateral Beauty", + year: 2016, + rating: 6.8, + votes: 61621, + running_times: 5820, + }, + { + title: "Collateral Damage", + year: 2002, + rating: 5.5, + votes: 65175, + running_times: 6480, + }, + { + title: "College", + year: 2008, + rating: 4.6, + votes: 11386, + running_times: 5640, + }, + { + title: "College Road Trip", + year: 2008, + rating: 4.3, + votes: 13947, + running_times: 4980, + }, + { + title: "Collide", + year: 2016, + rating: 5.7, + votes: 10342, + running_times: 5940, + }, + { + title: "Colombiana", + year: 2011, + rating: 6.4, + votes: 81904, + running_times: 6720, + }, + { + title: "Colonia", + year: 2015, + rating: 7.1, + votes: 34529, + running_times: 6360, + }, + { + title: "Color of Night", + year: 1994, + rating: 5.1, + votes: 19983, + running_times: 8400, + }, + { + title: "Colors", + year: 1988, + rating: 6.7, + votes: 20690, + running_times: 7620, + }, + { + title: "Colossal", + year: 2016, + rating: 6.2, + votes: 34754, + running_times: 6540, + }, + { title: "Coma", year: 1978, rating: 6.9, votes: 14481, running_times: 6780 }, + { + title: "Comet", + year: 2014, + rating: 6.8, + votes: 14582, + running_times: 5460, + }, + { + title: "Coming Home", + year: 1978, + rating: 7.3, + votes: 10277, + running_times: 7620, + }, + { + title: "Coming to America", + year: 1988, + rating: 7, + votes: 132385, + running_times: 6960, + }, + { + title: "Commando", + year: 1985, + rating: 6.7, + votes: 123223, + running_times: 5520, + }, + { + title: "Comme un chef", + year: 2012, + rating: 6.7, + votes: 13946, + running_times: 5040, + }, + { + title: "Como agua para chocolate", + year: 1992, + rating: 7.2, + votes: 14661, + running_times: 6780, + }, + { + title: "Compliance", + year: 2012, + rating: 6.4, + votes: 26887, + running_times: 5400, + }, + { + title: "Con Air", + year: 1997, + rating: 6.8, + votes: 241529, + running_times: 7380, + }, + { + title: "Conan the Barbarian", + year: 1982, + rating: 6.9, + votes: 120899, + running_times: 7740, + }, + { + title: "Conan the Barbarian", + year: 2011, + rating: 5.2, + votes: 86384, + running_times: 6780, + }, + { + title: "Conan the Destroyer", + year: 1984, + rating: 5.9, + votes: 66764, + running_times: 6180, + }, + { + title: "Concussion", + year: 2015, + rating: 7.1, + votes: 66336, + running_times: 7380, + }, + { + title: "Coneheads", + year: 1993, + rating: 5.3, + votes: 44457, + running_times: 5280, + }, + { + title: "Confessions of a Dangerous Mind", + year: 2002, + rating: 7.1, + votes: 75279, + running_times: 6780, + }, + { + title: "Confessions of a Shopaholic", + year: 2009, + rating: 5.9, + votes: 67162, + running_times: 6240, + }, + { + title: "Confessions of a Teenage Drama Queen", + year: 2004, + rating: 4.6, + votes: 24723, + running_times: 5340, + }, + { + title: "Confidence", + year: 2003, + rating: 6.7, + votes: 31438, + running_times: 5820, + }, + { + title: "Congo", + year: 1995, + rating: 5.1, + votes: 37007, + running_times: 6540, + }, + { + title: "Conquest of the Planet of the Apes", + year: 1972, + rating: 6.1, + votes: 25995, + running_times: 5280, + }, + { + title: "Conspiracy Theory", + year: 1997, + rating: 6.7, + votes: 82265, + running_times: 8100, + }, + { + title: "Constantine", + year: 2005, + rating: 6.9, + votes: 256735, + running_times: 7260, + }, + { + title: "Contact", + year: 1997, + rating: 7.4, + votes: 220252, + running_times: 9000, + }, + { + title: "Contagion", + year: 2011, + rating: 6.6, + votes: 191199, + running_times: 6360, + }, + { + title: "Contraband", + year: 2012, + rating: 6.5, + votes: 106830, + running_times: 6540, + }, + { + title: "Contracted", + year: 2013, + rating: 5.3, + votes: 12077, + running_times: 5040, + }, + { + title: "Control", + year: 2007, + rating: 7.7, + votes: 54840, + running_times: 7320, + }, + { + title: "Conversations with Other Women", + year: 2005, + rating: 7.1, + votes: 10768, + running_times: 5040, + }, + { + title: "Conviction", + year: 2010, + rating: 7.2, + votes: 37479, + running_times: 6420, + }, + { + title: "Convoy", + year: 1978, + rating: 6.3, + votes: 12446, + running_times: 6600, + }, + { + title: "Coogan's Bluff", + year: 1968, + rating: 6.5, + votes: 12776, + running_times: 5580, + }, + { + title: "Cookie's Fortune", + year: 1999, + rating: 6.9, + votes: 11591, + running_times: 7080, + }, + { + title: "Cool Hand Luke", + year: 1967, + rating: 8.2, + votes: 132362, + running_times: 7560, + }, + { + title: "Cool Runnings", + year: 1993, + rating: 6.9, + votes: 76261, + running_times: 5880, + }, + { + title: "Cool World", + year: 1992, + rating: 4.8, + votes: 17941, + running_times: 8820, + }, + { + title: "Cooties", + year: 2014, + rating: 5.6, + votes: 18063, + running_times: 5280, + }, + { + title: "Cop Car", + year: 2015, + rating: 6.3, + votes: 24603, + running_times: 5280, + }, + { + title: "Cop Land", + year: 1997, + rating: 6.9, + votes: 74641, + running_times: 7200, + }, + { + title: "Cop Out", + year: 2010, + rating: 5.6, + votes: 78523, + running_times: 6420, + }, + { + title: "Copenhagen", + year: 2014, + rating: 7.2, + votes: 10195, + running_times: 5880, + }, + { + title: "Copie conforme", + year: 2010, + rating: 7.3, + votes: 16521, + running_times: 6360, + }, + { + title: "Copycat", + year: 1995, + rating: 6.6, + votes: 45500, + running_times: 7380, + }, + { + title: "Copying Beethoven", + year: 2006, + rating: 6.8, + votes: 11733, + running_times: 6240, + }, + { + title: "Coraline", + year: 2009, + rating: 7.7, + votes: 164057, + running_times: 6000, + }, + { + title: "Coriolanus", + year: 2011, + rating: 6.2, + votes: 28410, + running_times: 7380, + }, + { + title: "Corky Romano", + year: 2001, + rating: 4.6, + votes: 11368, + running_times: 5160, + }, + { + title: "Corpse Bride", + year: 2005, + rating: 7.4, + votes: 208321, + running_times: 4620, + }, + { + title: "Corrina, Corrina", + year: 1994, + rating: 6.5, + votes: 10767, + running_times: 6900, + }, + { + title: "Cosmopolis", + year: 2012, + rating: 5, + votes: 39968, + running_times: 6540, + }, + { + title: "Country Strong", + year: 2010, + rating: 6.3, + votes: 15545, + running_times: 7020, + }, + { + title: "Couples Retreat", + year: 2009, + rating: 5.5, + votes: 88557, + running_times: 6780, + }, + { + title: "Courage Under Fire", + year: 1996, + rating: 6.6, + votes: 43563, + running_times: 6960, + }, + { + title: "Courageous", + year: 2011, + rating: 7, + votes: 16551, + running_times: 7740, + }, + { + title: "Cowboy Bebop: Tengoku no tobira", + year: 2001, + rating: 7.9, + votes: 35543, + running_times: 6900, + }, + { + title: "Cowboys & Aliens", + year: 2011, + rating: 6, + votes: 184726, + running_times: 8100, + }, + { + title: "Cowspiracy: The Sustainability Secret", + year: 2014, + rating: 8.4, + votes: 14590, + running_times: 5100, + }, + { + title: "Coyote Ugly", + year: 2000, + rating: 5.6, + votes: 95982, + running_times: 6420, + }, + { + title: "Cracks", + year: 2009, + rating: 6.7, + votes: 16901, + running_times: 6240, + }, + { + title: "Cradle 2 the Grave", + year: 2003, + rating: 5.8, + votes: 37167, + running_times: 6060, + }, + { title: "Crank", year: 2006, rating: 7, votes: 210220, running_times: 5580 }, + { + title: "Crank: High Voltage", + year: 2009, + rating: 6.2, + votes: 122969, + running_times: 5760, + }, + { + title: "Crash", + year: 1996, + rating: 6.4, + votes: 45105, + running_times: 6000, + }, + { + title: "Crash", + year: 2004, + rating: 7.8, + votes: 382043, + running_times: 6900, + }, + { + title: "Crazy Heart", + year: 2009, + rating: 7.3, + votes: 73969, + running_times: 6720, + }, + { + title: "Crazy, Stupid, Love.", + year: 2011, + rating: 7.4, + votes: 409038, + running_times: 7080, + }, + { + title: "Crazy/Beautiful", + year: 2001, + rating: 6.5, + votes: 22330, + running_times: 8100, + }, + { + title: "Creation", + year: 2009, + rating: 6.7, + votes: 12373, + running_times: 6480, + }, + { + title: "Creature from the Black Lagoon", + year: 1954, + rating: 7, + votes: 20009, + running_times: 4740, + }, + { + title: "Creed", + year: 2015, + rating: 7.6, + votes: 186555, + running_times: 7980, + }, + { + title: "Creep", + year: 2004, + rating: 5.6, + votes: 24964, + running_times: 5100, + }, + { + title: "Creep", + year: 2014, + rating: 6.2, + votes: 20497, + running_times: 4620, + }, + { + title: "Creepshow", + year: 1982, + rating: 6.9, + votes: 33804, + running_times: 7800, + }, + { + title: "Creepshow 2", + year: 1987, + rating: 6, + votes: 17797, + running_times: 5520, + }, + { + title: "Crimes and Misdemeanors", + year: 1989, + rating: 8, + votes: 46799, + running_times: 6240, + }, + { + title: "Criminal", + year: 2016, + rating: 6.3, + votes: 43955, + running_times: 6780, + }, + { + title: "Crimson Peak", + year: 2015, + rating: 6.5, + votes: 105157, + running_times: 7140, + }, + { + title: "Crimson Tide", + year: 1995, + rating: 7.3, + votes: 87400, + running_times: 7380, + }, + { + title: "Critters", + year: 1986, + rating: 6, + votes: 25883, + running_times: 4920, + }, + { + title: "Critters 2", + year: 1988, + rating: 5.4, + votes: 11269, + running_times: 5160, + }, + { + title: "Crocodile Dundee", + year: 1986, + rating: 6.5, + votes: 80228, + running_times: 5820, + }, + { + title: "Crocodile Dundee in Los Angeles", + year: 2001, + rating: 4.8, + votes: 20997, + running_times: 5520, + }, + { + title: "Cronos", + year: 1993, + rating: 6.7, + votes: 22058, + running_times: 5640, + }, + { + title: "Cross of Iron", + year: 1977, + rating: 7.5, + votes: 22038, + running_times: 7920, + }, + { + title: "Crossing Over", + year: 2009, + rating: 6.8, + votes: 20695, + running_times: 8400, + }, + { + title: "Crossroads", + year: 1986, + rating: 7.1, + votes: 11548, + running_times: 5940, + }, + { + title: "Crossroads", + year: 2002, + rating: 3.4, + votes: 35455, + running_times: 5580, + }, + { + title: "Crouching Tiger, Hidden Dragon: Sword of Destiny", + year: 2016, + rating: 6.1, + votes: 13783, + running_times: 6180, + }, + { + title: "Croupier", + year: 1998, + rating: 7.2, + votes: 16685, + running_times: 5640, + }, + { + title: "Cruel Intentions", + year: 1999, + rating: 6.8, + votes: 158764, + running_times: 5820, + }, + { + title: "Cruising", + year: 1980, + rating: 6.4, + votes: 14634, + running_times: 6120, + }, + { title: "Crumb", year: 1994, rating: 8, votes: 15416, running_times: 7140 }, + { + title: "Cry Freedom", + year: 1987, + rating: 7.5, + votes: 10789, + running_times: 9420, + }, + { + title: "Cry Wolf", + year: 2005, + rating: 5.9, + votes: 23969, + running_times: 5400, + }, + { + title: "Cry-Baby", + year: 1990, + rating: 6.5, + votes: 47450, + running_times: 5460, + }, + { + title: "Crying Freeman", + year: 1995, + rating: 6.5, + votes: 10059, + running_times: 6120, + }, + { + title: "Cuban Fury", + year: 2014, + rating: 6.2, + votes: 16055, + running_times: 5880, + }, + { + title: "Cube", + year: 1997, + rating: 7.3, + votes: 177332, + running_times: 5400, + }, + { + title: "Cube 2: Hypercube", + year: 2002, + rating: 5.6, + votes: 54831, + running_times: 5640, + }, + { + title: "Cube Zero", + year: 2004, + rating: 5.7, + votes: 31210, + running_times: 5820, + }, + { title: "Cujo", year: 1983, rating: 6, votes: 30871, running_times: 5580 }, + { + title: "Cult of Chucky", + year: 2017, + rating: 5.2, + votes: 11206, + running_times: 7140, + }, + { + title: "Curious George", + year: 2006, + rating: 6.5, + votes: 13591, + running_times: 5220, + }, + { + title: "Curly Sue", + year: 1991, + rating: 5.8, + votes: 17904, + running_times: 6060, + }, + { + title: "Curse of Chucky", + year: 2013, + rating: 5.6, + votes: 27291, + running_times: 5820, + }, + { title: "Cursed", year: 2005, rating: 5, votes: 27579, running_times: 5940 }, + { + title: "Cutthroat Island", + year: 1995, + rating: 5.6, + votes: 22715, + running_times: 7440, + }, + { title: "Cyborg", year: 1989, rating: 5, votes: 25164, running_times: 5160 }, + { + title: "Cypher", + year: 2002, + rating: 6.8, + votes: 28151, + running_times: 5700, + }, + { + title: "Cyrus", + year: 2010, + rating: 6.3, + votes: 31474, + running_times: 5460, + }, + { + title: "D-Tox", + year: 2002, + rating: 5.3, + votes: 20961, + running_times: 5760, + }, + { + title: "D-War", + year: 2007, + rating: 3.6, + votes: 22115, + running_times: 6420, + }, + { + title: "D.A.R.Y.L.", + year: 1985, + rating: 6.2, + votes: 10271, + running_times: 5940, + }, + { + title: "D.E.B.S.", + year: 2004, + rating: 5.3, + votes: 12982, + running_times: 5460, + }, + { + title: "D2: The Mighty Ducks", + year: 1994, + rating: 6, + votes: 30535, + running_times: 6360, + }, + { + title: "D3: The Mighty Ducks", + year: 1996, + rating: 5.3, + votes: 20741, + running_times: 6240, + }, + { + title: "DOA: Dead or Alive", + year: 2006, + rating: 4.8, + votes: 40160, + running_times: 5220, + }, + { + title: "Dabba", + year: 2013, + rating: 7.8, + votes: 37643, + running_times: 6240, + }, + { + title: "Daddy Day Camp", + year: 2007, + rating: 3, + votes: 13152, + running_times: 5580, + }, + { + title: "Daddy Day Care", + year: 2003, + rating: 5.5, + votes: 53857, + running_times: 5520, + }, + { + title: "Daddy's Home", + year: 2015, + rating: 6.1, + votes: 77927, + running_times: 5760, + }, + { + title: "Dagon", + year: 2001, + rating: 6.3, + votes: 13890, + running_times: 5880, + }, + { + title: "Dallas Buyers Club", + year: 2013, + rating: 8, + votes: 367890, + running_times: 7020, + }, + { + title: "Damage", + year: 1992, + rating: 6.9, + votes: 13462, + running_times: 6660, + }, + { + title: "Damien: Omen II", + year: 1978, + rating: 6.3, + votes: 24472, + running_times: 6420, + }, + { + title: "Dan in Real Life", + year: 2007, + rating: 6.8, + votes: 90389, + running_times: 5880, + }, + { + title: "Dance Flick", + year: 2009, + rating: 3.5, + votes: 10591, + running_times: 5280, + }, + { + title: "Dance of the Dead", + year: 2008, + rating: 5.8, + votes: 10563, + running_times: 5220, + }, + { + title: "Dance of the Vampires", + year: 1967, + rating: 7.3, + votes: 24957, + running_times: 6480, + }, + { + title: "Dancer in the Dark", + year: 2000, + rating: 8, + votes: 86306, + running_times: 8400, + }, + { + title: "Dances with Wolves", + year: 1990, + rating: 8, + votes: 203335, + running_times: 14160, + }, + { + title: "Dangerous Beauty", + year: 1998, + rating: 7.3, + votes: 13633, + running_times: 6660, + }, + { + title: "Dangerous Liaisons", + year: 1988, + rating: 7.7, + votes: 56386, + running_times: 7140, + }, + { + title: "Dangerous Minds", + year: 1995, + rating: 6.4, + votes: 41341, + running_times: 5940, + }, + { + title: "Danny Collins", + year: 2015, + rating: 7, + votes: 25060, + running_times: 6360, + }, + { + title: "Dante's Peak", + year: 1997, + rating: 5.9, + votes: 68066, + running_times: 6480, + }, + { + title: "Daredevil", + year: 2003, + rating: 5.3, + votes: 187093, + running_times: 7980, + }, + { + title: "Dark Blue", + year: 2002, + rating: 6.6, + votes: 18322, + running_times: 7080, + }, + { + title: "Dark City", + year: 1998, + rating: 7.7, + votes: 168451, + running_times: 6660, + }, + { + title: "Dark Passage", + year: 1947, + rating: 7.6, + votes: 14253, + running_times: 6360, + }, + { + title: "Dark Places", + year: 2015, + rating: 6.2, + votes: 33917, + running_times: 6780, + }, + { + title: "Dark Shadows", + year: 2012, + rating: 6.2, + votes: 215809, + running_times: 6780, + }, + { + title: "Dark Skies", + year: 2013, + rating: 6.3, + votes: 62454, + running_times: 5820, + }, + { + title: "Dark Star", + year: 1974, + rating: 6.5, + votes: 18630, + running_times: 4980, + }, + { + title: "Dark Water", + year: 2005, + rating: 5.6, + votes: 53540, + running_times: 6300, + }, + { + title: "Darkman", + year: 1990, + rating: 6.4, + votes: 51054, + running_times: 5760, + }, + { + title: "Darkness", + year: 2002, + rating: 5.4, + votes: 17484, + running_times: 6180, + }, + { + title: "Darkness Falls", + year: 2003, + rating: 5, + votes: 27450, + running_times: 5760, + }, + { + title: "Darr", + year: 1993, + rating: 7.9, + votes: 18344, + running_times: 10680, + }, + { + title: "Das Boot", + year: 1981, + rating: 8.4, + votes: 187200, + running_times: 17580, + }, + { + title: "Das Experiment", + year: 2001, + rating: 7.8, + votes: 83528, + running_times: 7200, + }, + { + title: "Date Movie", + year: 2006, + rating: 2.7, + votes: 52564, + running_times: 5100, + }, + { + title: "Date Night", + year: 2010, + rating: 6.3, + votes: 136609, + running_times: 6060, + }, + { title: "Dave", year: 1993, rating: 6.8, votes: 43104, running_times: 6600 }, + { + title: "Dawn of the Dead", + year: 1978, + rating: 8, + votes: 97223, + running_times: 9360, + }, + { + title: "Dawn of the Dead", + year: 2004, + rating: 7.3, + votes: 208261, + running_times: 6600, + }, + { + title: "Dawn of the Planet of the Apes", + year: 2014, + rating: 7.6, + votes: 362251, + running_times: 7800, + }, + { + title: "Day & Night", + year: 2010, + rating: 8.1, + votes: 13289, + running_times: 360, + }, + { + title: "Day of the Dead", + year: 1985, + rating: 7.2, + votes: 54076, + running_times: 6060, + }, + { + title: "Day of the Woman", + year: 1978, + rating: 5.7, + votes: 21922, + running_times: 6060, + }, + { + title: "Daybreakers", + year: 2009, + rating: 6.5, + votes: 111322, + running_times: 5880, + }, + { + title: "Daydream Nation", + year: 2010, + rating: 6.4, + votes: 11338, + running_times: 5880, + }, + { + title: "Daylight", + year: 1996, + rating: 5.8, + votes: 57247, + running_times: 6840, + }, + { + title: "Days of Heaven", + year: 1978, + rating: 7.9, + votes: 42093, + running_times: 5640, + }, + { + title: "Days of Thunder", + year: 1990, + rating: 5.9, + votes: 65974, + running_times: 6420, + }, + { + title: "Dazed and Confused", + year: 1993, + rating: 7.7, + votes: 135321, + running_times: 6120, + }, + { + title: "De battre mon coeur s'est arrêté", + year: 2005, + rating: 7.3, + votes: 16729, + running_times: 6480, + }, + { + title: "De rouille et d'os", + year: 2012, + rating: 7.5, + votes: 54550, + running_times: 7200, + }, + { + title: "De-Lovely", + year: 2004, + rating: 6.6, + votes: 10074, + running_times: 7500, + }, + { + title: "Dead Again", + year: 1991, + rating: 7, + votes: 22986, + running_times: 6420, + }, + { + title: "Dead Calm", + year: 1989, + rating: 6.8, + votes: 31732, + running_times: 5760, + }, + { + title: "Dead End", + year: 2003, + rating: 6.7, + votes: 21560, + running_times: 5100, + }, + { + title: "Dead Man", + year: 1995, + rating: 7.7, + votes: 78292, + running_times: 7260, + }, + { + title: "Dead Man Down", + year: 2013, + rating: 6.5, + votes: 58376, + running_times: 7080, + }, + { + title: "Dead Man Walking", + year: 1995, + rating: 7.6, + votes: 77979, + running_times: 7320, + }, + { + title: "Dead Man on Campus", + year: 1998, + rating: 6.1, + votes: 12326, + running_times: 5760, + }, + { + title: "Dead Man's Shoes", + year: 2004, + rating: 7.7, + votes: 43049, + running_times: 5400, + }, + { + title: "Dead Men Don't Wear Plaid", + year: 1982, + rating: 6.8, + votes: 17854, + running_times: 5280, + }, + { + title: "Dead Poets Society", + year: 1989, + rating: 8, + votes: 310883, + running_times: 7680, + }, + { + title: "Dead Presidents", + year: 1995, + rating: 6.9, + votes: 16576, + running_times: 7140, + }, + { + title: "Dead Ringers", + year: 1988, + rating: 7.3, + votes: 32622, + running_times: 6960, + }, + { + title: "Dead Silence", + year: 2007, + rating: 6.2, + votes: 74013, + running_times: 5520, + }, + { + title: "Deadfall", + year: 2012, + rating: 6.3, + votes: 34661, + running_times: 5700, + }, + { + title: "Deadgirl", + year: 2008, + rating: 5.7, + votes: 16648, + running_times: 6060, + }, + { + title: "Deadpool", + year: 2016, + rating: 8, + votes: 686133, + running_times: 6480, + }, + { + title: "Dear Frankie", + year: 2004, + rating: 7.8, + votes: 19677, + running_times: 6300, + }, + { + title: "Dear John", + year: 2010, + rating: 6.3, + votes: 117324, + running_times: 6480, + }, + { + title: "Dear White People", + year: 2014, + rating: 6.2, + votes: 22550, + running_times: 6480, + }, + { + title: "Dear Zachary: A Letter to a Son About His Father", + year: 2008, + rating: 8.6, + votes: 25811, + running_times: 5700, + }, + { + title: "Death Becomes Her", + year: 1992, + rating: 6.5, + votes: 86672, + running_times: 6240, + }, + { + title: "Death Note", + year: 2017, + rating: 4.6, + votes: 51215, + running_times: 6060, + }, + { + title: "Death Proof", + year: 2007, + rating: 7.1, + votes: 227440, + running_times: 7260, + }, + { + title: "Death Race", + year: 2008, + rating: 6.4, + votes: 177881, + running_times: 6660, + }, + { + title: "Death Race 2000", + year: 1975, + rating: 6.2, + votes: 21390, + running_times: 5040, + }, + { + title: "Death Sentence", + year: 2007, + rating: 6.8, + votes: 63505, + running_times: 6660, + }, + { + title: "Death Warrant", + year: 1990, + rating: 5.6, + votes: 13976, + running_times: 5340, + }, + { + title: "Death Wish", + year: 1974, + rating: 7, + votes: 27842, + running_times: 5580, + }, + { + title: "Death Wish 3", + year: 1985, + rating: 5.9, + votes: 11198, + running_times: 5520, + }, + { + title: "Death Wish II", + year: 1982, + rating: 6, + votes: 11457, + running_times: 5700, + }, + { + title: "Death and the Maiden", + year: 1994, + rating: 7.3, + votes: 19027, + running_times: 6180, + }, + { + title: "Death at a Funeral", + year: 2007, + rating: 7.4, + votes: 96036, + running_times: 5220, + }, + { + title: "Death at a Funeral", + year: 2010, + rating: 5.7, + votes: 38975, + running_times: 5520, + }, + { + title: "Death on the Nile", + year: 1978, + rating: 7.3, + votes: 22145, + running_times: 8400, + }, + { + title: "Death to Smoochy", + year: 2002, + rating: 6.4, + votes: 35983, + running_times: 6540, + }, + { + title: "Deathgasm", + year: 2015, + rating: 6.3, + votes: 12177, + running_times: 5160, + }, + { + title: "December Boys", + year: 2007, + rating: 6.6, + votes: 10972, + running_times: 6300, + }, + { + title: "Deception", + year: 2008, + rating: 6.1, + votes: 34624, + running_times: 6420, + }, + { + title: "Deck the Halls", + year: 2006, + rating: 4.9, + votes: 18286, + running_times: 5580, + }, + { + title: "Deconstructing Harry", + year: 1997, + rating: 7.4, + votes: 38001, + running_times: 5760, + }, + { + title: "Deep Blue Sea", + year: 1999, + rating: 5.8, + votes: 106958, + running_times: 6300, + }, + { + title: "Deep Impact", + year: 1998, + rating: 6.1, + votes: 143093, + running_times: 7200, + }, + { + title: "Deep Rising", + year: 1998, + rating: 6, + votes: 28323, + running_times: 6360, + }, + { + title: "Deepwater Horizon", + year: 2016, + rating: 7.2, + votes: 110464, + running_times: 6420, + }, + { + title: "Defending Your Life", + year: 1991, + rating: 7.3, + votes: 14660, + running_times: 6720, + }, + { + title: "Defendor", + year: 2009, + rating: 6.8, + votes: 33008, + running_times: 6060, + }, + { + title: "Defiance", + year: 2008, + rating: 7.2, + votes: 124297, + running_times: 9600, + }, + { + title: "Definitely, Maybe", + year: 2008, + rating: 7.2, + votes: 136326, + running_times: 6720, + }, + { + title: "Deja Vu", + year: 2006, + rating: 7, + votes: 260387, + running_times: 7560, + }, + { + title: "Delhi Belly", + year: 2011, + rating: 7.6, + votes: 21588, + running_times: 6180, + }, + { + title: "Deliver Us from Evil", + year: 2014, + rating: 6.2, + votes: 59445, + running_times: 7080, + }, + { + title: "Deliverance", + year: 1972, + rating: 7.7, + votes: 84402, + running_times: 6540, + }, + { + title: "Delivery Man", + year: 2013, + rating: 6.4, + votes: 65838, + running_times: 6300, + }, + { + title: "Dellamorte Dellamore", + year: 1994, + rating: 7.3, + votes: 17402, + running_times: 6300, + }, + { + title: "Demain tout commence", + year: 2016, + rating: 7.4, + votes: 10878, + running_times: 7080, + }, + { + title: "Demolition", + year: 2015, + rating: 7, + votes: 66447, + running_times: 6060, + }, + { + title: "Demolition Man", + year: 1993, + rating: 6.6, + votes: 135026, + running_times: 6900, + }, + { + title: "Demonic", + year: 2015, + rating: 5.3, + votes: 10386, + running_times: 4980, + }, + { + title: "Den skaldede frisør", + year: 2012, + rating: 6.6, + votes: 11148, + running_times: 6960, + }, + { + title: "Denial", + year: 2016, + rating: 6.6, + votes: 11827, + running_times: 6540, + }, + { + title: "Dennis the Menace", + year: 1993, + rating: 5.5, + votes: 47952, + running_times: 5640, + }, + { + title: "Der Baader Meinhof Komplex", + year: 2008, + rating: 7.4, + votes: 31874, + running_times: 11040, + }, + { + title: "Der Himmel über Berlin", + year: 1987, + rating: 8.1, + votes: 52212, + running_times: 7680, + }, + { + title: "Der Name der Rose", + year: 1986, + rating: 7.8, + votes: 88129, + running_times: 7800, + }, + { + title: "Der amerikanische Freund", + year: 1977, + rating: 7.4, + votes: 10256, + running_times: 7500, + }, + { + title: "Der blaue Engel", + year: 1930, + rating: 7.8, + votes: 11350, + running_times: 6480, + }, + { + title: "Der rote Baron", + year: 2008, + rating: 6.4, + votes: 10408, + running_times: 7740, + }, + { + title: "Derailed", + year: 2005, + rating: 6.6, + votes: 65502, + running_times: 6720, + }, + { + title: "Desert Flower", + year: 2009, + rating: 7.4, + votes: 10105, + running_times: 7200, + }, + { + title: "Desperado", + year: 1995, + rating: 7.2, + votes: 149465, + running_times: 6240, + }, + { + title: "Desperate Measures", + year: 1998, + rating: 6.1, + votes: 14560, + running_times: 6000, + }, + { + title: "Desperately Seeking Susan", + year: 1985, + rating: 5.9, + votes: 17678, + running_times: 6240, + }, + { + title: "Despicable Me", + year: 2010, + rating: 7.7, + votes: 427150, + running_times: 5700, + }, + { + title: "Despicable Me 2", + year: 2013, + rating: 7.4, + votes: 317679, + running_times: 5880, + }, + { + title: "Despicable Me 3", + year: 2017, + rating: 6.3, + votes: 58386, + running_times: 5400, + }, + { + title: "Detachment", + year: 2011, + rating: 7.7, + votes: 63889, + running_times: 5880, + }, + { + title: "Detention", + year: 2011, + rating: 5.8, + votes: 13464, + running_times: 5580, + }, + { + title: "Detour", + year: 1945, + rating: 7.4, + votes: 11049, + running_times: 4080, + }, + { + title: "Detroit", + year: 2017, + rating: 7.5, + votes: 16424, + running_times: 8580, + }, + { + title: "Detroit Rock City", + year: 1999, + rating: 6.8, + votes: 31978, + running_times: 5700, + }, + { + title: "Deuce Bigalow: European Gigolo", + year: 2005, + rating: 4.6, + votes: 43661, + running_times: 4980, + }, + { + title: "Deuce Bigalow: Male Gigolo", + year: 1999, + rating: 5.7, + votes: 63262, + running_times: 5280, + }, + { + title: "Deux frères", + year: 2004, + rating: 7.1, + votes: 12776, + running_times: 6540, + }, + { + title: "Deux jours, une nuit", + year: 2014, + rating: 7.4, + votes: 37791, + running_times: 5700, + }, + { + title: "Dev.D", + year: 2009, + rating: 8.1, + votes: 23620, + running_times: 8640, + }, + { + title: "Devil", + year: 2010, + rating: 6.2, + votes: 113748, + running_times: 4800, + }, + { + title: "Devil in a Blue Dress", + year: 1995, + rating: 6.7, + votes: 14584, + running_times: 6120, + }, + { + title: "Devil's Due", + year: 2014, + rating: 4.1, + votes: 14846, + running_times: 5340, + }, + { + title: "Devil's Knot", + year: 2013, + rating: 6.1, + votes: 16589, + running_times: 6840, + }, + { + title: "Dheepan", + year: 2015, + rating: 7.2, + votes: 10267, + running_times: 6900, + }, + { + title: "Dhobi Ghat", + year: 2010, + rating: 7.1, + votes: 10542, + running_times: 6000, + }, + { + title: "Dhoom:2", + year: 2006, + rating: 6.4, + votes: 19515, + running_times: 9120, + }, + { + title: "Dhoom:3", + year: 2013, + rating: 5.4, + votes: 37312, + running_times: 10320, + }, + { + title: "Diabolique", + year: 1996, + rating: 5.3, + votes: 11767, + running_times: 6420, + }, + { + title: "Dial M for Murder", + year: 1954, + rating: 8.2, + votes: 122214, + running_times: 6300, + }, + { + title: "Diamonds Are Forever", + year: 1971, + rating: 6.7, + votes: 80479, + running_times: 7200, + }, + { + title: "Diana", + year: 2013, + rating: 5.5, + votes: 16578, + running_times: 6780, + }, + { + title: "Diary of a Mad Black Woman", + year: 2005, + rating: 5.7, + votes: 11236, + running_times: 6960, + }, + { + title: "Diary of a Wimpy Kid", + year: 2010, + rating: 6.2, + votes: 35635, + running_times: 5640, + }, + { + title: "Diary of a Wimpy Kid: Dog Days", + year: 2012, + rating: 6.3, + votes: 17804, + running_times: 5640, + }, + { + title: "Diary of a Wimpy Kid: Rodrick Rules", + year: 2011, + rating: 6.6, + votes: 21150, + running_times: 5940, + }, + { + title: "Diary of the Dead", + year: 2007, + rating: 5.7, + votes: 42623, + running_times: 5700, + }, + { title: "Dick", year: 1999, rating: 6.1, votes: 16753, running_times: 5640 }, + { + title: "Dick Tracy", + year: 1990, + rating: 6.1, + votes: 50794, + running_times: 6300, + }, + { + title: "Dickie Roberts: Former Child Star", + year: 2003, + rating: 5.6, + votes: 12350, + running_times: 5880, + }, + { + title: "Did You Hear About the Morgans?", + year: 2009, + rating: 4.8, + votes: 31932, + running_times: 6180, + }, + { + title: "Die Another Day", + year: 2002, + rating: 6.1, + votes: 180923, + running_times: 7980, + }, + { + title: "Die Fälscher", + year: 2007, + rating: 7.6, + votes: 38896, + running_times: 5880, + }, + { + title: "Die Hard", + year: 1988, + rating: 8.2, + votes: 655576, + running_times: 7920, + }, + { + title: "Die Hard 2", + year: 1990, + rating: 7.1, + votes: 291702, + running_times: 7440, + }, + { + title: "Die Hard with a Vengeance", + year: 1995, + rating: 7.6, + votes: 320519, + running_times: 7680, + }, + { + title: "Die fetten Jahre sind vorbei", + year: 2004, + rating: 7.5, + votes: 28388, + running_times: 7620, + }, + { + title: "Die unendliche Geschichte", + year: 1984, + rating: 7.4, + votes: 109827, + running_times: 6120, + }, + { + title: "Dil Chahta Hai", + year: 2001, + rating: 8.2, + votes: 55585, + running_times: 10980, + }, + { + title: "Dilwale Dulhania Le Jayenge", + year: 1995, + rating: 8.2, + votes: 52081, + running_times: 11340, + }, + { + title: "Diner", + year: 1982, + rating: 7.2, + votes: 16075, + running_times: 6600, + }, + { + title: "Dinner for Schmucks", + year: 2010, + rating: 5.9, + votes: 85267, + running_times: 6840, + }, + { + title: "Dinosaur", + year: 2000, + rating: 6.5, + votes: 42813, + running_times: 4920, + }, + { + title: "Dirty Dancing", + year: 1987, + rating: 6.9, + votes: 158022, + running_times: 6000, + }, + { + title: "Dirty Dancing: Havana Nights", + year: 2004, + rating: 6, + votes: 23751, + running_times: 5160, + }, + { + title: "Dirty Grandpa", + year: 2016, + rating: 6, + votes: 85369, + running_times: 6540, + }, + { + title: "Dirty Harry", + year: 1971, + rating: 7.8, + votes: 123351, + running_times: 6120, + }, + { + title: "Dirty Pretty Things", + year: 2002, + rating: 7.4, + votes: 36840, + running_times: 5820, + }, + { + title: "Dirty Rotten Scoundrels", + year: 1988, + rating: 7.3, + votes: 54644, + running_times: 6600, + }, + { + title: "Dirty Work", + year: 1998, + rating: 6.4, + votes: 21069, + running_times: 4920, + }, + { + title: "Disaster Movie", + year: 2008, + rating: 1.9, + votes: 78624, + running_times: 5280, + }, + { + title: "Disclosure", + year: 1994, + rating: 6, + votes: 39560, + running_times: 7680, + }, + { + title: "Disconnect", + year: 2012, + rating: 7.6, + votes: 66555, + running_times: 6900, + }, + { + title: "District 9", + year: 2009, + rating: 8, + votes: 571695, + running_times: 6720, + }, + { + title: "Disturbia", + year: 2007, + rating: 6.9, + votes: 197793, + running_times: 6300, + }, + { + title: "Disturbing Behavior", + year: 1998, + rating: 5.5, + votes: 18430, + running_times: 5040, + }, + { title: "Diva", year: 1981, rating: 7.3, votes: 10052, running_times: 7020 }, + { + title: "Divergent", + year: 2014, + rating: 6.7, + votes: 374171, + running_times: 8340, + }, + { + title: "Divine Secrets of the Ya-Ya Sisterhood", + year: 2002, + rating: 6, + votes: 16225, + running_times: 6960, + }, + { + title: "Django Unchained", + year: 2012, + rating: 8.4, + votes: 1087375, + running_times: 9900, + }, + { + title: "Do the Right Thing", + year: 1989, + rating: 7.9, + votes: 66608, + running_times: 7200, + }, + { + title: "Dobermann", + year: 1997, + rating: 6.6, + votes: 15076, + running_times: 6180, + }, + { + title: "Doc Hollywood", + year: 1991, + rating: 6.1, + votes: 27982, + running_times: 6240, + }, + { + title: "Doctor Dolittle", + year: 1998, + rating: 5.3, + votes: 80924, + running_times: 5100, + }, + { + title: "Doctor Strange", + year: 2016, + rating: 7.5, + votes: 369625, + running_times: 6900, + }, + { + title: "Doctor Zhivago", + year: 1965, + rating: 8, + votes: 59974, + running_times: 12000, + }, + { + title: "Dodgeball: A True Underdog Story", + year: 2004, + rating: 6.7, + votes: 200273, + running_times: 5520, + }, + { + title: "Dog Day Afternoon", + year: 1975, + rating: 8, + votes: 201845, + running_times: 7860, + }, + { + title: "Dog Soldiers", + year: 2002, + rating: 6.8, + votes: 48200, + running_times: 6300, + }, + { + title: "Doghouse", + year: 2009, + rating: 6.1, + votes: 19400, + running_times: 5340, + }, + { + title: "Dogma", + year: 1999, + rating: 7.3, + votes: 190705, + running_times: 7800, + }, + { + title: "Dogtown and Z-Boys", + year: 2001, + rating: 7.7, + votes: 10986, + running_times: 5460, + }, + { + title: "Dogville", + year: 2003, + rating: 8, + votes: 116919, + running_times: 10680, + }, + { + title: "Dolores Claiborne", + year: 1995, + rating: 7.4, + votes: 31617, + running_times: 7920, + }, + { + title: "Dolphin Tale", + year: 2011, + rating: 6.9, + votes: 19277, + running_times: 6780, + }, + { + title: "Dom Hemingway", + year: 2013, + rating: 6.2, + votes: 23217, + running_times: 5580, + }, + { + title: "Dom za vesanje", + year: 1988, + rating: 8.3, + votes: 20308, + running_times: 16200, + }, + { + title: "Domestic Disturbance", + year: 2001, + rating: 5.5, + votes: 22329, + running_times: 5520, + }, + { title: "Domino", year: 2005, rating: 6, votes: 60282, running_times: 7620 }, + { + title: "Don 2", + year: 2011, + rating: 7.1, + votes: 43541, + running_times: 8880, + }, + { + title: "Don Jon", + year: 2013, + rating: 6.6, + votes: 205177, + running_times: 5400, + }, + { + title: "Don Juan DeMarco", + year: 1994, + rating: 6.7, + votes: 43768, + running_times: 5820, + }, + { + title: "Don't Be Afraid of the Dark", + year: 2010, + rating: 5.6, + votes: 42818, + running_times: 5940, + }, + { + title: + "Don't Be a Menace to South Central While Drinking Your Juice in the Hood", + year: 1996, + rating: 6.6, + votes: 41316, + running_times: 5640, + }, + { + title: "Don't Breathe", + year: 2016, + rating: 7.1, + votes: 147018, + running_times: 5280, + }, + { + title: "Don't Look Now", + year: 1973, + rating: 7.3, + votes: 38356, + running_times: 6600, + }, + { + title: "Don't Say a Word", + year: 2001, + rating: 6.3, + votes: 42979, + running_times: 6780, + }, + { + title: "Don't Tell Mom the Babysitter's Dead", + year: 1991, + rating: 6.1, + votes: 23305, + running_times: 6120, + }, + { + title: "Don't Think Twice", + year: 2016, + rating: 6.8, + votes: 12772, + running_times: 5520, + }, + { + title: "Donnie Brasco", + year: 1997, + rating: 7.8, + votes: 241674, + running_times: 8820, + }, + { + title: "Donnie Darko", + year: 2001, + rating: 8.1, + votes: 644118, + running_times: 7980, + }, + { + title: "Doodlebug", + year: 1997, + rating: 7.1, + votes: 13264, + running_times: 180, + }, + { title: "Doom", year: 2005, rating: 5.2, votes: 93106, running_times: 6780 }, + { + title: "Doomsday", + year: 2008, + rating: 6, + votes: 65892, + running_times: 6780, + }, + { title: "Dope", year: 2015, rating: 7.2, votes: 70696, running_times: 6180 }, + { + title: "Dorian Gray", + year: 2009, + rating: 6.3, + votes: 55011, + running_times: 6720, + }, + { + title: "Dostana", + year: 2008, + rating: 6.5, + votes: 11858, + running_times: 8700, + }, + { + title: "Dou fo sin", + year: 2007, + rating: 6.8, + votes: 11247, + running_times: 5280, + }, + { + title: "Double Impact", + year: 1991, + rating: 5.5, + votes: 31989, + running_times: 6600, + }, + { + title: "Double Indemnity", + year: 1944, + rating: 8.3, + votes: 110821, + running_times: 6600, + }, + { + title: "Double Jeopardy", + year: 1999, + rating: 6.4, + votes: 60879, + running_times: 6300, + }, + { + title: "Double Team", + year: 1997, + rating: 4.7, + votes: 27220, + running_times: 5580, + }, + { + title: "Doubt", + year: 2008, + rating: 7.5, + votes: 106866, + running_times: 6240, + }, + { + title: "Down Periscope", + year: 1996, + rating: 6, + votes: 18230, + running_times: 5520, + }, + { + title: "Down and Out in Beverly Hills", + year: 1986, + rating: 6.1, + votes: 13684, + running_times: 6180, + }, + { + title: "Down by Law", + year: 1986, + rating: 7.8, + votes: 39932, + running_times: 6420, + }, + { + title: "Down in the Valley", + year: 2005, + rating: 6.4, + votes: 17043, + running_times: 6840, + }, + { + title: "Down to Earth", + year: 2001, + rating: 5.4, + votes: 19850, + running_times: 5220, + }, + { + title: "Down to You", + year: 2000, + rating: 4.9, + votes: 12954, + running_times: 5460, + }, + { + title: "Down with Love", + year: 2003, + rating: 6.3, + votes: 35365, + running_times: 6060, + }, + { + title: "Dr. Dolittle 2", + year: 2001, + rating: 4.7, + votes: 36568, + running_times: 5220, + }, + { + title: "Dr. Jekyll and Mr. Hyde", + year: 1931, + rating: 7.7, + votes: 10414, + running_times: 5880, + }, + { + title: "Dr. No", + year: 1962, + rating: 7.3, + votes: 125450, + running_times: 6600, + }, + { + title: + "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb", + year: 1964, + rating: 8.5, + votes: 379103, + running_times: 5700, + }, + { + title: "Dr. T & the Women", + year: 2000, + rating: 4.6, + votes: 16257, + running_times: 7320, + }, + { + title: "Dracula", + year: 1931, + rating: 7.6, + votes: 37354, + running_times: 4500, + }, + { + title: "Dracula", + year: 1958, + rating: 7.4, + votes: 17052, + running_times: 4920, + }, + { + title: "Dracula", + year: 1992, + rating: 7.5, + votes: 158038, + running_times: 9300, + }, + { + title: "Dracula 2000", + year: 2000, + rating: 4.9, + votes: 28908, + running_times: 5940, + }, + { + title: "Dracula Untold", + year: 2014, + rating: 6.3, + votes: 153899, + running_times: 5520, + }, + { + title: "Dracula: Dead and Loving It", + year: 1995, + rating: 5.8, + votes: 33009, + running_times: 5280, + }, + { + title: "Draft Day", + year: 2014, + rating: 6.8, + votes: 44200, + running_times: 6600, + }, + { + title: "Drag Me to Hell", + year: 2009, + rating: 6.6, + votes: 168087, + running_times: 5940, + }, + { + title: "Dragnet", + year: 1987, + rating: 5.9, + votes: 27668, + running_times: 6360, + }, + { + title: "Dragon: The Bruce Lee Story", + year: 1993, + rating: 7, + votes: 23689, + running_times: 7200, + }, + { + title: "DragonHeart", + year: 1996, + rating: 6.4, + votes: 82651, + running_times: 6180, + }, + { + title: "Dragonball Evolution", + year: 2009, + rating: 2.6, + votes: 61559, + running_times: 6000, + }, + { + title: "Dragonfly", + year: 2002, + rating: 6.1, + votes: 33351, + running_times: 6240, + }, + { + title: "Dragonslayer", + year: 1981, + rating: 6.7, + votes: 11944, + running_times: 6540, + }, + { + title: "Dread", + year: 2009, + rating: 5.7, + votes: 10792, + running_times: 6480, + }, + { + title: "Dream House", + year: 2011, + rating: 6, + votes: 55422, + running_times: 5040, + }, + { + title: "Dreamcatcher", + year: 2003, + rating: 5.5, + votes: 80773, + running_times: 8160, + }, + { + title: "Dreamer: Inspired by a True Story", + year: 2005, + rating: 6.9, + votes: 10701, + running_times: 6360, + }, + { + title: "Dreamgirls", + year: 2006, + rating: 6.5, + votes: 60700, + running_times: 8400, + }, + { + title: "Dreamscape", + year: 1984, + rating: 6.3, + votes: 11483, + running_times: 5940, + }, + { + title: "Dredd", + year: 2012, + rating: 7.1, + votes: 220351, + running_times: 5700, + }, + { + title: "Dressed to Kill", + year: 1980, + rating: 7.1, + votes: 27122, + running_times: 6300, + }, + { + title: "Drillbit Taylor", + year: 2008, + rating: 5.7, + votes: 52903, + running_times: 6600, + }, + { + title: "Drinking Buddies", + year: 2013, + rating: 6.1, + votes: 50184, + running_times: 5400, + }, + { + title: "Drive", + year: 2011, + rating: 7.8, + votes: 480193, + running_times: 6000, + }, + { + title: "Drive Angry", + year: 2011, + rating: 5.4, + votes: 86046, + running_times: 6240, + }, + { + title: "Drive Me Crazy", + year: 1999, + rating: 5.7, + votes: 15979, + running_times: 5460, + }, + { + title: "Driven", + year: 2001, + rating: 4.5, + votes: 35985, + running_times: 6960, + }, + { + title: "Driving Miss Daisy", + year: 1989, + rating: 7.4, + votes: 80605, + running_times: 5940, + }, + { + title: "Drop Dead Fred", + year: 1991, + rating: 5.8, + votes: 23342, + running_times: 6180, + }, + { + title: "Drop Dead Gorgeous", + year: 1999, + rating: 6.6, + votes: 28622, + running_times: 5820, + }, + { + title: "Drop Zone", + year: 1994, + rating: 5.6, + votes: 16935, + running_times: 6060, + }, + { + title: "Drowning Mona", + year: 2000, + rating: 5.6, + votes: 12216, + running_times: 5760, + }, + { + title: "Drugstore Cowboy", + year: 1989, + rating: 7.4, + votes: 27237, + running_times: 6120, + }, + { + title: "Drumline", + year: 2002, + rating: 5.7, + votes: 29808, + running_times: 7080, + }, + { + title: "Du rififi chez les hommes", + year: 1955, + rating: 8.2, + votes: 20796, + running_times: 7080, + }, + { + title: "Duck Soup", + year: 1933, + rating: 8, + votes: 49627, + running_times: 4080, + }, + { + title: "DuckTales the Movie: Treasure of the Lost Lamp", + year: 1990, + rating: 6.9, + votes: 21820, + running_times: 4440, + }, + { + title: "Dude, Where's My Car?", + year: 2000, + rating: 5.5, + votes: 122824, + running_times: 4980, + }, + { + title: "Due Date", + year: 2010, + rating: 6.6, + votes: 288907, + running_times: 5700, + }, + { + title: "Dumb and Dumber", + year: 1994, + rating: 7.3, + votes: 309873, + running_times: 6780, + }, + { + title: "Dumb and Dumber To", + year: 2014, + rating: 5.6, + votes: 108504, + running_times: 6540, + }, + { + title: "Dumb and Dumberer: When Harry Met Lloyd", + year: 2003, + rating: 3.4, + votes: 32270, + running_times: 5100, + }, + { + title: "Dumbo", + year: 1941, + rating: 7.3, + votes: 96388, + running_times: 3840, + }, + { + title: "Dune", + year: 1984, + rating: 6.6, + votes: 104438, + running_times: 11400, + }, + { + title: "Dungeons & Dragons", + year: 2000, + rating: 3.7, + votes: 28833, + running_times: 6420, + }, + { + title: "Dunkirk", + year: 2017, + rating: 8.2, + votes: 274342, + running_times: 6360, + }, + { + title: "Dunston Checks In", + year: 1996, + rating: 5.3, + votes: 10452, + running_times: 5280, + }, + { + title: "Duplex", + year: 2003, + rating: 5.9, + votes: 49293, + running_times: 5340, + }, + { + title: "Duplicity", + year: 2009, + rating: 6.2, + votes: 43403, + running_times: 7500, + }, + { + title: "Dutch", + year: 1991, + rating: 6.4, + votes: 10177, + running_times: 6420, + }, + { + title: "Dying Young", + year: 1991, + rating: 5.9, + votes: 12716, + running_times: 6660, + }, + { + title: "Dylan Dog: Dead of Night", + year: 2010, + rating: 5.1, + votes: 13629, + running_times: 6420, + }, + { + title: "Dèmoni", + year: 1985, + rating: 6.7, + votes: 16120, + running_times: 5280, + }, + { + title: "Død snø 2", + year: 2014, + rating: 6.9, + votes: 18637, + running_times: 6000, + }, + { + title: "E.T. the Extra-Terrestrial", + year: 1982, + rating: 7.9, + votes: 309754, + running_times: 7200, + }, + { + title: "Eagle Eye", + year: 2008, + rating: 6.6, + votes: 159498, + running_times: 7080, + }, + { + title: "Eagle vs Shark", + year: 2007, + rating: 6.8, + votes: 18542, + running_times: 5580, + }, + { title: "Earth", year: 2007, rating: 8, votes: 13297, running_times: 5760 }, + { + title: "Earth Girls Are Easy", + year: 1988, + rating: 5.2, + votes: 17480, + running_times: 6000, + }, + { + title: "Earth to Echo", + year: 2014, + rating: 5.8, + votes: 16868, + running_times: 5460, + }, + { + title: "Earthlings", + year: 2005, + rating: 8.7, + votes: 14644, + running_times: 5700, + }, + { + title: "Earthquake", + year: 1974, + rating: 5.8, + votes: 11463, + running_times: 9600, + }, + { + title: "East Is East", + year: 1999, + rating: 6.9, + votes: 15380, + running_times: 5760, + }, + { + title: "East of Eden", + year: 1955, + rating: 8, + votes: 33398, + running_times: 7080, + }, + { + title: "Eastern Promises", + year: 2007, + rating: 7.7, + votes: 203215, + running_times: 6000, + }, + { + title: "Easy A", + year: 2010, + rating: 7.1, + votes: 305254, + running_times: 5520, + }, + { + title: "Easy Rider", + year: 1969, + rating: 7.4, + votes: 81753, + running_times: 5700, + }, + { + title: "Easy Virtue", + year: 2008, + rating: 6.7, + votes: 17839, + running_times: 5820, + }, + { + title: "Eat Pray Love", + year: 2010, + rating: 5.7, + votes: 70716, + running_times: 8400, + }, + { + title: "Echelon Conspiracy", + year: 2009, + rating: 5.8, + votes: 17641, + running_times: 6300, + }, + { + title: "Ed Wood", + year: 1994, + rating: 7.9, + votes: 150437, + running_times: 7620, + }, + { + title: "Eddie Murphy: Raw", + year: 1987, + rating: 7.6, + votes: 16140, + running_times: 5580, + }, + { + title: "Eddie the Eagle", + year: 2016, + rating: 7.4, + votes: 62469, + running_times: 6360, + }, + { + title: "Eden Lake", + year: 2008, + rating: 6.8, + votes: 64341, + running_times: 5460, + }, + { + title: "Edge of Darkness", + year: 2010, + rating: 6.6, + votes: 80466, + running_times: 7020, + }, + { + title: "Edge of Tomorrow", + year: 2014, + rating: 7.9, + votes: 494688, + running_times: 6780, + }, + { + title: "Edison", + year: 2005, + rating: 5.3, + votes: 13825, + running_times: 5940, + }, + { + title: "Edmond", + year: 2005, + rating: 6.3, + votes: 10303, + running_times: 4920, + }, + { title: "Edtv", year: 1999, rating: 6.1, votes: 37443, running_times: 7320 }, + { + title: "Educating Rita", + year: 1983, + rating: 7.2, + votes: 10465, + running_times: 6600, + }, + { + title: "Edward Scissorhands", + year: 1990, + rating: 7.9, + votes: 388885, + running_times: 6300, + }, + { + title: "Efter brylluppet", + year: 2006, + rating: 7.8, + votes: 27865, + running_times: 7200, + }, + { + title: "Eight Below", + year: 2006, + rating: 7.3, + votes: 52915, + running_times: 7200, + }, + { + title: "Eight Crazy Nights", + year: 2002, + rating: 5.3, + votes: 19215, + running_times: 4560, + }, + { + title: "Eight Legged Freaks", + year: 2002, + rating: 5.4, + votes: 46740, + running_times: 5940, + }, + { + title: "Eight Men Out", + year: 1988, + rating: 7.3, + votes: 16091, + running_times: 7140, + }, + { + title: "Ek Tha Tiger", + year: 2012, + rating: 5.4, + votes: 23349, + running_times: 7920, + }, + { + title: "El Cid", + year: 1961, + rating: 7.3, + votes: 10715, + running_times: 10920, + }, + { + title: "El Dorado", + year: 1967, + rating: 7.6, + votes: 19689, + running_times: 7560, + }, + { + title: "El abrazo de la serpiente", + year: 2015, + rating: 7.9, + votes: 14165, + running_times: 7500, + }, + { + title: "Election", + year: 1999, + rating: 7.3, + votes: 78350, + running_times: 6180, + }, + { + title: "Elegy", + year: 2008, + rating: 6.8, + votes: 20349, + running_times: 6720, + }, + { + title: "Elektra", + year: 2005, + rating: 4.8, + votes: 76634, + running_times: 6000, + }, + { + title: "Elephant", + year: 2003, + rating: 7.2, + votes: 75743, + running_times: 4860, + }, + { title: "Elf", year: 2003, rating: 6.9, votes: 166818, running_times: 5820 }, + { + title: "Eliza Graves", + year: 2014, + rating: 6.8, + votes: 41308, + running_times: 6720, + }, + { + title: "Elizabeth", + year: 1998, + rating: 7.5, + votes: 80820, + running_times: 7440, + }, + { + title: "Elizabeth: The Golden Age", + year: 2007, + rating: 6.9, + votes: 58559, + running_times: 6840, + }, + { + title: "Elizabethtown", + year: 2005, + rating: 6.4, + votes: 61503, + running_times: 7380, + }, + { + title: "Ella Enchanted", + year: 2004, + rating: 6.3, + votes: 52416, + running_times: 5760, + }, + { + title: "Elle s'appelait Sarah", + year: 2010, + rating: 7.5, + votes: 14100, + running_times: 6660, + }, + { + title: "Elvis & Nixon", + year: 2016, + rating: 6.4, + votes: 10328, + running_times: 5160, + }, + { + title: "Elysium", + year: 2013, + rating: 6.6, + votes: 370766, + running_times: 6540, + }, + { + title: "Emergo", + year: 2011, + rating: 5.1, + votes: 10158, + running_times: 4800, + }, + { title: "Emma", year: 1996, rating: 6.7, votes: 30394, running_times: 7200 }, + { + title: "Emperor", + year: 2012, + rating: 6.5, + votes: 11452, + running_times: 6300, + }, + { + title: "Empire Records", + year: 1995, + rating: 6.7, + votes: 41332, + running_times: 6420, + }, + { + title: "Empire State", + year: 2013, + rating: 5.2, + votes: 16319, + running_times: 5640, + }, + { + title: "Empire of the Sun", + year: 1987, + rating: 7.8, + votes: 97960, + running_times: 9180, + }, + { + title: "Employee of the Month", + year: 2006, + rating: 5.5, + votes: 39579, + running_times: 6180, + }, + { + title: "En duva satt på en gren och funderade på tillvaron", + year: 2014, + rating: 7, + votes: 12501, + running_times: 6060, + }, + { + title: "En kongelig affære", + year: 2012, + rating: 7.6, + votes: 37904, + running_times: 8220, + }, + { + title: "Enchanted", + year: 2007, + rating: 7.1, + votes: 154524, + running_times: 6420, + }, + { + title: "Encino Man", + year: 1992, + rating: 5.7, + votes: 32299, + running_times: 5280, + }, + { + title: "Encounters at the End of the World", + year: 2007, + rating: 7.8, + votes: 15121, + running_times: 5940, + }, + { + title: "End of Days", + year: 1999, + rating: 5.7, + votes: 94909, + running_times: 7260, + }, + { + title: "End of Watch", + year: 2012, + rating: 7.7, + votes: 198682, + running_times: 6540, + }, + { + title: "Ender's Game", + year: 2013, + rating: 6.7, + votes: 199409, + running_times: 6840, + }, + { + title: "Endless Love", + year: 2014, + rating: 6.3, + votes: 35053, + running_times: 6240, + }, + { + title: "Enemy", + year: 2013, + rating: 6.9, + votes: 121880, + running_times: 5460, + }, + { + title: "Enemy Mine", + year: 1985, + rating: 6.9, + votes: 37013, + running_times: 6480, + }, + { + title: "Enemy at the Gates", + year: 2001, + rating: 7.6, + votes: 208107, + running_times: 7860, + }, + { + title: "Enemy of the State", + year: 1998, + rating: 7.3, + votes: 201476, + running_times: 8400, + }, + { + title: "English Vinglish", + year: 2012, + rating: 7.9, + votes: 26437, + running_times: 8040, + }, + { + title: "Enigma", + year: 2001, + rating: 6.4, + votes: 18513, + running_times: 7140, + }, + { + title: "Enough", + year: 2002, + rating: 5.7, + votes: 33306, + running_times: 6900, + }, + { + title: "Enough Said", + year: 2013, + rating: 7.1, + votes: 52803, + running_times: 5580, + }, + { + title: "Enron: The Smartest Guys in the Room", + year: 2005, + rating: 7.7, + votes: 13946, + running_times: 6600, + }, + { + title: "Enter the Dragon", + year: 1973, + rating: 7.7, + votes: 83111, + running_times: 6120, + }, + { + title: "Enter the Void", + year: 2009, + rating: 7.3, + votes: 52921, + running_times: 9660, + }, + { + title: "Entourage", + year: 2015, + rating: 6.6, + votes: 67060, + running_times: 6240, + }, + { + title: "Entrapment", + year: 1999, + rating: 6.3, + votes: 94568, + running_times: 6780, + }, + { title: "Envy", year: 2004, rating: 4.8, votes: 27619, running_times: 5940 }, + { title: "Epic", year: 2013, rating: 6.7, votes: 91102, running_times: 6120 }, + { + title: "Epic Movie", + year: 2007, + rating: 2.3, + votes: 94044, + running_times: 5580, + }, + { title: "Equals", year: 2015, rating: 6, votes: 19497, running_times: 6060 }, + { + title: "Equilibrium", + year: 2002, + rating: 7.5, + votes: 280173, + running_times: 6420, + }, + { + title: "Eragon", + year: 2006, + rating: 5.1, + votes: 112989, + running_times: 6240, + }, + { + title: "Erased", + year: 2012, + rating: 6.1, + votes: 25184, + running_times: 6000, + }, + { + title: "Eraser", + year: 1996, + rating: 6.1, + votes: 90788, + running_times: 6900, + }, + { + title: "Eraserhead", + year: 1977, + rating: 7.4, + votes: 80638, + running_times: 5340, + }, + { + title: "Erik the Viking", + year: 1989, + rating: 6.2, + votes: 11535, + running_times: 6420, + }, + { + title: "Erin Brockovich", + year: 2000, + rating: 7.3, + votes: 147095, + running_times: 7860, + }, + { + title: "Escape Plan", + year: 2013, + rating: 6.7, + votes: 194559, + running_times: 6900, + }, + { + title: "Escape from Alcatraz", + year: 1979, + rating: 7.6, + votes: 95509, + running_times: 6720, + }, + { + title: "Escape from L.A.", + year: 1996, + rating: 5.7, + votes: 59275, + running_times: 6060, + }, + { + title: "Escape from New York", + year: 1981, + rating: 7.2, + votes: 101894, + running_times: 6360, + }, + { + title: "Escape from Planet Earth", + year: 2013, + rating: 5.9, + votes: 22083, + running_times: 5340, + }, + { + title: "Escape from the Planet of the Apes", + year: 1971, + rating: 6.3, + votes: 26898, + running_times: 5880, + }, + { + title: "Escobar: Paradise Lost", + year: 2014, + rating: 6.5, + votes: 17217, + running_times: 7200, + }, + { + title: "Eternal Sunshine of the Spotless Mind", + year: 2004, + rating: 8.3, + votes: 746335, + running_times: 6480, + }, + { + title: "EuroTrip", + year: 2004, + rating: 6.6, + votes: 172986, + running_times: 5520, + }, + { + title: "Europa", + year: 1991, + rating: 7.7, + votes: 17049, + running_times: 6720, + }, + { + title: "Europa Report", + year: 2013, + rating: 6.5, + votes: 58836, + running_times: 5820, + }, + { + title: "Evan Almighty", + year: 2007, + rating: 5.4, + votes: 122445, + running_times: 5760, + }, + { + title: "Evening", + year: 2007, + rating: 6.6, + votes: 12168, + running_times: 7020, + }, + { + title: "Event Horizon", + year: 1997, + rating: 6.7, + votes: 132242, + running_times: 7800, + }, + { + title: "EverAfter", + year: 1998, + rating: 7, + votes: 61506, + running_times: 7260, + }, + { + title: "Everest", + year: 2015, + rating: 7.1, + votes: 163956, + running_times: 7260, + }, + { + title: "Everly", + year: 2014, + rating: 5.1, + votes: 14426, + running_times: 5520, + }, + { + title: "Every Which Way But Loose", + year: 1978, + rating: 6.3, + votes: 19104, + running_times: 6840, + }, + { + title: "Everybody Wants Some!!", + year: 2016, + rating: 7, + votes: 41481, + running_times: 7020, + }, + { + title: "Everybody's Fine", + year: 2009, + rating: 7.1, + votes: 53263, + running_times: 5940, + }, + { + title: "Everyone Says I Love You", + year: 1996, + rating: 6.8, + votes: 31978, + running_times: 6060, + }, + { + title: "Everything Is Illuminated", + year: 2005, + rating: 7.5, + votes: 53082, + running_times: 6360, + }, + { + title: "Everything Must Go", + year: 2010, + rating: 6.4, + votes: 43647, + running_times: 5820, + }, + { + title: + "Everything You Always Wanted to Know About Sex * But Were Afraid to Ask", + year: 1972, + rating: 6.8, + votes: 33803, + running_times: 5280, + }, + { + title: "Everything, Everything", + year: 2017, + rating: 6.4, + votes: 14421, + running_times: 5760, + }, + { + title: "Evil Dead", + year: 2013, + rating: 6.5, + votes: 137348, + running_times: 5820, + }, + { + title: "Evil Dead II", + year: 1987, + rating: 7.8, + votes: 125028, + running_times: 5460, + }, + { + title: "Evil Under the Sun", + year: 1982, + rating: 7, + votes: 10493, + running_times: 7020, + }, + { + title: "Evita", + year: 1996, + rating: 6.3, + votes: 30668, + running_times: 8100, + }, + { + title: "Evolution", + year: 2001, + rating: 6.1, + votes: 107448, + running_times: 6060, + }, + { + title: "Ex Machina", + year: 2014, + rating: 7.7, + votes: 364240, + running_times: 6480, + }, + { title: "Exam", year: 2009, rating: 6.9, votes: 84658, running_times: 6060 }, + { + title: "Excalibur", + year: 1981, + rating: 7.4, + votes: 50072, + running_times: 8400, + }, + { + title: "Excess Baggage", + year: 1997, + rating: 5.3, + votes: 11451, + running_times: 6060, + }, + { + title: "Excision", + year: 2012, + rating: 6.1, + votes: 17447, + running_times: 4860, + }, + { + title: "Executive Decision", + year: 1996, + rating: 6.4, + votes: 43820, + running_times: 7980, + }, + { + title: "Exit Through the Gift Shop", + year: 2010, + rating: 8, + votes: 55428, + running_times: 5220, + }, + { + title: "Exit Wounds", + year: 2001, + rating: 5.5, + votes: 28944, + running_times: 6060, + }, + { + title: "Exodus: Gods and Kings", + year: 2014, + rating: 6, + votes: 141750, + running_times: 9000, + }, + { + title: "Exorcist II: The Heretic", + year: 1977, + rating: 3.7, + votes: 17846, + running_times: 7080, + }, + { + title: "Exorcist: The Beginning", + year: 2004, + rating: 5.1, + votes: 30144, + running_times: 7500, + }, + { + title: "Exotica", + year: 1994, + rating: 7.1, + votes: 15581, + running_times: 6180, + }, + { + title: "Expelled: No Intelligence Allowed", + year: 2008, + rating: 3.7, + votes: 11451, + running_times: 5820, + }, + { + title: "Experimenter", + year: 2015, + rating: 6.6, + votes: 13685, + running_times: 5880, + }, + { + title: "Explorers", + year: 1985, + rating: 6.6, + votes: 16258, + running_times: 6540, + }, + { + title: "Extinction", + year: 2015, + rating: 5.8, + votes: 13381, + running_times: 6720, + }, + { + title: "Extract", + year: 2009, + rating: 6.2, + votes: 39751, + running_times: 5520, + }, + { + title: "Extracted", + year: 2012, + rating: 6.5, + votes: 10716, + running_times: 5100, + }, + { + title: "Extraordinary Measures", + year: 2010, + rating: 6.5, + votes: 15069, + running_times: 6360, + }, + { + title: "Extraterrestrial", + year: 2014, + rating: 5, + votes: 12754, + running_times: 6060, + }, + { + title: "Extreme Measures", + year: 1996, + rating: 6.1, + votes: 14967, + running_times: 7080, + }, + { + title: "Extremely Loud & Incredibly Close", + year: 2011, + rating: 6.9, + votes: 88270, + running_times: 7740, + }, + { + title: "Eye for an Eye", + year: 1996, + rating: 6.1, + votes: 11091, + running_times: 6060, + }, + { + title: "Eye in the Sky", + year: 2015, + rating: 7.3, + votes: 63254, + running_times: 6120, + }, + { + title: "Eye of the Beholder", + year: 1999, + rating: 4.9, + votes: 13722, + running_times: 6540, + }, + { + title: "Eyes Wide Shut", + year: 1999, + rating: 7.4, + votes: 249671, + running_times: 9540, + }, + { + title: "F for Fake", + year: 1973, + rating: 7.8, + votes: 11788, + running_times: 5340, + }, + { title: "F/X", year: 1986, rating: 6.7, votes: 14697, running_times: 6540 }, + { + title: "Face/Off", + year: 1997, + rating: 7.3, + votes: 304712, + running_times: 8280, + }, + { + title: "Faces in the Crowd", + year: 2011, + rating: 5.8, + votes: 16738, + running_times: 6180, + }, + { + title: "Facing the Giants", + year: 2006, + rating: 6.7, + votes: 13404, + running_times: 6660, + }, + { + title: "Factory Girl", + year: 2006, + rating: 6.4, + votes: 19330, + running_times: 5940, + }, + { + title: "Factotum", + year: 2005, + rating: 6.6, + votes: 12632, + running_times: 5640, + }, + { + title: "Fading Gigolo", + year: 2013, + rating: 6.2, + votes: 21136, + running_times: 5400, + }, + { + title: "Fahrenheit 451", + year: 1966, + rating: 7.3, + votes: 35599, + running_times: 6720, + }, + { + title: "Fahrenheit 9/11", + year: 2004, + rating: 7.5, + votes: 118010, + running_times: 7320, + }, + { + title: "Fail-Safe", + year: 1964, + rating: 8, + votes: 16325, + running_times: 6720, + }, + { + title: "Failure to Launch", + year: 2006, + rating: 5.6, + votes: 62881, + running_times: 5820, + }, + { + title: "Fair Game", + year: 1995, + rating: 4.2, + votes: 10737, + running_times: 5460, + }, + { + title: "Fair Game", + year: 2010, + rating: 6.8, + votes: 41205, + running_times: 6480, + }, + { title: "Fallen", year: 1998, rating: 7, votes: 63656, running_times: 7440 }, + { + title: "Falling Down", + year: 1993, + rating: 7.6, + votes: 145355, + running_times: 6780, + }, + { + title: "Falling in Love", + year: 1984, + rating: 6.5, + votes: 10477, + running_times: 6360, + }, + { title: "Fame", year: 1980, rating: 6.6, votes: 17572, running_times: 8040 }, + { title: "Fame", year: 2009, rating: 5, votes: 14795, running_times: 7380 }, + { + title: "Family Business", + year: 1989, + rating: 5.7, + votes: 10321, + running_times: 6600, + }, + { + title: "Family Plot", + year: 1976, + rating: 6.8, + votes: 17005, + running_times: 7200, + }, + { + title: "Fanboys", + year: 2009, + rating: 6.6, + votes: 52152, + running_times: 5400, + }, + { + title: "Fanny och Alexander", + year: 1982, + rating: 8.1, + votes: 46972, + running_times: 18720, + }, + { + title: "Fantasia", + year: 1940, + rating: 7.8, + votes: 77065, + running_times: 7500, + }, + { + title: "Fantasia 2000", + year: 1999, + rating: 7.2, + votes: 29995, + running_times: 4500, + }, + { + title: "Fantastic Beasts and Where to Find Them", + year: 2016, + rating: 7.4, + votes: 282792, + running_times: 7980, + }, + { + title: "Fantastic Four", + year: 2005, + rating: 5.7, + votes: 282206, + running_times: 7500, + }, + { + title: "Fantastic Four", + year: 2015, + rating: 4.3, + votes: 127702, + running_times: 6000, + }, + { + title: "Fantastic Mr. Fox", + year: 2009, + rating: 7.8, + votes: 156778, + running_times: 5220, + }, + { + title: "Fantastic Voyage", + year: 1966, + rating: 6.8, + votes: 14347, + running_times: 6000, + }, + { + title: "Far Cry", + year: 2008, + rating: 3.1, + votes: 11917, + running_times: 5700, + }, + { + title: "Far and Away", + year: 1992, + rating: 6.5, + votes: 51351, + running_times: 8400, + }, + { + title: "Far from Heaven", + year: 2002, + rating: 7.4, + votes: 38810, + running_times: 6420, + }, + { + title: "Far from the Madding Crowd", + year: 2015, + rating: 7.1, + votes: 36905, + running_times: 7140, + }, + { + title: "Fargo", + year: 1996, + rating: 8.1, + votes: 507798, + running_times: 5880, + }, + { + title: "Fasandræberne", + year: 2014, + rating: 7.1, + votes: 12548, + running_times: 7140, + }, + { + title: "Fast & Furious", + year: 2009, + rating: 6.6, + votes: 225507, + running_times: 6420, + }, + { + title: "Fast Five", + year: 2011, + rating: 7.3, + votes: 310070, + running_times: 7920, + }, + { + title: "Fast Food Nation", + year: 2006, + rating: 6.3, + votes: 21840, + running_times: 6960, + }, + { + title: "Fast Times at Ridgemont High", + year: 1982, + rating: 7.2, + votes: 78461, + running_times: 5400, + }, + { + title: "Fast Track", + year: 2006, + rating: 5.5, + votes: 15704, + running_times: 5700, + }, + { + title: "Faster", + year: 2010, + rating: 6.5, + votes: 86086, + running_times: 5880, + }, + { + title: "Faster, Pussycat! Kill! Kill!", + year: 1965, + rating: 6.8, + votes: 11707, + running_times: 4980, + }, + { + title: "Fatal Attraction", + year: 1987, + rating: 6.9, + votes: 61185, + running_times: 7140, + }, + { + title: "Father of the Bride", + year: 1991, + rating: 6.5, + votes: 59093, + running_times: 6300, + }, + { + title: "Father of the Bride Part II", + year: 1995, + rating: 5.9, + votes: 28927, + running_times: 6360, + }, + { + title: "Fathers & Daughters", + year: 2015, + rating: 7.1, + votes: 17840, + running_times: 6960, + }, + { + title: "Fathers' Day", + year: 1997, + rating: 5.1, + votes: 12966, + running_times: 5880, + }, + { title: "Fear", year: 1996, rating: 6.2, votes: 34409, running_times: 5820 }, + { + title: "Fear and Loathing in Las Vegas", + year: 1998, + rating: 7.7, + votes: 228574, + running_times: 7080, + }, + { + title: "Feardotcom", + year: 2002, + rating: 3.3, + votes: 17929, + running_times: 6060, + }, + { + title: "Fearless", + year: 1993, + rating: 7.1, + votes: 18784, + running_times: 7320, + }, + { + title: "Feast", + year: 2005, + rating: 6.4, + votes: 26881, + running_times: 5700, + }, + { title: "Feast", year: 2014, rating: 8.3, votes: 20154, running_times: 360 }, + { + title: "Feast of Love", + year: 2007, + rating: 6.7, + votes: 14876, + running_times: 5820, + }, + { + title: "Fehér isten", + year: 2014, + rating: 6.9, + votes: 12224, + running_times: 7260, + }, + { + title: "Felon", + year: 2008, + rating: 7.5, + votes: 69677, + running_times: 6240, + }, + { + title: "Femme Fatale", + year: 2002, + rating: 6.3, + votes: 30192, + running_times: 6840, + }, + { + title: "Fences", + year: 2016, + rating: 7.2, + votes: 67254, + running_times: 8340, + }, + { + title: "FernGully: The Last Rainforest", + year: 1992, + rating: 6.5, + votes: 22799, + running_times: 4560, + }, + { + title: "Ferris Bueller's Day Off", + year: 1986, + rating: 7.8, + votes: 267726, + running_times: 6180, + }, + { + title: "Festen", + year: 1998, + rating: 8.1, + votes: 69948, + running_times: 6300, + }, + { + title: "Fever Pitch", + year: 2005, + rating: 6.2, + votes: 38133, + running_times: 6240, + }, + { + title: "Fiddler on the Roof", + year: 1971, + rating: 8, + votes: 32288, + running_times: 10860, + }, + { title: "Fido", year: 2006, rating: 6.7, votes: 26218, running_times: 5580 }, + { + title: "Field of Dreams", + year: 1989, + rating: 7.5, + votes: 92902, + running_times: 6420, + }, + { + title: "Fierce Creatures", + year: 1997, + rating: 6.4, + votes: 20671, + running_times: 5580, + }, + { + title: "Fifty Dead Men Walking", + year: 2008, + rating: 6.9, + votes: 10022, + running_times: 7020, + }, + { + title: "Fifty Shades Darker", + year: 2017, + rating: 4.6, + votes: 60766, + running_times: 7860, + }, + { + title: "Fifty Shades of Black", + year: 2016, + rating: 3.5, + votes: 14489, + running_times: 5520, + }, + { + title: "Fifty Shades of Grey", + year: 2015, + rating: 4.1, + votes: 253284, + running_times: 7740, + }, + { + title: "Fight Club", + year: 1999, + rating: 8.8, + votes: 1513600, + running_times: 9060, + }, + { + title: "Fighting", + year: 2009, + rating: 5.6, + votes: 29246, + running_times: 6300, + }, + { + title: "Filth", + year: 2013, + rating: 7.1, + votes: 85698, + running_times: 5820, + }, + { + title: "Final Analysis", + year: 1992, + rating: 5.8, + votes: 11587, + running_times: 7440, + }, + { + title: "Final Destination", + year: 2000, + rating: 6.7, + votes: 196574, + running_times: 5880, + }, + { + title: "Final Destination 2", + year: 2003, + rating: 6.2, + votes: 130693, + running_times: 5400, + }, + { + title: "Final Destination 3", + year: 2006, + rating: 5.8, + votes: 111829, + running_times: 5580, + }, + { + title: "Final Destination 5", + year: 2011, + rating: 5.9, + votes: 90949, + running_times: 5520, + }, + { + title: "Final Fantasy: The Spirits Within", + year: 2001, + rating: 6.4, + votes: 75791, + running_times: 6360, + }, + { + title: "Final Girl", + year: 2015, + rating: 4.7, + votes: 10302, + running_times: 5400, + }, + { + title: "Find Me Guilty", + year: 2006, + rating: 7.1, + votes: 29806, + running_times: 7500, + }, + { + title: "Finding Dory", + year: 2016, + rating: 7.4, + votes: 179302, + running_times: 5820, + }, + { + title: "Finding Forrester", + year: 2000, + rating: 7.3, + votes: 76078, + running_times: 8160, + }, + { + title: "Finding Nemo", + year: 2003, + rating: 8.1, + votes: 782783, + running_times: 6000, + }, + { + title: "Finding Neverland", + year: 2004, + rating: 7.7, + votes: 183400, + running_times: 6360, + }, + { + title: "Finding Vivian Maier", + year: 2013, + rating: 7.7, + votes: 10672, + running_times: 4980, + }, + { + title: "Fire Down Below", + year: 1997, + rating: 5, + votes: 14680, + running_times: 6300, + }, + { + title: "Fire in the Sky", + year: 1993, + rating: 6.5, + votes: 17724, + running_times: 6540, + }, + { + title: "Fire with Fire", + year: 2012, + rating: 5.7, + votes: 22378, + running_times: 5820, + }, + { + title: "Fired Up!", + year: 2009, + rating: 6.2, + votes: 39156, + running_times: 5460, + }, + { + title: "Fireflies in the Garden", + year: 2008, + rating: 6.5, + votes: 11372, + running_times: 7200, + }, + { + title: "Firefox", + year: 1982, + rating: 5.9, + votes: 21537, + running_times: 8160, + }, + { + title: "Fireproof", + year: 2008, + rating: 6.6, + votes: 18427, + running_times: 7320, + }, + { + title: "Firestarter", + year: 1984, + rating: 6, + votes: 24912, + running_times: 6840, + }, + { + title: "Firewall", + year: 2006, + rating: 5.8, + votes: 52024, + running_times: 6300, + }, + { + title: "First Blood", + year: 1982, + rating: 7.7, + votes: 187564, + running_times: 5580, + }, + { + title: "First Daughter", + year: 2004, + rating: 5, + votes: 18521, + running_times: 6360, + }, + { + title: "First Knight", + year: 1995, + rating: 5.9, + votes: 59640, + running_times: 8040, + }, + { + title: "Fish Tank", + year: 2009, + rating: 7.3, + votes: 51982, + running_times: 7380, + }, + { + title: "Fist Fight", + year: 2017, + rating: 5.6, + votes: 25330, + running_times: 5460, + }, + { + title: "Five Easy Pieces", + year: 1970, + rating: 7.5, + votes: 27948, + running_times: 5880, + }, + { + title: "Five Minarets in New York", + year: 2010, + rating: 5.9, + votes: 12857, + running_times: 7140, + }, + { + title: "Five Minutes of Heaven", + year: 2009, + rating: 6.7, + votes: 11230, + running_times: 5340, + }, + { + title: "Flags of Our Fathers", + year: 2006, + rating: 7.1, + votes: 107000, + running_times: 8100, + }, + { + title: "Flash Gordon", + year: 1980, + rating: 6.5, + votes: 41587, + running_times: 6660, + }, + { + title: "Flash of Genius", + year: 2008, + rating: 7, + votes: 15199, + running_times: 7140, + }, + { + title: "Flashbacks of a Fool", + year: 2008, + rating: 6.8, + votes: 10970, + running_times: 6540, + }, + { + title: "Flashdance", + year: 1983, + rating: 6.1, + votes: 39098, + running_times: 5700, + }, + { + title: "Flatliners", + year: 1990, + rating: 6.6, + votes: 68965, + running_times: 6900, + }, + { + title: "Flawless", + year: 1999, + rating: 6.4, + votes: 15528, + running_times: 6720, + }, + { + title: "Flawless", + year: 2007, + rating: 6.8, + votes: 20643, + running_times: 6480, + }, + { + title: "Flesh+Blood", + year: 1985, + rating: 6.7, + votes: 13910, + running_times: 7680, + }, + { + title: "Fletch", + year: 1985, + rating: 6.9, + votes: 40497, + running_times: 5880, + }, + { + title: "Fletch Lives", + year: 1989, + rating: 6.1, + votes: 16589, + running_times: 5700, + }, + { + title: "Flickan som lekte med elden", + year: 2009, + rating: 7.2, + votes: 79566, + running_times: 10980, + }, + { + title: "Flight", + year: 2012, + rating: 7.3, + votes: 283505, + running_times: 8280, + }, + { + title: "Flight 7500", + year: 2014, + rating: 4.8, + votes: 12670, + running_times: 5820, + }, + { + title: "Flight of the Navigator", + year: 1986, + rating: 6.9, + votes: 37089, + running_times: 5400, + }, + { + title: "Flight of the Phoenix", + year: 2004, + rating: 6.1, + votes: 47745, + running_times: 6780, + }, + { + title: "Flightplan", + year: 2005, + rating: 6.3, + votes: 135399, + running_times: 5880, + }, + { + title: "Flipped", + year: 2010, + rating: 7.7, + votes: 68344, + running_times: 5400, + }, + { + title: "Flirting with Disaster", + year: 1996, + rating: 6.8, + votes: 15896, + running_times: 5520, + }, + { + title: "Florence Foster Jenkins", + year: 2016, + rating: 6.9, + votes: 37157, + running_times: 6660, + }, + { + title: "Flubber", + year: 1997, + rating: 5.2, + votes: 70930, + running_times: 5580, + }, + { + title: "Flushed Away", + year: 2006, + rating: 6.6, + votes: 93636, + running_times: 5100, + }, + { + title: "Fly Away Home", + year: 1996, + rating: 6.8, + votes: 20944, + running_times: 6420, + }, + { + title: "Flyboys", + year: 2006, + rating: 6.5, + votes: 37640, + running_times: 8400, + }, + { + title: "Flypaper", + year: 2011, + rating: 6.4, + votes: 28968, + running_times: 5220, + }, + { + title: "Focus", + year: 2015, + rating: 6.6, + votes: 174745, + running_times: 6300, + }, + { + title: "Following", + year: 1998, + rating: 7.6, + votes: 72994, + running_times: 4140, + }, + { + title: "Food, Inc.", + year: 2008, + rating: 7.8, + votes: 45811, + running_times: 5640, + }, + { + title: "Fool's Gold", + year: 2008, + rating: 5.7, + votes: 64621, + running_times: 6720, + }, + { + title: "Fools Rush In", + year: 1997, + rating: 6, + votes: 29168, + running_times: 6540, + }, + { + title: "Footloose", + year: 1984, + rating: 6.5, + votes: 57957, + running_times: 6420, + }, + { + title: "Footloose", + year: 2011, + rating: 5.9, + votes: 40438, + running_times: 6780, + }, + { + title: "For Love of the Game", + year: 1999, + rating: 6.6, + votes: 27712, + running_times: 8220, + }, + { + title: "For Love or Money", + year: 1993, + rating: 6.1, + votes: 10127, + running_times: 5760, + }, + { + title: "For Your Consideration", + year: 2006, + rating: 6.3, + votes: 12713, + running_times: 5160, + }, + { + title: "For Your Eyes Only", + year: 1981, + rating: 6.8, + votes: 77968, + running_times: 7620, + }, + { + title: "For a Good Time, Call...", + year: 2012, + rating: 6, + votes: 14357, + running_times: 5280, + }, + { + title: "Forbidden Planet", + year: 1956, + rating: 7.7, + votes: 37834, + running_times: 5880, + }, + { + title: "Force 10 from Navarone", + year: 1978, + rating: 6.3, + votes: 14403, + running_times: 7560, + }, + { + title: "Forces of Nature", + year: 1999, + rating: 5.4, + votes: 28462, + running_times: 6300, + }, + { + title: "Forces spéciales", + year: 2011, + rating: 6.4, + votes: 16027, + running_times: 6540, + }, + { + title: "Foreign Correspondent", + year: 1940, + rating: 7.6, + votes: 15032, + running_times: 7200, + }, + { + title: "Forever Young", + year: 1992, + rating: 6.3, + votes: 39195, + running_times: 6120, + }, + { + title: "Forgetting Sarah Marshall", + year: 2008, + rating: 7.2, + votes: 232023, + running_times: 7080, + }, + { + title: "Forrest Gump", + year: 1994, + rating: 8.8, + votes: 1425423, + running_times: 8520, + }, + { + title: "Fort Apache", + year: 1948, + rating: 7.6, + votes: 13695, + running_times: 7680, + }, + { + title: "Fortress", + year: 1992, + rating: 5.9, + votes: 24762, + running_times: 5700, + }, + { + title: "Forushande", + year: 2016, + rating: 7.9, + votes: 30515, + running_times: 7440, + }, + { + title: "Foul Play", + year: 1978, + rating: 6.8, + votes: 11507, + running_times: 6960, + }, + { + title: "Four Brothers", + year: 2005, + rating: 6.9, + votes: 118156, + running_times: 6540, + }, + { + title: "Four Christmases", + year: 2008, + rating: 5.6, + votes: 53208, + running_times: 5280, + }, + { + title: "Four Lions", + year: 2010, + rating: 7.3, + votes: 61920, + running_times: 5820, + }, + { + title: "Four Rooms", + year: 1995, + rating: 6.7, + votes: 84665, + running_times: 6600, + }, + { + title: "Four Weddings and a Funeral", + year: 1994, + rating: 7.1, + votes: 116667, + running_times: 7020, + }, + { + title: "Foxcatcher", + year: 2014, + rating: 7, + votes: 118206, + running_times: 8040, + }, + { + title: "Fracture", + year: 2007, + rating: 7.2, + votes: 155144, + running_times: 6780, + }, + { + title: "Frailty", + year: 2001, + rating: 7.3, + votes: 66362, + running_times: 6000, + }, + { + title: "Frances Ha", + year: 2012, + rating: 7.4, + votes: 51589, + running_times: 5160, + }, + { title: "Frank", year: 2014, rating: 7, votes: 63921, running_times: 5700 }, + { + title: "Frankenstein", + year: 1931, + rating: 7.9, + votes: 53795, + running_times: 4200, + }, + { + title: "Frankenweenie", + year: 2012, + rating: 7, + votes: 82174, + running_times: 5220, + }, + { + title: "Frankie and Johnny", + year: 1991, + rating: 6.7, + votes: 24600, + running_times: 7080, + }, + { + title: "Franklyn", + year: 2008, + rating: 6.2, + votes: 15585, + running_times: 5880, + }, + { + title: "Frantic", + year: 1988, + rating: 6.9, + votes: 42109, + running_times: 7200, + }, + { + title: "Freaks", + year: 1932, + rating: 7.9, + votes: 35354, + running_times: 3840, + }, + { + title: "Freaky Friday", + year: 2003, + rating: 6.2, + votes: 106102, + running_times: 5820, + }, + { + title: "Fred Claus", + year: 2007, + rating: 5.6, + votes: 34482, + running_times: 6960, + }, + { + title: "Freddy Got Fingered", + year: 2001, + rating: 4.5, + votes: 41471, + running_times: 5220, + }, + { + title: "Freddy vs. Jason", + year: 2003, + rating: 5.8, + votes: 96473, + running_times: 5820, + }, + { + title: "Freddy's Dead: The Final Nightmare", + year: 1991, + rating: 4.9, + votes: 34194, + running_times: 6300, + }, + { + title: "Free Birds", + year: 2013, + rating: 5.9, + votes: 19574, + running_times: 5460, + }, + { + title: "Free Fire", + year: 2016, + rating: 6.5, + votes: 25682, + running_times: 5460, + }, + { + title: "Free State of Jones", + year: 2016, + rating: 6.9, + votes: 36148, + running_times: 8340, + }, + { + title: "Free Willy", + year: 1993, + rating: 5.9, + votes: 56881, + running_times: 6720, + }, + { + title: "Free Willy 2: The Adventure Home", + year: 1995, + rating: 4.9, + votes: 14085, + running_times: 5700, + }, + { + title: "Free to Play", + year: 2014, + rating: 8, + votes: 12429, + running_times: 4500, + }, + { + title: "Freedom Writers", + year: 2007, + rating: 7.5, + votes: 57530, + running_times: 7380, + }, + { + title: "Freedomland", + year: 2006, + rating: 5.1, + votes: 14015, + running_times: 6780, + }, + { + title: "Freejack", + year: 1992, + rating: 5.3, + votes: 12999, + running_times: 6600, + }, + { + title: "Freeway", + year: 1996, + rating: 6.9, + votes: 23361, + running_times: 6240, + }, + { + title: "French Connection II", + year: 1975, + rating: 6.8, + votes: 13988, + running_times: 7140, + }, + { + title: "French Kiss", + year: 1995, + rating: 6.6, + votes: 41271, + running_times: 6660, + }, + { + title: "Frenzy", + year: 1972, + rating: 7.5, + votes: 34045, + running_times: 6960, + }, + { + title: "Frequency", + year: 2000, + rating: 7.4, + votes: 88661, + running_times: 7080, + }, + { + title: "Frequently Asked Questions About Time Travel", + year: 2009, + rating: 7.1, + votes: 28572, + running_times: 4980, + }, + { + title: "Fresh", + year: 1994, + rating: 7.6, + votes: 10428, + running_times: 6840, + }, + { + title: "Frida", + year: 2002, + rating: 7.4, + votes: 67944, + running_times: 7380, + }, + { + title: "Friday", + year: 1995, + rating: 7.3, + votes: 83187, + running_times: 5820, + }, + { + title: "Friday After Next", + year: 2002, + rating: 5.8, + votes: 21533, + running_times: 5100, + }, + { + title: "Friday Night Lights", + year: 2004, + rating: 7.3, + votes: 50876, + running_times: 7080, + }, + { + title: "Friday the 13th", + year: 1980, + rating: 6.5, + votes: 94488, + running_times: 5700, + }, + { + title: "Friday the 13th", + year: 2009, + rating: 5.6, + votes: 82090, + running_times: 6360, + }, + { + title: "Friday the 13th Part 2", + year: 1981, + rating: 6.1, + votes: 45589, + running_times: 5220, + }, + { + title: "Friday the 13th Part III", + year: 1982, + rating: 5.7, + votes: 36832, + running_times: 5700, + }, + { + title: "Friday the 13th Part VII: The New Blood", + year: 1988, + rating: 5.3, + votes: 24702, + running_times: 5280, + }, + { + title: "Friday the 13th Part VIII: Jason Takes Manhattan", + year: 1989, + rating: 4.6, + votes: 26121, + running_times: 6000, + }, + { + title: "Friday the 13th: A New Beginning", + year: 1985, + rating: 4.8, + votes: 25750, + running_times: 5520, + }, + { + title: "Friday the 13th: The Final Chapter", + year: 1984, + rating: 6, + votes: 34069, + running_times: 5820, + }, + { + title: "Fried Green Tomatoes", + year: 1991, + rating: 7.7, + votes: 56574, + running_times: 8220, + }, + { + title: "Friend Request", + year: 2016, + rating: 5.4, + votes: 16174, + running_times: 5520, + }, + { + title: "Friends with Benefits", + year: 2011, + rating: 6.6, + votes: 295776, + running_times: 6540, + }, + { + title: "Friends with Kids", + year: 2011, + rating: 6.2, + votes: 37913, + running_times: 6420, + }, + { + title: "Friends with Money", + year: 2006, + rating: 5.8, + votes: 21365, + running_times: 5280, + }, + { + title: "Fright Night", + year: 1985, + rating: 7.1, + votes: 48068, + running_times: 6360, + }, + { + title: "Fright Night", + year: 2011, + rating: 6.4, + votes: 90148, + running_times: 6360, + }, + { + title: "From Beyond", + year: 1986, + rating: 6.7, + votes: 17125, + running_times: 5160, + }, + { + title: "From Dusk Till Dawn", + year: 1996, + rating: 7.3, + votes: 239943, + running_times: 6480, + }, + { + title: "From Hell", + year: 2001, + rating: 6.8, + votes: 132974, + running_times: 7320, + }, + { + title: "From Here to Eternity", + year: 1953, + rating: 7.7, + votes: 36695, + running_times: 7080, + }, + { + title: "From Justin to Kelly", + year: 2003, + rating: 2.1, + votes: 24027, + running_times: 5400, + }, + { + title: "From Paris with Love", + year: 2010, + rating: 6.5, + votes: 102829, + running_times: 5520, + }, + { + title: "From Prada to Nada", + year: 2011, + rating: 5.5, + votes: 12822, + running_times: 6420, + }, + { + title: "From Russia with Love", + year: 1963, + rating: 7.5, + votes: 97600, + running_times: 6900, + }, + { + title: "Frost/Nixon", + year: 2008, + rating: 7.7, + votes: 92853, + running_times: 7320, + }, + { + title: "Frozen", + year: 2010, + rating: 6.2, + votes: 57941, + running_times: 5580, + }, + { + title: "Frozen", + year: 2013, + rating: 7.5, + votes: 470780, + running_times: 6120, + }, + { + title: "Frozen Fever", + year: 2015, + rating: 7, + votes: 10101, + running_times: 480, + }, + { + title: "Frozen River", + year: 2008, + rating: 7.2, + votes: 22666, + running_times: 5820, + }, + { + title: "Fruitvale Station", + year: 2013, + rating: 7.5, + votes: 60680, + running_times: 5100, + }, + { + title: "Frágiles", + year: 2005, + rating: 6.1, + votes: 13897, + running_times: 6060, + }, + { + title: "Full Metal Jacket", + year: 1987, + rating: 8.3, + votes: 545907, + running_times: 6960, + }, + { + title: "Fun Size", + year: 2012, + rating: 5.4, + votes: 12179, + running_times: 5160, + }, + { + title: "Fun with Dick and Jane", + year: 2005, + rating: 6.1, + votes: 118363, + running_times: 5400, + }, + { + title: "Funny Face", + year: 1957, + rating: 7.1, + votes: 21425, + running_times: 6180, + }, + { + title: "Funny Farm", + year: 1988, + rating: 6.1, + votes: 16500, + running_times: 6060, + }, + { + title: "Funny Games", + year: 2007, + rating: 6.5, + votes: 77100, + running_times: 6660, + }, + { + title: "Funny Girl", + year: 1968, + rating: 7.6, + votes: 14783, + running_times: 9300, + }, + { + title: "Funny People", + year: 2009, + rating: 6.3, + votes: 104820, + running_times: 9180, + }, + { + title: "Fur: An Imaginary Portrait of Diane Arbus", + year: 2006, + rating: 6.5, + votes: 13935, + running_times: 7320, + }, + { + title: "Furious 6", + year: 2013, + rating: 7.1, + votes: 327726, + running_times: 7860, + }, + { + title: "Furious Seven", + year: 2015, + rating: 7.2, + votes: 313301, + running_times: 8400, + }, + { + title: "Furry Vengeance", + year: 2010, + rating: 3.8, + votes: 13359, + running_times: 5520, + }, + { + title: "Fury", + year: 2014, + rating: 7.6, + votes: 346870, + running_times: 8040, + }, + { + title: "G-Force", + year: 2009, + rating: 5.1, + votes: 35892, + running_times: 5280, + }, + { + title: "G.I. Jane", + year: 1997, + rating: 5.9, + votes: 64842, + running_times: 7500, + }, + { + title: "G.I. Joe: Retaliation", + year: 2013, + rating: 5.8, + votes: 155817, + running_times: 7320, + }, + { + title: "G.I. Joe: The Rise of Cobra", + year: 2009, + rating: 5.8, + votes: 183800, + running_times: 7080, + }, + { + title: "G.O.R.A.", + year: 2004, + rating: 8, + votes: 41034, + running_times: 7620, + }, + { + title: "Gabriel", + year: 2007, + rating: 5.7, + votes: 12850, + running_times: 6840, + }, + { + title: "Galaxy Quest", + year: 1999, + rating: 7.3, + votes: 131167, + running_times: 6120, + }, + { + title: "Gallipoli", + year: 1981, + rating: 7.5, + votes: 31959, + running_times: 6600, + }, + { + title: "Gambit", + year: 2012, + rating: 5.7, + votes: 20482, + running_times: 6000, + }, + { + title: "Game of Death", + year: 1978, + rating: 6.1, + votes: 13710, + running_times: 6180, + }, + { + title: "Gamer", + year: 2009, + rating: 5.8, + votes: 119266, + running_times: 5700, + }, + { + title: "Gandhi", + year: 1982, + rating: 8.1, + votes: 189632, + running_times: 11460, + }, + { + title: "Gangs of New York", + year: 2002, + rating: 7.5, + votes: 344488, + running_times: 10020, + }, + { + title: "Gangster No. 1", + year: 2000, + rating: 6.8, + votes: 11589, + running_times: 6180, + }, + { + title: "Gangster Squad", + year: 2013, + rating: 6.7, + votes: 185855, + running_times: 6780, + }, + { + title: "Garden State", + year: 2004, + rating: 7.5, + votes: 195068, + running_times: 6120, + }, + { + title: "Garfield", + year: 2004, + rating: 5, + votes: 65785, + running_times: 4800, + }, + { + title: "Garfield: A Tail of Two Kitties", + year: 2006, + rating: 5, + votes: 31226, + running_times: 5160, + }, + { + title: "Gaslight", + year: 1944, + rating: 7.9, + votes: 18810, + running_times: 6840, + }, + { + title: "Gattaca", + year: 1997, + rating: 7.8, + votes: 241382, + running_times: 6360, + }, + { + title: "Gegen die Wand", + year: 2004, + rating: 8, + votes: 44019, + running_times: 7260, + }, + { + title: "Genius", + year: 2016, + rating: 6.5, + votes: 12867, + running_times: 6240, + }, + { + title: "Gentleman's Agreement", + year: 1947, + rating: 7.4, + votes: 12227, + running_times: 7080, + }, + { + title: "Gentlemen Prefer Blondes", + year: 1953, + rating: 7.2, + votes: 25540, + running_times: 5460, + }, + { + title: "George of the Jungle", + year: 1997, + rating: 5.4, + votes: 60896, + running_times: 5520, + }, + { + title: "Georgia Rule", + year: 2007, + rating: 5.9, + votes: 21661, + running_times: 6780, + }, + { + title: "Geostorm", + year: 2017, + rating: 5.5, + votes: 25413, + running_times: 6540, + }, + { + title: "Gerald's Game", + year: 2017, + rating: 6.7, + votes: 31247, + running_times: 6180, + }, + { + title: "Gerry", + year: 2002, + rating: 6.2, + votes: 16037, + running_times: 6180, + }, + { + title: "Get Carter", + year: 1971, + rating: 7.5, + votes: 23892, + running_times: 6720, + }, + { + title: "Get Carter", + year: 2000, + rating: 5.1, + votes: 29067, + running_times: 6120, + }, + { + title: "Get Hard", + year: 2015, + rating: 6, + votes: 100323, + running_times: 6420, + }, + { + title: "Get Him to the Greek", + year: 2010, + rating: 6.4, + votes: 154875, + running_times: 6840, + }, + { + title: "Get Low", + year: 2009, + rating: 7.1, + votes: 20115, + running_times: 6180, + }, + { + title: "Get Out", + year: 2017, + rating: 7.7, + votes: 210820, + running_times: 6240, + }, + { + title: "Get Over It", + year: 2001, + rating: 5.8, + votes: 16318, + running_times: 5220, + }, + { + title: "Get Real", + year: 1998, + rating: 7.6, + votes: 11209, + running_times: 6480, + }, + { + title: "Get Rich or Die Tryin'", + year: 2005, + rating: 5.1, + votes: 39021, + running_times: 7020, + }, + { + title: "Get Shorty", + year: 1995, + rating: 6.9, + votes: 66881, + running_times: 6300, + }, + { + title: "Get Smart", + year: 2008, + rating: 6.5, + votes: 178169, + running_times: 6600, + }, + { + title: "Get a Job", + year: 2016, + rating: 5.3, + votes: 17080, + running_times: 4980, + }, + { + title: "Get on Up", + year: 2014, + rating: 6.9, + votes: 17525, + running_times: 8340, + }, + { + title: "Get the Gringo", + year: 2012, + rating: 7, + votes: 93330, + running_times: 5760, + }, + { + title: "Getaway", + year: 2013, + rating: 4.4, + votes: 20947, + running_times: 5400, + }, + { + title: "Gettysburg", + year: 1993, + rating: 7.7, + votes: 23119, + running_times: 16260, + }, + { title: "Ghost", year: 1990, rating: 7, votes: 166395, running_times: 7620 }, + { + title: "Ghost Dog: The Way of the Samurai", + year: 1999, + rating: 7.5, + votes: 75463, + running_times: 6960, + }, + { + title: "Ghost Rider", + year: 2007, + rating: 5.2, + votes: 196160, + running_times: 7380, + }, + { + title: "Ghost Rider: Spirit of Vengeance", + year: 2011, + rating: 4.3, + votes: 95767, + running_times: 5760, + }, + { + title: "Ghost Ship", + year: 2002, + rating: 5.5, + votes: 81267, + running_times: 5460, + }, + { + title: "Ghost Town", + year: 2008, + rating: 6.7, + votes: 63420, + running_times: 6120, + }, + { + title: "Ghost World", + year: 2001, + rating: 7.4, + votes: 102347, + running_times: 6660, + }, + { + title: "Ghost in the Shell", + year: 2017, + rating: 6.4, + votes: 134199, + running_times: 6420, + }, + { + title: "Ghostbusters", + year: 1984, + rating: 7.8, + votes: 299502, + running_times: 6300, + }, + { + title: "Ghostbusters", + year: 2016, + rating: 5.3, + votes: 160952, + running_times: 8040, + }, + { + title: "Ghostbusters II", + year: 1989, + rating: 6.5, + votes: 154653, + running_times: 6480, + }, + { + title: "Ghosts of Girlfriends Past", + year: 2009, + rating: 5.8, + votes: 72653, + running_times: 6000, + }, + { + title: "Ghosts of Mars", + year: 2001, + rating: 4.9, + votes: 45631, + running_times: 5880, + }, + { + title: "Giant", + year: 1956, + rating: 7.7, + votes: 28660, + running_times: 12060, + }, + { + title: "Gifted", + year: 2017, + rating: 7.6, + votes: 53458, + running_times: 6060, + }, + { title: "Gigi", year: 1958, rating: 6.8, votes: 16227, running_times: 6900 }, + { + title: "Gigli", + year: 2003, + rating: 2.4, + votes: 43066, + running_times: 7260, + }, + { + title: "Gilda", + year: 1946, + rating: 7.8, + votes: 22667, + running_times: 6600, + }, + { + title: "Gin gwai", + year: 2002, + rating: 6.7, + votes: 25927, + running_times: 6600, + }, + { + title: "Ging chaat goo si 4: Ji gaan daan yam mo", + year: 1996, + rating: 6.6, + votes: 16216, + running_times: 6420, + }, + { + title: "Ging chaat goo si III: Chiu kup ging chaat", + year: 1992, + rating: 6.9, + votes: 16239, + running_times: 5700, + }, + { + title: "Ginger Snaps", + year: 2000, + rating: 6.8, + votes: 35786, + running_times: 6480, + }, + { + title: "Ginger Snaps 2: Unleashed", + year: 2004, + rating: 6.5, + votes: 11059, + running_times: 5640, + }, + { + title: "Girl Most Likely", + year: 2012, + rating: 5.8, + votes: 13274, + running_times: 6180, + }, + { + title: "Girl with a Pearl Earring", + year: 2003, + rating: 7, + votes: 64538, + running_times: 6000, + }, + { + title: "Girl, Interrupted", + year: 1999, + rating: 7.4, + votes: 137077, + running_times: 7620, + }, + { + title: "Girls Trip", + year: 2017, + rating: 6.3, + votes: 14944, + running_times: 7320, + }, + { + title: "Gladiator", + year: 2000, + rating: 8.5, + votes: 1095540, + running_times: 10260, + }, + { + title: "Glengarry Glen Ross", + year: 1992, + rating: 7.8, + votes: 83225, + running_times: 6000, + }, + { + title: "Glitter", + year: 2001, + rating: 2.2, + votes: 20105, + running_times: 6240, + }, + { + title: "Glory", + year: 1989, + rating: 7.9, + votes: 108006, + running_times: 7320, + }, + { + title: "Glory Road", + year: 2006, + rating: 7.2, + votes: 37469, + running_times: 7080, + }, + { + title: "Gnomeo & Juliet", + year: 2011, + rating: 6, + votes: 45741, + running_times: 5040, + }, + { title: "Go", year: 1999, rating: 7.3, votes: 61798, running_times: 6120 }, + { + title: "Goal II: Living the Dream", + year: 2007, + rating: 5.9, + votes: 28017, + running_times: 6900, + }, + { + title: "Goal!", + year: 2005, + rating: 6.7, + votes: 54338, + running_times: 7080, + }, + { + title: "God Bless America", + year: 2011, + rating: 7.2, + votes: 63613, + running_times: 6300, + }, + { + title: "God's Not Dead", + year: 2014, + rating: 4.8, + votes: 35130, + running_times: 6780, + }, + { + title: "Gods and Generals", + year: 2003, + rating: 6.3, + votes: 13902, + running_times: 16800, + }, + { + title: "Gods and Monsters", + year: 1998, + rating: 7.5, + votes: 26224, + running_times: 6300, + }, + { + title: "Gods of Egypt", + year: 2016, + rating: 5.4, + votes: 80478, + running_times: 7620, + }, + { + title: "Godsend", + year: 2004, + rating: 4.8, + votes: 23240, + running_times: 6120, + }, + { + title: "Godzilla", + year: 1998, + rating: 5.3, + votes: 161405, + running_times: 8340, + }, + { + title: "Godzilla", + year: 2014, + rating: 6.4, + votes: 326395, + running_times: 7380, + }, + { + title: "Going Clear: Scientology & the Prison of Belief", + year: 2015, + rating: 8.1, + votes: 30417, + running_times: 7140, + }, + { + title: "Going Overboard", + year: 1989, + rating: 1.9, + votes: 11122, + running_times: 5940, + }, + { + title: "Going in Style", + year: 2017, + rating: 6.6, + votes: 46139, + running_times: 5760, + }, + { + title: "Going the Distance", + year: 2010, + rating: 6.3, + votes: 52785, + running_times: 6120, + }, + { title: "Gold", year: 2016, rating: 6.7, votes: 37148, running_times: 7200 }, + { + title: "GoldenEye", + year: 1995, + rating: 7.2, + votes: 211375, + running_times: 7800, + }, + { + title: "Goldfinger", + year: 1964, + rating: 7.8, + votes: 149047, + running_times: 6600, + }, + { title: "Gone", year: 2012, rating: 5.9, votes: 37015, running_times: 5640 }, + { + title: "Gone Baby Gone", + year: 2007, + rating: 7.7, + votes: 216054, + running_times: 6840, + }, + { + title: "Gone Girl", + year: 2014, + rating: 8.1, + votes: 673078, + running_times: 8940, + }, + { + title: "Gone in Sixty Seconds", + year: 2000, + rating: 6.5, + votes: 232755, + running_times: 7620, + }, + { + title: "Gone with the Wind", + year: 1939, + rating: 8.2, + votes: 238572, + running_times: 14280, + }, + { + title: "Gongdong gyeongbi guyeok JSA", + year: 2000, + rating: 7.9, + votes: 21127, + running_times: 6600, + }, + { + title: "Good Burger", + year: 1997, + rating: 5.7, + votes: 22472, + running_times: 5700, + }, + { + title: "Good Bye Lenin!", + year: 2003, + rating: 7.7, + votes: 122384, + running_times: 7260, + }, + { + title: "Good Kill", + year: 2014, + rating: 6.4, + votes: 19133, + running_times: 6120, + }, + { + title: "Good Luck Chuck", + year: 2007, + rating: 5.6, + votes: 78036, + running_times: 6060, + }, + { + title: "Good Morning, Vietnam", + year: 1987, + rating: 7.3, + votes: 108279, + running_times: 7260, + }, + { + title: "Good Night, and Good Luck.", + year: 2005, + rating: 7.5, + votes: 87338, + running_times: 5580, + }, + { + title: "Good People", + year: 2014, + rating: 5.5, + votes: 13131, + running_times: 5400, + }, + { + title: "Good Time", + year: 2017, + rating: 7.4, + votes: 17035, + running_times: 6060, + }, + { + title: "Good Will Hunting", + year: 1997, + rating: 8.3, + votes: 686934, + running_times: 7560, + }, + { + title: "Goodbye Bafana", + year: 2007, + rating: 7.1, + votes: 10712, + running_times: 7080, + }, + { + title: "Goodfellas", + year: 1990, + rating: 8.7, + votes: 813765, + running_times: 8760, + }, + { title: "Goon", year: 2011, rating: 6.8, votes: 76154, running_times: 5520 }, + { + title: "Goosebumps", + year: 2015, + rating: 6.3, + votes: 61471, + running_times: 6180, + }, + { + title: "Gorillas in the Mist: The Story of Dian Fossey", + year: 1988, + rating: 7, + votes: 20600, + running_times: 7740, + }, + { + title: "Gorky Park", + year: 1983, + rating: 6.8, + votes: 10348, + running_times: 7680, + }, + { + title: "Gosford Park", + year: 2001, + rating: 7.3, + votes: 69204, + running_times: 7860, + }, + { + title: "Gossip", + year: 2000, + rating: 5.9, + votes: 13108, + running_times: 5400, + }, + { + title: "Gothika", + year: 2003, + rating: 5.8, + votes: 95216, + running_times: 5880, + }, + { + title: "Goya's Ghosts", + year: 2006, + rating: 6.9, + votes: 26554, + running_times: 6780, + }, + { + title: "Grabbers", + year: 2012, + rating: 6.3, + votes: 14687, + running_times: 5640, + }, + { + title: "Grace of Monaco", + year: 2014, + rating: 5.7, + votes: 14565, + running_times: 6180, + }, + { + title: "Gran Torino", + year: 2008, + rating: 8.2, + votes: 617362, + running_times: 6960, + }, + { + title: "Grand Canyon", + year: 1991, + rating: 6.9, + votes: 13347, + running_times: 8040, + }, + { + title: "Grand Hotel", + year: 1932, + rating: 7.6, + votes: 14274, + running_times: 6720, + }, + { + title: "Grand Piano", + year: 2013, + rating: 5.9, + votes: 14935, + running_times: 5400, + }, + { + title: "Grandma", + year: 2015, + rating: 6.7, + votes: 12295, + running_times: 4740, + }, + { + title: "Grandma's Boy", + year: 2006, + rating: 7, + votes: 71010, + running_times: 5640, + }, + { + title: "Grave Encounters", + year: 2011, + rating: 6.1, + votes: 44630, + running_times: 5520, + }, + { + title: "Grave Encounters 2", + year: 2012, + rating: 5.1, + votes: 19167, + running_times: 5700, + }, + { + title: "Gravity", + year: 2013, + rating: 7.8, + votes: 646916, + running_times: 5460, + }, + { + title: "Grease", + year: 1978, + rating: 7.2, + votes: 188022, + running_times: 6600, + }, + { + title: "Grease 2", + year: 1982, + rating: 4.2, + votes: 28318, + running_times: 6900, + }, + { + title: "Great Balls of Fire!", + year: 1989, + rating: 6.2, + votes: 13571, + running_times: 6480, + }, + { + title: "Great Expectations", + year: 1946, + rating: 8, + votes: 18970, + running_times: 7080, + }, + { + title: "Great Expectations", + year: 1998, + rating: 6.8, + votes: 45586, + running_times: 6660, + }, + { + title: "Great Expectations", + year: 2012, + rating: 6.4, + votes: 10560, + running_times: 7680, + }, + { + title: "Greedy", + year: 1994, + rating: 6.3, + votes: 11136, + running_times: 6780, + }, + { + title: "Green Card", + year: 1990, + rating: 6.2, + votes: 19778, + running_times: 6420, + }, + { + title: "Green Lantern", + year: 2011, + rating: 5.6, + votes: 237741, + running_times: 7380, + }, + { + title: "Green Room", + year: 2015, + rating: 7, + votes: 72111, + running_times: 5700, + }, + { + title: "Green Zone", + year: 2010, + rating: 6.8, + votes: 117010, + running_times: 6900, + }, + { + title: "Greenberg", + year: 2010, + rating: 6.1, + votes: 32106, + running_times: 6420, + }, + { + title: "Gremlins", + year: 1984, + rating: 7.2, + votes: 160563, + running_times: 6360, + }, + { + title: "Gremlins 2: The New Batch", + year: 1990, + rating: 6.3, + votes: 76549, + running_times: 6360, + }, + { + title: "Greystoke: The Legend of Tarzan, Lord of the Apes", + year: 1984, + rating: 6.4, + votes: 15791, + running_times: 8580, + }, + { + title: "Gridiron Gang", + year: 2006, + rating: 6.9, + votes: 36158, + running_times: 7500, + }, + { + title: "Gridlock'd", + year: 1997, + rating: 7, + votes: 12700, + running_times: 5460, + }, + { + title: "Grimsby", + year: 2016, + rating: 6.2, + votes: 69187, + running_times: 4980, + }, + { title: "Grind", year: 2003, rating: 6, votes: 10800, running_times: 6300 }, + { + title: "Grindhouse", + year: 2007, + rating: 7.6, + votes: 163369, + running_times: 11460, + }, + { + title: "Grizzly Man", + year: 2005, + rating: 7.8, + votes: 45276, + running_times: 6180, + }, + { + title: "Grosse Pointe Blank", + year: 1997, + rating: 7.4, + votes: 78182, + running_times: 6420, + }, + { + title: "Groundhog Day", + year: 1993, + rating: 8, + votes: 490746, + running_times: 6060, + }, + { + title: "Grown Ups", + year: 2010, + rating: 6, + votes: 196291, + running_times: 6120, + }, + { + title: "Grown Ups 2", + year: 2013, + rating: 5.4, + votes: 118711, + running_times: 6060, + }, + { + title: "Grudge Match", + year: 2013, + rating: 6.4, + votes: 50640, + running_times: 6780, + }, + { + title: "Grumpier Old Men", + year: 1995, + rating: 6.6, + votes: 20921, + running_times: 6060, + }, + { + title: "Grumpy Old Men", + year: 1993, + rating: 7, + votes: 37362, + running_times: 6180, + }, + { + title: "Guardians of the Galaxy", + year: 2014, + rating: 8.1, + votes: 804806, + running_times: 7260, + }, + { + title: "Guardians of the Galaxy Vol. 2", + year: 2017, + rating: 7.8, + votes: 307773, + running_times: 8160, + }, + { + title: "Guarding Tess", + year: 1994, + rating: 6.2, + votes: 13643, + running_times: 5760, + }, + { + title: "Guess Who", + year: 2005, + rating: 5.9, + votes: 35779, + running_times: 6300, + }, + { + title: "Guess Who's Coming to Dinner", + year: 1967, + rating: 7.8, + votes: 32153, + running_times: 6480, + }, + { + title: "Gulliver's Travels", + year: 2010, + rating: 4.9, + votes: 56804, + running_times: 5100, + }, + { + title: "Gummo", + year: 1997, + rating: 6.7, + votes: 26744, + running_times: 5340, + }, + { + title: "Gunfight at the O.K. Corral", + year: 1957, + rating: 7.2, + votes: 11317, + running_times: 7320, + }, + { + title: "Gung Ho", + year: 1986, + rating: 6.2, + votes: 10087, + running_times: 6720, + }, + { + title: "Guys and Dolls", + year: 1955, + rating: 7.3, + votes: 12935, + running_times: 9120, + }, + { + title: "Guzaarish", + year: 2010, + rating: 7.5, + votes: 13589, + running_times: 7560, + }, + { + title: "Gwoemul", + year: 2006, + rating: 7, + votes: 77654, + running_times: 7200, + }, + { + title: "Habemus Papam", + year: 2011, + rating: 6.7, + votes: 11615, + running_times: 6120, + }, + { + title: "Habitación en Roma", + year: 2010, + rating: 6.2, + votes: 18445, + running_times: 6540, + }, + { + title: "Hachi: A Dog's Tale", + year: 2009, + rating: 8.1, + votes: 190809, + running_times: 5580, + }, + { + title: "Hackers", + year: 1995, + rating: 6.2, + votes: 58262, + running_times: 6420, + }, + { + title: "Hacksaw Ridge", + year: 2016, + rating: 8.2, + votes: 282761, + running_times: 8340, + }, + { + title: "Hail, Caesar!", + year: 2016, + rating: 6.3, + votes: 96939, + running_times: 6360, + }, + { title: "Hair", year: 1979, rating: 7.6, votes: 29465, running_times: 7260 }, + { + title: "Hairspray", + year: 1988, + rating: 7, + votes: 17296, + running_times: 5520, + }, + { + title: "Hairspray", + year: 2007, + rating: 6.7, + votes: 105515, + running_times: 7020, + }, + { + title: "Half Baked", + year: 1998, + rating: 6.7, + votes: 51176, + running_times: 4920, + }, + { + title: "Half Light", + year: 2006, + rating: 6, + votes: 11903, + running_times: 6600, + }, + { + title: "Half Nelson", + year: 2006, + rating: 7.2, + votes: 76232, + running_times: 6360, + }, + { + title: "Half Past Dead", + year: 2002, + rating: 4.6, + votes: 12929, + running_times: 5880, + }, + { + title: "Hall Pass", + year: 2011, + rating: 5.9, + votes: 108841, + running_times: 6660, + }, + { + title: "Hallam Foe", + year: 2007, + rating: 7, + votes: 11427, + running_times: 5700, + }, + { + title: "Halloween", + year: 1978, + rating: 7.8, + votes: 176749, + running_times: 6060, + }, + { + title: "Halloween", + year: 2007, + rating: 6.1, + votes: 94747, + running_times: 7260, + }, + { + title: "Halloween 4: The Return of Michael Myers", + year: 1988, + rating: 5.9, + votes: 33335, + running_times: 5280, + }, + { + title: "Halloween 5", + year: 1989, + rating: 5.2, + votes: 26022, + running_times: 5760, + }, + { + title: "Halloween H20: 20 Years Later", + year: 1998, + rating: 5.7, + votes: 53537, + running_times: 5160, + }, + { + title: "Halloween II", + year: 1981, + rating: 6.6, + votes: 57321, + running_times: 5520, + }, + { + title: "Halloween II", + year: 2009, + rating: 4.9, + votes: 39987, + running_times: 7140, + }, + { + title: "Halloween III: Season of the Witch", + year: 1982, + rating: 4.7, + votes: 32487, + running_times: 5880, + }, + { + title: "Halloween: Resurrection", + year: 2002, + rating: 4.1, + votes: 29692, + running_times: 5640, + }, + { + title: "Halloween: The Curse of Michael Myers", + year: 1995, + rating: 5, + votes: 23489, + running_times: 5700, + }, + { + title: "Hamburger Hill", + year: 1987, + rating: 6.7, + votes: 20324, + running_times: 6600, + }, + { + title: "Hamlet", + year: 1948, + rating: 7.8, + votes: 12859, + running_times: 9240, + }, + { + title: "Hamlet", + year: 1990, + rating: 6.8, + votes: 18948, + running_times: 8100, + }, + { + title: "Hamlet", + year: 1996, + rating: 7.8, + votes: 32395, + running_times: 14520, + }, + { + title: "Hamlet 2", + year: 2008, + rating: 6.4, + votes: 15690, + running_times: 5520, + }, + { + title: "Hancock", + year: 2008, + rating: 6.4, + votes: 379865, + running_times: 6120, + }, + { + title: "Hands of Stone", + year: 2016, + rating: 6.6, + votes: 10581, + running_times: 6660, + }, + { + title: "Hang 'Em High", + year: 1968, + rating: 7, + votes: 28346, + running_times: 6840, + }, + { + title: "Hanging Up", + year: 2000, + rating: 4.8, + votes: 10695, + running_times: 5640, + }, + { + title: "Hanna", + year: 2011, + rating: 6.8, + votes: 167885, + running_times: 6660, + }, + { + title: "Hannah Montana: The Movie", + year: 2009, + rating: 4.3, + votes: 34482, + running_times: 6120, + }, + { + title: "Hannah and Her Sisters", + year: 1986, + rating: 8, + votes: 57685, + running_times: 6420, + }, + { + title: "Hannibal", + year: 2001, + rating: 6.8, + votes: 223188, + running_times: 7860, + }, + { + title: "Hannibal Rising", + year: 2007, + rating: 6.2, + votes: 92521, + running_times: 7860, + }, + { + title: "Hansel & Gretel: Witch Hunters", + year: 2013, + rating: 6.1, + votes: 172538, + running_times: 5880, + }, + { + title: "Happiness", + year: 1998, + rating: 7.8, + votes: 59093, + running_times: 8040, + }, + { + title: "Happy Death Day", + year: 2017, + rating: 6.5, + votes: 26480, + running_times: 5760, + }, + { + title: "Happy Feet", + year: 2006, + rating: 6.5, + votes: 145943, + running_times: 6480, + }, + { + title: "Happy Feet Two", + year: 2011, + rating: 5.9, + votes: 35383, + running_times: 6000, + }, + { + title: "Happy Gilmore", + year: 1996, + rating: 7, + votes: 168423, + running_times: 5520, + }, + { + title: "Happy-Go-Lucky", + year: 2008, + rating: 7, + votes: 33856, + running_times: 7080, + }, + { + title: "Happythankyoumoreplease", + year: 2010, + rating: 6.8, + votes: 27488, + running_times: 6000, + }, + { + title: "Hard Ball", + year: 2001, + rating: 6.4, + votes: 24106, + running_times: 6540, + }, + { + title: "Hard Candy", + year: 2005, + rating: 7.1, + votes: 140132, + running_times: 6240, + }, + { + title: "Hard Rain", + year: 1998, + rating: 5.8, + votes: 28690, + running_times: 5820, + }, + { + title: "Hard Target", + year: 1993, + rating: 6.1, + votes: 37873, + running_times: 7680, + }, + { + title: "Hard to Kill", + year: 1990, + rating: 5.8, + votes: 23647, + running_times: 5760, + }, + { + title: "Hardcore Henry", + year: 2015, + rating: 6.7, + votes: 66693, + running_times: 5760, + }, + { + title: "Hardware", + year: 1990, + rating: 5.9, + votes: 10673, + running_times: 5640, + }, + { + title: "Harlem Nights", + year: 1989, + rating: 6, + votes: 15812, + running_times: 6960, + }, + { + title: "Harley Davidson and the Marlboro Man", + year: 1991, + rating: 6, + votes: 15709, + running_times: 5880, + }, + { + title: "Harold & Kumar Escape from Guantanamo Bay", + year: 2008, + rating: 6.6, + votes: 119872, + running_times: 6420, + }, + { + title: "Harold & Kumar Go to White Castle", + year: 2004, + rating: 7.1, + votes: 164461, + running_times: 5280, + }, + { + title: "Harold and Maude", + year: 1971, + rating: 8, + votes: 61251, + running_times: 5460, + }, + { + title: "Harry Brown", + year: 2009, + rating: 7.2, + votes: 77817, + running_times: 6180, + }, + { + title: "Harry Potter and the Chamber of Secrets", + year: 2002, + rating: 7.4, + votes: 439161, + running_times: 10440, + }, + { + title: "Harry Potter and the Deathly Hallows: Part 1", + year: 2010, + rating: 7.7, + votes: 374837, + running_times: 8760, + }, + { + title: "Harry Potter and the Deathly Hallows: Part 2", + year: 2011, + rating: 8.1, + votes: 618562, + running_times: 7800, + }, + { + title: "Harry Potter and the Goblet of Fire", + year: 2005, + rating: 7.7, + votes: 435781, + running_times: 9960, + }, + { + title: "Harry Potter and the Half-Blood Prince", + year: 2009, + rating: 7.5, + votes: 368314, + running_times: 9180, + }, + { + title: "Harry Potter and the Order of the Phoenix", + year: 2007, + rating: 7.5, + votes: 402883, + running_times: 8280, + }, + { + title: "Harry Potter and the Prisoner of Azkaban", + year: 2004, + rating: 7.8, + votes: 434113, + running_times: 8520, + }, + { + title: "Harry Potter and the Sorcerer's Stone", + year: 2001, + rating: 7.6, + votes: 506880, + running_times: 9540, + }, + { + title: "Harry and the Hendersons", + year: 1987, + rating: 5.9, + votes: 26455, + running_times: 6600, + }, + { + title: "Harsh Times", + year: 2005, + rating: 6.9, + votes: 57586, + running_times: 6960, + }, + { + title: "Hart's War", + year: 2002, + rating: 6.3, + votes: 46235, + running_times: 7500, + }, + { title: "Harvey", year: 1950, rating: 8, votes: 47393, running_times: 6660 }, + { + title: "Hasee Toh Phasee", + year: 2014, + rating: 6.9, + votes: 11522, + running_times: 8460, + }, + { + title: "Hatchet", + year: 2006, + rating: 5.7, + votes: 24930, + running_times: 5580, + }, + { + title: "Hatchet II", + year: 2010, + rating: 5.5, + votes: 10247, + running_times: 5100, + }, + { + title: "Haunter", + year: 2013, + rating: 5.9, + votes: 14290, + running_times: 5820, + }, + { + title: "Haute tension", + year: 2003, + rating: 6.8, + votes: 59182, + running_times: 5460, + }, + { + title: "Havoc", + year: 2005, + rating: 5.5, + votes: 16845, + running_times: 5580, + }, + { + title: "Haywire", + year: 2011, + rating: 5.8, + votes: 75871, + running_times: 5580, + }, + { + title: "He Got Game", + year: 1998, + rating: 6.9, + votes: 38768, + running_times: 8160, + }, + { + title: "He Never Died", + year: 2015, + rating: 6.4, + votes: 12574, + running_times: 5940, + }, + { + title: "He Was a Quiet Man", + year: 2007, + rating: 6.8, + votes: 20947, + running_times: 5700, + }, + { + title: "He's Just Not That Into You", + year: 2009, + rating: 6.4, + votes: 141177, + running_times: 7740, + }, + { + title: "Head Over Heels", + year: 2001, + rating: 5.4, + votes: 12415, + running_times: 5160, + }, + { + title: "Head in the Clouds", + year: 2004, + rating: 6.6, + votes: 13236, + running_times: 7920, + }, + { + title: "Head of State", + year: 2003, + rating: 5.4, + votes: 15818, + running_times: 5700, + }, + { + title: "Heart and Souls", + year: 1993, + rating: 6.9, + votes: 13971, + running_times: 6240, + }, + { + title: "Heartbreak Ridge", + year: 1986, + rating: 6.8, + votes: 33303, + running_times: 7800, + }, + { + title: "Heartbreakers", + year: 2001, + rating: 6.2, + votes: 46577, + running_times: 7380, + }, + { + title: "Hearts in Atlantis", + year: 2001, + rating: 6.9, + votes: 32398, + running_times: 6060, + }, + { + title: "Hearts of Darkness: A Filmmaker's Apocalypse", + year: 1991, + rating: 8.2, + votes: 15340, + running_times: 5760, + }, + { + title: "Heat", + year: 1995, + rating: 8.2, + votes: 476332, + running_times: 10200, + }, + { + title: "Heathers", + year: 1988, + rating: 7.3, + votes: 68413, + running_times: 6180, + }, + { + title: "Heaven & Earth", + year: 1993, + rating: 6.8, + votes: 11528, + running_times: 8400, + }, + { + title: "Heaven", + year: 2002, + rating: 7.1, + votes: 21401, + running_times: 5820, + }, + { + title: "Heaven Can Wait", + year: 1978, + rating: 6.9, + votes: 15486, + running_times: 6060, + }, + { + title: "Heaven Is for Real", + year: 2014, + rating: 5.8, + votes: 22680, + running_times: 5940, + }, + { + title: "Heaven's Gate", + year: 1980, + rating: 6.8, + votes: 11079, + running_times: 19500, + }, + { + title: "Heavenly Creatures", + year: 1994, + rating: 7.4, + votes: 53288, + running_times: 6480, + }, + { + title: "Heavy Metal", + year: 1981, + rating: 6.7, + votes: 25961, + running_times: 5400, + }, + { + title: "Heavy Weights", + year: 1995, + rating: 6.7, + votes: 21356, + running_times: 6000, + }, + { + title: "Hector and the Search for Happiness", + year: 2014, + rating: 7, + votes: 38151, + running_times: 7200, + }, + { + title: "Hedwig and the Angry Inch", + year: 2001, + rating: 7.8, + votes: 27944, + running_times: 5700, + }, + { + title: "Heisei tanuki gassen ponpoko", + year: 1994, + rating: 7.4, + votes: 16877, + running_times: 7140, + }, + { + title: "Heist", + year: 2001, + rating: 6.6, + votes: 29396, + running_times: 6540, + }, + { + title: "Heist", + year: 2015, + rating: 6.1, + votes: 21521, + running_times: 5580, + }, + { + title: "Hell Ride", + year: 2008, + rating: 5.1, + votes: 14601, + running_times: 5040, + }, + { + title: "Hell or High Water", + year: 2016, + rating: 7.6, + votes: 139821, + running_times: 6120, + }, + { + title: "Hellbound: Hellraiser II", + year: 1988, + rating: 6.5, + votes: 33894, + running_times: 5940, + }, + { + title: "Hellboy", + year: 2004, + rating: 6.8, + votes: 264309, + running_times: 7920, + }, + { + title: "Hellboy II: The Golden Army", + year: 2008, + rating: 7, + votes: 223462, + running_times: 7200, + }, + { + title: "Hello, Dolly!", + year: 1969, + rating: 7.2, + votes: 11068, + running_times: 8760, + }, + { + title: "Hello, My Name Is Doris", + year: 2015, + rating: 6.7, + votes: 14600, + running_times: 5400, + }, + { + title: "Hellraiser", + year: 1987, + rating: 7, + votes: 84790, + running_times: 5640, + }, + { + title: "Hellraiser III: Hell on Earth", + year: 1992, + rating: 5.5, + votes: 22469, + running_times: 5820, + }, + { + title: "Hellraiser: Bloodline", + year: 1996, + rating: 5.1, + votes: 15913, + running_times: 5100, + }, + { + title: "Help!", + year: 1965, + rating: 7.3, + votes: 14710, + running_times: 5520, + }, + { + title: "Henry & June", + year: 1990, + rating: 6.3, + votes: 10875, + running_times: 8160, + }, + { + title: "Henry Poole Is Here", + year: 2008, + rating: 6.5, + votes: 11416, + running_times: 5940, + }, + { + title: "Henry V", + year: 1989, + rating: 7.7, + votes: 25019, + running_times: 8220, + }, + { + title: "Henry's Crime", + year: 2010, + rating: 6, + votes: 16652, + running_times: 6480, + }, + { + title: "Henry: Portrait of a Serial Killer", + year: 1986, + rating: 7, + votes: 25794, + running_times: 4980, + }, + { title: "Her", year: 2013, rating: 8, votes: 412823, running_times: 7560 }, + { + title: "Herbie Fully Loaded", + year: 2005, + rating: 4.8, + votes: 39449, + running_times: 6060, + }, + { + title: "Hercules", + year: 1997, + rating: 7.3, + votes: 162326, + running_times: 5580, + }, + { + title: "Hercules", + year: 2014, + rating: 6, + votes: 126532, + running_times: 6060, + }, + { + title: "Hercules in New York", + year: 1970, + rating: 3.2, + votes: 14990, + running_times: 5460, + }, + { + title: "Here Comes the Boom", + year: 2012, + rating: 6.4, + votes: 78346, + running_times: 6300, + }, + { + title: "Hereafter", + year: 2010, + rating: 6.5, + votes: 83811, + running_times: 7740, + }, + { title: "Hero", year: 1992, rating: 6.5, votes: 18785, running_times: 7140 }, + { + title: "Hesher", + year: 2010, + rating: 7.1, + votes: 46468, + running_times: 6360, + }, + { title: "Hick", year: 2011, rating: 5.7, votes: 17000, running_times: 5940 }, + { + title: "Hidalgo", + year: 2004, + rating: 6.7, + votes: 71055, + running_times: 8160, + }, + { + title: "Hidden", + year: 2015, + rating: 6.4, + votes: 15457, + running_times: 5040, + }, + { + title: "Hidden Figures", + year: 2016, + rating: 7.8, + votes: 130784, + running_times: 7620, + }, + { + title: "Hide and Seek", + year: 2005, + rating: 5.9, + votes: 74510, + running_times: 6060, + }, + { + title: "High Anxiety", + year: 1977, + rating: 6.7, + votes: 16701, + running_times: 5640, + }, + { + title: "High Crimes", + year: 2002, + rating: 6.3, + votes: 33013, + running_times: 6900, + }, + { + title: "High Fidelity", + year: 2000, + rating: 7.5, + votes: 151450, + running_times: 6780, + }, + { + title: "High Noon", + year: 1952, + rating: 8, + votes: 85253, + running_times: 5100, + }, + { + title: "High Plains Drifter", + year: 1973, + rating: 7.6, + votes: 40775, + running_times: 6300, + }, + { + title: "High School High", + year: 1996, + rating: 5.5, + votes: 11436, + running_times: 5160, + }, + { + title: "High School Musical 3: Senior Year", + year: 2008, + rating: 4.6, + votes: 48125, + running_times: 6720, + }, + { + title: "High Sierra", + year: 1941, + rating: 7.6, + votes: 12432, + running_times: 6000, + }, + { + title: "High Society", + year: 1956, + rating: 7, + votes: 11413, + running_times: 6660, + }, + { + title: "High-Rise", + year: 2015, + rating: 5.7, + votes: 28955, + running_times: 7140, + }, + { + title: "Higher Learning", + year: 1995, + rating: 6.5, + votes: 15725, + running_times: 7620, + }, + { + title: "Highlander", + year: 1986, + rating: 7.2, + votes: 105854, + running_times: 6960, + }, + { + title: "Highlander II: The Quickening", + year: 1991, + rating: 4.1, + votes: 38881, + running_times: 6540, + }, + { + title: "Highlander III: The Sorcerer", + year: 1994, + rating: 4.4, + votes: 17489, + running_times: 5940, + }, + { + title: "Highlander: Endgame", + year: 2000, + rating: 4.6, + votes: 17359, + running_times: 6060, + }, + { + title: "Highway", + year: 2014, + rating: 7.6, + votes: 20548, + running_times: 7980, + }, + { + title: "Hiroshima mon amour", + year: 1959, + rating: 8, + votes: 22156, + running_times: 5400, + }, + { + title: "His Girl Friday", + year: 1940, + rating: 8, + votes: 44758, + running_times: 5520, + }, + { + title: "History of the World: Part I", + year: 1981, + rating: 6.9, + votes: 39778, + running_times: 5820, + }, + { + title: "Hit and Run", + year: 2012, + rating: 6.1, + votes: 31091, + running_times: 6000, + }, + { + title: "Hitch", + year: 2005, + rating: 6.6, + votes: 262082, + running_times: 7080, + }, + { + title: "Hitchcock", + year: 2012, + rating: 6.8, + votes: 64671, + running_times: 5880, + }, + { + title: "Hitman", + year: 2007, + rating: 6.3, + votes: 147724, + running_times: 6000, + }, + { + title: "Hitman: Agent 47", + year: 2015, + rating: 5.7, + votes: 74251, + running_times: 5760, + }, + { + title: "Hobo with a Shotgun", + year: 2011, + rating: 6.1, + votes: 39715, + running_times: 5160, + }, + { + title: "Hocus Pocus", + year: 1993, + rating: 6.8, + votes: 70603, + running_times: 5760, + }, + { + title: "Hodejegerne", + year: 2011, + rating: 7.6, + votes: 86454, + running_times: 5760, + }, + { + title: "Hoffa", + year: 1992, + rating: 6.6, + votes: 18392, + running_times: 8400, + }, + { + title: "Hokkabaz", + year: 2006, + rating: 7.5, + votes: 22397, + running_times: 7320, + }, + { + title: "Holes", + year: 2003, + rating: 7.1, + votes: 64114, + running_times: 7020, + }, + { + title: "Holiday", + year: 1938, + rating: 7.9, + votes: 11757, + running_times: 5700, + }, + { + title: "Hollow Man", + year: 2000, + rating: 5.7, + votes: 108608, + running_times: 7140, + }, + { + title: "Hollywood Ending", + year: 2002, + rating: 6.6, + votes: 23284, + running_times: 6720, + }, + { + title: "Hollywood Homicide", + year: 2003, + rating: 5.3, + votes: 32736, + running_times: 6960, + }, + { + title: "Hollywoodland", + year: 2006, + rating: 6.5, + votes: 30461, + running_times: 7560, + }, + { + title: "Holy Man", + year: 1998, + rating: 4.9, + votes: 17246, + running_times: 6840, + }, + { + title: "Holy Motors", + year: 2012, + rating: 7.1, + votes: 33547, + running_times: 6900, + }, + { + title: "Holy Smoke", + year: 1999, + rating: 5.9, + votes: 12767, + running_times: 6900, + }, + { title: "Home", year: 2009, rating: 8.6, votes: 19620, running_times: 7200 }, + { title: "Home", year: 2015, rating: 6.7, votes: 80214, running_times: 5640 }, + { + title: "Home Alone", + year: 1990, + rating: 7.5, + votes: 358522, + running_times: 6180, + }, + { + title: "Home Alone 2: Lost in New York", + year: 1992, + rating: 6.6, + votes: 231633, + running_times: 7200, + }, + { + title: "Home Alone 3", + year: 1997, + rating: 4.3, + votes: 84915, + running_times: 6120, + }, + { + title: "Home Sweet Hell", + year: 2015, + rating: 5.4, + votes: 11800, + running_times: 5880, + }, + { + title: "Home on the Range", + year: 2004, + rating: 5.4, + votes: 15587, + running_times: 4560, + }, + { + title: "Homefront", + year: 2013, + rating: 6.5, + votes: 91464, + running_times: 6000, + }, + { + title: "Homeward Bound II: Lost in San Francisco", + year: 1996, + rating: 5.9, + votes: 11621, + running_times: 5340, + }, + { + title: "Homeward Bound: The Incredible Journey", + year: 1993, + rating: 6.9, + votes: 36406, + running_times: 5040, + }, + { + title: "Honey", + year: 2003, + rating: 5.3, + votes: 39141, + running_times: 5640, + }, + { + title: "Honey I Blew Up the Kid", + year: 1992, + rating: 4.7, + votes: 34738, + running_times: 5340, + }, + { + title: "Honey, I Shrunk the Kids", + year: 1989, + rating: 6.3, + votes: 118405, + running_times: 5580, + }, + { + title: "Honeymoon", + year: 2014, + rating: 5.7, + votes: 20850, + running_times: 5220, + }, + { + title: "Honeymoon in Vegas", + year: 1992, + rating: 5.8, + votes: 15156, + running_times: 5760, + }, + { + title: "Hoodwinked Too! Hood vs. Evil", + year: 2011, + rating: 4.8, + votes: 10424, + running_times: 5160, + }, + { + title: "Hoodwinked!", + year: 2005, + rating: 6.5, + votes: 49338, + running_times: 4800, + }, + { + title: "Hook", + year: 1991, + rating: 6.7, + votes: 198650, + running_times: 8520, + }, + { + title: "Hooligans", + year: 2005, + rating: 7.5, + votes: 127112, + running_times: 6540, + }, + { + title: "Hoop Dreams", + year: 1994, + rating: 8.3, + votes: 20884, + running_times: 10200, + }, + { + title: "Hoosiers", + year: 1986, + rating: 7.6, + votes: 36946, + running_times: 6840, + }, + { title: "Hop", year: 2011, rating: 5.5, votes: 26311, running_times: 5700 }, + { + title: "Hope Floats", + year: 1998, + rating: 5.9, + votes: 20949, + running_times: 6840, + }, + { + title: "Hope Springs", + year: 2012, + rating: 6.3, + votes: 36803, + running_times: 6000, + }, + { + title: "Hope and Glory", + year: 1987, + rating: 7.4, + votes: 10464, + running_times: 6780, + }, + { + title: "Horns", + year: 2013, + rating: 6.5, + votes: 64239, + running_times: 7200, + }, + { + title: "Horrible Bosses", + year: 2011, + rating: 6.9, + votes: 378107, + running_times: 6360, + }, + { + title: "Horrible Bosses 2", + year: 2014, + rating: 6.3, + votes: 131371, + running_times: 6960, + }, + { + title: "Hors de prix", + year: 2006, + rating: 7, + votes: 27628, + running_times: 6360, + }, + { + title: "Horse Feathers", + year: 1932, + rating: 7.7, + votes: 10105, + running_times: 4080, + }, + { + title: "Horsemen", + year: 2009, + rating: 5.6, + votes: 19785, + running_times: 5400, + }, + { + title: "Horton Hears a Who!", + year: 2008, + rating: 6.8, + votes: 114271, + running_times: 5160, + }, + { + title: "Hostage", + year: 2005, + rating: 6.6, + votes: 98148, + running_times: 6780, + }, + { + title: "Hostel", + year: 2005, + rating: 5.9, + votes: 149732, + running_times: 5640, + }, + { + title: "Hostel: Part II", + year: 2007, + rating: 5.5, + votes: 75544, + running_times: 5640, + }, + { + title: "Hot Fuzz", + year: 2007, + rating: 7.9, + votes: 390102, + running_times: 7260, + }, + { + title: "Hot Girls Wanted", + year: 2015, + rating: 6.1, + votes: 11368, + running_times: 5040, + }, + { + title: "Hot Pursuit", + year: 2015, + rating: 5.1, + votes: 41002, + running_times: 5220, + }, + { + title: "Hot Rod", + year: 2007, + rating: 6.7, + votes: 65211, + running_times: 5280, + }, + { + title: "Hot Shots!", + year: 1991, + rating: 6.7, + votes: 86014, + running_times: 5040, + }, + { + title: "Hot Shots! Part Deux", + year: 1993, + rating: 6.6, + votes: 72998, + running_times: 5160, + }, + { + title: "Hot Tub Time Machine", + year: 2010, + rating: 6.4, + votes: 146646, + running_times: 6060, + }, + { + title: "Hot Tub Time Machine 2", + year: 2015, + rating: 5.1, + votes: 32007, + running_times: 5940, + }, + { + title: "Hotel Chevalier", + year: 2007, + rating: 7.3, + votes: 25983, + running_times: 780, + }, + { + title: "Hotel Rwanda", + year: 2004, + rating: 8.1, + votes: 289707, + running_times: 7260, + }, + { + title: "Hotel Transylvania", + year: 2012, + rating: 7.1, + votes: 183497, + running_times: 5460, + }, + { + title: "Hotel Transylvania 2", + year: 2015, + rating: 6.7, + votes: 75463, + running_times: 5340, + }, + { + title: "Hotel for Dogs", + year: 2009, + rating: 5.4, + votes: 18004, + running_times: 6000, + }, + { + title: "Hours", + year: 2013, + rating: 6.5, + votes: 24595, + running_times: 5820, + }, + { + title: "House", + year: 1985, + rating: 6.2, + votes: 18925, + running_times: 5580, + }, + { + title: "House at the End of the Street", + year: 2012, + rating: 5.6, + votes: 62772, + running_times: 6060, + }, + { + title: "House of 1000 Corpses", + year: 2003, + rating: 6, + votes: 65306, + running_times: 6300, + }, + { + title: "House of Games", + year: 1987, + rating: 7.3, + votes: 17627, + running_times: 6120, + }, + { + title: "House of Sand and Fog", + year: 2003, + rating: 7.6, + votes: 59246, + running_times: 7560, + }, + { + title: "House of Wax", + year: 1953, + rating: 7.1, + votes: 13079, + running_times: 5280, + }, + { + title: "House of Wax", + year: 2005, + rating: 5.3, + votes: 101370, + running_times: 6480, + }, + { + title: "House of the Dead", + year: 2003, + rating: 2, + votes: 33466, + running_times: 5400, + }, + { + title: "House on Haunted Hill", + year: 1959, + rating: 6.9, + votes: 18072, + running_times: 4500, + }, + { + title: "House on Haunted Hill", + year: 1999, + rating: 5.6, + votes: 47824, + running_times: 5940, + }, + { + title: "HouseSitter", + year: 1992, + rating: 6, + votes: 18605, + running_times: 6120, + }, + { + title: "Housebound", + year: 2014, + rating: 6.8, + votes: 27690, + running_times: 6420, + }, + { + title: "How Do You Know", + year: 2010, + rating: 5.4, + votes: 37932, + running_times: 7260, + }, + { + title: "How Green Was My Valley", + year: 1941, + rating: 7.8, + votes: 17395, + running_times: 7080, + }, + { + title: "How High", + year: 2001, + rating: 6.3, + votes: 46268, + running_times: 5700, + }, + { + title: "How I Live Now", + year: 2013, + rating: 6.5, + votes: 24050, + running_times: 6060, + }, + { + title: "How the Grinch Stole Christmas", + year: 2000, + rating: 6.1, + votes: 159672, + running_times: 6600, + }, + { + title: "How the West Was Won", + year: 1962, + rating: 7.1, + votes: 15613, + running_times: 9840, + }, + { + title: "How to Be Single", + year: 2016, + rating: 6.1, + votes: 64963, + running_times: 6600, + }, + { + title: "How to Lose Friends & Alienate People", + year: 2008, + rating: 6.4, + votes: 63646, + running_times: 6600, + }, + { + title: "How to Lose a Guy in 10 Days", + year: 2003, + rating: 6.4, + votes: 174435, + running_times: 6960, + }, + { + title: "How to Marry a Millionaire", + year: 1953, + rating: 7, + votes: 17157, + running_times: 5700, + }, + { + title: "How to Steal a Million", + year: 1966, + rating: 7.6, + votes: 19967, + running_times: 7380, + }, + { + title: "How to Train Your Dragon", + year: 2010, + rating: 8.1, + votes: 546154, + running_times: 5880, + }, + { + title: "How to Train Your Dragon 2", + year: 2014, + rating: 7.8, + votes: 246660, + running_times: 6120, + }, + { + title: "Howard the Duck", + year: 1986, + rating: 4.6, + votes: 36526, + running_times: 6600, + }, + { + title: "Howards End", + year: 1992, + rating: 7.5, + votes: 23352, + running_times: 8520, + }, + { title: "Howl", year: 2010, rating: 6.8, votes: 11508, running_times: 5040 }, + { title: "Hud", year: 1963, rating: 7.9, votes: 16445, running_times: 6720 }, + { + title: "Hudson Hawk", + year: 1991, + rating: 5.8, + votes: 46017, + running_times: 6000, + }, + { + title: "Hugo", + year: 2011, + rating: 7.5, + votes: 266903, + running_times: 7560, + }, + { + title: "Hulk", + year: 2003, + rating: 5.7, + votes: 226165, + running_times: 8280, + }, + { + title: "Hum Dil De Chuke Sanam", + year: 1999, + rating: 7.6, + votes: 13474, + running_times: 11280, + }, + { + title: "Hum Tum", + year: 2004, + rating: 7.1, + votes: 11318, + running_times: 8520, + }, + { + title: "Human Nature", + year: 2001, + rating: 6.4, + votes: 16165, + running_times: 5760, + }, + { + title: "Human Traffic", + year: 1999, + rating: 7.1, + votes: 20483, + running_times: 5940, + }, + { + title: "Hummingbird", + year: 2013, + rating: 6.2, + votes: 56975, + running_times: 6000, + }, + { + title: "Hundraåringen som klev ut genom fönstret och försvann", + year: 2013, + rating: 7.1, + votes: 31798, + running_times: 6840, + }, + { + title: "Hung fan kui", + year: 1995, + rating: 6.7, + votes: 32871, + running_times: 6240, + }, + { + title: "Hunger", + year: 2008, + rating: 7.6, + votes: 56874, + running_times: 5760, + }, + { + title: "Hunt for the Wilderpeople", + year: 2016, + rating: 7.9, + votes: 65738, + running_times: 6060, + }, + { + title: "Huo yuanjia", + year: 2006, + rating: 7.7, + votes: 66069, + running_times: 8460, + }, + { + title: "Husbands and Wives", + year: 1992, + rating: 7.6, + votes: 23348, + running_times: 6180, + }, + { title: "Hush", year: 2016, rating: 6.6, votes: 56665, running_times: 4860 }, + { + title: "Hush...Hush, Sweet Charlotte", + year: 1964, + rating: 7.7, + votes: 10077, + running_times: 7980, + }, + { + title: "Hustle & Flow", + year: 2005, + rating: 7.4, + votes: 35128, + running_times: 6960, + }, + { + title: "Hyde Park on Hudson", + year: 2012, + rating: 5.9, + votes: 10079, + running_times: 5640, + }, + { + title: "Hysteria", + year: 2011, + rating: 6.7, + votes: 27483, + running_times: 6000, + }, + { + title: "Hævnen", + year: 2010, + rating: 7.7, + votes: 34828, + running_times: 7140, + }, + { + title: "Höstsonaten", + year: 1978, + rating: 8.3, + votes: 17643, + running_times: 5940, + }, + { + title: "I Am Legend", + year: 2007, + rating: 7.2, + votes: 587088, + running_times: 6240, + }, + { + title: "I Am Number Four", + year: 2011, + rating: 6.1, + votes: 207158, + running_times: 6540, + }, + { + title: "I Am Sam", + year: 2001, + rating: 7.6, + votes: 129669, + running_times: 7920, + }, + { + title: "I Confess", + year: 1953, + rating: 7.3, + votes: 15940, + running_times: 5700, + }, + { + title: "I Could Never Be Your Woman", + year: 2007, + rating: 6, + votes: 15268, + running_times: 5820, + }, + { + title: "I Don't Feel at Home in This World Anymore.", + year: 2017, + rating: 7, + votes: 21910, + running_times: 5580, + }, + { + title: "I Don't Know How She Does It", + year: 2011, + rating: 4.9, + votes: 17591, + running_times: 5340, + }, + { + title: "I Give It a Year", + year: 2013, + rating: 5.7, + votes: 32224, + running_times: 5820, + }, + { + title: "I Heart Huckabees", + year: 2004, + rating: 6.7, + votes: 58804, + running_times: 6420, + }, + { + title: "I Kina spiser de hunde", + year: 1999, + rating: 7.5, + votes: 17406, + running_times: 5460, + }, + { + title: "I Know What You Did Last Summer", + year: 1997, + rating: 5.6, + votes: 114383, + running_times: 6060, + }, + { + title: "I Know Who Killed Me", + year: 2007, + rating: 3.6, + votes: 23923, + running_times: 6300, + }, + { + title: "I Love Trouble", + year: 1994, + rating: 5.2, + votes: 10211, + running_times: 7380, + }, + { + title: "I Love You Phillip Morris", + year: 2009, + rating: 6.6, + votes: 83209, + running_times: 6120, + }, + { + title: "I Love You to Death", + year: 1990, + rating: 6.4, + votes: 11731, + running_times: 5820, + }, + { + title: "I Love You, Beth Cooper", + year: 2009, + rating: 5.3, + votes: 30092, + running_times: 6120, + }, + { + title: "I Love You, Man", + year: 2009, + rating: 7, + votes: 176457, + running_times: 6300, + }, + { + title: "I Now Pronounce You Chuck & Larry", + year: 2007, + rating: 6, + votes: 126959, + running_times: 6900, + }, + { + title: "I Origins", + year: 2014, + rating: 7.3, + votes: 92619, + running_times: 6360, + }, + { + title: "I Spit on Your Grave", + year: 2010, + rating: 6.3, + votes: 62588, + running_times: 6480, + }, + { + title: "I Spit on Your Grave 2", + year: 2013, + rating: 5.7, + votes: 21431, + running_times: 6360, + }, + { + title: "I Spy", + year: 2002, + rating: 5.4, + votes: 44160, + running_times: 5820, + }, + { + title: "I Still Know What You Did Last Summer", + year: 1998, + rating: 4.6, + votes: 59565, + running_times: 6000, + }, + { + title: "I Think I Love My Wife", + year: 2007, + rating: 5.5, + votes: 14333, + running_times: 5640, + }, + { + title: "I'm Gonna Git You Sucka", + year: 1988, + rating: 6.6, + votes: 10536, + running_times: 5280, + }, + { + title: "I'm Not There.", + year: 2007, + rating: 7, + votes: 50996, + running_times: 8100, + }, + { + title: "I'm Still Here", + year: 2010, + rating: 6.2, + votes: 17253, + running_times: 6480, + }, + { + title: "I, Daniel Blake", + year: 2016, + rating: 7.9, + votes: 33594, + running_times: 6000, + }, + { + title: "I, Frankenstein", + year: 2014, + rating: 5.1, + votes: 71379, + running_times: 5520, + }, + { + title: "I, Robot", + year: 2004, + rating: 7.1, + votes: 428767, + running_times: 6900, + }, + { title: "I.Q.", year: 1994, rating: 6.2, votes: 21084, running_times: 6000 }, + { title: "I.T.", year: 2016, rating: 5.4, votes: 10972, running_times: 5700 }, + { + title: "Ice Age", + year: 2002, + rating: 7.6, + votes: 362481, + running_times: 6180, + }, + { + title: "Ice Age: Collision Course", + year: 2016, + rating: 5.7, + votes: 39957, + running_times: 5640, + }, + { + title: "Ice Age: Continental Drift", + year: 2012, + rating: 6.6, + votes: 160411, + running_times: 5280, + }, + { + title: "Ice Age: Dawn of the Dinosaurs", + year: 2009, + rating: 7, + votes: 184847, + running_times: 7320, + }, + { + title: "Ice Age: The Meltdown", + year: 2006, + rating: 6.8, + votes: 214495, + running_times: 6900, + }, + { + title: "Ice Princess", + year: 2005, + rating: 6, + votes: 21459, + running_times: 5880, + }, + { + title: "Identity", + year: 2003, + rating: 7.3, + votes: 194439, + running_times: 5460, + }, + { + title: "Identity Thief", + year: 2013, + rating: 5.7, + votes: 106125, + running_times: 7260, + }, + { + title: "Idiocracy", + year: 2006, + rating: 6.6, + votes: 119657, + running_times: 5040, + }, + { + title: "Idle Hands", + year: 1999, + rating: 6.2, + votes: 35508, + running_times: 5520, + }, + { + title: "If I Stay", + year: 2014, + rating: 6.8, + votes: 97119, + running_times: 6420, + }, + { + title: "If Only", + year: 2004, + rating: 7.2, + votes: 28528, + running_times: 5580, + }, + { + title: "If....", + year: 1968, + rating: 7.7, + votes: 18590, + running_times: 6660, + }, + { + title: "Igby Goes Down", + year: 2002, + rating: 7, + votes: 30041, + running_times: 5940, + }, + { title: "Igor", year: 2008, rating: 6, votes: 20624, running_times: 5220 }, + { + title: "Il conformista", + year: 1970, + rating: 8.1, + votes: 20440, + running_times: 6780, + }, + { + title: "Il divo - La spettacolare vita di Giulio Andreotti", + year: 2008, + rating: 7.3, + votes: 13070, + running_times: 6600, + }, + { + title: "Il grande silenzio", + year: 1968, + rating: 7.8, + votes: 10696, + running_times: 6300, + }, + { + title: "Il racconto dei racconti - Tale of Tales", + year: 2015, + rating: 6.4, + votes: 19327, + running_times: 8040, + }, + { + title: "Il y a longtemps que je t'aime", + year: 2008, + rating: 7.6, + votes: 18473, + running_times: 7020, + }, + { + title: "Im Juli", + year: 2000, + rating: 7.8, + votes: 18049, + running_times: 5940, + }, + { + title: "Imagine Me & You", + year: 2005, + rating: 6.8, + votes: 25393, + running_times: 5400, + }, + { + title: "Imagine That", + year: 2009, + rating: 5.6, + votes: 11384, + running_times: 6420, + }, + { + title: "Imitation of Life", + year: 1959, + rating: 7.9, + votes: 12112, + running_times: 7500, + }, + { + title: "Immortal Beloved", + year: 1994, + rating: 7.5, + votes: 20290, + running_times: 7260, + }, + { + title: "Immortals", + year: 2011, + rating: 6, + votes: 146055, + running_times: 6600, + }, + { + title: "Immortel (ad vitam)", + year: 2004, + rating: 6, + votes: 19010, + running_times: 6180, + }, + { + title: "Imperium", + year: 2016, + rating: 6.5, + votes: 31969, + running_times: 6540, + }, + { + title: "Impostor", + year: 2001, + rating: 6.2, + votes: 20888, + running_times: 6120, + }, + { + title: "In & Out", + year: 1997, + rating: 6.3, + votes: 34168, + running_times: 5400, + }, + { + title: "In America", + year: 2002, + rating: 7.8, + votes: 37906, + running_times: 6300, + }, + { + title: "In Bruges", + year: 2008, + rating: 7.9, + votes: 332444, + running_times: 6420, + }, + { + title: "In Cold Blood", + year: 1967, + rating: 8, + votes: 20567, + running_times: 8040, + }, + { + title: "In Dreams", + year: 1999, + rating: 5.5, + votes: 11367, + running_times: 6000, + }, + { + title: "In Good Company", + year: 2004, + rating: 6.5, + votes: 50486, + running_times: 6540, + }, + { + title: "In Hell", + year: 2003, + rating: 6.3, + votes: 16438, + running_times: 5880, + }, + { + title: "In Her Shoes", + year: 2005, + rating: 6.5, + votes: 54532, + running_times: 7800, + }, + { + title: "In Time", + year: 2011, + rating: 6.7, + votes: 327425, + running_times: 6540, + }, + { + title: "In Your Eyes", + year: 2014, + rating: 7.1, + votes: 26765, + running_times: 6360, + }, + { + title: "In a Lonely Place", + year: 1950, + rating: 8, + votes: 19749, + running_times: 5640, + }, + { + title: "In a World...", + year: 2013, + rating: 6.7, + votes: 28040, + running_times: 5580, + }, + { + title: "In the Army Now", + year: 1994, + rating: 4.8, + votes: 10741, + running_times: 5460, + }, + { + title: "In the Bedroom", + year: 2001, + rating: 7.5, + votes: 33930, + running_times: 8280, + }, + { + title: "In the Company of Men", + year: 1997, + rating: 7.3, + votes: 12049, + running_times: 5820, + }, + { + title: "In the Cut", + year: 2003, + rating: 5.3, + votes: 19559, + running_times: 7140, + }, + { + title: "In the Electric Mist", + year: 2009, + rating: 6.1, + votes: 14439, + running_times: 7020, + }, + { + title: "In the Heart of the Sea", + year: 2015, + rating: 6.9, + votes: 96896, + running_times: 7320, + }, + { + title: "In the Heat of the Night", + year: 1967, + rating: 8, + votes: 55172, + running_times: 6540, + }, + { + title: "In the Land of Blood and Honey", + year: 2011, + rating: 4.4, + votes: 32191, + running_times: 7620, + }, + { + title: "In the Land of Women", + year: 2007, + rating: 6.5, + votes: 28999, + running_times: 5820, + }, + { + title: "In the Line of Fire", + year: 1993, + rating: 7.2, + votes: 79362, + running_times: 8280, + }, + { + title: "In the Loop", + year: 2009, + rating: 7.5, + votes: 47572, + running_times: 6360, + }, + { + title: "In the Mouth of Madness", + year: 1994, + rating: 7.2, + votes: 48288, + running_times: 5700, + }, + { + title: "In the Name of the Father", + year: 1993, + rating: 8.1, + votes: 125082, + running_times: 7980, + }, + { + title: "In the Name of the King: A Dungeon Siege Tale", + year: 2007, + rating: 3.8, + votes: 40212, + running_times: 9360, + }, + { + title: "In the Valley of Elah", + year: 2007, + rating: 7.2, + votes: 63206, + running_times: 7260, + }, + { + title: "Incendies", + year: 2010, + rating: 8.2, + votes: 101345, + running_times: 7860, + }, + { + title: "Inception", + year: 2010, + rating: 8.8, + votes: 1653028, + running_times: 8880, + }, + { + title: "Indecent Proposal", + year: 1993, + rating: 5.8, + votes: 52305, + running_times: 7020, + }, + { + title: "Independence Day", + year: 1996, + rating: 7, + votes: 465279, + running_times: 9240, + }, + { + title: "Independence Day: Resurgence", + year: 2016, + rating: 5.3, + votes: 139960, + running_times: 7200, + }, + { + title: "Indiana Jones and the Kingdom of the Crystal Skull", + year: 2008, + rating: 6.2, + votes: 362353, + running_times: 7320, + }, + { + title: "Indiana Jones and the Last Crusade", + year: 1989, + rating: 8.3, + votes: 574150, + running_times: 7620, + }, + { + title: "Indiana Jones and the Temple of Doom", + year: 1984, + rating: 7.6, + votes: 367264, + running_times: 7080, + }, + { + title: "Indie Game: The Movie", + year: 2012, + rating: 7.7, + votes: 18687, + running_times: 6180, + }, + { + title: "Infamous", + year: 2006, + rating: 7.1, + votes: 14944, + running_times: 7080, + }, + { + title: "Inferno", + year: 1980, + rating: 6.7, + votes: 13844, + running_times: 7200, + }, + { + title: "Inferno", + year: 2016, + rating: 6.2, + votes: 115981, + running_times: 7260, + }, + { + title: "Infini", + year: 2015, + rating: 5.4, + votes: 12268, + running_times: 6600, + }, + { + title: "Infinitely Polar Bear", + year: 2014, + rating: 7, + votes: 12653, + running_times: 5400, + }, + { + title: "Inglourious Basterds", + year: 2009, + rating: 8.3, + votes: 1004190, + running_times: 9180, + }, + { + title: "Ingrid Goes West", + year: 2017, + rating: 6.7, + votes: 10144, + running_times: 5880, + }, + { + title: "Inherent Vice", + year: 2014, + rating: 6.7, + votes: 73405, + running_times: 8880, + }, + { + title: "Inherit the Wind", + year: 1960, + rating: 8.2, + votes: 22703, + running_times: 7680, + }, + { title: "Ink", year: 2009, rating: 7, votes: 19498, running_times: 6420 }, + { + title: "Inkheart", + year: 2008, + rating: 6.1, + votes: 65047, + running_times: 6360, + }, + { + title: "Inland Empire", + year: 2006, + rating: 7, + votes: 46150, + running_times: 11820, + }, + { + title: "Innerspace", + year: 1987, + rating: 6.8, + votes: 45776, + running_times: 7200, + }, + { + title: "Innocence", + year: 2004, + rating: 7.6, + votes: 31374, + running_times: 6000, + }, + { + title: "Inside I'm Dancing", + year: 2004, + rating: 7.9, + votes: 12600, + running_times: 6240, + }, + { + title: "Inside Job", + year: 2010, + rating: 8.3, + votes: 61590, + running_times: 6300, + }, + { + title: "Inside Llewyn Davis", + year: 2013, + rating: 7.5, + votes: 110845, + running_times: 6240, + }, + { + title: "Inside Man", + year: 2006, + rating: 7.6, + votes: 293330, + running_times: 7740, + }, + { + title: "Inside Out", + year: 2015, + rating: 8.2, + votes: 451282, + running_times: 5700, + }, + { + title: "Insidious", + year: 2010, + rating: 6.8, + votes: 229734, + running_times: 6180, + }, + { + title: "Insidious: Chapter 2", + year: 2013, + rating: 6.6, + votes: 125404, + running_times: 6360, + }, + { + title: "Insidious: Chapter 3", + year: 2015, + rating: 6.1, + votes: 69063, + running_times: 5820, + }, + { + title: "Insomnia", + year: 2002, + rating: 7.2, + votes: 238048, + running_times: 7080, + }, + { + title: "Inspector Gadget", + year: 1999, + rating: 4.1, + votes: 39282, + running_times: 6600, + }, + { + title: "Instinct", + year: 1999, + rating: 6.5, + votes: 28930, + running_times: 7560, + }, + { + title: "Insurgent", + year: 2015, + rating: 6.3, + votes: 181020, + running_times: 7140, + }, + { + title: "Intacto", + year: 2001, + rating: 6.9, + votes: 11851, + running_times: 6480, + }, + { + title: "Interiors", + year: 1978, + rating: 7.5, + votes: 15486, + running_times: 5520, + }, + { + title: "Intermission", + year: 2003, + rating: 6.9, + votes: 14149, + running_times: 6300, + }, + { + title: "Internal Affairs", + year: 1990, + rating: 6.5, + votes: 14372, + running_times: 6900, + }, + { + title: "Interstate 60: Episodes of the Road", + year: 2002, + rating: 7.7, + votes: 25480, + running_times: 6960, + }, + { + title: "Interstella 5555: The 5tory of the 5ecret 5tar 5ystem", + year: 2003, + rating: 7.9, + votes: 11987, + running_times: 4080, + }, + { + title: "Interstellar", + year: 2014, + rating: 8.6, + votes: 1119789, + running_times: 10140, + }, + { + title: "Interview", + year: 2007, + rating: 6.8, + votes: 12610, + running_times: 5040, + }, + { + title: "Interview with the Vampire: The Vampire Chronicles", + year: 1994, + rating: 7.6, + votes: 257571, + running_times: 7380, + }, + { + title: "Into the Abyss", + year: 2011, + rating: 7.3, + votes: 13936, + running_times: 6420, + }, + { + title: "Into the Blue", + year: 2005, + rating: 5.8, + votes: 66989, + running_times: 6600, + }, + { + title: "Into the Forest", + year: 2015, + rating: 5.9, + votes: 12306, + running_times: 6060, + }, + { + title: "Into the Storm", + year: 2014, + rating: 5.8, + votes: 57871, + running_times: 5340, + }, + { + title: "Into the White", + year: 2012, + rating: 7.2, + votes: 16822, + running_times: 6240, + }, + { + title: "Into the Wild", + year: 2007, + rating: 8.1, + votes: 478844, + running_times: 8880, + }, + { + title: "Into the Woods", + year: 2014, + rating: 6, + votes: 113738, + running_times: 7500, + }, + { + title: "Intolerable Cruelty", + year: 2003, + rating: 6.3, + votes: 81396, + running_times: 6000, + }, + { + title: "Intouchables", + year: 2011, + rating: 8.6, + votes: 590763, + running_times: 6720, + }, + { + title: "Intruders", + year: 2011, + rating: 5.4, + votes: 18646, + running_times: 6000, + }, + { + title: "Invasion of the Body Snatchers", + year: 1956, + rating: 7.8, + votes: 37639, + running_times: 4800, + }, + { + title: "Invasion of the Body Snatchers", + year: 1978, + rating: 7.4, + votes: 41739, + running_times: 6900, + }, + { + title: "Inventing the Abbotts", + year: 1997, + rating: 6.4, + votes: 10116, + running_times: 6600, + }, + { + title: "Invictus", + year: 2009, + rating: 7.4, + votes: 133507, + running_times: 8040, + }, + { + title: "Invincible", + year: 2006, + rating: 7.1, + votes: 56381, + running_times: 6300, + }, + { + title: "Io sono l'amore", + year: 2009, + rating: 7, + votes: 15807, + running_times: 7200, + }, + { title: "Iris", year: 2001, rating: 7.1, votes: 15548, running_times: 5460 }, + { + title: "Irma la Douce", + year: 1963, + rating: 7.4, + votes: 13869, + running_times: 8820, + }, + { + title: "Iron Eagle", + year: 1986, + rating: 5.3, + votes: 11396, + running_times: 7020, + }, + { + title: "Iron Man", + year: 2008, + rating: 7.9, + votes: 765492, + running_times: 7560, + }, + { + title: "Iron Man 2", + year: 2010, + rating: 7, + votes: 579338, + running_times: 7440, + }, + { + title: "Iron Man Three", + year: 2013, + rating: 7.2, + votes: 613287, + running_times: 11700, + }, + { + title: "Iron Sky", + year: 2012, + rating: 5.9, + votes: 83589, + running_times: 6600, + }, + { + title: "Ironclad", + year: 2011, + rating: 6.2, + votes: 36401, + running_times: 7260, + }, + { + title: "Irrational Man", + year: 2015, + rating: 6.6, + votes: 44129, + running_times: 5700, + }, + { + title: "Irréversible", + year: 2002, + rating: 7.4, + votes: 96418, + running_times: 5940, + }, + { title: "It", year: 2017, rating: 7.7, votes: 193799, running_times: 8100 }, + { + title: "It Comes at Night", + year: 2017, + rating: 6.2, + votes: 42069, + running_times: 5460, + }, + { + title: "It Could Happen to You", + year: 1994, + rating: 6.3, + votes: 29833, + running_times: 6060, + }, + { + title: "It Follows", + year: 2014, + rating: 6.9, + votes: 152676, + running_times: 6000, + }, + { + title: "It Happened One Night", + year: 1934, + rating: 8.2, + votes: 73493, + running_times: 6300, + }, + { + title: "It Might Get Loud", + year: 2008, + rating: 7.6, + votes: 11240, + running_times: 5880, + }, + { + title: "It Takes Two", + year: 1995, + rating: 5.8, + votes: 16405, + running_times: 6060, + }, + { + title: "It's All Gone Pete Tong", + year: 2004, + rating: 7.4, + votes: 17682, + running_times: 5400, + }, + { + title: "It's Complicated", + year: 2009, + rating: 6.6, + votes: 74931, + running_times: 7200, + }, + { + title: "It's Kind of a Funny Story", + year: 2010, + rating: 7.1, + votes: 116972, + running_times: 6060, + }, + { + title: "It's a Boy Girl Thing", + year: 2006, + rating: 6.3, + votes: 34972, + running_times: 5700, + }, + { + title: "It's a Mad Mad Mad Mad World", + year: 1963, + rating: 7.6, + votes: 31888, + running_times: 12300, + }, + { + title: "It's a Wonderful Life", + year: 1946, + rating: 8.6, + votes: 312993, + running_times: 7800, + }, + { + title: "Italiensk for begyndere", + year: 2000, + rating: 7.1, + votes: 11849, + running_times: 7080, + }, + { + title: "J. Edgar", + year: 2011, + rating: 6.6, + votes: 109877, + running_times: 8220, + }, + { title: "JCVD", year: 2008, rating: 7.2, votes: 34799, running_times: 5820 }, + { title: "JFK", year: 1991, rating: 8, votes: 122897, running_times: 12360 }, + { + title: "Jab We Met", + year: 2007, + rating: 8, + votes: 37148, + running_times: 8280, + }, + { + title: "Jabberwocky", + year: 1977, + rating: 6.2, + votes: 10865, + running_times: 6300, + }, + { title: "Jack", year: 1996, rating: 5.8, votes: 49751, running_times: 6780 }, + { + title: "Jack Frost", + year: 1998, + rating: 5.3, + votes: 27169, + running_times: 6060, + }, + { + title: "Jack Reacher", + year: 2012, + rating: 7, + votes: 260550, + running_times: 7800, + }, + { + title: "Jack Reacher: Never Go Back", + year: 2016, + rating: 6.1, + votes: 96285, + running_times: 7080, + }, + { + title: "Jack Ryan: Shadow Recruit", + year: 2014, + rating: 6.2, + votes: 106376, + running_times: 6300, + }, + { + title: "Jack and Jill", + year: 2011, + rating: 3.4, + votes: 65679, + running_times: 5460, + }, + { + title: "Jack the Giant Slayer", + year: 2013, + rating: 6.3, + votes: 115065, + running_times: 6840, + }, + { + title: "Jackass 3D", + year: 2010, + rating: 7, + votes: 50664, + running_times: 6060, + }, + { + title: "Jackass Number Two", + year: 2006, + rating: 7.1, + votes: 59800, + running_times: 5520, + }, + { + title: "Jackass: The Movie", + year: 2002, + rating: 6.6, + votes: 72492, + running_times: 5220, + }, + { + title: "Jackie", + year: 2016, + rating: 6.7, + votes: 54108, + running_times: 6000, + }, + { + title: "Jackie Brown", + year: 1997, + rating: 7.5, + votes: 260746, + running_times: 9240, + }, + { + title: "Jacob's Ladder", + year: 1990, + rating: 7.5, + votes: 83001, + running_times: 6780, + }, + { + title: "Jagged Edge", + year: 1985, + rating: 6.5, + votes: 11243, + running_times: 6480, + }, + { + title: "Jagten", + year: 2012, + rating: 8.3, + votes: 206070, + running_times: 6900, + }, + { + title: "Jakob the Liar", + year: 1999, + rating: 6.5, + votes: 13452, + running_times: 7200, + }, + { + title: "James and the Giant Peach", + year: 1996, + rating: 6.7, + votes: 53040, + running_times: 4740, + }, + { + title: "Jane Austen's Mafia!", + year: 1998, + rating: 5.5, + votes: 13259, + running_times: 5220, + }, + { + title: "Jane Eyre", + year: 2011, + rating: 7.4, + votes: 69801, + running_times: 7200, + }, + { + title: "Jane Got a Gun", + year: 2015, + rating: 5.9, + votes: 16203, + running_times: 5880, + }, + { + title: "Jarhead", + year: 2005, + rating: 7, + votes: 153689, + running_times: 7500, + }, + { + title: "Jason Bourne", + year: 2016, + rating: 6.6, + votes: 168047, + running_times: 7380, + }, + { + title: "Jason Goes to Hell: The Final Friday", + year: 1993, + rating: 4.3, + votes: 21936, + running_times: 5460, + }, + { + title: "Jason Lives: Friday the 13th Part VI", + year: 1986, + rating: 5.9, + votes: 29197, + running_times: 5160, + }, + { + title: "Jason X", + year: 2001, + rating: 4.4, + votes: 42714, + running_times: 5460, + }, + { + title: "Jason and the Argonauts", + year: 1963, + rating: 7.4, + votes: 19059, + running_times: 6240, + }, + { + title: "Jawbreaker", + year: 1999, + rating: 5.5, + votes: 20502, + running_times: 5760, + }, + { title: "Jaws", year: 1975, rating: 8, votes: 461570, running_times: 7800 }, + { + title: "Jaws 2", + year: 1978, + rating: 5.7, + votes: 57309, + running_times: 7860, + }, + { + title: "Jaws 3-D", + year: 1983, + rating: 3.6, + votes: 31520, + running_times: 5940, + }, + { + title: "Jaws: The Revenge", + year: 1987, + rating: 2.9, + votes: 33783, + running_times: 5520, + }, + { + title: "Jay and Silent Bob Strike Back", + year: 2001, + rating: 6.9, + votes: 135086, + running_times: 6240, + }, + { + title: "Jeepers Creepers", + year: 2001, + rating: 6.1, + votes: 96505, + running_times: 5400, + }, + { + title: "Jeepers Creepers II", + year: 2003, + rating: 5.6, + votes: 50446, + running_times: 6240, + }, + { + title: "Jeff, Who Lives at Home", + year: 2011, + rating: 6.5, + votes: 58122, + running_times: 4980, + }, + { + title: "Jennifer Eight", + year: 1992, + rating: 6.2, + votes: 13166, + running_times: 7500, + }, + { + title: "Jennifer's Body", + year: 2009, + rating: 5.1, + votes: 99183, + running_times: 6420, + }, + { + title: "Jeremiah Johnson", + year: 1972, + rating: 7.6, + votes: 23289, + running_times: 6960, + }, + { + title: "Jerry Maguire", + year: 1996, + rating: 7.3, + votes: 206427, + running_times: 8340, + }, + { + title: "Jersey Boys", + year: 2014, + rating: 6.8, + votes: 27880, + running_times: 8040, + }, + { + title: "Jersey Girl", + year: 2004, + rating: 6.2, + votes: 57587, + running_times: 6120, + }, + { + title: "Jessabelle", + year: 2014, + rating: 5.4, + votes: 18987, + running_times: 5400, + }, + { + title: "Jesus Camp", + year: 2006, + rating: 7.5, + votes: 24239, + running_times: 5220, + }, + { + title: "Jesus Christ Superstar", + year: 1973, + rating: 7.3, + votes: 21189, + running_times: 6480, + }, + { + title: "Jigsaw", + year: 2017, + rating: 6.1, + votes: 16047, + running_times: 5520, + }, + { + title: "Jimmy Neutron: Boy Genius", + year: 2001, + rating: 6, + votes: 26177, + running_times: 5040, + }, + { + title: "Jin ling shi san chai", + year: 2011, + rating: 7.6, + votes: 42340, + running_times: 8760, + }, + { + title: "Jing wu men", + year: 1972, + rating: 7.4, + votes: 20490, + running_times: 6480, + }, + { + title: "Jingle All the Way", + year: 1996, + rating: 5.5, + votes: 76054, + running_times: 5640, + }, + { + title: "Joan of Arc", + year: 1999, + rating: 6.4, + votes: 58830, + running_times: 9480, + }, + { title: "Jobs", year: 2013, rating: 5.9, votes: 84088, running_times: 7680 }, + { + title: "Jodorowsky's Dune", + year: 2013, + rating: 8.1, + votes: 16961, + running_times: 5400, + }, + { title: "Joe", year: 2013, rating: 6.9, votes: 39777, running_times: 7020 }, + { + title: "Joe Dirt", + year: 2001, + rating: 5.9, + votes: 44605, + running_times: 5460, + }, + { + title: "Joe Kidd", + year: 1972, + rating: 6.5, + votes: 13727, + running_times: 5280, + }, + { + title: "Joe Versus the Volcano", + year: 1990, + rating: 5.7, + votes: 30028, + running_times: 6120, + }, + { + title: "Joe's Apartment", + year: 1996, + rating: 5.4, + votes: 11193, + running_times: 4800, + }, + { + title: "John Carter", + year: 2012, + rating: 6.6, + votes: 226112, + running_times: 7920, + }, + { + title: "John Dies at the End", + year: 2012, + rating: 6.4, + votes: 32588, + running_times: 5940, + }, + { + title: "John Q", + year: 2002, + rating: 7.1, + votes: 107437, + running_times: 6960, + }, + { + title: "John Tucker Must Die", + year: 2006, + rating: 5.8, + votes: 71843, + running_times: 5700, + }, + { + title: "John Wick", + year: 2014, + rating: 7.3, + votes: 365044, + running_times: 6060, + }, + { + title: "John Wick: Chapter 2", + year: 2017, + rating: 7.5, + votes: 201944, + running_times: 7320, + }, + { + title: "Johnny Dangerously", + year: 1984, + rating: 6.4, + votes: 11727, + running_times: 5400, + }, + { + title: "Johnny English", + year: 2003, + rating: 6.1, + votes: 122454, + running_times: 5280, + }, + { + title: "Johnny English Reborn", + year: 2011, + rating: 6.3, + votes: 96666, + running_times: 6060, + }, + { + title: "Johnny Got His Gun", + year: 1971, + rating: 7.9, + votes: 13068, + running_times: 6660, + }, + { + title: "Johnny Guitar", + year: 1954, + rating: 7.7, + votes: 12458, + running_times: 6600, + }, + { + title: "Johnny Mnemonic", + year: 1995, + rating: 5.6, + votes: 59292, + running_times: 6180, + }, + { + title: "Jonah Hex", + year: 2010, + rating: 4.7, + votes: 48928, + running_times: 4860, + }, + { + title: "Jonas Brothers: The 3D Concert Experience", + year: 2009, + rating: 2.1, + votes: 17138, + running_times: 5100, + }, + { + title: "Joshua", + year: 2007, + rating: 5.9, + votes: 10668, + running_times: 6360, + }, + { + title: "Josie and the Pussycats", + year: 2001, + rating: 5.4, + votes: 19739, + running_times: 5880, + }, + { + title: "Journey 2: The Mysterious Island", + year: 2012, + rating: 5.8, + votes: 74661, + running_times: 5640, + }, + { + title: "Journey to the Center of the Earth", + year: 1959, + rating: 7.1, + votes: 12773, + running_times: 7920, + }, + { + title: "Journey to the Center of the Earth", + year: 2008, + rating: 5.8, + votes: 95171, + running_times: 5580, + }, + { title: "Joy", year: 2015, rating: 6.6, votes: 104704, running_times: 7440 }, + { + title: "Joy Ride", + year: 2001, + rating: 6.6, + votes: 56944, + running_times: 5820, + }, + { + title: "Joyeux Noël", + year: 2005, + rating: 7.8, + votes: 23749, + running_times: 6960, + }, + { + title: "Judge Dredd", + year: 1995, + rating: 5.5, + votes: 96037, + running_times: 5760, + }, + { + title: "Judgment Night", + year: 1993, + rating: 6.6, + votes: 13094, + running_times: 6600, + }, + { + title: "Judgment at Nuremberg", + year: 1961, + rating: 8.3, + votes: 51733, + running_times: 11160, + }, + { + title: "Jue di tao wang", + year: 2016, + rating: 5.7, + votes: 14156, + running_times: 6420, + }, + { + title: "Juice", + year: 1992, + rating: 7.1, + votes: 19092, + running_times: 5700, + }, + { + title: "Jules et Jim", + year: 1962, + rating: 7.9, + votes: 30428, + running_times: 6300, + }, + { + title: "Julie & Julia", + year: 2009, + rating: 7, + votes: 87286, + running_times: 7080, + }, + { + title: "Jumanji", + year: 1995, + rating: 6.9, + votes: 236688, + running_times: 6240, + }, + { + title: "Jumper", + year: 2008, + rating: 6.1, + votes: 258533, + running_times: 5280, + }, + { + title: "Jumpin' Jack Flash", + year: 1986, + rating: 5.8, + votes: 15852, + running_times: 6300, + }, + { + title: "Junebug", + year: 2005, + rating: 7, + votes: 19931, + running_times: 6360, + }, + { + title: "Jungle", + year: 2017, + rating: 6.7, + votes: 16117, + running_times: 6900, + }, + { + title: "Jungle 2 Jungle", + year: 1997, + rating: 5.1, + votes: 19645, + running_times: 6300, + }, + { + title: "Jungle Fever", + year: 1991, + rating: 6.5, + votes: 14456, + running_times: 7920, + }, + { + title: "Junior", + year: 1994, + rating: 4.6, + votes: 57432, + running_times: 6540, + }, + { + title: "Juno", + year: 2007, + rating: 7.5, + votes: 442969, + running_times: 5760, + }, + { + title: "Jupiter Ascending", + year: 2015, + rating: 5.3, + votes: 155246, + running_times: 7620, + }, + { + title: "Jurassic Park", + year: 1993, + rating: 8.1, + votes: 695981, + running_times: 7620, + }, + { + title: "Jurassic Park III", + year: 2001, + rating: 5.9, + votes: 242697, + running_times: 5520, + }, + { + title: "Jurassic World", + year: 2015, + rating: 7, + votes: 476644, + running_times: 7440, + }, + { + title: "Just Before I Go", + year: 2014, + rating: 6.4, + votes: 15316, + running_times: 5700, + }, + { + title: "Just Cause", + year: 1995, + rating: 6.4, + votes: 21147, + running_times: 6120, + }, + { + title: "Just Friends", + year: 2005, + rating: 6.2, + votes: 89395, + running_times: 5760, + }, + { + title: "Just Go with It", + year: 2011, + rating: 6.4, + votes: 187549, + running_times: 7020, + }, + { + title: "Just Like Heaven", + year: 2005, + rating: 6.7, + votes: 88168, + running_times: 5700, + }, + { + title: "Just Married", + year: 2003, + rating: 5.5, + votes: 61009, + running_times: 5700, + }, + { + title: "Just My Luck", + year: 2006, + rating: 5.4, + votes: 47721, + running_times: 6180, + }, + { + title: "Just One of the Guys", + year: 1985, + rating: 6.5, + votes: 10976, + running_times: 6000, + }, + { + title: "Just Visiting", + year: 2001, + rating: 5.8, + votes: 16255, + running_times: 5280, + }, + { + title: "Just Wright", + year: 2010, + rating: 5.9, + votes: 11239, + running_times: 6000, + }, + { + title: "Justice League", + year: 2017, + rating: 7.2, + votes: 141370, + running_times: 7200, + }, + { + title: "Justin Bieber: Never Say Never", + year: 2011, + rating: 1.6, + votes: 74720, + running_times: 6900, + }, + { + title: "K-19: The Widowmaker", + year: 2002, + rating: 6.7, + votes: 52505, + running_times: 8280, + }, + { title: "K-9", year: 1989, rating: 6, votes: 27515, running_times: 6060 }, + { + title: "K-PAX", + year: 2001, + rating: 7.4, + votes: 160033, + running_times: 7200, + }, + { + title: "Kabhi Alvida Naa Kehna", + year: 2006, + rating: 6.1, + votes: 15518, + running_times: 11580, + }, + { + title: "Kabhi Haan Kabhi Naa", + year: 1994, + rating: 8, + votes: 14320, + running_times: 9480, + }, + { + title: "Kabhi Khushi Kabhie Gham...", + year: 2001, + rating: 7.5, + votes: 35341, + running_times: 12600, + }, + { + title: "Kaboom", + year: 2010, + rating: 5.7, + votes: 11187, + running_times: 5160, + }, + { + title: "Kahaani", + year: 2012, + rating: 8.2, + votes: 46148, + running_times: 7320, + }, + { + title: "Kaho Naa... Pyaar Hai", + year: 2000, + rating: 6.9, + votes: 11078, + running_times: 10620, + }, + { + title: "Kalifornia", + year: 1993, + rating: 6.7, + votes: 44968, + running_times: 7080, + }, + { + title: "Kaminey", + year: 2009, + rating: 7.4, + votes: 14048, + running_times: 7800, + }, + { + title: "Kangaroo Jack", + year: 2003, + rating: 4.4, + votes: 25282, + running_times: 5340, + }, + { + title: "Kapringen", + year: 2012, + rating: 7.2, + votes: 13742, + running_times: 6180, + }, + { + title: "Kari-gurashi no Arietti", + year: 2010, + rating: 7.6, + votes: 60734, + running_times: 5640, + }, + { + title: "Kate & Leopold", + year: 2001, + rating: 6.4, + votes: 69690, + running_times: 7380, + }, + { + title: "Katy Perry: Part of Me", + year: 2012, + rating: 5.9, + votes: 12764, + running_times: 5580, + }, + { + title: "Kazaam", + year: 1996, + rating: 2.8, + votes: 20470, + running_times: 5580, + }, + { + title: "Kaze no tani no Naushika", + year: 1984, + rating: 8.1, + votes: 111109, + running_times: 7020, + }, + { + title: "Keanu", + year: 2016, + rating: 6.3, + votes: 35524, + running_times: 6000, + }, + { + title: "Keeping Mum", + year: 2005, + rating: 6.8, + votes: 29947, + running_times: 5940, + }, + { + title: "Keeping Up with the Joneses", + year: 2016, + rating: 5.9, + votes: 42363, + running_times: 6300, + }, + { + title: "Keeping the Faith", + year: 2000, + rating: 6.4, + votes: 46463, + running_times: 7680, + }, + { + title: "Keith", + year: 2008, + rating: 7.5, + votes: 32592, + running_times: 5580, + }, + { + title: "Kelly's Heroes", + year: 1970, + rating: 7.7, + votes: 38115, + running_times: 8640, + }, + { + title: "Ken Park", + year: 2002, + rating: 5.9, + votes: 26369, + running_times: 5880, + }, + { title: "Kes", year: 1969, rating: 7.9, votes: 14791, running_times: 6660 }, + { + title: "Kevin & Perry Go Large", + year: 2000, + rating: 5.4, + votes: 10780, + running_times: 4980, + }, + { + title: "Key Largo", + year: 1948, + rating: 7.9, + votes: 31269, + running_times: 6000, + }, + { + title: "Kick-Ass", + year: 2010, + rating: 7.7, + votes: 469966, + running_times: 7020, + }, + { + title: "Kick-Ass 2", + year: 2013, + rating: 6.6, + votes: 222224, + running_times: 6180, + }, + { + title: "Kickboxer", + year: 1989, + rating: 6.4, + votes: 40995, + running_times: 5820, + }, + { + title: "Kicking & Screaming", + year: 2005, + rating: 5.6, + votes: 32051, + running_times: 5700, + }, + { + title: "Kidnap", + year: 2017, + rating: 5.9, + votes: 19654, + running_times: 5700, + }, + { + title: "Kidnapping Mr. Heineken", + year: 2015, + rating: 6.1, + votes: 15614, + running_times: 5700, + }, + { title: "Kids", year: 1995, rating: 7, votes: 63667, running_times: 5460 }, + { + title: "Kidulthood", + year: 2006, + rating: 6.8, + votes: 16066, + running_times: 5340, + }, + { + title: "Kill Bill: Vol. 1", + year: 2003, + rating: 8.1, + votes: 818635, + running_times: 6720, + }, + { + title: "Kill Bill: Vol. 2", + year: 2004, + rating: 8, + votes: 562155, + running_times: 8220, + }, + { + title: "Kill List", + year: 2011, + rating: 6.4, + votes: 29640, + running_times: 5700, + }, + { + title: "Kill Me Three Times", + year: 2014, + rating: 5.9, + votes: 16475, + running_times: 5400, + }, + { + title: "Kill Your Darlings", + year: 2013, + rating: 6.5, + votes: 29764, + running_times: 6240, + }, + { + title: "Kill the Irishman", + year: 2011, + rating: 7.1, + votes: 38020, + running_times: 6360, + }, + { + title: "Kill the Messenger", + year: 2014, + rating: 7, + votes: 37172, + running_times: 6720, + }, + { + title: "Killer Elite", + year: 2011, + rating: 6.5, + votes: 112178, + running_times: 6960, + }, + { + title: "Killer Joe", + year: 2011, + rating: 6.7, + votes: 63883, + running_times: 6120, + }, + { + title: "Killer Klowns from Outer Space", + year: 1988, + rating: 6.1, + votes: 25861, + running_times: 5400, + }, + { + title: "Killer's Kiss", + year: 1955, + rating: 6.7, + votes: 17257, + running_times: 4020, + }, + { + title: "Killers", + year: 2010, + rating: 5.4, + votes: 77516, + running_times: 6000, + }, + { + title: "Killing Me Softly", + year: 2002, + rating: 5.5, + votes: 15313, + running_times: 6240, + }, + { + title: "Killing Season", + year: 2013, + rating: 5.4, + votes: 31036, + running_times: 5460, + }, + { + title: "Killing Them Softly", + year: 2012, + rating: 6.2, + votes: 118699, + running_times: 9000, + }, + { + title: "Killing Zoe", + year: 1993, + rating: 6.5, + votes: 18088, + running_times: 5940, + }, + { + title: "Killshot", + year: 2008, + rating: 6, + votes: 19189, + running_times: 5700, + }, + { + title: "Kimssi pyoryugi", + year: 2009, + rating: 8.1, + votes: 12593, + running_times: 6960, + }, + { + title: "Kind Hearts and Coronets", + year: 1949, + rating: 8.1, + votes: 29983, + running_times: 6360, + }, + { + title: "Kindergarten Cop", + year: 1990, + rating: 6.1, + votes: 116526, + running_times: 6660, + }, + { + title: "King Arthur", + year: 2004, + rating: 6.3, + votes: 145122, + running_times: 8520, + }, + { + title: "King Arthur: Legend of the Sword", + year: 2017, + rating: 6.9, + votes: 126686, + running_times: 7560, + }, + { + title: "King Kong", + year: 1933, + rating: 7.9, + votes: 69395, + running_times: 7500, + }, + { + title: "King Kong", + year: 1976, + rating: 5.8, + votes: 25327, + running_times: 10920, + }, + { + title: "King Kong", + year: 2005, + rating: 7.2, + votes: 343810, + running_times: 12000, + }, + { + title: "King Ralph", + year: 1991, + rating: 5.2, + votes: 13406, + running_times: 5820, + }, + { + title: "King Solomon's Mines", + year: 1985, + rating: 5.1, + votes: 10636, + running_times: 6000, + }, + { + title: "King of California", + year: 2007, + rating: 6.7, + votes: 20594, + running_times: 5760, + }, + { + title: "King of New York", + year: 1990, + rating: 7, + votes: 25783, + running_times: 6180, + }, + { + title: "Kingdom of Heaven", + year: 2005, + rating: 7.2, + votes: 235089, + running_times: 11640, + }, + { + title: "Kingpin", + year: 1996, + rating: 6.9, + votes: 67678, + running_times: 7020, + }, + { + title: "Kingsglaive: Final Fantasy XV", + year: 2016, + rating: 6.9, + votes: 16107, + running_times: 6600, + }, + { + title: "Kingsman: The Golden Circle", + year: 2017, + rating: 7, + votes: 110963, + running_times: 8460, + }, + { + title: "Kingsman: The Secret Service", + year: 2014, + rating: 7.7, + votes: 484875, + running_times: 7740, + }, + { + title: "Kinky Boots", + year: 2005, + rating: 7.1, + votes: 15459, + running_times: 6420, + }, + { + title: "Kinsey", + year: 2004, + rating: 7.1, + votes: 44243, + running_times: 7080, + }, + { + title: "Kis Uykusu", + year: 2014, + rating: 8.2, + votes: 30351, + running_times: 11760, + }, + { + title: "Kiss Kiss Bang Bang", + year: 2005, + rating: 7.6, + votes: 190431, + running_times: 6180, + }, + { + title: "Kiss Me Deadly", + year: 1955, + rating: 7.7, + votes: 15308, + running_times: 6360, + }, + { + title: "Kiss of Death", + year: 1995, + rating: 5.9, + votes: 15074, + running_times: 6060, + }, + { + title: "Kiss of the Dragon", + year: 2001, + rating: 6.6, + votes: 55800, + running_times: 5880, + }, + { + title: "Kiss of the Spider Woman", + year: 1985, + rating: 7.4, + votes: 11944, + running_times: 7200, + }, + { + title: "Kiss the Girls", + year: 1997, + rating: 6.6, + votes: 55048, + running_times: 6900, + }, + { + title: "Kissing Jessica Stein", + year: 2001, + rating: 6.6, + votes: 14678, + running_times: 5820, + }, + { + title: "Kites", + year: 2010, + rating: 6.1, + votes: 10633, + running_times: 7380, + }, + { + title: "Klute", + year: 1971, + rating: 7.2, + votes: 17394, + running_times: 6840, + }, + { + title: "Knick Knack", + year: 1989, + rating: 7.6, + votes: 10535, + running_times: 240, + }, + { + title: "Knight and Day", + year: 2010, + rating: 6.3, + votes: 159127, + running_times: 7020, + }, + { + title: "Knight of Cups", + year: 2015, + rating: 5.7, + votes: 19328, + running_times: 7080, + }, + { + title: "Knights of Badassdom", + year: 2013, + rating: 5.7, + votes: 17324, + running_times: 5160, + }, + { + title: "Knock Knock", + year: 2015, + rating: 4.9, + votes: 58848, + running_times: 5940, + }, + { + title: "Knock Off", + year: 1998, + rating: 4.8, + votes: 12281, + running_times: 5460, + }, + { + title: "Knockaround Guys", + year: 2001, + rating: 6.1, + votes: 20617, + running_times: 5520, + }, + { + title: "Knocked Up", + year: 2007, + rating: 7, + votes: 315872, + running_times: 7980, + }, + { + title: "Knockin' on Heaven's Door", + year: 1997, + rating: 8, + votes: 22709, + running_times: 5220, + }, + { + title: "Knowing", + year: 2009, + rating: 6.2, + votes: 198560, + running_times: 7260, + }, + { + title: "Koi... Mil Gaya", + year: 2003, + rating: 7.1, + votes: 16564, + running_times: 10260, + }, + { + title: "Kon-Tiki", + year: 2012, + rating: 7.2, + votes: 38464, + running_times: 7080, + }, + { + title: "Kong: Skull Island", + year: 2017, + rating: 6.7, + votes: 179436, + running_times: 7080, + }, + { + title: "Kopps", + year: 2003, + rating: 6.8, + votes: 17114, + running_times: 5400, + }, + { + title: "Koroshiya 1", + year: 2001, + rating: 7.1, + votes: 45555, + running_times: 7740, + }, + { + title: "Koto no ha no niwa", + year: 2013, + rating: 7.6, + votes: 17489, + running_times: 2760, + }, + { + title: "Kraftidioten", + year: 2014, + rating: 7.2, + votes: 15869, + running_times: 6960, + }, + { + title: "Kramer vs. Kramer", + year: 1979, + rating: 7.8, + votes: 107796, + running_times: 6300, + }, + { + title: "Krampus", + year: 2015, + rating: 6.2, + votes: 46500, + running_times: 5880, + }, + { + title: "Krrish", + year: 2006, + rating: 6.3, + votes: 14376, + running_times: 11100, + }, + { + title: "Krull", + year: 1983, + rating: 6.1, + votes: 25399, + running_times: 7260, + }, + { + title: "Kubo and the Two Strings", + year: 2016, + rating: 7.8, + votes: 86088, + running_times: 6060, + }, + { + title: "Kuch Kuch Hota Hai", + year: 1998, + rating: 7.7, + votes: 38584, + running_times: 10620, + }, + { + title: "Kumiko, the Treasure Hunter", + year: 2014, + rating: 6.6, + votes: 10007, + running_times: 6300, + }, + { title: "Kundun", year: 1997, rating: 7, votes: 23036, running_times: 8040 }, + { + title: "Kung Fu Panda", + year: 2008, + rating: 7.6, + votes: 343919, + running_times: 5520, + }, + { + title: "Kung Fu Panda 2", + year: 2011, + rating: 7.3, + votes: 205944, + running_times: 5400, + }, + { + title: "Kung Fu Panda 3", + year: 2016, + rating: 7.1, + votes: 97816, + running_times: 5700, + }, + { + title: "Kung Fury", + year: 2015, + rating: 8.1, + votes: 47091, + running_times: 1860, + }, + { + title: "Kung Pow: Enter the Fist", + year: 2002, + rating: 6.2, + votes: 39822, + running_times: 5220, + }, + { + title: "Kurtlar Vadisi: Irak", + year: 2006, + rating: 5.9, + votes: 15471, + running_times: 7320, + }, + { + title: "L'amant", + year: 1992, + rating: 6.9, + votes: 16277, + running_times: 6960, + }, + { + title: "L'appartement", + year: 1996, + rating: 7.5, + votes: 12177, + running_times: 6960, + }, + { + title: "L'armée des ombres", + year: 1969, + rating: 8.2, + votes: 16310, + running_times: 8700, + }, + { + title: "L'arnacoeur", + year: 2010, + rating: 6.8, + votes: 22667, + running_times: 6300, + }, + { + title: "L'auberge espagnole", + year: 2002, + rating: 7.3, + votes: 36179, + running_times: 7320, + }, + { + title: "L'avventura", + year: 1960, + rating: 7.9, + votes: 20494, + running_times: 8580, + }, + { + title: "L'eclisse", + year: 1962, + rating: 7.9, + votes: 13282, + running_times: 7560, + }, + { + title: "L'ennemi public n°1", + year: 2008, + rating: 7.5, + votes: 25292, + running_times: 7980, + }, + { + title: "L'illusionniste", + year: 2010, + rating: 7.5, + votes: 30209, + running_times: 4800, + }, + { + title: "L'instinct de mort", + year: 2008, + rating: 7.6, + votes: 28541, + running_times: 6780, + }, + { + title: "L'ours", + year: 1988, + rating: 7.7, + votes: 14103, + running_times: 5760, + }, + { + title: "L'écume des jours", + year: 2013, + rating: 6.5, + votes: 13056, + running_times: 7860, + }, + { + title: "L.A. Confidential", + year: 1997, + rating: 8.3, + votes: 453989, + running_times: 8280, + }, + { + title: "L.A. Story", + year: 1991, + rating: 6.7, + votes: 26514, + running_times: 5700, + }, + { title: "LOL", year: 2012, rating: 4.3, votes: 48379, running_times: 5820 }, + { + title: "La Bamba", + year: 1987, + rating: 6.8, + votes: 23070, + running_times: 6480, + }, + { + title: "La La Land", + year: 2016, + rating: 8.1, + votes: 330222, + running_times: 7680, + }, + { title: "La Luna", year: 2011, rating: 8, votes: 10173, running_times: 420 }, + { + title: "La battaglia di Algeri", + year: 1966, + rating: 8.1, + votes: 42954, + running_times: 7260, + }, + { + title: "La belle et la bête", + year: 2014, + rating: 6.4, + votes: 16164, + running_times: 6720, + }, + { + title: "La dolce vita", + year: 1960, + rating: 8.1, + votes: 54029, + running_times: 10800, + }, + { + title: "La grande illusion", + year: 1937, + rating: 8.1, + votes: 29036, + running_times: 6780, + }, + { + title: "La grande vadrouille", + year: 1966, + rating: 8, + votes: 12617, + running_times: 7920, + }, + { + title: "La leggenda del pianista sull'oceano", + year: 1998, + rating: 8.1, + votes: 45764, + running_times: 9900, + }, + { + title: "La marche de l'empereur", + year: 2005, + rating: 7.6, + votes: 50416, + running_times: 4800, + }, + { + title: "La maschera del demonio", + year: 1960, + rating: 7.3, + votes: 10828, + running_times: 5220, + }, + { + title: "La meglio gioventù", + year: 2003, + rating: 8.5, + votes: 17794, + running_times: 21960, + }, + { + title: "La migliore offerta", + year: 2013, + rating: 7.8, + votes: 83547, + running_times: 7860, + }, + { + title: "La montaña sagrada", + year: 1973, + rating: 7.9, + votes: 27321, + running_times: 6840, + }, + { + title: "La môme", + year: 2007, + rating: 7.6, + votes: 72235, + running_times: 8400, + }, + { + title: "La nuit américaine", + year: 1973, + rating: 8.1, + votes: 16124, + running_times: 6900, + }, + { + title: "La règle du jeu", + year: 1939, + rating: 8.1, + votes: 22461, + running_times: 6600, + }, + { + title: "La science des rêves", + year: 2006, + rating: 7.3, + votes: 63946, + running_times: 6300, + }, + { + title: "La tigre e la neve", + year: 2005, + rating: 7.2, + votes: 12250, + running_times: 6840, + }, + { + title: "La vie d'Adèle", + year: 2013, + rating: 7.8, + votes: 109423, + running_times: 10800, + }, + { + title: "La vita è bella", + year: 1997, + rating: 8.6, + votes: 484883, + running_times: 7320, + }, + { + title: "Labor Day", + year: 2013, + rating: 6.9, + votes: 35525, + running_times: 6660, + }, + { + title: "Labyrinth", + year: 1986, + rating: 7.4, + votes: 104063, + running_times: 6060, + }, + { + title: "Ladder 49", + year: 2004, + rating: 6.5, + votes: 50649, + running_times: 6900, + }, + { + title: "Lady Bird", + year: 2017, + rating: 8.4, + votes: 10997, + running_times: 5640, + }, + { + title: "Lady and the Tramp", + year: 1955, + rating: 7.3, + votes: 96911, + running_times: 4560, + }, + { + title: "Lady in the Water", + year: 2006, + rating: 5.6, + votes: 84760, + running_times: 6600, + }, + { + title: "Ladyhawke", + year: 1985, + rating: 7, + votes: 36607, + running_times: 7260, + }, + { + title: "Lagaan: Once Upon a Time in India", + year: 2001, + rating: 8.2, + votes: 83674, + running_times: 13440, + }, + { + title: "Laggies", + year: 2014, + rating: 6.4, + votes: 35284, + running_times: 5940, + }, + { + title: "Lake Mungo", + year: 2008, + rating: 6.1, + votes: 11249, + running_times: 5340, + }, + { + title: "Lake Placid", + year: 1999, + rating: 5.6, + votes: 46572, + running_times: 4920, + }, + { + title: "Lakeview Terrace", + year: 2008, + rating: 6.1, + votes: 43282, + running_times: 6600, + }, + { + title: "Lakposhtha parvaz mikonand", + year: 2004, + rating: 8.1, + votes: 14924, + running_times: 5880, + }, + { + title: "Lakshya", + year: 2004, + rating: 7.9, + votes: 15400, + running_times: 11160, + }, + { + title: "Land of the Dead", + year: 2005, + rating: 6.2, + votes: 83236, + running_times: 5820, + }, + { + title: "Land of the Lost", + year: 2009, + rating: 5.4, + votes: 55270, + running_times: 6120, + }, + { + title: "Lantana", + year: 2001, + rating: 7.3, + votes: 17192, + running_times: 7260, + }, + { + title: "Lara Croft Tomb Raider: The Cradle of Life", + year: 2003, + rating: 5.5, + votes: 111378, + running_times: 7020, + }, + { + title: "Lara Croft: Tomb Raider", + year: 2001, + rating: 5.8, + votes: 169611, + running_times: 6000, + }, + { + title: "Largo Winch", + year: 2008, + rating: 6.5, + votes: 12004, + running_times: 6480, + }, + { + title: "Larry Crowne", + year: 2011, + rating: 6.1, + votes: 54197, + running_times: 5880, + }, + { + title: "Lars and the Real Girl", + year: 2007, + rating: 7.4, + votes: 123925, + running_times: 6360, + }, + { + title: "Last Action Hero", + year: 1993, + rating: 6.3, + votes: 115720, + running_times: 7800, + }, + { + title: "Last Chance Harvey", + year: 2008, + rating: 6.7, + votes: 18870, + running_times: 5580, + }, + { + title: "Last Days", + year: 2005, + rating: 5.8, + votes: 19794, + running_times: 5820, + }, + { + title: "Last Holiday", + year: 2006, + rating: 6.4, + votes: 23312, + running_times: 6720, + }, + { + title: "Last Knights", + year: 2015, + rating: 6.2, + votes: 32149, + running_times: 6900, + }, + { + title: "Last Man Standing", + year: 1996, + rating: 6.4, + votes: 47431, + running_times: 6060, + }, + { + title: "Last Night", + year: 2010, + rating: 6.6, + votes: 42441, + running_times: 5580, + }, + { + title: "Last Shift", + year: 2014, + rating: 5.8, + votes: 12443, + running_times: 5400, + }, + { + title: "Last Vegas", + year: 2013, + rating: 6.6, + votes: 115090, + running_times: 6300, + }, + { + title: "Lat sau san taam", + year: 1992, + rating: 7.9, + votes: 41050, + running_times: 7860, + }, + { + title: "Latter Days", + year: 2003, + rating: 7.1, + votes: 15357, + running_times: 6420, + }, + { + title: "Laura", + year: 1944, + rating: 8.1, + votes: 35204, + running_times: 5280, + }, + { + title: "Laurel Canyon", + year: 2002, + rating: 6.4, + votes: 13693, + running_times: 6180, + }, + { + title: "Laurence Anyways", + year: 2012, + rating: 7.6, + votes: 13696, + running_times: 10080, + }, + { title: "Lava", year: 2014, rating: 7.2, votes: 11034, running_times: 420 }, + { + title: "Law Abiding Citizen", + year: 2009, + rating: 7.4, + votes: 234737, + running_times: 7080, + }, + { + title: "Lawless", + year: 2012, + rating: 7.3, + votes: 201216, + running_times: 6960, + }, + { + title: "Lawrence of Arabia", + year: 1962, + rating: 8.3, + votes: 215696, + running_times: 13680, + }, + { + title: "Laws of Attraction", + year: 2004, + rating: 5.9, + votes: 19929, + running_times: 5400, + }, + { + title: "Layer Cake", + year: 2004, + rating: 7.4, + votes: 143588, + running_times: 6300, + }, + { + title: "Le cinquième élément", + year: 1997, + rating: 7.7, + votes: 374767, + running_times: 7560, + }, + { + title: "Le divorce", + year: 2003, + rating: 4.9, + votes: 10178, + running_times: 7020, + }, + { + title: "Le fabuleux destin d'Amélie Poulain", + year: 2001, + rating: 8.3, + votes: 594927, + running_times: 7320, + }, + { + title: "Le grand bleu", + year: 1988, + rating: 7.6, + votes: 41252, + running_times: 10080, + }, + { + title: "Le locataire", + year: 1976, + rating: 7.8, + votes: 30919, + running_times: 7560, + }, + { + title: "Le mépris", + year: 1963, + rating: 7.7, + votes: 22380, + running_times: 6180, + }, + { + title: "Le procès", + year: 1962, + rating: 7.8, + votes: 15401, + running_times: 7140, + }, + { + title: "Le salaire de la peur", + year: 1953, + rating: 8.2, + votes: 40345, + running_times: 9360, + }, + { + title: "Le violon rouge", + year: 1998, + rating: 7.7, + votes: 28394, + running_times: 8400, + }, + { + title: "Lean on Me", + year: 1989, + rating: 7.4, + votes: 15573, + running_times: 6480, + }, + { + title: "Leap Year", + year: 2010, + rating: 6.5, + votes: 78668, + running_times: 6000, + }, + { + title: "Leap of Faith", + year: 1992, + rating: 6.1, + votes: 10526, + running_times: 6480, + }, + { + title: "Leatherface: Texas Chainsaw Massacre III", + year: 1990, + rating: 5.2, + votes: 11025, + running_times: 5100, + }, + { + title: "Leatherheads", + year: 2008, + rating: 6, + votes: 28907, + running_times: 6840, + }, + { + title: "Leaves of Grass", + year: 2009, + rating: 6.5, + votes: 24966, + running_times: 6300, + }, + { + title: "Leaving Las Vegas", + year: 1995, + rating: 7.6, + votes: 100091, + running_times: 6660, + }, + { + title: "Lebanon", + year: 2009, + rating: 6.9, + votes: 10014, + running_times: 5580, + }, + { + title: "Left Behind", + year: 2014, + rating: 3.1, + votes: 28793, + running_times: 6600, + }, + { + title: "Legally Blonde", + year: 2001, + rating: 6.2, + votes: 147263, + running_times: 5760, + }, + { + title: "Legally Blonde 2: Red, White & Blonde", + year: 2003, + rating: 4.7, + votes: 51197, + running_times: 5700, + }, + { + title: "Legend", + year: 1985, + rating: 6.5, + votes: 50438, + running_times: 6840, + }, + { + title: "Legend", + year: 2015, + rating: 7, + votes: 118845, + running_times: 7920, + }, + { + title: "Legend of the Guardians: The Owls of Ga'Hoole", + year: 2010, + rating: 7, + votes: 70245, + running_times: 6060, + }, + { + title: "Legends of the Fall", + year: 1994, + rating: 7.5, + votes: 122945, + running_times: 7980, + }, + { + title: "Legion", + year: 2010, + rating: 5.2, + votes: 86405, + running_times: 6000, + }, + { + title: "Legionnaire", + year: 1998, + rating: 5.4, + votes: 19924, + running_times: 5940, + }, + { + title: "Lenny", + year: 1974, + rating: 7.6, + votes: 12098, + running_times: 6660, + }, + { + title: "Lepa sela lepo gore", + year: 1996, + rating: 8.7, + votes: 12099, + running_times: 6900, + }, + { + title: "Leprechaun", + year: 1993, + rating: 4.7, + votes: 18932, + running_times: 5520, + }, + { + title: "Les Misérables", + year: 1998, + rating: 7.5, + votes: 34086, + running_times: 8040, + }, + { + title: "Les Misérables", + year: 2012, + rating: 7.6, + votes: 264958, + running_times: 9480, + }, + { + title: "Les amours imaginaires", + year: 2010, + rating: 7.2, + votes: 21824, + running_times: 6060, + }, + { + title: "Les aventures extraordinaires d'Adèle Blanc-Sec", + year: 2010, + rating: 6.3, + votes: 17227, + running_times: 6420, + }, + { + title: "Les diaboliques", + year: 1955, + rating: 8.1, + votes: 47931, + running_times: 7020, + }, + { + title: "Les invasions barbares", + year: 2003, + rating: 7.7, + votes: 25965, + running_times: 6720, + }, + { + title: "Les parapluies de Cherbourg", + year: 1964, + rating: 7.8, + votes: 17936, + running_times: 5460, + }, + { + title: "Les poupées russes", + year: 2005, + rating: 7, + votes: 17598, + running_times: 7740, + }, + { + title: "Les quatre cents coups", + year: 1959, + rating: 8.1, + votes: 79751, + running_times: 5940, + }, + { + title: "Les triplettes de Belleville", + year: 2003, + rating: 7.8, + votes: 45275, + running_times: 4800, + }, + { + title: "Les vacances de Monsieur Hulot", + year: 1953, + rating: 7.6, + votes: 13779, + running_times: 6840, + }, + { + title: "Les visiteurs", + year: 1993, + rating: 7, + votes: 27169, + running_times: 6420, + }, + { + title: "Lesbian Vampire Killers", + year: 2009, + rating: 5.2, + votes: 18201, + running_times: 5280, + }, + { + title: "Less Than Zero", + year: 1987, + rating: 6.4, + votes: 15649, + running_times: 5880, + }, + { + title: "Let Me In", + year: 2010, + rating: 7.2, + votes: 100116, + running_times: 6960, + }, + { + title: "Let's Be Cops", + year: 2014, + rating: 6.5, + votes: 115774, + running_times: 6240, + }, + { + title: "Let's Go to Prison", + year: 2006, + rating: 6, + votes: 20966, + running_times: 5400, + }, + { + title: "Lethal Weapon", + year: 1987, + rating: 7.6, + votes: 206476, + running_times: 7020, + }, + { + title: "Lethal Weapon 2", + year: 1989, + rating: 7.2, + votes: 139179, + running_times: 7080, + }, + { + title: "Lethal Weapon 3", + year: 1992, + rating: 6.7, + votes: 137501, + running_times: 7260, + }, + { + title: "Lethal Weapon 4", + year: 1998, + rating: 6.6, + votes: 136125, + running_times: 7620, + }, + { + title: "Letters from Iwo Jima", + year: 2006, + rating: 7.9, + votes: 139966, + running_times: 8460, + }, + { + title: "Letters to Juliet", + year: 2010, + rating: 6.6, + votes: 80645, + running_times: 6300, + }, + { + title: "Leviathan", + year: 1989, + rating: 5.8, + votes: 14534, + running_times: 5880, + }, + { + title: "Liar Liar", + year: 1997, + rating: 6.8, + votes: 240776, + running_times: 5160, + }, + { + title: "Liberal Arts", + year: 2012, + rating: 6.7, + votes: 31904, + running_times: 5820, + }, + { + title: "Licence to Kill", + year: 1989, + rating: 6.6, + votes: 79978, + running_times: 7980, + }, + { + title: "License to Drive", + year: 1988, + rating: 6.3, + votes: 15196, + running_times: 5280, + }, + { + title: "License to Wed", + year: 2007, + rating: 5.3, + votes: 34018, + running_times: 5460, + }, + { + title: "Lie with Me", + year: 2005, + rating: 5.4, + votes: 12624, + running_times: 5580, + }, + { title: "Life", year: 1999, rating: 6.7, votes: 36663, running_times: 6480 }, + { + title: "Life", + year: 2017, + rating: 6.6, + votes: 137763, + running_times: 6240, + }, + { + title: "Life After Beth", + year: 2014, + rating: 5.6, + votes: 15831, + running_times: 5340, + }, + { + title: "Life Itself", + year: 2014, + rating: 7.8, + votes: 13010, + running_times: 7200, + }, + { + title: "Life as We Know It", + year: 2010, + rating: 6.6, + votes: 104933, + running_times: 6840, + }, + { + title: "Life as a House", + year: 2001, + rating: 7.5, + votes: 40518, + running_times: 7620, + }, + { + title: "Life in a Day", + year: 2011, + rating: 7.7, + votes: 13937, + running_times: 5700, + }, + { + title: "Life of Brian", + year: 1979, + rating: 8.1, + votes: 300297, + running_times: 5640, + }, + { + title: "Life of Crime", + year: 2013, + rating: 5.8, + votes: 14325, + running_times: 5880, + }, + { + title: "Life of Pi", + year: 2012, + rating: 7.9, + votes: 489527, + running_times: 7620, + }, + { + title: "Life or Something Like It", + year: 2002, + rating: 5.8, + votes: 20754, + running_times: 6300, + }, + { + title: "Lifeboat", + year: 1944, + rating: 7.8, + votes: 22355, + running_times: 5820, + }, + { + title: "Lifeforce", + year: 1985, + rating: 6.1, + votes: 17593, + running_times: 6960, + }, + { + title: "Lights Out", + year: 2016, + rating: 6.3, + votes: 84024, + running_times: 4860, + }, + { + title: "Like Crazy", + year: 2011, + rating: 6.7, + votes: 52116, + running_times: 5160, + }, + { + title: "Like Mike", + year: 2002, + rating: 5.2, + votes: 16319, + running_times: 5940, + }, + { + title: "Lilja 4-ever", + year: 2002, + rating: 7.9, + votes: 37844, + running_times: 6540, + }, + { + title: "Lilo & Stitch", + year: 2002, + rating: 7.2, + votes: 133382, + running_times: 5100, + }, + { + title: "Limelight", + year: 1952, + rating: 8.1, + votes: 14677, + running_times: 8820, + }, + { + title: "Limitless", + year: 2011, + rating: 7.4, + votes: 459364, + running_times: 6300, + }, + { + title: "Lincoln", + year: 2012, + rating: 7.4, + votes: 213471, + running_times: 9000, + }, + { + title: "Lion", + year: 2016, + rating: 8.1, + votes: 143387, + running_times: 7080, + }, + { + title: "Lion of the Desert", + year: 1980, + rating: 8.4, + votes: 11257, + running_times: 10380, + }, + { + title: "Lionheart", + year: 1990, + rating: 6.2, + votes: 27363, + running_times: 6480, + }, + { + title: "Lions for Lambs", + year: 2007, + rating: 6.2, + votes: 43204, + running_times: 5520, + }, + { + title: "Little Big Man", + year: 1970, + rating: 7.6, + votes: 28772, + running_times: 8820, + }, + { + title: "Little Black Book", + year: 2004, + rating: 5.3, + votes: 15930, + running_times: 6660, + }, + { + title: "Little Boy", + year: 2015, + rating: 7.4, + votes: 19507, + running_times: 6360, + }, + { + title: "Little Buddha", + year: 1993, + rating: 6, + votes: 13350, + running_times: 8460, + }, + { + title: "Little Children", + year: 2006, + rating: 7.6, + votes: 96874, + running_times: 8220, + }, + { + title: "Little Fockers", + year: 2010, + rating: 5.5, + votes: 92568, + running_times: 5880, + }, + { + title: "Little Giants", + year: 1994, + rating: 6.3, + votes: 21322, + running_times: 6420, + }, + { + title: "Little Man Tate", + year: 1991, + rating: 6.7, + votes: 12292, + running_times: 5940, + }, + { + title: "Little Manhattan", + year: 2005, + rating: 7.6, + votes: 20074, + running_times: 5400, + }, + { + title: "Little Miss Sunshine", + year: 2006, + rating: 7.8, + votes: 384705, + running_times: 6060, + }, + { + title: "Little Nicky", + year: 2000, + rating: 5.3, + votes: 86181, + running_times: 5400, + }, + { + title: "Little Shop of Horrors", + year: 1986, + rating: 6.9, + votes: 54010, + running_times: 6120, + }, + { + title: "Little Voice", + year: 1998, + rating: 7, + votes: 14546, + running_times: 5820, + }, + { + title: "Little Women", + year: 1994, + rating: 7.3, + votes: 39880, + running_times: 6900, + }, + { + title: "Littleman", + year: 2006, + rating: 4.3, + votes: 42807, + running_times: 5880, + }, + { + title: "Live Free or Die Hard", + year: 2007, + rating: 7.2, + votes: 354620, + running_times: 7740, + }, + { + title: "Live and Let Die", + year: 1973, + rating: 6.8, + votes: 81462, + running_times: 7260, + }, + { + title: "Live by Night", + year: 2016, + rating: 6.4, + votes: 37860, + running_times: 7740, + }, + { + title: "Living in Oblivion", + year: 1995, + rating: 7.5, + votes: 13790, + running_times: 5400, + }, + { + title: "Lo imposible", + year: 2012, + rating: 7.6, + votes: 162773, + running_times: 6840, + }, + { + title: "Loaded Weapon 1", + year: 1993, + rating: 6.1, + votes: 39692, + running_times: 5040, + }, + { + title: "Local Hero", + year: 1983, + rating: 7.5, + votes: 17301, + running_times: 6660, + }, + { + title: "Lock Up", + year: 1989, + rating: 6.4, + votes: 32444, + running_times: 6540, + }, + { + title: "Lock, Stock and Two Smoking Barrels", + year: 1998, + rating: 8.2, + votes: 455613, + running_times: 7200, + }, + { + title: "Locke", + year: 2013, + rating: 7.1, + votes: 106566, + running_times: 5100, + }, + { + title: "Lockout", + year: 2012, + rating: 6.1, + votes: 86175, + running_times: 5700, + }, + { + title: "Logan", + year: 2017, + rating: 8.2, + votes: 417826, + running_times: 8220, + }, + { + title: "Logan Lucky", + year: 2017, + rating: 7.1, + votes: 44509, + running_times: 7080, + }, + { + title: "Logan's Run", + year: 1976, + rating: 6.8, + votes: 43654, + running_times: 7140, + }, + { + title: "Lola rennt", + year: 1998, + rating: 7.7, + votes: 170737, + running_times: 4860, + }, + { + title: "Lolita", + year: 1962, + rating: 7.6, + votes: 75313, + running_times: 9180, + }, + { + title: "Lolita", + year: 1997, + rating: 6.9, + votes: 42179, + running_times: 8220, + }, + { + title: "London", + year: 2005, + rating: 6.6, + votes: 20332, + running_times: 5520, + }, + { + title: "London Boulevard", + year: 2010, + rating: 6.2, + votes: 42810, + running_times: 6180, + }, + { + title: "London Has Fallen", + year: 2016, + rating: 5.9, + votes: 108802, + running_times: 5940, + }, + { + title: "Lone Star", + year: 1996, + rating: 7.5, + votes: 24721, + running_times: 8100, + }, + { + title: "Lone Survivor", + year: 2013, + rating: 7.5, + votes: 227936, + running_times: 7260, + }, + { + title: "Lonely Hearts", + year: 2006, + rating: 6.5, + votes: 18568, + running_times: 6480, + }, + { + title: "Look Who's Talking", + year: 1989, + rating: 5.8, + votes: 68218, + running_times: 5580, + }, + { + title: "Look Who's Talking Now", + year: 1993, + rating: 4.2, + votes: 23987, + running_times: 5760, + }, + { + title: "Look Who's Talking Too", + year: 1990, + rating: 4.5, + votes: 39326, + running_times: 4860, + }, + { + title: "Looking for Eric", + year: 2009, + rating: 7.2, + votes: 13977, + running_times: 6960, + }, + { + title: "Looney Tunes: Back in Action", + year: 2003, + rating: 5.7, + votes: 27194, + running_times: 5460, + }, + { + title: "Looper", + year: 2012, + rating: 7.4, + votes: 467183, + running_times: 7140, + }, + { + title: "Lord of Illusions", + year: 1995, + rating: 6.1, + votes: 12128, + running_times: 7260, + }, + { + title: "Lord of War", + year: 2005, + rating: 7.6, + votes: 263932, + running_times: 7320, + }, + { + title: "Lord of the Flies", + year: 1963, + rating: 7, + votes: 14798, + running_times: 5520, + }, + { + title: "Lord of the Flies", + year: 1990, + rating: 6.4, + votes: 24260, + running_times: 5400, + }, + { + title: "Lords of Dogtown", + year: 2005, + rating: 7.1, + votes: 46833, + running_times: 6420, + }, + { title: "Lore", year: 2012, rating: 7.1, votes: 12480, running_times: 6540 }, + { + title: "Lorenzo's Oil", + year: 1992, + rating: 7.2, + votes: 17664, + running_times: 7740, + }, + { + title: "Los abrazos rotos", + year: 2009, + rating: 7.2, + votes: 33706, + running_times: 7620, + }, + { + title: "Los amantes del Círculo Polar", + year: 1998, + rating: 7.8, + votes: 16141, + running_times: 6720, + }, + { + title: "Loser", + year: 2000, + rating: 5.3, + votes: 24126, + running_times: 5880, + }, + { + title: "Lost Highway", + year: 1997, + rating: 7.6, + votes: 108996, + running_times: 8040, + }, + { + title: "Lost Horizon", + year: 1937, + rating: 7.8, + votes: 10155, + running_times: 7920, + }, + { + title: "Lost River", + year: 2014, + rating: 5.8, + votes: 13919, + running_times: 6720, + }, + { + title: "Lost and Delirious", + year: 2001, + rating: 7, + votes: 18057, + running_times: 6180, + }, + { + title: "Lost in Space", + year: 1998, + rating: 5.1, + votes: 61812, + running_times: 7800, + }, + { + title: "Lost in Translation", + year: 2003, + rating: 7.8, + votes: 349205, + running_times: 6120, + }, + { + title: "Love & Basketball", + year: 2000, + rating: 7.2, + votes: 15596, + running_times: 7440, + }, + { + title: "Love & Friendship", + year: 2016, + rating: 6.5, + votes: 18384, + running_times: 5400, + }, + { + title: "Love & Mercy", + year: 2014, + rating: 7.4, + votes: 29208, + running_times: 7260, + }, + { + title: "Love & Other Drugs", + year: 2010, + rating: 6.7, + votes: 156299, + running_times: 6720, + }, + { title: "Love", year: 2015, rating: 6, votes: 27109, running_times: 8100 }, + { + title: "Love Actually", + year: 2003, + rating: 7.7, + votes: 351260, + running_times: 8100, + }, + { + title: "Love Happens", + year: 2009, + rating: 5.6, + votes: 27218, + running_times: 6540, + }, + { + title: "Love Is Strange", + year: 2014, + rating: 6.7, + votes: 10779, + running_times: 5640, + }, + { + title: "Love Potion No. 9", + year: 1992, + rating: 5.6, + votes: 11182, + running_times: 5520, + }, + { + title: "Love Story", + year: 1970, + rating: 6.9, + votes: 24825, + running_times: 5940, + }, + { + title: "Love Wrecked", + year: 2005, + rating: 4.9, + votes: 12563, + running_times: 5220, + }, + { + title: "Love and Death", + year: 1975, + rating: 7.8, + votes: 30482, + running_times: 5100, + }, + { + title: "Love and Other Disasters", + year: 2006, + rating: 6.2, + votes: 12430, + running_times: 5400, + }, + { + title: "Love and Other Impossible Pursuits", + year: 2009, + rating: 6.4, + votes: 16603, + running_times: 7140, + }, + { + title: "Love in the Afternoon", + year: 1957, + rating: 7.3, + votes: 11220, + running_times: 7800, + }, + { + title: "Love in the Time of Cholera", + year: 2007, + rating: 6.4, + votes: 20278, + running_times: 8340, + }, + { + title: "Love the Coopers", + year: 2015, + rating: 5.7, + votes: 14440, + running_times: 6420, + }, + { + title: "Love, Rosie", + year: 2014, + rating: 7.2, + votes: 87349, + running_times: 6120, + }, + { + title: "Lovelace", + year: 2013, + rating: 6.2, + votes: 33759, + running_times: 5580, + }, + { title: "Loving", year: 2016, rating: 7, votes: 22583, running_times: 7380 }, + { + title: "Loving Annabelle", + year: 2006, + rating: 6.6, + votes: 10150, + running_times: 4560, + }, + { + title: "Lucas", + year: 1986, + rating: 6.8, + votes: 12451, + running_times: 6000, + }, + { + title: "Lucky Number Slevin", + year: 2006, + rating: 7.8, + votes: 277942, + running_times: 6600, + }, + { + title: "Lucky You", + year: 2007, + rating: 5.9, + votes: 18963, + running_times: 7440, + }, + { + title: "Lucy", + year: 2014, + rating: 6.4, + votes: 368660, + running_times: 5340, + }, + { + title: "Lucía y el sexo", + year: 2001, + rating: 7.2, + votes: 31388, + running_times: 7680, + }, + { + title: "Lung hing foo dai", + year: 1986, + rating: 7.1, + votes: 14172, + running_times: 5880, + }, + { + title: "Luther", + year: 2003, + rating: 6.6, + votes: 13543, + running_times: 7380, + }, + { + title: "Lymelife", + year: 2008, + rating: 7, + votes: 13184, + running_times: 5700, + }, + { + title: "Léon", + year: 1994, + rating: 8.6, + votes: 819957, + running_times: 8160, + }, + { title: "MASH", year: 1970, rating: 7.6, votes: 59702, running_times: 6960 }, + { + title: "MSG: The Messenger", + year: 2015, + rating: 6.8, + votes: 10998, + running_times: 11820, + }, + { + title: "MacGruber", + year: 2010, + rating: 5.5, + votes: 37968, + running_times: 5700, + }, + { + title: "Macbeth", + year: 2015, + rating: 6.7, + votes: 44443, + running_times: 6780, + }, + { + title: "Machete", + year: 2010, + rating: 6.6, + votes: 174552, + running_times: 6300, + }, + { + title: "Machete Kills", + year: 2013, + rating: 5.6, + votes: 64908, + running_times: 6420, + }, + { + title: "Machine Gun Preacher", + year: 2011, + rating: 6.8, + votes: 57085, + running_times: 7740, + }, + { + title: "Mad City", + year: 1997, + rating: 6.2, + votes: 17393, + running_times: 6900, + }, + { + title: "Mad Dog and Glory", + year: 1993, + rating: 6.2, + votes: 18261, + running_times: 5820, + }, + { + title: "Mad Max", + year: 1979, + rating: 7, + votes: 165182, + running_times: 5580, + }, + { + title: "Mad Max 2", + year: 1981, + rating: 7.6, + votes: 145142, + running_times: 5760, + }, + { + title: "Mad Max Beyond Thunderdome", + year: 1985, + rating: 6.3, + votes: 110404, + running_times: 6420, + }, + { + title: "Mad Max: Fury Road", + year: 2015, + rating: 8.1, + votes: 676904, + running_times: 7200, + }, + { + title: "Mad Money", + year: 2008, + rating: 5.8, + votes: 17870, + running_times: 6240, + }, + { + title: "Madagascar", + year: 2005, + rating: 6.9, + votes: 298407, + running_times: 5160, + }, + { + title: "Madagascar 3: Europe's Most Wanted", + year: 2012, + rating: 6.9, + votes: 132064, + running_times: 5580, + }, + { + title: "Madagascar: Escape 2 Africa", + year: 2008, + rating: 6.7, + votes: 164323, + running_times: 5340, + }, + { title: "Made", year: 2001, rating: 6.4, votes: 15671, running_times: 5700 }, + { + title: "Made in America", + year: 1993, + rating: 4.9, + votes: 12814, + running_times: 6660, + }, + { + title: "Made in Dagenham", + year: 2010, + rating: 7.2, + votes: 12016, + running_times: 6780, + }, + { + title: "Made of Honor", + year: 2008, + rating: 5.9, + votes: 59008, + running_times: 6060, + }, + { + title: "Madea Goes to Jail", + year: 2009, + rating: 4.3, + votes: 10213, + running_times: 6180, + }, + { + title: "Maggie", + year: 2015, + rating: 5.6, + votes: 35761, + running_times: 5700, + }, + { + title: "Maggie's Plan", + year: 2015, + rating: 6.2, + votes: 11381, + running_times: 5880, + }, + { + title: "Magic Mike", + year: 2012, + rating: 6.1, + votes: 116802, + running_times: 6600, + }, + { + title: "Magic Mike XXL", + year: 2015, + rating: 5.6, + votes: 44596, + running_times: 6900, + }, + { + title: "Magic in the Moonlight", + year: 2014, + rating: 6.6, + votes: 54096, + running_times: 5820, + }, + { + title: "Magnolia", + year: 1999, + rating: 8, + votes: 255829, + running_times: 11280, + }, + { + title: "Magnum Force", + year: 1973, + rating: 7.2, + votes: 47198, + running_times: 7440, + }, + { + title: "Maid in Manhattan", + year: 2002, + rating: 5.1, + votes: 73669, + running_times: 6300, + }, + { + title: "Majo no takkyûbin", + year: 1989, + rating: 7.9, + votes: 87286, + running_times: 6180, + }, + { + title: "Major League", + year: 1989, + rating: 7.2, + votes: 52776, + running_times: 6420, + }, + { + title: "Major League II", + year: 1994, + rating: 5.5, + votes: 21849, + running_times: 6300, + }, + { + title: "Major Payne", + year: 1995, + rating: 6.2, + votes: 24817, + running_times: 5700, + }, + { + title: "Malcolm X", + year: 1992, + rating: 7.7, + votes: 69810, + running_times: 12120, + }, + { + title: "Maleficent", + year: 2014, + rating: 7, + votes: 278768, + running_times: 5820, + }, + { + title: "Malibu's Most Wanted", + year: 2003, + rating: 5.1, + votes: 16870, + running_times: 5160, + }, + { + title: "Malice", + year: 1993, + rating: 6.4, + votes: 19587, + running_times: 6420, + }, + { + title: "Mallrats", + year: 1995, + rating: 7.2, + votes: 104168, + running_times: 7380, + }, + { + title: "Malèna", + year: 2000, + rating: 7.5, + votes: 72681, + running_times: 6540, + }, + { + title: "Mama", + year: 2013, + rating: 6.2, + votes: 148340, + running_times: 6000, + }, + { + title: "Mamma Mia!", + year: 2008, + rating: 6.4, + votes: 159125, + running_times: 6480, + }, + { + title: "Man Up", + year: 2015, + rating: 6.8, + votes: 39572, + running_times: 5280, + }, + { + title: "Man of Steel", + year: 2013, + rating: 7.1, + votes: 600877, + running_times: 8580, + }, + { + title: "Man of Tai Chi", + year: 2013, + rating: 6.1, + votes: 30729, + running_times: 6300, + }, + { + title: "Man of the House", + year: 2005, + rating: 5.4, + votes: 20850, + running_times: 6000, + }, + { + title: "Man of the Year", + year: 2006, + rating: 6.2, + votes: 29232, + running_times: 6900, + }, + { + title: "Man on Fire", + year: 2004, + rating: 7.7, + votes: 287637, + running_times: 8760, + }, + { + title: "Man on Wire", + year: 2008, + rating: 7.8, + votes: 45633, + running_times: 5640, + }, + { + title: "Man on a Ledge", + year: 2012, + rating: 6.6, + votes: 131789, + running_times: 6120, + }, + { + title: "Man on the Moon", + year: 1999, + rating: 7.4, + votes: 108535, + running_times: 7080, + }, + { + title: "Management", + year: 2008, + rating: 5.9, + votes: 15648, + running_times: 5640, + }, + { + title: "Manchester by the Sea", + year: 2016, + rating: 7.9, + votes: 169860, + running_times: 8220, + }, + { + title: "Mandela: Long Walk to Freedom", + year: 2013, + rating: 7.1, + votes: 23331, + running_times: 8460, + }, + { + title: "Manderlay", + year: 2005, + rating: 7.4, + votes: 19865, + running_times: 8340, + }, + { + title: "Manhattan", + year: 1979, + rating: 8, + votes: 114313, + running_times: 5760, + }, + { + title: "Manhattan Murder Mystery", + year: 1993, + rating: 7.4, + votes: 31311, + running_times: 6240, + }, + { + title: "Manhunter", + year: 1986, + rating: 7.2, + votes: 54697, + running_times: 7440, + }, + { + title: "Maniac", + year: 1980, + rating: 6.5, + votes: 11244, + running_times: 5220, + }, + { + title: "Maniac", + year: 2012, + rating: 6.1, + votes: 30088, + running_times: 5340, + }, + { + title: "Maniac Cop", + year: 1988, + rating: 6, + votes: 11047, + running_times: 5460, + }, + { + title: "Mannequin", + year: 1987, + rating: 5.8, + votes: 24870, + running_times: 5400, + }, + { + title: "Manos: The Hands of Fate", + year: 1966, + rating: 1.9, + votes: 32272, + running_times: 4200, + }, + { + title: "Mansfield Park", + year: 1999, + rating: 7.1, + votes: 18343, + running_times: 6720, + }, + { + title: "Maps to the Stars", + year: 2014, + rating: 6.2, + votes: 32048, + running_times: 6660, + }, + { + title: "Marathon Man", + year: 1976, + rating: 7.5, + votes: 48758, + running_times: 7500, + }, + { + title: "Marauders", + year: 2016, + rating: 5.5, + votes: 12275, + running_times: 6420, + }, + { + title: "Margaret", + year: 2011, + rating: 6.5, + votes: 13896, + running_times: 11160, + }, + { + title: "Margin Call", + year: 2011, + rating: 7.1, + votes: 100514, + running_times: 6420, + }, + { + title: "Margot at the Wedding", + year: 2007, + rating: 6.1, + votes: 17187, + running_times: 5580, + }, + { + title: "Maria Full of Grace", + year: 2004, + rating: 7.5, + votes: 31731, + running_times: 6060, + }, + { + title: "Marie Antoinette", + year: 2006, + rating: 6.4, + votes: 86766, + running_times: 7380, + }, + { + title: "Marked for Death", + year: 1990, + rating: 5.9, + votes: 16524, + running_times: 5580, + }, + { + title: "Marley & Me", + year: 2008, + rating: 7.1, + votes: 127015, + running_times: 6900, + }, + { title: "Marley", year: 2012, rating: 8, votes: 11860, running_times: 8640 }, + { + title: "Marmaduke", + year: 2010, + rating: 4.2, + votes: 12249, + running_times: 5220, + }, + { + title: "Marnie", + year: 1964, + rating: 7.2, + votes: 37177, + running_times: 7800, + }, + { + title: "Married to the Mob", + year: 1988, + rating: 6.1, + votes: 13549, + running_times: 6240, + }, + { + title: "Mars Attacks!", + year: 1996, + rating: 6.3, + votes: 185254, + running_times: 6360, + }, + { + title: "Mars Needs Moms", + year: 2011, + rating: 5.4, + votes: 18755, + running_times: 5280, + }, + { + title: "Martha Marcy May Marlene", + year: 2011, + rating: 6.9, + votes: 43275, + running_times: 6120, + }, + { + title: "Martian Child", + year: 2007, + rating: 6.8, + votes: 18295, + running_times: 6360, + }, + { + title: "Marty", + year: 1955, + rating: 7.7, + votes: 17265, + running_times: 5640, + }, + { + title: "Marvin's Room", + year: 1996, + rating: 6.7, + votes: 21938, + running_times: 5880, + }, + { + title: "Mary Poppins", + year: 1964, + rating: 7.8, + votes: 120704, + running_times: 8340, + }, + { + title: "Mary Reilly", + year: 1996, + rating: 5.8, + votes: 12578, + running_times: 6480, + }, + { + title: "Mary Shelley's Frankenstein", + year: 1994, + rating: 6.4, + votes: 45406, + running_times: 7380, + }, + { + title: "Mary and Max", + year: 2009, + rating: 8.1, + votes: 134929, + running_times: 5520, + }, + { title: "Mask", year: 1985, rating: 7.2, votes: 22226, running_times: 7620 }, + { + title: "Master and Commander: The Far Side of the World", + year: 2003, + rating: 7.4, + votes: 179736, + running_times: 8280, + }, + { + title: "Masterminds", + year: 2016, + rating: 5.8, + votes: 36500, + running_times: 5700, + }, + { + title: "Masters of the Universe", + year: 1987, + rating: 5.4, + votes: 30771, + running_times: 8340, + }, + { + title: "Match Point", + year: 2005, + rating: 7.7, + votes: 180746, + running_times: 7440, + }, + { + title: "Matchstick Men", + year: 2003, + rating: 7.3, + votes: 112733, + running_times: 6960, + }, + { + title: "Material Girls", + year: 2006, + rating: 3.9, + votes: 19988, + running_times: 5880, + }, + { + title: "Matilda", + year: 1996, + rating: 6.8, + votes: 99960, + running_times: 6120, + }, + { + title: "Maurice", + year: 1987, + rating: 7.7, + votes: 12111, + running_times: 8400, + }, + { + title: "Maverick", + year: 1994, + rating: 7, + votes: 89064, + running_times: 7620, + }, + { title: "Max", year: 2015, rating: 6.8, votes: 22467, running_times: 6660 }, + { + title: "Max Manus", + year: 2008, + rating: 7.3, + votes: 23654, + running_times: 7080, + }, + { + title: "Max Payne", + year: 2008, + rating: 5.4, + votes: 113037, + running_times: 6180, + }, + { + title: "Max Steel", + year: 2016, + rating: 4.6, + votes: 14154, + running_times: 5520, + }, + { + title: "Maximum Overdrive", + year: 1986, + rating: 5.4, + votes: 25300, + running_times: 5880, + }, + { + title: "Maximum Risk", + year: 1996, + rating: 5.5, + votes: 17162, + running_times: 6060, + }, + { title: "May", year: 2002, rating: 6.7, votes: 28776, running_times: 5580 }, + { + title: "Maze Runner: The Scorch Trials", + year: 2015, + rating: 6.3, + votes: 170192, + running_times: 7860, + }, + { + title: "McCabe & Mrs. Miller", + year: 1971, + rating: 7.7, + votes: 18101, + running_times: 7260, + }, + { + title: "McFarland, USA", + year: 2015, + rating: 7.4, + votes: 28260, + running_times: 7740, + }, + { + title: "McLintock!", + year: 1963, + rating: 7.3, + votes: 10231, + running_times: 7620, + }, + { + title: "Me Before You", + year: 2016, + rating: 7.4, + votes: 133986, + running_times: 6360, + }, + { + title: "Me and Earl and the Dying Girl", + year: 2015, + rating: 7.8, + votes: 99372, + running_times: 6300, + }, + { + title: "Me and You and Everyone We Know", + year: 2005, + rating: 7.3, + votes: 32526, + running_times: 5460, + }, + { + title: "Me, Myself & Irene", + year: 2000, + rating: 6.6, + votes: 198415, + running_times: 6960, + }, + { + title: "Mean Creek", + year: 2004, + rating: 7.3, + votes: 28002, + running_times: 5400, + }, + { + title: "Mean Girls", + year: 2004, + rating: 7, + votes: 274107, + running_times: 5820, + }, + { + title: "Mean Machine", + year: 2001, + rating: 6.5, + votes: 31492, + running_times: 5940, + }, + { + title: "Mean Streets", + year: 1973, + rating: 7.4, + votes: 76168, + running_times: 6720, + }, + { + title: "Meatballs", + year: 1979, + rating: 6.2, + votes: 15923, + running_times: 5640, + }, + { + title: "Mechanic: Resurrection", + year: 2016, + rating: 5.7, + votes: 55890, + running_times: 5880, + }, + { + title: "Medianeras", + year: 2011, + rating: 7.6, + votes: 11721, + running_times: 5700, + }, + { + title: "Medicine Man", + year: 1992, + rating: 6, + votes: 18595, + running_times: 6360, + }, + { + title: "Mediterraneo", + year: 1991, + rating: 7.4, + votes: 11592, + running_times: 5760, + }, + { + title: "Meet Dave", + year: 2008, + rating: 4.9, + votes: 33803, + running_times: 5400, + }, + { + title: "Meet Joe Black", + year: 1998, + rating: 7.2, + votes: 182493, + running_times: 10680, + }, + { + title: "Meet John Doe", + year: 1941, + rating: 7.7, + votes: 10038, + running_times: 7320, + }, + { + title: "Meet Me in St. Louis", + year: 1944, + rating: 7.7, + votes: 16521, + running_times: 6780, + }, + { + title: "Meet the Blacks", + year: 2016, + rating: 5.8, + votes: 19571, + running_times: 5640, + }, + { + title: "Meet the Feebles", + year: 1989, + rating: 6.7, + votes: 16761, + running_times: 5820, + }, + { + title: "Meet the Fockers", + year: 2004, + rating: 6.3, + votes: 225530, + running_times: 6900, + }, + { + title: "Meet the Parents", + year: 2000, + rating: 7, + votes: 277578, + running_times: 6480, + }, + { + title: "Meet the Robinsons", + year: 2007, + rating: 6.9, + votes: 74057, + running_times: 5700, + }, + { + title: "Meet the Spartans", + year: 2008, + rating: 2.7, + votes: 93548, + running_times: 5160, + }, + { + title: "Meeting Evil", + year: 2012, + rating: 5.3, + votes: 10575, + running_times: 5340, + }, + { + title: "Megamind", + year: 2010, + rating: 7.3, + votes: 190379, + running_times: 5700, + }, + { + title: "Megan Leavey", + year: 2017, + rating: 7.1, + votes: 11096, + running_times: 6960, + }, + { + title: "Melancholia", + year: 2011, + rating: 7.1, + votes: 141879, + running_times: 8100, + }, + { + title: "Melinda and Melinda", + year: 2004, + rating: 6.5, + votes: 28638, + running_times: 5940, + }, + { + title: "Memento", + year: 2000, + rating: 8.5, + votes: 942167, + running_times: 6780, + }, + { + title: "Memoirs of a Geisha", + year: 2005, + rating: 7.4, + votes: 125653, + running_times: 8700, + }, + { + title: "Memoirs of an Invisible Man", + year: 1992, + rating: 5.9, + votes: 18853, + running_times: 5940, + }, + { + title: "Memorîzu", + year: 1995, + rating: 7.6, + votes: 12744, + running_times: 6780, + }, + { + title: "Memphis Belle", + year: 1990, + rating: 6.9, + votes: 24107, + running_times: 6420, + }, + { + title: "Men at Work", + year: 1990, + rating: 5.9, + votes: 19577, + running_times: 5880, + }, + { + title: "Men in Black", + year: 1997, + rating: 7.3, + votes: 443481, + running_times: 5880, + }, + { + title: "Men in Black 3", + year: 2012, + rating: 6.8, + votes: 285598, + running_times: 6360, + }, + { + title: "Men in Black II", + year: 2002, + rating: 6.1, + votes: 287094, + running_times: 5280, + }, + { + title: "Men of Honor", + year: 2000, + rating: 7.2, + votes: 95757, + running_times: 7740, + }, + { + title: "Men, Women & Children", + year: 2014, + rating: 6.7, + votes: 25774, + running_times: 7140, + }, + { + title: "Menace II Society", + year: 1993, + rating: 7.5, + votes: 43249, + running_times: 5820, + }, + { + title: "Meng long guo jiang", + year: 1972, + rating: 7.3, + votes: 25866, + running_times: 7980, + }, + { + title: "Mercury Rising", + year: 1998, + rating: 6.1, + votes: 58173, + running_times: 6660, + }, + { + title: "Mermaids", + year: 1990, + rating: 6.6, + votes: 24084, + running_times: 6600, + }, + { + title: "Merry Christmas Mr. Lawrence", + year: 1983, + rating: 7.3, + votes: 11952, + running_times: 7380, + }, + { + title: "Message in a Bottle", + year: 1999, + rating: 6.2, + votes: 31337, + running_times: 7560, + }, + { + title: "Metal: A Headbanger's Journey", + year: 2005, + rating: 8.1, + votes: 10570, + running_times: 5880, + }, + { + title: "Metallica Through the Never", + year: 2013, + rating: 7.2, + votes: 14579, + running_times: 5580, + }, + { + title: "Metallica: Some Kind of Monster", + year: 2004, + rating: 7.5, + votes: 14893, + running_times: 8460, + }, + { + title: "Metoroporisu", + year: 2001, + rating: 7.3, + votes: 18053, + running_times: 6780, + }, + { + title: "Metro", + year: 1997, + rating: 5.5, + votes: 22659, + running_times: 7020, + }, + { + title: "Miami Vice", + year: 2006, + rating: 6, + votes: 98088, + running_times: 8400, + }, + { + title: "Michael", + year: 1996, + rating: 5.7, + votes: 36663, + running_times: 6300, + }, + { + title: "Michael Clayton", + year: 2007, + rating: 7.3, + votes: 142224, + running_times: 7140, + }, + { + title: "Michael Collins", + year: 1996, + rating: 7.1, + votes: 25953, + running_times: 7980, + }, + { + title: "Mickey Blue Eyes", + year: 1999, + rating: 5.8, + votes: 31377, + running_times: 6120, + }, + { + title: "Middle Men", + year: 2009, + rating: 6.6, + votes: 34183, + running_times: 6300, + }, + { + title: "Midnight Cowboy", + year: 1969, + rating: 7.9, + votes: 83242, + running_times: 6780, + }, + { + title: "Midnight Express", + year: 1978, + rating: 7.6, + votes: 59898, + running_times: 7260, + }, + { + title: "Midnight Run", + year: 1988, + rating: 7.6, + votes: 59112, + running_times: 7560, + }, + { + title: "Midnight Special", + year: 2016, + rating: 6.7, + votes: 60015, + running_times: 6720, + }, + { + title: "Midnight in Paris", + year: 2011, + rating: 7.7, + votes: 331832, + running_times: 6000, + }, + { + title: "Midnight in the Garden of Good and Evil", + year: 1997, + rating: 6.6, + votes: 33568, + running_times: 9300, + }, + { + title: "Midway", + year: 1976, + rating: 6.8, + votes: 14666, + running_times: 7920, + }, + { + title: "Mighty Aphrodite", + year: 1995, + rating: 7.1, + votes: 34007, + running_times: 5700, + }, + { + title: "Mighty Joe Young", + year: 1998, + rating: 5.6, + votes: 24571, + running_times: 6840, + }, + { + title: "Mighty Morphin Power Rangers: The Movie", + year: 1995, + rating: 5.1, + votes: 21853, + running_times: 5700, + }, + { + title: "Mike and Dave Need Wedding Dates", + year: 2016, + rating: 6, + votes: 63508, + running_times: 5880, + }, + { + title: "Mildred Pierce", + year: 1945, + rating: 8, + votes: 18004, + running_times: 6660, + }, + { + title: "Milk", + year: 2008, + rating: 7.6, + votes: 146757, + running_times: 7680, + }, + { + title: "Miller's Crossing", + year: 1990, + rating: 7.8, + votes: 111289, + running_times: 6900, + }, + { + title: "Million Dollar Arm", + year: 2014, + rating: 7, + votes: 38810, + running_times: 7440, + }, + { + title: "Million Dollar Baby", + year: 2004, + rating: 8.1, + votes: 535783, + running_times: 7920, + }, + { + title: "Millions", + year: 2004, + rating: 6.9, + votes: 22849, + running_times: 5880, + }, + { + title: "Mimi wo sumaseba", + year: 1995, + rating: 8, + votes: 35076, + running_times: 6660, + }, + { + title: "Mimic", + year: 1997, + rating: 5.9, + votes: 39674, + running_times: 6720, + }, + { + title: "Mindhunters", + year: 2004, + rating: 6.4, + votes: 52528, + running_times: 6360, + }, + { + title: "Minions", + year: 2015, + rating: 6.4, + votes: 172484, + running_times: 5460, + }, + { + title: "Minority Report", + year: 2002, + rating: 7.7, + votes: 435364, + running_times: 8700, + }, + { + title: "Miracle", + year: 2004, + rating: 7.5, + votes: 39564, + running_times: 8100, + }, + { + title: "Miracle at St. Anna", + year: 2008, + rating: 6, + votes: 16362, + running_times: 9600, + }, + { + title: "Miracle on 34th Street", + year: 1947, + rating: 7.9, + votes: 33497, + running_times: 6060, + }, + { + title: "Miracle on 34th Street", + year: 1994, + rating: 6.4, + votes: 25109, + running_times: 6840, + }, + { + title: "Miracles from Heaven", + year: 2016, + rating: 7, + votes: 13888, + running_times: 6540, + }, + { + title: "Mirror Mirror", + year: 2012, + rating: 5.6, + votes: 75292, + running_times: 6360, + }, + { + title: "Mirrormask", + year: 2005, + rating: 6.9, + votes: 21061, + running_times: 6060, + }, + { + title: "Mirrors", + year: 2008, + rating: 6.2, + votes: 92362, + running_times: 6720, + }, + { + title: "Misconduct", + year: 2016, + rating: 5.3, + votes: 11364, + running_times: 6360, + }, + { + title: "Misery", + year: 1990, + rating: 7.8, + votes: 149872, + running_times: 6420, + }, + { + title: "Miss Congeniality", + year: 2000, + rating: 6.2, + votes: 152953, + running_times: 6540, + }, + { + title: "Miss Congeniality 2: Armed and Fabulous", + year: 2005, + rating: 5, + votes: 57183, + running_times: 6900, + }, + { + title: "Miss March", + year: 2009, + rating: 5, + votes: 19250, + running_times: 5400, + }, + { + title: "Miss Peregrine's Home for Peculiar Children", + year: 2016, + rating: 6.7, + votes: 121273, + running_times: 7620, + }, + { + title: "Miss Pettigrew Lives for a Day", + year: 2008, + rating: 7.1, + votes: 23635, + running_times: 5520, + }, + { + title: "Miss Potter", + year: 2006, + rating: 7, + votes: 25274, + running_times: 5280, + }, + { + title: "Miss Sloane", + year: 2016, + rating: 7.4, + votes: 32325, + running_times: 7920, + }, + { + title: "Miss You Already", + year: 2015, + rating: 6.8, + votes: 13120, + running_times: 6720, + }, + { + title: "Missing", + year: 1982, + rating: 7.8, + votes: 15297, + running_times: 7320, + }, + { + title: "Missing in Action", + year: 1984, + rating: 5.3, + votes: 11580, + running_times: 6060, + }, + { + title: "Mission to Mars", + year: 2000, + rating: 5.6, + votes: 64003, + running_times: 6840, + }, + { + title: "Mission: Impossible", + year: 1996, + rating: 7.1, + votes: 326602, + running_times: 6600, + }, + { + title: "Mission: Impossible - Ghost Protocol", + year: 2011, + rating: 7.4, + votes: 391959, + running_times: 7920, + }, + { + title: "Mission: Impossible - Rogue Nation", + year: 2015, + rating: 7.4, + votes: 269296, + running_times: 7860, + }, + { + title: "Mission: Impossible II", + year: 2000, + rating: 6.1, + votes: 263036, + running_times: 14400, + }, + { + title: "Mission: Impossible III", + year: 2006, + rating: 6.9, + votes: 278264, + running_times: 7560, + }, + { + title: "Mississippi Burning", + year: 1988, + rating: 7.8, + votes: 71359, + running_times: 7680, + }, + { + title: "Mississippi Grind", + year: 2015, + rating: 6.3, + votes: 13547, + running_times: 6480, + }, + { + title: "Mister Roberts", + year: 1955, + rating: 7.8, + votes: 13571, + running_times: 7380, + }, + { + title: "Mistress America", + year: 2015, + rating: 6.7, + votes: 19864, + running_times: 5040, + }, + { + title: "Moana", + year: 2016, + rating: 7.6, + votes: 169284, + running_times: 6420, + }, + { + title: "Moby Dick", + year: 1956, + rating: 7.4, + votes: 14561, + running_times: 6960, + }, + { + title: "Modern Times", + year: 1936, + rating: 8.5, + votes: 165123, + running_times: 5220, + }, + { + title: "Momentum", + year: 2015, + rating: 5.5, + votes: 10775, + running_times: 5760, + }, + { + title: "Mommie Dearest", + year: 1981, + rating: 6.7, + votes: 12068, + running_times: 7740, + }, + { + title: "Mommy", + year: 2014, + rating: 8.1, + votes: 36886, + running_times: 8340, + }, + { + title: "Moms' Night Out", + year: 2014, + rating: 5.5, + votes: 11563, + running_times: 5880, + }, + { + title: "Mona Lisa", + year: 1986, + rating: 7.4, + votes: 10846, + running_times: 6240, + }, + { + title: "Mona Lisa Smile", + year: 2003, + rating: 6.4, + votes: 66594, + running_times: 7020, + }, + { + title: "Money Monster", + year: 2016, + rating: 6.5, + votes: 74698, + running_times: 5880, + }, + { + title: "Money Talks", + year: 1997, + rating: 6.2, + votes: 23953, + running_times: 5820, + }, + { + title: "Money Train", + year: 1995, + rating: 5.6, + votes: 34379, + running_times: 6600, + }, + { + title: "Moneyball", + year: 2011, + rating: 7.6, + votes: 305109, + running_times: 7980, + }, + { + title: "Monkey Business", + year: 1952, + rating: 7, + votes: 10755, + running_times: 5820, + }, + { + title: "Monkeybone", + year: 2001, + rating: 4.7, + votes: 15142, + running_times: 5580, + }, + { + title: "Monsieur Lazhar", + year: 2011, + rating: 7.5, + votes: 17159, + running_times: 5640, + }, + { + title: "Monsieur Verdoux", + year: 1947, + rating: 8, + votes: 12827, + running_times: 7440, + }, + { + title: "Monsoon Wedding", + year: 2001, + rating: 7.4, + votes: 21016, + running_times: 6840, + }, + { + title: "Monster", + year: 2003, + rating: 7.3, + votes: 115609, + running_times: 6540, + }, + { + title: "Monster House", + year: 2006, + rating: 6.6, + votes: 80929, + running_times: 5460, + }, + { + title: "Monster Trucks", + year: 2016, + rating: 5.7, + votes: 10288, + running_times: 6240, + }, + { + title: "Monster's Ball", + year: 2001, + rating: 7.1, + votes: 75193, + running_times: 6720, + }, + { + title: "Monster-in-Law", + year: 2005, + rating: 5.5, + votes: 47838, + running_times: 6060, + }, + { + title: "Monsters", + year: 2010, + rating: 6.4, + votes: 80963, + running_times: 5640, + }, + { + title: "Monsters University", + year: 2013, + rating: 7.3, + votes: 263070, + running_times: 6240, + }, + { + title: "Monsters vs. Aliens", + year: 2009, + rating: 6.5, + votes: 125293, + running_times: 5640, + }, + { + title: "Monsters, Inc.", + year: 2001, + rating: 8.1, + votes: 661782, + running_times: 5520, + }, + { + title: "Monte Carlo", + year: 2011, + rating: 5.8, + votes: 36047, + running_times: 6540, + }, + { + title: "Monty Python Live at the Hollywood Bowl", + year: 1982, + rating: 7.9, + votes: 12068, + running_times: 4620, + }, + { + title: "Monty Python and the Holy Grail", + year: 1975, + rating: 8.3, + votes: 419568, + running_times: 5460, + }, + { + title: "Moon", + year: 2009, + rating: 7.9, + votes: 286855, + running_times: 5820, + }, + { + title: "Moonlight", + year: 2016, + rating: 7.5, + votes: 171817, + running_times: 6660, + }, + { + title: "Moonlight Mile", + year: 2002, + rating: 6.7, + votes: 12518, + running_times: 8760, + }, + { + title: "Moonraker", + year: 1979, + rating: 6.3, + votes: 75827, + running_times: 7560, + }, + { + title: "Moonrise Kingdom", + year: 2012, + rating: 7.8, + votes: 264990, + running_times: 5640, + }, + { + title: "Moonstruck", + year: 1987, + rating: 7.1, + votes: 39131, + running_times: 6120, + }, + { + title: "Moonwalker", + year: 1988, + rating: 6, + votes: 13485, + running_times: 5580, + }, + { + title: "Morgan", + year: 2016, + rating: 5.8, + votes: 28784, + running_times: 5520, + }, + { + title: "Morning Glory", + year: 2010, + rating: 6.5, + votes: 63060, + running_times: 6420, + }, + { + title: "Mortal Kombat", + year: 1995, + rating: 5.8, + votes: 87746, + running_times: 6060, + }, + { + title: "Mortal Kombat: Annihilation", + year: 1997, + rating: 3.7, + votes: 39249, + running_times: 5700, + }, + { + title: "Mortdecai", + year: 2015, + rating: 5.5, + votes: 54994, + running_times: 6420, + }, + { + title: "Morte a Venezia", + year: 1971, + rating: 7.5, + votes: 15085, + running_times: 7800, + }, + { + title: "Mother and Child", + year: 2009, + rating: 7.2, + votes: 10396, + running_times: 7500, + }, + { + title: "Mother!", + year: 2017, + rating: 6.9, + votes: 65060, + running_times: 7260, + }, + { + title: "Mother's Day", + year: 2010, + rating: 6.3, + votes: 14047, + running_times: 6720, + }, + { + title: "Mother's Day", + year: 2016, + rating: 5.6, + votes: 23336, + running_times: 7080, + }, + { + title: "Mou gaan dou", + year: 2002, + rating: 8.1, + votes: 101710, + running_times: 6060, + }, + { + title: "Mou gaan dou II", + year: 2003, + rating: 7.4, + votes: 14467, + running_times: 7140, + }, + { + title: "Moulin Rouge!", + year: 2001, + rating: 7.6, + votes: 238849, + running_times: 7620, + }, + { + title: "Mousehunt", + year: 1997, + rating: 6.4, + votes: 44738, + running_times: 5880, + }, + { + title: "Movie 43", + year: 2013, + rating: 4.3, + votes: 86504, + running_times: 5640, + }, + { + title: "Mr 3000", + year: 2004, + rating: 5.5, + votes: 12827, + running_times: 6240, + }, + { + title: "Mr. & Mrs. Smith", + year: 2005, + rating: 6.5, + votes: 384128, + running_times: 7560, + }, + { + title: "Mr. Bean's Holiday", + year: 2007, + rating: 6.3, + votes: 97284, + running_times: 5400, + }, + { + title: "Mr. Brooks", + year: 2007, + rating: 7.3, + votes: 130745, + running_times: 7200, + }, + { + title: "Mr. Church", + year: 2016, + rating: 7.6, + votes: 18951, + running_times: 6240, + }, + { + title: "Mr. Deeds", + year: 2002, + rating: 5.8, + votes: 119207, + running_times: 5760, + }, + { + title: "Mr. Deeds Goes to Town", + year: 1936, + rating: 8, + votes: 16367, + running_times: 6900, + }, + { + title: "Mr. Destiny", + year: 1990, + rating: 6.3, + votes: 10098, + running_times: 6600, + }, + { + title: "Mr. Holland's Opus", + year: 1995, + rating: 7.3, + votes: 31822, + running_times: 8580, + }, + { + title: "Mr. Holmes", + year: 2015, + rating: 6.9, + votes: 52427, + running_times: 6240, + }, + { + title: "Mr. Magoo", + year: 1997, + rating: 3.9, + votes: 12824, + running_times: 5220, + }, + { + title: "Mr. Magorium's Wonder Emporium", + year: 2007, + rating: 6.2, + votes: 37848, + running_times: 5580, + }, + { + title: "Mr. Mom", + year: 1983, + rating: 6.5, + votes: 17571, + running_times: 5460, + }, + { + title: "Mr. Morgan's Last Love", + year: 2013, + rating: 6.8, + votes: 10599, + running_times: 6660, + }, + { + title: "Mr. Nobody", + year: 2009, + rating: 7.9, + votes: 176739, + running_times: 9420, + }, + { + title: "Mr. Peabody & Sherman", + year: 2014, + rating: 6.8, + votes: 53028, + running_times: 5520, + }, + { + title: "Mr. Popper's Penguins", + year: 2011, + rating: 6, + votes: 73897, + running_times: 5640, + }, + { + title: "Mr. Right", + year: 2015, + rating: 6.3, + votes: 34544, + running_times: 5700, + }, + { + title: "Mr. Smith Goes to Washington", + year: 1939, + rating: 8.2, + votes: 85911, + running_times: 7740, + }, + { + title: "Mr. Turner", + year: 2014, + rating: 6.8, + votes: 20793, + running_times: 9000, + }, + { + title: "Mr. Woodcock", + year: 2007, + rating: 5.1, + votes: 32431, + running_times: 5220, + }, + { + title: "Mrs Brown", + year: 1997, + rating: 7.3, + votes: 11844, + running_times: 6060, + }, + { + title: "Mrs Henderson Presents", + year: 2005, + rating: 7.1, + votes: 14089, + running_times: 6180, + }, + { + title: "Mrs. Doubtfire", + year: 1993, + rating: 6.9, + votes: 201287, + running_times: 7500, + }, + { + title: "Mrs. Miniver", + year: 1942, + rating: 7.6, + votes: 12803, + running_times: 8040, + }, + { + title: "Much Ado About Nothing", + year: 1993, + rating: 7.4, + votes: 39702, + running_times: 6660, + }, + { + title: "Much Ado About Nothing", + year: 2012, + rating: 7.2, + votes: 14790, + running_times: 6540, + }, + { title: "Mud", year: 2012, rating: 7.4, votes: 147427, running_times: 7800 }, + { + title: "Mulan", + year: 1998, + rating: 7.6, + votes: 196734, + running_times: 5280, + }, + { + title: "Mulholland Dr.", + year: 2001, + rating: 8, + votes: 267364, + running_times: 8820, + }, + { + title: "Mulholland Falls", + year: 1996, + rating: 6.2, + votes: 13844, + running_times: 6420, + }, + { + title: "Multiplicity", + year: 1996, + rating: 6, + votes: 26392, + running_times: 7020, + }, + { + title: "Munich", + year: 2005, + rating: 7.6, + votes: 188027, + running_times: 9840, + }, + { + title: "Muppet Treasure Island", + year: 1996, + rating: 6.9, + votes: 17495, + running_times: 5940, + }, + { + title: "Muppets Most Wanted", + year: 2014, + rating: 6.4, + votes: 26686, + running_times: 7140, + }, + { + title: "Muppets from Space", + year: 1999, + rating: 6.3, + votes: 15770, + running_times: 5280, + }, + { + title: "Murder at 1600", + year: 1997, + rating: 6.1, + votes: 25149, + running_times: 6480, + }, + { + title: "Murder by Death", + year: 1976, + rating: 7.4, + votes: 27268, + running_times: 5640, + }, + { + title: "Murder by Numbers", + year: 2002, + rating: 6.1, + votes: 46580, + running_times: 6900, + }, + { + title: "Murder in the First", + year: 1995, + rating: 7.3, + votes: 23309, + running_times: 7320, + }, + { + title: "Murder on the Orient Express", + year: 1974, + rating: 7.3, + votes: 43168, + running_times: 7680, + }, + { + title: "Murder on the Orient Express", + year: 2017, + rating: 6.8, + votes: 55516, + running_times: 6840, + }, + { + title: "Muriel's Wedding", + year: 1994, + rating: 7.2, + votes: 30018, + running_times: 6360, + }, + { + title: "Music and Lyrics", + year: 2007, + rating: 6.5, + votes: 86957, + running_times: 6360, + }, + { + title: "Music of the Heart", + year: 1999, + rating: 6.8, + votes: 10711, + running_times: 7440, + }, + { + title: "Must Love Dogs", + year: 2005, + rating: 5.9, + votes: 27642, + running_times: 5880, + }, + { + title: "Mutant Chronicles", + year: 2008, + rating: 5.2, + votes: 24332, + running_times: 6660, + }, + { + title: "Mutiny on the Bounty", + year: 1935, + rating: 7.8, + votes: 17571, + running_times: 7920, + }, + { + title: "Mutiny on the Bounty", + year: 1962, + rating: 7.2, + votes: 12571, + running_times: 11100, + }, + { + title: "My Beautiful Laundrette", + year: 1985, + rating: 6.9, + votes: 11620, + running_times: 5820, + }, + { + title: "My Best Friend's Girl", + year: 2008, + rating: 5.9, + votes: 39104, + running_times: 6720, + }, + { + title: "My Best Friend's Wedding", + year: 1997, + rating: 6.3, + votes: 107518, + running_times: 6300, + }, + { + title: "My Big Fat Greek Wedding", + year: 2002, + rating: 6.6, + votes: 108638, + running_times: 5700, + }, + { + title: "My Big Fat Greek Wedding 2", + year: 2016, + rating: 6, + votes: 22601, + running_times: 5640, + }, + { + title: "My Bloody Valentine", + year: 1981, + rating: 6.2, + votes: 13928, + running_times: 5580, + }, + { + title: "My Bloody Valentine", + year: 2009, + rating: 5.5, + votes: 48197, + running_times: 6060, + }, + { + title: "My Blue Heaven", + year: 1990, + rating: 6.2, + votes: 16465, + running_times: 5820, + }, + { + title: "My Blueberry Nights", + year: 2007, + rating: 6.7, + votes: 47098, + running_times: 5700, + }, + { + title: "My Boss's Daughter", + year: 2003, + rating: 4.7, + votes: 25546, + running_times: 5400, + }, + { + title: "My Cousin Vinny", + year: 1992, + rating: 7.5, + votes: 89632, + running_times: 7200, + }, + { + title: "My Darling Clementine", + year: 1946, + rating: 7.8, + votes: 17919, + running_times: 6180, + }, + { + title: "My Dinner with Andre", + year: 1981, + rating: 7.8, + votes: 13680, + running_times: 6600, + }, + { + title: "My Dog Skip", + year: 2000, + rating: 7, + votes: 17536, + running_times: 5700, + }, + { + title: "My Fair Lady", + year: 1964, + rating: 7.9, + votes: 73415, + running_times: 10200, + }, + { + title: "My Favorite Martian", + year: 1999, + rating: 5, + votes: 11486, + running_times: 5640, + }, + { + title: "My Fellow Americans", + year: 1996, + rating: 6.5, + votes: 12910, + running_times: 6060, + }, + { + title: "My Girl", + year: 1991, + rating: 6.8, + votes: 61084, + running_times: 6120, + }, + { + title: "My Girl 2", + year: 1994, + rating: 5.2, + votes: 16062, + running_times: 5940, + }, + { + title: "My Left Foot: The Story of Christy Brown", + year: 1989, + rating: 7.9, + votes: 55465, + running_times: 6180, + }, + { + title: "My Life Without Me", + year: 2003, + rating: 7.6, + votes: 22176, + running_times: 6420, + }, + { + title: "My Life in Ruins", + year: 2009, + rating: 5.9, + votes: 16255, + running_times: 5880, + }, + { + title: "My Little Eye", + year: 2002, + rating: 5.6, + votes: 10696, + running_times: 5700, + }, + { + title: "My Man Godfrey", + year: 1936, + rating: 8.1, + votes: 16984, + running_times: 5640, + }, + { + title: "My Name Is Bruce", + year: 2007, + rating: 6.3, + votes: 22187, + running_times: 5040, + }, + { + title: "My Name Is Khan", + year: 2010, + rating: 8, + votes: 82373, + running_times: 9900, + }, + { + title: "My Own Private Idaho", + year: 1991, + rating: 7.1, + votes: 40621, + running_times: 6240, + }, + { + title: "My Sassy Girl", + year: 2008, + rating: 6.3, + votes: 18325, + running_times: 5520, + }, + { + title: "My Sister's Keeper", + year: 2009, + rating: 7.4, + votes: 80671, + running_times: 6540, + }, + { + title: "My Soul to Take", + year: 2010, + rating: 4.8, + votes: 17463, + running_times: 6420, + }, + { + title: "My Stepmother Is an Alien", + year: 1988, + rating: 5.2, + votes: 22451, + running_times: 6300, + }, + { + title: "My Summer of Love", + year: 2004, + rating: 6.8, + votes: 17370, + running_times: 5160, + }, + { + title: "My Super Ex-Girlfriend", + year: 2006, + rating: 5.1, + votes: 56499, + running_times: 5760, + }, + { + title: "My Week with Marilyn", + year: 2011, + rating: 7, + votes: 75892, + running_times: 5940, + }, + { + title: "Mysterious Skin", + year: 2004, + rating: 7.7, + votes: 60112, + running_times: 6420, + }, + { + title: "Mystery Men", + year: 1999, + rating: 6.1, + votes: 56460, + running_times: 7260, + }, + { + title: "Mystery Science Theater 3000: The Movie", + year: 1996, + rating: 7.4, + votes: 16482, + running_times: 4380, + }, + { + title: "Mystery Train", + year: 1989, + rating: 7.6, + votes: 20535, + running_times: 6600, + }, + { + title: "Mystery, Alaska", + year: 1999, + rating: 6.7, + votes: 23221, + running_times: 7140, + }, + { + title: "Mystic Pizza", + year: 1988, + rating: 6.2, + votes: 20318, + running_times: 6240, + }, + { + title: "Mystic River", + year: 2003, + rating: 8, + votes: 365071, + running_times: 8280, + }, + { + title: "Män som hatar kvinnor", + year: 2009, + rating: 7.8, + votes: 186700, + running_times: 11160, + }, + { + title: "Nacho Libre", + year: 2006, + rating: 5.7, + votes: 70536, + running_times: 5520, + }, + { + title: "Naked", + year: 1993, + rating: 7.9, + votes: 26891, + running_times: 7920, + }, + { + title: "Naked Gun 33 1/3: The Final Insult", + year: 1994, + rating: 6.5, + votes: 83247, + running_times: 4980, + }, + { + title: "Naked Lunch", + year: 1991, + rating: 7.1, + votes: 39652, + running_times: 6900, + }, + { + title: "Nancy Drew", + year: 2007, + rating: 5.9, + votes: 17051, + running_times: 5940, + }, + { + title: "Nanny McPhee", + year: 2005, + rating: 6.6, + votes: 55817, + running_times: 5880, + }, + { + title: "Nanny McPhee and the Big Bang", + year: 2010, + rating: 6.1, + votes: 22057, + running_times: 6540, + }, + { + title: "Napoleon Dynamite", + year: 2004, + rating: 6.9, + votes: 172599, + running_times: 5760, + }, + { title: "Narc", year: 2002, rating: 7.2, votes: 35543, running_times: 6300 }, + { + title: "Nashville", + year: 1975, + rating: 7.8, + votes: 19364, + running_times: 9600, + }, + { + title: "National Lampoon's Christmas Vacation", + year: 1989, + rating: 7.6, + votes: 118874, + running_times: 5820, + }, + { + title: "National Lampoon's European Vacation", + year: 1985, + rating: 6.1, + votes: 47396, + running_times: 5700, + }, + { + title: "National Lampoon's Vacation", + year: 1983, + rating: 7.4, + votes: 78815, + running_times: 5880, + }, + { + title: "National Security", + year: 2003, + rating: 5.6, + votes: 41680, + running_times: 5280, + }, + { + title: "National Treasure", + year: 2004, + rating: 6.9, + votes: 270548, + running_times: 7860, + }, + { + title: "National Treasure: Book of Secrets", + year: 2007, + rating: 6.5, + votes: 194576, + running_times: 7440, + }, + { + title: "Natural Born Killers", + year: 1994, + rating: 7.3, + votes: 187627, + running_times: 7320, + }, + { + title: "Navy Seals", + year: 1990, + rating: 5.5, + votes: 13865, + running_times: 6780, + }, + { + title: "Nayakan", + year: 1987, + rating: 8.8, + votes: 10378, + running_times: 9360, + }, + { + title: "Near Dark", + year: 1987, + rating: 7, + votes: 27846, + running_times: 5640, + }, + { + title: "Nebraska", + year: 2013, + rating: 7.7, + votes: 98852, + running_times: 6900, + }, + { + title: "Ned Kelly", + year: 2003, + rating: 6.5, + votes: 23002, + running_times: 6600, + }, + { + title: "Need for Speed", + year: 2014, + rating: 6.5, + votes: 146918, + running_times: 7920, + }, + { + title: "Needful Things", + year: 1993, + rating: 6.2, + votes: 18544, + running_times: 10980, + }, + { + title: "Neerja", + year: 2016, + rating: 7.8, + votes: 15336, + running_times: 7320, + }, + { + title: "Neighbors", + year: 2014, + rating: 6.3, + votes: 246015, + running_times: 5820, + }, + { + title: "Neighbors 2: Sorority Rising", + year: 2016, + rating: 5.7, + votes: 85986, + running_times: 5520, + }, + { + title: "Neko no ongaeshi", + year: 2002, + rating: 7.3, + votes: 35049, + running_times: 4500, + }, + { title: "Nell", year: 1994, rating: 6.5, votes: 24192, running_times: 6720 }, + { + title: "Nerve", + year: 2016, + rating: 6.6, + votes: 84651, + running_times: 5760, + }, + { + title: "Network", + year: 1976, + rating: 8.1, + votes: 116290, + running_times: 7260, + }, + { + title: "Never Back Down", + year: 2008, + rating: 6.6, + votes: 86232, + running_times: 6600, + }, + { + title: "Never Been Kissed", + year: 1999, + rating: 6, + votes: 73008, + running_times: 6420, + }, + { + title: "Never Let Me Go", + year: 2010, + rating: 7.2, + votes: 120871, + running_times: 6180, + }, + { + title: "Never Say Never Again", + year: 1983, + rating: 6.2, + votes: 52439, + running_times: 8040, + }, + { + title: "New Jack City", + year: 1991, + rating: 6.6, + votes: 26155, + running_times: 6060, + }, + { + title: "New Nightmare", + year: 1994, + rating: 6.4, + votes: 42203, + running_times: 6720, + }, + { + title: "New Year's Eve", + year: 2011, + rating: 5.7, + votes: 71453, + running_times: 6780, + }, + { + title: "New York Minute", + year: 2004, + rating: 4.9, + votes: 18985, + running_times: 5460, + }, + { + title: "New York Stories", + year: 1989, + rating: 6.4, + votes: 14779, + running_times: 7440, + }, + { + title: "New York, I Love You", + year: 2008, + rating: 6.3, + votes: 41493, + running_times: 6180, + }, + { + title: "New York, New York", + year: 1977, + rating: 6.7, + votes: 14965, + running_times: 9780, + }, + { + title: "New in Town", + year: 2009, + rating: 5.6, + votes: 18943, + running_times: 5820, + }, + { + title: "Newsies", + year: 1992, + rating: 7, + votes: 16512, + running_times: 7260, + }, + { + title: "Next", + year: 2007, + rating: 6.2, + votes: 132917, + running_times: 5760, + }, + { + title: "Next Friday", + year: 2000, + rating: 6.1, + votes: 30612, + running_times: 5880, + }, + { + title: "Ngo si seoi", + year: 1998, + rating: 6.8, + votes: 30599, + running_times: 7200, + }, + { + title: "Niagara", + year: 1953, + rating: 7.1, + votes: 12158, + running_times: 5520, + }, + { + title: "Nicholas Nickleby", + year: 2002, + rating: 7.2, + votes: 10065, + running_times: 7920, + }, + { + title: "Nick and Norah's Infinite Playlist", + year: 2008, + rating: 6.7, + votes: 79582, + running_times: 5400, + }, + { + title: "Nick of Time", + year: 1995, + rating: 6.3, + votes: 34746, + running_times: 5400, + }, + { + title: "Night Moves", + year: 2013, + rating: 6, + votes: 11460, + running_times: 6720, + }, + { + title: "Night Shift", + year: 1982, + rating: 6.5, + votes: 11930, + running_times: 6360, + }, + { + title: "Night Train to Lisbon", + year: 2013, + rating: 6.8, + votes: 14887, + running_times: 6660, + }, + { + title: "Night at the Museum", + year: 2006, + rating: 6.4, + votes: 261448, + running_times: 6480, + }, + { + title: "Night at the Museum: Battle of the Smithsonian", + year: 2009, + rating: 5.9, + votes: 145596, + running_times: 6300, + }, + { + title: "Night at the Museum: Secret of the Tomb", + year: 2014, + rating: 6.2, + votes: 79834, + running_times: 5880, + }, + { + title: "Night of the Comet", + year: 1984, + rating: 6.4, + votes: 14499, + running_times: 5700, + }, + { + title: "Night of the Creeps", + year: 1986, + rating: 6.8, + votes: 16397, + running_times: 5280, + }, + { + title: "Night of the Demons", + year: 1988, + rating: 6.3, + votes: 10119, + running_times: 5400, + }, + { + title: "Night of the Living Dead", + year: 1968, + rating: 7.9, + votes: 96882, + running_times: 5760, + }, + { + title: "Night of the Living Dead", + year: 1990, + rating: 6.9, + votes: 33568, + running_times: 5520, + }, + { + title: "Night on Earth", + year: 1991, + rating: 7.8, + votes: 45481, + running_times: 7740, + }, + { + title: "Nightbreed", + year: 1990, + rating: 6.6, + votes: 15960, + running_times: 8700, + }, + { + title: "Nightcrawler", + year: 2014, + rating: 7.9, + votes: 354755, + running_times: 7080, + }, + { + title: "Nighthawks", + year: 1981, + rating: 6.4, + votes: 13721, + running_times: 5940, + }, + { + title: "Nights in Rodanthe", + year: 2008, + rating: 6, + votes: 19672, + running_times: 5820, + }, + { + title: "Nightwatch", + year: 1997, + rating: 6.2, + votes: 17099, + running_times: 6060, + }, + { + title: "Nikita", + year: 1990, + rating: 7.4, + votes: 59142, + running_times: 7020, + }, + { + title: "Nim's Island", + year: 2008, + rating: 6, + votes: 29823, + running_times: 5760, + }, + { title: "Nine", year: 2009, rating: 5.8, votes: 39270, running_times: 7080 }, + { + title: "Nine 1/2 Weeks", + year: 1986, + rating: 5.9, + votes: 32143, + running_times: 7020, + }, + { + title: "Nine Dead", + year: 2010, + rating: 5.5, + votes: 10493, + running_times: 5880, + }, + { + title: "Nine Lives", + year: 2016, + rating: 5.3, + votes: 15077, + running_times: 5220, + }, + { + title: "Nine Months", + year: 1995, + rating: 5.5, + votes: 31636, + running_times: 6180, + }, + { + title: "Nine to Five", + year: 1980, + rating: 6.7, + votes: 22127, + running_times: 6540, + }, + { + title: "Nineteen Eighty-Four", + year: 1984, + rating: 7.2, + votes: 54961, + running_times: 6780, + }, + { + title: "Ninja", + year: 2009, + rating: 5.5, + votes: 10491, + running_times: 5160, + }, + { + title: "Ninja Assassin", + year: 2009, + rating: 6.4, + votes: 61464, + running_times: 5940, + }, + { + title: "Ninotchka", + year: 1939, + rating: 8, + votes: 15743, + running_times: 6600, + }, + { + title: "Nirgendwo in Afrika", + year: 2001, + rating: 7.7, + votes: 11252, + running_times: 8460, + }, + { + title: "Nixon", + year: 1995, + rating: 7.1, + votes: 25610, + running_times: 12720, + }, + { + title: "No Country for Old Men", + year: 2007, + rating: 8.1, + votes: 689593, + running_times: 7320, + }, + { + title: "No Escape", + year: 1994, + rating: 6.1, + votes: 16664, + running_times: 7080, + }, + { + title: "No Escape", + year: 2015, + rating: 6.8, + votes: 62445, + running_times: 6180, + }, + { + title: "No Good Deed", + year: 2014, + rating: 5.6, + votes: 14427, + running_times: 5040, + }, + { + title: "No Man's Land", + year: 2001, + rating: 8, + votes: 39957, + running_times: 5880, + }, + { + title: "No One Lives", + year: 2012, + rating: 6, + votes: 15163, + running_times: 5160, + }, + { + title: "No Reservations", + year: 2007, + rating: 6.3, + votes: 62975, + running_times: 6240, + }, + { + title: "No Retreat, No Surrender", + year: 1986, + rating: 5.6, + votes: 12983, + running_times: 5640, + }, + { + title: "No Strings Attached", + year: 2011, + rating: 6.2, + votes: 183855, + running_times: 6480, + }, + { + title: "No Way Out", + year: 1987, + rating: 7.1, + votes: 29075, + running_times: 6840, + }, + { + title: "No se aceptan devoluciones", + year: 2013, + rating: 7.6, + votes: 24684, + running_times: 7320, + }, + { + title: "Noah", + year: 2014, + rating: 5.8, + votes: 215683, + running_times: 8280, + }, + { + title: "Nobody's Fool", + year: 1994, + rating: 7.4, + votes: 15887, + running_times: 6600, + }, + { + title: "Nocturnal Animals", + year: 2016, + rating: 7.5, + votes: 162493, + running_times: 6960, + }, + { + title: "Non-Stop", + year: 2014, + rating: 7, + votes: 218748, + running_times: 6360, + }, + { title: "Norbit", year: 2007, rating: 4, votes: 57358, running_times: 6180 }, + { + title: "North", + year: 1994, + rating: 4.4, + votes: 11933, + running_times: 5220, + }, + { + title: "North Country", + year: 2005, + rating: 7.3, + votes: 34946, + running_times: 7560, + }, + { + title: "North by Northwest", + year: 1959, + rating: 8.4, + votes: 243659, + running_times: 8160, + }, + { + title: "Nosferatu: Phantom der Nacht", + year: 1979, + rating: 7.6, + votes: 26121, + running_times: 6420, + }, + { + title: "Not Another Teen Movie", + year: 2001, + rating: 5.7, + votes: 85688, + running_times: 5940, + }, + { + title: "Not Without My Daughter", + year: 1991, + rating: 6.2, + votes: 10448, + running_times: 6960, + }, + { + title: "Notes on a Scandal", + year: 2006, + rating: 7.4, + votes: 67788, + running_times: 5520, + }, + { + title: "Nothing But Trouble", + year: 1991, + rating: 4.9, + votes: 18965, + running_times: 5640, + }, + { + title: "Nothing But the Truth", + year: 2008, + rating: 7.2, + votes: 32564, + running_times: 6480, + }, + { + title: "Nothing Is Private", + year: 2007, + rating: 7, + votes: 10724, + running_times: 7440, + }, + { + title: "Nothing to Lose", + year: 1997, + rating: 6.7, + votes: 38436, + running_times: 5880, + }, + { + title: "Notorious", + year: 1946, + rating: 8, + votes: 79583, + running_times: 6060, + }, + { + title: "Notorious", + year: 2009, + rating: 6.7, + votes: 35329, + running_times: 7680, + }, + { + title: "Notting Hill", + year: 1999, + rating: 7.1, + votes: 223479, + running_times: 7440, + }, + { + title: "Now Is Good", + year: 2012, + rating: 7.2, + votes: 29452, + running_times: 6180, + }, + { + title: "Now You See Me", + year: 2013, + rating: 7.3, + votes: 511818, + running_times: 7500, + }, + { + title: "Now You See Me 2", + year: 2016, + rating: 6.5, + votes: 178217, + running_times: 7740, + }, + { + title: "Now and Then", + year: 1995, + rating: 6.8, + votes: 22910, + running_times: 6000, + }, + { + title: "Now, Voyager", + year: 1942, + rating: 8, + votes: 12379, + running_times: 7020, + }, + { + title: "Nowhere Boy", + year: 2009, + rating: 7.2, + votes: 30853, + running_times: 5880, + }, + { + title: "Nowhere to Run", + year: 1993, + rating: 5.6, + votes: 18740, + running_times: 5640, + }, + { + title: "Nurse Betty", + year: 2000, + rating: 6.2, + votes: 30959, + running_times: 6600, + }, + { + title: "Nutty Professor II: The Klumps", + year: 2000, + rating: 4.3, + votes: 42268, + running_times: 6540, + }, + { + title: "Nymphomaniac: Vol. I", + year: 2013, + rating: 7, + votes: 95493, + running_times: 8700, + }, + { + title: "Nymphomaniac: Vol. II", + year: 2013, + rating: 6.7, + votes: 69731, + running_times: 10800, + }, + { title: "O", year: 2001, rating: 6.2, votes: 17881, running_times: 5700 }, + { + title: "O Brother, Where Art Thou?", + year: 2000, + rating: 7.8, + votes: 244698, + running_times: 6420, + }, + { + title: "O.J.: Made in America", + year: 2016, + rating: 9, + votes: 12449, + running_times: 28020, + }, + { + title: "OMG: Oh My God!", + year: 2012, + rating: 8.2, + votes: 37128, + running_times: 7500, + }, + { + title: "OSS 117: Rio ne répond plus", + year: 2009, + rating: 6.9, + votes: 10637, + running_times: 6060, + }, + { + title: "OXV: The Manual", + year: 2013, + rating: 6.8, + votes: 11970, + running_times: 6300, + }, + { + title: "Oblivion", + year: 2013, + rating: 7, + votes: 423224, + running_times: 7440, + }, + { + title: "Observe and Report", + year: 2009, + rating: 5.8, + votes: 54722, + running_times: 5160, + }, + { + title: "Obsessed", + year: 2009, + rating: 4.9, + votes: 24823, + running_times: 6480, + }, + { + title: "Obvious Child", + year: 2014, + rating: 6.8, + votes: 19332, + running_times: 5040, + }, + { + title: "Ocean's Eleven", + year: 1960, + rating: 6.6, + votes: 16596, + running_times: 7620, + }, + { + title: "Ocean's Eleven", + year: 2001, + rating: 7.8, + votes: 439145, + running_times: 6960, + }, + { + title: "Ocean's Thirteen", + year: 2007, + rating: 6.9, + votes: 277326, + running_times: 7320, + }, + { + title: "Ocean's Twelve", + year: 2004, + rating: 6.5, + votes: 308751, + running_times: 7500, + }, + { + title: "October Sky", + year: 1999, + rating: 7.8, + votes: 70134, + running_times: 6480, + }, + { + title: "Octopussy", + year: 1983, + rating: 6.6, + votes: 80552, + running_times: 7860, + }, + { + title: "Oculus", + year: 2013, + rating: 6.5, + votes: 97266, + running_times: 6240, + }, + { + title: "Odd Thomas", + year: 2013, + rating: 6.9, + votes: 40221, + running_times: 5820, + }, + { + title: "Of Mice and Men", + year: 1992, + rating: 7.5, + votes: 34644, + running_times: 6900, + }, + { + title: "Office Christmas Party", + year: 2016, + rating: 5.8, + votes: 42454, + running_times: 6660, + }, + { + title: "Office Space", + year: 1999, + rating: 7.8, + votes: 214446, + running_times: 5340, + }, + { + title: "Offret", + year: 1986, + rating: 8.1, + votes: 16928, + running_times: 8940, + }, + { + title: "Oh Boy", + year: 2012, + rating: 7.4, + votes: 12277, + running_times: 5160, + }, + { title: "Okja", year: 2017, rating: 7.4, votes: 49130, running_times: 7200 }, + { + title: "Old Boy", + year: 2013, + rating: 5.8, + votes: 56956, + running_times: 6240, + }, + { + title: "Old Dogs", + year: 2009, + rating: 5.4, + votes: 32907, + running_times: 5280, + }, + { + title: "Old School", + year: 2003, + rating: 7.2, + votes: 195016, + running_times: 5280, + }, + { + title: "Oliver & Company", + year: 1988, + rating: 6.7, + votes: 36062, + running_times: 4440, + }, + { + title: "Oliver Twist", + year: 2005, + rating: 6.9, + votes: 27382, + running_times: 7800, + }, + { + title: "Oliver!", + year: 1968, + rating: 7.5, + votes: 28194, + running_times: 9180, + }, + { + title: "Olympus Has Fallen", + year: 2013, + rating: 6.5, + votes: 220967, + running_times: 7140, + }, + { + title: "On Deadly Ground", + year: 1994, + rating: 4.4, + votes: 19370, + running_times: 6060, + }, + { + title: "On Golden Pond", + year: 1981, + rating: 7.7, + votes: 23306, + running_times: 6540, + }, + { + title: "On Her Majesty's Secret Service", + year: 1969, + rating: 6.8, + votes: 65821, + running_times: 8520, + }, + { + title: "On the Beach", + year: 1959, + rating: 7.3, + votes: 10197, + running_times: 8040, + }, + { + title: "On the Road", + year: 2012, + rating: 6.1, + votes: 35856, + running_times: 8220, + }, + { + title: "On the Town", + year: 1949, + rating: 7.6, + votes: 13300, + running_times: 5880, + }, + { + title: "On the Waterfront", + year: 1954, + rating: 8.2, + votes: 113409, + running_times: 6480, + }, + { title: "Once", year: 2007, rating: 7.9, votes: 99752, running_times: 5160 }, + { + title: "Once Bitten", + year: 1985, + rating: 5.5, + votes: 11056, + running_times: 5640, + }, + { + title: "Once Upon a Time in America", + year: 1984, + rating: 8.4, + votes: 247434, + running_times: 16140, + }, + { + title: "Once Upon a Time in Mexico", + year: 2003, + rating: 6.4, + votes: 138307, + running_times: 6120, + }, + { + title: "Once Were Warriors", + year: 1994, + rating: 7.9, + votes: 27379, + running_times: 6120, + }, + { + title: "Ondine", + year: 2009, + rating: 6.8, + votes: 18057, + running_times: 6660, + }, + { + title: "One Crazy Summer", + year: 1986, + rating: 6.4, + votes: 11705, + running_times: 5580, + }, + { + title: "One Day", + year: 2011, + rating: 7, + votes: 117869, + running_times: 6420, + }, + { + title: "One Direction: This Is Us", + year: 2013, + rating: 4.1, + votes: 22601, + running_times: 6360, + }, + { + title: "One Eight Seven", + year: 1997, + rating: 6.7, + votes: 19395, + running_times: 7140, + }, + { + title: "One Fine Day", + year: 1996, + rating: 6.5, + votes: 38432, + running_times: 6480, + }, + { + title: "One Flew Over the Cuckoo's Nest", + year: 1975, + rating: 8.7, + votes: 753853, + running_times: 7980, + }, + { + title: "One Hour Photo", + year: 2002, + rating: 6.8, + votes: 103023, + running_times: 5760, + }, + { + title: "One Hundred and One Dalmatians", + year: 1961, + rating: 7.2, + votes: 125012, + running_times: 4740, + }, + { + title: "One Man Band", + year: 2005, + rating: 7.8, + votes: 12130, + running_times: 240, + }, + { + title: "One Missed Call", + year: 2008, + rating: 4, + votes: 28125, + running_times: 5220, + }, + { + title: "One Night at McCool's", + year: 2001, + rating: 6.1, + votes: 26629, + running_times: 5580, + }, + { + title: "One True Thing", + year: 1998, + rating: 7, + votes: 10049, + running_times: 7620, + }, + { + title: "One Week", + year: 2008, + rating: 7.1, + votes: 10363, + running_times: 5640, + }, + { + title: "One for the Money", + year: 2012, + rating: 5.3, + votes: 36462, + running_times: 5460, + }, + { + title: "One, Two, Three", + year: 1961, + rating: 8, + votes: 16319, + running_times: 6900, + }, + { + title: "Ong-bak", + year: 2003, + rating: 7.2, + votes: 64314, + running_times: 6480, + }, + { + title: "Only God Forgives", + year: 2013, + rating: 5.7, + votes: 93136, + running_times: 5400, + }, + { + title: "Only Lovers Left Alive", + year: 2013, + rating: 7.3, + votes: 72348, + running_times: 7380, + }, + { + title: "Only You", + year: 1994, + rating: 6.5, + votes: 16908, + running_times: 6900, + }, + { + title: "Oorlogswinter", + year: 2008, + rating: 7, + votes: 10942, + running_times: 6180, + }, + { + title: "Open Grave", + year: 2013, + rating: 6.3, + votes: 23858, + running_times: 6120, + }, + { + title: "Open Range", + year: 2003, + rating: 7.5, + votes: 57963, + running_times: 8340, + }, + { + title: "Open Season", + year: 2006, + rating: 6.2, + votes: 72098, + running_times: 5160, + }, + { + title: "Open Water", + year: 2003, + rating: 5.7, + votes: 45441, + running_times: 4740, + }, + { + title: "Open Water 2: Adrift", + year: 2006, + rating: 5.1, + votes: 14864, + running_times: 5700, + }, + { + title: "Open Windows", + year: 2014, + rating: 5.2, + votes: 11765, + running_times: 6000, + }, + { + title: "Opera", + year: 1987, + rating: 7.1, + votes: 10995, + running_times: 6420, + }, + { + title: "Operation Petticoat", + year: 1959, + rating: 7.3, + votes: 10205, + running_times: 7440, + }, + { + title: "Orange County", + year: 2002, + rating: 6.2, + votes: 43196, + running_times: 4920, + }, + { + title: "Ordinary Decent Criminal", + year: 2000, + rating: 6.4, + votes: 12289, + running_times: 5580, + }, + { + title: "Ordinary People", + year: 1980, + rating: 7.8, + votes: 38597, + running_times: 7440, + }, + { + title: "Orgazmo", + year: 1997, + rating: 6.2, + votes: 31683, + running_times: 5640, + }, + { + title: "Original Sin", + year: 2001, + rating: 6, + votes: 47818, + running_times: 7080, + }, + { + title: "Orlando", + year: 1992, + rating: 7.2, + votes: 11064, + running_times: 5640, + }, + { + title: "Orphan", + year: 2009, + rating: 7, + votes: 160192, + running_times: 7380, + }, + { + title: "Oscar", + year: 1991, + rating: 6.4, + votes: 25381, + running_times: 6540, + }, + { + title: "Oslo, 31. august", + year: 2011, + rating: 7.6, + votes: 15463, + running_times: 5700, + }, + { + title: "Osmosis Jones", + year: 2001, + rating: 6.3, + votes: 27537, + running_times: 5700, + }, + { + title: "Ouija", + year: 2014, + rating: 4.5, + votes: 39770, + running_times: 5340, + }, + { + title: "Ouija: Origin of Evil", + year: 2016, + rating: 6.1, + votes: 37746, + running_times: 5940, + }, + { + title: "Our Brand Is Crisis", + year: 2015, + rating: 6.1, + votes: 16624, + running_times: 6420, + }, + { + title: "Our Idiot Brother", + year: 2011, + rating: 6.4, + votes: 78146, + running_times: 5400, + }, + { + title: "Our Kind of Traitor", + year: 2016, + rating: 6.2, + votes: 14386, + running_times: 6480, + }, + { + title: "Out Cold", + year: 2001, + rating: 6.3, + votes: 15223, + running_times: 5520, + }, + { + title: "Out for Justice", + year: 1991, + rating: 6, + votes: 18349, + running_times: 5460, + }, + { + title: "Out of Africa", + year: 1985, + rating: 7.2, + votes: 58200, + running_times: 9660, + }, + { + title: "Out of Rosenheim", + year: 1987, + rating: 7.5, + votes: 10376, + running_times: 6480, + }, + { + title: "Out of Sight", + year: 1998, + rating: 7, + votes: 75694, + running_times: 7380, + }, + { + title: "Out of Time", + year: 2003, + rating: 6.5, + votes: 49592, + running_times: 6840, + }, + { + title: "Out of the Furnace", + year: 2013, + rating: 6.8, + votes: 92039, + running_times: 6960, + }, + { + title: "Out of the Past", + year: 1947, + rating: 8.1, + votes: 26203, + running_times: 5820, + }, + { + title: "Outbreak", + year: 1995, + rating: 6.6, + votes: 96205, + running_times: 7620, + }, + { + title: "Outcast", + year: 2014, + rating: 4.6, + votes: 10400, + running_times: 5940, + }, + { + title: "Outland", + year: 1981, + rating: 6.6, + votes: 23324, + running_times: 6720, + }, + { + title: "Outlander", + year: 2008, + rating: 6.3, + votes: 66588, + running_times: 6900, + }, + { + title: "Outlaw", + year: 2007, + rating: 5.8, + votes: 11667, + running_times: 6180, + }, + { + title: "Outpost", + year: 2008, + rating: 5.9, + votes: 14748, + running_times: 5400, + }, + { + title: "Outsourced", + year: 2006, + rating: 7, + votes: 10317, + running_times: 6180, + }, + { + title: "Over Her Dead Body", + year: 2008, + rating: 5.2, + votes: 22239, + running_times: 5700, + }, + { + title: "Over the Hedge", + year: 2006, + rating: 6.7, + votes: 137721, + running_times: 4980, + }, + { + title: "Over the Top", + year: 1987, + rating: 5.7, + votes: 41447, + running_times: 5580, + }, + { + title: "Overboard", + year: 1987, + rating: 6.8, + votes: 41039, + running_times: 6720, + }, + { + title: "Owning Mahowny", + year: 2003, + rating: 7.1, + votes: 11196, + running_times: 6240, + }, + { + title: "Oz the Great and Powerful", + year: 2013, + rating: 6.3, + votes: 184733, + running_times: 7800, + }, + { + title: "P.S. I Love You", + year: 2007, + rating: 7.1, + votes: 181630, + running_times: 7560, + }, + { title: "P2", year: 2007, rating: 5.9, votes: 27730, running_times: 5880 }, + { title: "PCU", year: 1994, rating: 6.6, votes: 11008, running_times: 4740 }, + { title: "PK", year: 2014, rating: 8.2, votes: 114769, running_times: 9180 }, + { + title: "Pacific Heights", + year: 1990, + rating: 6.4, + votes: 15273, + running_times: 6120, + }, + { + title: "Pacific Rim", + year: 2013, + rating: 7, + votes: 411837, + running_times: 7860, + }, + { + title: "Paddington", + year: 2014, + rating: 7.2, + votes: 59473, + running_times: 5700, + }, + { + title: "Pain & Gain", + year: 2013, + rating: 6.4, + votes: 174254, + running_times: 7740, + }, + { + title: "Paint Your Wagon", + year: 1969, + rating: 6.7, + votes: 10108, + running_times: 9480, + }, + { + title: "Pale Rider", + year: 1985, + rating: 7.3, + votes: 43605, + running_times: 6900, + }, + { + title: "Palindromes", + year: 2004, + rating: 6.8, + votes: 11200, + running_times: 6000, + }, + { + title: "Palo Alto", + year: 2013, + rating: 6.3, + votes: 23349, + running_times: 6000, + }, + { title: "Pan", year: 2015, rating: 5.8, votes: 50647, running_times: 6660 }, + { + title: "Pandorum", + year: 2009, + rating: 6.8, + votes: 130076, + running_times: 6480, + }, + { + title: "Panic Room", + year: 2002, + rating: 6.8, + votes: 222719, + running_times: 6780, + }, + { + title: "Paparazzi", + year: 2004, + rating: 5.8, + votes: 13659, + running_times: 5040, + }, + { + title: "Paper Man", + year: 2009, + rating: 6.6, + votes: 16527, + running_times: 6600, + }, + { + title: "Paper Moon", + year: 1973, + rating: 8.2, + votes: 27816, + running_times: 6120, + }, + { + title: "Paper Towns", + year: 2015, + rating: 6.3, + votes: 78166, + running_times: 6540, + }, + { + title: "Paperman", + year: 2012, + rating: 8.3, + votes: 27834, + running_times: 420, + }, + { + title: "Papillon", + year: 1973, + rating: 8, + votes: 103847, + running_times: 9060, + }, + { + title: "Papurika", + year: 2006, + rating: 7.7, + votes: 52914, + running_times: 5400, + }, + { + title: "ParaNorman", + year: 2012, + rating: 7, + votes: 80672, + running_times: 5520, + }, + { + title: "Paradise Lost: The Child Murders at Robin Hood Hills", + year: 1996, + rating: 8.3, + votes: 12193, + running_times: 9000, + }, + { + title: "Paradise Now", + year: 2005, + rating: 7.5, + votes: 20638, + running_times: 5400, + }, + { + title: "Parallels", + year: 2015, + rating: 6.2, + votes: 11937, + running_times: 4980, + }, + { + title: "Paranoia", + year: 2013, + rating: 5.7, + votes: 31219, + running_times: 6360, + }, + { + title: "Paranoid Park", + year: 2007, + rating: 6.7, + votes: 26408, + running_times: 5100, + }, + { + title: "Paranormal Activity", + year: 2007, + rating: 6.3, + votes: 197558, + running_times: 5820, + }, + { + title: "Paranormal Activity 2", + year: 2010, + rating: 5.7, + votes: 88097, + running_times: 5880, + }, + { + title: "Paranormal Activity 3", + year: 2011, + rating: 5.8, + votes: 81597, + running_times: 5640, + }, + { + title: "Paranormal Activity 4", + year: 2012, + rating: 4.6, + votes: 54864, + running_times: 5760, + }, + { + title: "Paranormal Activity: The Ghost Dimension", + year: 2015, + rating: 4.6, + votes: 19766, + running_times: 5820, + }, + { + title: "Paranormal Activity: The Marked Ones", + year: 2014, + rating: 5, + votes: 34682, + running_times: 6060, + }, + { + title: "Parental Guidance", + year: 2012, + rating: 6.1, + votes: 22572, + running_times: 6300, + }, + { + title: "Parenthood", + year: 1989, + rating: 7, + votes: 38263, + running_times: 7440, + }, + { + title: "Paris, Texas", + year: 1984, + rating: 8.1, + votes: 59559, + running_times: 8700, + }, + { + title: "Paris, je t'aime", + year: 2006, + rating: 7.3, + votes: 65668, + running_times: 7200, + }, + { + title: "Parker", + year: 2013, + rating: 6.2, + votes: 98698, + running_times: 7080, + }, + { + title: "Parkland", + year: 2013, + rating: 6.4, + votes: 12999, + running_times: 5580, + }, + { + title: "Party Monster", + year: 2003, + rating: 6.3, + votes: 13409, + running_times: 5880, + }, + { + title: "Passenger 57", + year: 1992, + rating: 5.8, + votes: 39514, + running_times: 5040, + }, + { + title: "Passengers", + year: 2008, + rating: 5.9, + votes: 30068, + running_times: 5580, + }, + { + title: "Passengers", + year: 2016, + rating: 7, + votes: 252052, + running_times: 6960, + }, + { + title: "Passion", + year: 2012, + rating: 5.3, + votes: 18568, + running_times: 6120, + }, + { + title: "Pat Garrett & Billy the Kid", + year: 1973, + rating: 7.4, + votes: 14838, + running_times: 7320, + }, + { + title: "Patch Adams", + year: 1998, + rating: 6.7, + votes: 87776, + running_times: 6900, + }, + { + title: "Paterson", + year: 2016, + rating: 7.4, + votes: 40047, + running_times: 7080, + }, + { + title: "Pathfinder", + year: 2007, + rating: 5.4, + votes: 39123, + running_times: 6420, + }, + { + title: "Pathology", + year: 2008, + rating: 6, + votes: 28272, + running_times: 5700, + }, + { + title: "Paths of Glory", + year: 1957, + rating: 8.4, + votes: 137012, + running_times: 5280, + }, + { + title: "Patriot Games", + year: 1992, + rating: 6.9, + votes: 87400, + running_times: 7020, + }, + { + title: "Patriots Day", + year: 2016, + rating: 7.4, + votes: 56247, + running_times: 7980, + }, + { + title: "Patton", + year: 1970, + rating: 8, + votes: 82663, + running_times: 10320, + }, + { title: "Paul", year: 2011, rating: 7, votes: 207118, running_times: 6540 }, + { + title: "Paul Blart: Mall Cop", + year: 2009, + rating: 5.2, + votes: 90028, + running_times: 5460, + }, + { + title: "Paul Blart: Mall Cop 2", + year: 2015, + rating: 4.4, + votes: 27660, + running_times: 5640, + }, + { + title: "Paulie", + year: 1998, + rating: 6.5, + votes: 12631, + running_times: 5460, + }, + { + title: "Paura nella città dei morti viventi", + year: 1980, + rating: 6.3, + votes: 12796, + running_times: 5580, + }, + { + title: "Pawn Sacrifice", + year: 2014, + rating: 7, + votes: 30186, + running_times: 6900, + }, + { + title: "Pay It Forward", + year: 2000, + rating: 7.2, + votes: 102406, + running_times: 7380, + }, + { + title: "Pay the Ghost", + year: 2015, + rating: 5.2, + votes: 12141, + running_times: 5640, + }, + { + title: "Payback", + year: 1999, + rating: 7.1, + votes: 118738, + running_times: 6000, + }, + { + title: "Paycheck", + year: 2003, + rating: 6.3, + votes: 94288, + running_times: 7140, + }, + { + title: "Peaceful Warrior", + year: 2006, + rating: 7.3, + votes: 22771, + running_times: 7200, + }, + { + title: "Pearl Harbor", + year: 2001, + rating: 6.1, + votes: 275248, + running_times: 11040, + }, + { + title: "Pecker", + year: 1998, + rating: 6.4, + votes: 12166, + running_times: 5220, + }, + { + title: "Pee-wee's Big Adventure", + year: 1985, + rating: 7, + votes: 43899, + running_times: 5460, + }, + { + title: "Peeping Tom", + year: 1960, + rating: 7.7, + votes: 24338, + running_times: 6060, + }, + { + title: "Peggy Sue Got Married", + year: 1986, + rating: 6.3, + votes: 28771, + running_times: 6180, + }, + { + title: "Pelé: Birth of a Legend", + year: 2016, + rating: 7.3, + votes: 10201, + running_times: 6420, + }, + { + title: "Penelope", + year: 2006, + rating: 6.8, + votes: 54278, + running_times: 6240, + }, + { + title: "Penguins of Madagascar", + year: 2014, + rating: 6.7, + votes: 67051, + running_times: 5520, + }, + { + title: "People I Know", + year: 2002, + rating: 5.5, + votes: 10276, + running_times: 6000, + }, + { + title: "People Like Us", + year: 2012, + rating: 7.1, + votes: 36939, + running_times: 6840, + }, + { + title: "Percy Jackson & the Olympians: The Lightning Thief", + year: 2010, + rating: 5.9, + votes: 153720, + running_times: 7080, + }, + { + title: "Percy Jackson: Sea of Monsters", + year: 2013, + rating: 5.9, + votes: 94873, + running_times: 6360, + }, + { + title: "Perfect Sense", + year: 2011, + rating: 7.1, + votes: 47213, + running_times: 5520, + }, + { + title: "Perfect Stranger", + year: 2007, + rating: 5.7, + votes: 39925, + running_times: 6540, + }, + { + title: "Perfume: The Story of a Murderer", + year: 2006, + rating: 7.5, + votes: 205252, + running_times: 8820, + }, + { + title: "Persepolis", + year: 2007, + rating: 8.1, + votes: 76676, + running_times: 5760, + }, + { + title: "Persona", + year: 1966, + rating: 8.1, + votes: 72326, + running_times: 5100, + }, + { + title: "Personal Shopper", + year: 2016, + rating: 6.2, + votes: 19478, + running_times: 6300, + }, + { title: "Pet", year: 2016, rating: 5.7, votes: 11079, running_times: 5640 }, + { + title: "Pet Sematary", + year: 1989, + rating: 6.6, + votes: 71858, + running_times: 6180, + }, + { + title: "Pet Sematary II", + year: 1992, + rating: 4.8, + votes: 14806, + running_times: 6000, + }, + { + title: "Pete's Dragon", + year: 1977, + rating: 6.4, + votes: 19167, + running_times: 7800, + }, + { + title: "Pete's Dragon", + year: 2016, + rating: 6.7, + votes: 42488, + running_times: 6120, + }, + { + title: "Peter Pan", + year: 1953, + rating: 7.3, + votes: 99989, + running_times: 4620, + }, + { + title: "Peter Pan", + year: 2003, + rating: 6.9, + votes: 57870, + running_times: 6780, + }, + { + title: "Phantasm", + year: 1979, + rating: 6.8, + votes: 25806, + running_times: 5280, + }, + { + title: "Phantasm II", + year: 1988, + rating: 6.5, + votes: 10962, + running_times: 5820, + }, + { + title: "Phantom", + year: 2013, + rating: 5.9, + votes: 12224, + running_times: 5880, + }, + { + title: "Phantom of the Paradise", + year: 1974, + rating: 7.4, + votes: 12668, + running_times: 5520, + }, + { + title: "Phantoms", + year: 1998, + rating: 5.4, + votes: 17351, + running_times: 5760, + }, + { + title: "Phenomena", + year: 1985, + rating: 6.9, + votes: 18132, + running_times: 6960, + }, + { + title: "Phenomenon", + year: 1996, + rating: 6.4, + votes: 67376, + running_times: 7380, + }, + { + title: "Philadelphia", + year: 1993, + rating: 7.7, + votes: 193319, + running_times: 7500, + }, + { + title: "Philomena", + year: 2013, + rating: 7.6, + votes: 83559, + running_times: 5880, + }, + { + title: "Phoenix", + year: 2014, + rating: 7.3, + votes: 12924, + running_times: 5880, + }, + { + title: "Phone Booth", + year: 2002, + rating: 7.1, + votes: 224082, + running_times: 4860, + }, + { title: "Pi", year: 1998, rating: 7.5, votes: 153048, running_times: 5040 }, + { + title: "Pickup on South Street", + year: 1953, + rating: 7.8, + votes: 10140, + running_times: 4800, + }, + { + title: "Picnic at Hanging Rock", + year: 1975, + rating: 7.6, + votes: 27566, + running_times: 6900, + }, + { + title: "Picture Perfect", + year: 1997, + rating: 5.5, + votes: 17051, + running_times: 6300, + }, + { + title: "Pieces of April", + year: 2003, + rating: 7.1, + votes: 18663, + running_times: 4800, + }, + { + title: "Pierrot le fou", + year: 1965, + rating: 7.7, + votes: 22303, + running_times: 6600, + }, + { + title: "Pillow Talk", + year: 1959, + rating: 7.5, + votes: 12447, + running_times: 6120, + }, + { title: "Pina", year: 2011, rating: 7.7, votes: 12632, running_times: 6180 }, + { + title: "Pineapple Express", + year: 2008, + rating: 7, + votes: 275544, + running_times: 7020, + }, + { title: "Pink", year: 2016, rating: 8.2, votes: 25888, running_times: 8160 }, + { + title: "Pink Flamingos", + year: 1972, + rating: 6.1, + votes: 18394, + running_times: 6480, + }, + { + title: "Pink Floyd: The Wall", + year: 1982, + rating: 8, + votes: 65194, + running_times: 5700, + }, + { + title: "Pinocchio", + year: 1940, + rating: 7.5, + votes: 103226, + running_times: 5280, + }, + { title: "Piper", year: 2016, rating: 8.4, votes: 18635, running_times: 360 }, + { + title: "Piranha", + year: 1978, + rating: 5.9, + votes: 15470, + running_times: 6360, + }, + { + title: "Piranha 3D", + year: 2010, + rating: 5.5, + votes: 77156, + running_times: 5280, + }, + { + title: "Piranha 3DD", + year: 2012, + rating: 3.8, + votes: 34412, + running_times: 4980, + }, + { + title: "Pirates of the Caribbean: At World's End", + year: 2007, + rating: 7.1, + votes: 519696, + running_times: 10140, + }, + { + title: "Pirates of the Caribbean: Dead Man's Chest", + year: 2006, + rating: 7.3, + votes: 573617, + running_times: 9060, + }, + { + title: "Pirates of the Caribbean: Dead Men Tell No Tales", + year: 2017, + rating: 6.7, + votes: 163797, + running_times: 7740, + }, + { + title: "Pirates of the Caribbean: On Stranger Tides", + year: 2011, + rating: 6.6, + votes: 414326, + running_times: 8220, + }, + { + title: "Pirates of the Caribbean: The Curse of the Black Pearl", + year: 2003, + rating: 8, + votes: 897059, + running_times: 8580, + }, + { + title: "Pit and the Pendulum", + year: 1961, + rating: 7.1, + votes: 10125, + running_times: 4800, + }, + { + title: "Pitch Black", + year: 2000, + rating: 7.1, + votes: 204768, + running_times: 6720, + }, + { + title: "Pitch Perfect", + year: 2012, + rating: 7.2, + votes: 234523, + running_times: 6720, + }, + { + title: "Pitch Perfect 2", + year: 2015, + rating: 6.4, + votes: 114324, + running_times: 6900, + }, + { + title: "Pixels", + year: 2015, + rating: 5.6, + votes: 107829, + running_times: 6300, + }, + { + title: "Plan 9 from Outer Space", + year: 1959, + rating: 4, + votes: 31677, + running_times: 4740, + }, + { + title: "Planes", + year: 2013, + rating: 5.7, + votes: 37645, + running_times: 5460, + }, + { + title: "Planes, Trains & Automobiles", + year: 1987, + rating: 7.6, + votes: 100740, + running_times: 5580, + }, + { + title: "Planes: Fire & Rescue", + year: 2014, + rating: 6, + votes: 13931, + running_times: 4980, + }, + { + title: "Planet 51", + year: 2009, + rating: 6.1, + votes: 44168, + running_times: 5460, + }, + { + title: "Planet Terror", + year: 2007, + rating: 7.1, + votes: 178980, + running_times: 6300, + }, + { + title: "Planet of the Apes", + year: 1968, + rating: 8, + votes: 147852, + running_times: 6900, + }, + { + title: "Planet of the Apes", + year: 2001, + rating: 5.7, + votes: 192073, + running_times: 7140, + }, + { + title: "Platoon", + year: 1986, + rating: 8.1, + votes: 321392, + running_times: 7200, + }, + { + title: "Play It Again, Sam", + year: 1972, + rating: 7.7, + votes: 21490, + running_times: 5100, + }, + { + title: "Play It to the Bone", + year: 1999, + rating: 5.4, + votes: 10608, + running_times: 7440, + }, + { + title: "Play Misty for Me", + year: 1971, + rating: 7, + votes: 21050, + running_times: 6120, + }, + { + title: "Playing It Cool", + year: 2014, + rating: 6, + votes: 19829, + running_times: 5640, + }, + { + title: "Playing by Heart", + year: 1998, + rating: 7.2, + votes: 17228, + running_times: 7260, + }, + { + title: "Playing for Keeps", + year: 2012, + rating: 5.7, + votes: 25958, + running_times: 6300, + }, + { + title: "Playtime", + year: 1967, + rating: 8, + votes: 14743, + running_times: 9300, + }, + { + title: "Pleasantville", + year: 1998, + rating: 7.5, + votes: 109185, + running_times: 7440, + }, + { + title: "Please Give", + year: 2010, + rating: 6.6, + votes: 10282, + running_times: 5220, + }, + { + title: "Pledge This!", + year: 2006, + rating: 1.9, + votes: 16019, + running_times: 5460, + }, + { + title: "Plein soleil", + year: 1960, + rating: 7.8, + votes: 10567, + running_times: 7080, + }, + { + title: "Pocahontas", + year: 1995, + rating: 6.7, + votes: 136066, + running_times: 5040, + }, + { + title: "Point Blank", + year: 1967, + rating: 7.4, + votes: 15037, + running_times: 5520, + }, + { + title: "Point Break", + year: 1991, + rating: 7.2, + votes: 125538, + running_times: 7320, + }, + { + title: "Point Break", + year: 2015, + rating: 5.3, + votes: 47981, + running_times: 6840, + }, + { + title: "Point of No Return", + year: 1993, + rating: 6, + votes: 21871, + running_times: 6540, + }, + { + title: "Poison Ivy", + year: 1992, + rating: 5.4, + votes: 14868, + running_times: 5580, + }, + { + title: "Police Academy", + year: 1984, + rating: 6.7, + votes: 96285, + running_times: 5760, + }, + { + title: "Police Academy 2: Their First Assignment", + year: 1985, + rating: 5.7, + votes: 43178, + running_times: 5220, + }, + { + title: "Police Academy 3: Back in Training", + year: 1986, + rating: 5.3, + votes: 35865, + running_times: 4980, + }, + { + title: "Police Academy 4: Citizens on Patrol", + year: 1987, + rating: 4.8, + votes: 34317, + running_times: 5280, + }, + { + title: "Police Academy 5: Assignment: Miami Beach", + year: 1988, + rating: 4.4, + votes: 27792, + running_times: 5400, + }, + { + title: "Police Academy 6: City Under Siege", + year: 1989, + rating: 4.2, + votes: 23963, + running_times: 5040, + }, + { + title: "Police Academy: Mission to Moscow", + year: 1994, + rating: 3.3, + votes: 26893, + running_times: 4980, + }, + { + title: "Politiki kouzina", + year: 2003, + rating: 7.6, + votes: 11043, + running_times: 6480, + }, + { + title: "Pollock", + year: 2000, + rating: 7, + votes: 24386, + running_times: 7920, + }, + { + title: "Poltergeist", + year: 1982, + rating: 7.4, + votes: 118112, + running_times: 7200, + }, + { + title: "Poltergeist", + year: 2015, + rating: 4.9, + votes: 48044, + running_times: 6060, + }, + { + title: "Poltergeist II: The Other Side", + year: 1986, + rating: 5.7, + votes: 20967, + running_times: 7800, + }, + { + title: "Poltergeist III", + year: 1988, + rating: 4.6, + votes: 14343, + running_times: 5880, + }, + { + title: "Pompeii", + year: 2014, + rating: 5.5, + votes: 93779, + running_times: 6300, + }, + { + title: "Pontypool", + year: 2008, + rating: 6.7, + votes: 24835, + running_times: 5700, + }, + { + title: "Pootie Tang", + year: 2001, + rating: 5.2, + votes: 12089, + running_times: 4860, + }, + { + title: "Popeye", + year: 1980, + rating: 5.2, + votes: 25242, + running_times: 6840, + }, + { + title: "Popstar: Never Stop Never Stopping", + year: 2016, + rating: 6.7, + votes: 36918, + running_times: 5220, + }, + { + title: "Porky's", + year: 1981, + rating: 6.2, + votes: 33257, + running_times: 5640, + }, + { + title: "Poseidon", + year: 2006, + rating: 5.6, + votes: 87174, + running_times: 5880, + }, + { + title: "Possession", + year: 1981, + rating: 7.4, + votes: 16899, + running_times: 7440, + }, + { + title: "Possession", + year: 2002, + rating: 6.4, + votes: 12023, + running_times: 6120, + }, + { + title: "Post Grad", + year: 2009, + rating: 5.3, + votes: 12427, + running_times: 5280, + }, + { + title: "Postal", + year: 2007, + rating: 4.5, + votes: 20844, + running_times: 7620, + }, + { + title: "Postcards from the Edge", + year: 1990, + rating: 6.7, + votes: 12982, + running_times: 6060, + }, + { + title: "Powder", + year: 1995, + rating: 6.6, + votes: 25831, + running_times: 6660, + }, + { + title: "Powder Blue", + year: 2009, + rating: 6.3, + votes: 12943, + running_times: 6900, + }, + { + title: "Power Rangers", + year: 2017, + rating: 6.1, + votes: 72174, + running_times: 7440, + }, + { + title: "Practical Magic", + year: 1998, + rating: 6.2, + votes: 61056, + running_times: 6240, + }, + { + title: "Precious", + year: 2009, + rating: 7.3, + votes: 94382, + running_times: 6600, + }, + { + title: "Predator", + year: 1987, + rating: 7.8, + votes: 316518, + running_times: 6420, + }, + { + title: "Predator 2", + year: 1990, + rating: 6.2, + votes: 118584, + running_times: 6480, + }, + { + title: "Predators", + year: 2010, + rating: 6.4, + votes: 184408, + running_times: 6420, + }, + { + title: "Predestination", + year: 2014, + rating: 7.5, + votes: 201124, + running_times: 5820, + }, + { + title: "Prem Ratan Dhan Payo", + year: 2015, + rating: 4.7, + votes: 13854, + running_times: 11040, + }, + { + title: "Premium Rush", + year: 2012, + rating: 6.5, + votes: 100986, + running_times: 5460, + }, + { + title: "Premonition", + year: 2007, + rating: 5.9, + votes: 65837, + running_times: 5760, + }, + { + title: "Presto", + year: 2008, + rating: 8.4, + votes: 18991, + running_times: 300, + }, + { + title: "Presumed Innocent", + year: 1990, + rating: 6.9, + votes: 31863, + running_times: 7620, + }, + { + title: "Pretty Woman", + year: 1990, + rating: 7, + votes: 236465, + running_times: 7500, + }, + { + title: "Pretty in Pink", + year: 1986, + rating: 6.8, + votes: 61371, + running_times: 5760, + }, + { + title: "Pride & Prejudice", + year: 2005, + rating: 7.8, + votes: 211990, + running_times: 8100, + }, + { + title: "Pride", + year: 2014, + rating: 7.8, + votes: 41996, + running_times: 7140, + }, + { + title: "Pride and Glory", + year: 2008, + rating: 6.7, + votes: 55332, + running_times: 7800, + }, + { + title: "Pride and Prejudice and Zombies", + year: 2016, + rating: 5.8, + votes: 38692, + running_times: 6480, + }, + { + title: "Priest", + year: 2011, + rating: 5.7, + votes: 102900, + running_times: 5220, + }, + { + title: "Primal Fear", + year: 1996, + rating: 7.7, + votes: 146913, + running_times: 7740, + }, + { + title: "Primary Colors", + year: 1998, + rating: 6.7, + votes: 24922, + running_times: 8580, + }, + { + title: "Prime", + year: 2005, + rating: 6.2, + votes: 36846, + running_times: 6300, + }, + { + title: "Primer", + year: 2004, + rating: 6.9, + votes: 82678, + running_times: 4620, + }, + { + title: "Primeval", + year: 2007, + rating: 4.7, + votes: 11690, + running_times: 5580, + }, + { + title: "Prince Avalanche", + year: 2013, + rating: 6.4, + votes: 16895, + running_times: 5640, + }, + { + title: "Prince of Darkness", + year: 1987, + rating: 6.7, + votes: 28609, + running_times: 6120, + }, + { + title: "Prince of Persia: The Sands of Time", + year: 2010, + rating: 6.6, + votes: 239656, + running_times: 6960, + }, + { + title: "Prisoners", + year: 2013, + rating: 8.1, + votes: 460550, + running_times: 9180, + }, + { + title: "Private Benjamin", + year: 1980, + rating: 6.1, + votes: 19888, + running_times: 6540, + }, + { + title: "Private Parts", + year: 1997, + rating: 6.8, + votes: 30894, + running_times: 6540, + }, + { + title: "Prizzi's Honor", + year: 1985, + rating: 6.8, + votes: 19835, + running_times: 7800, + }, + { + title: "Problem Child", + year: 1990, + rating: 5.3, + votes: 24246, + running_times: 5580, + }, + { + title: "Problem Child 2", + year: 1991, + rating: 4.6, + votes: 18047, + running_times: 5580, + }, + { + title: "Professione: reporter", + year: 1975, + rating: 7.6, + votes: 16673, + running_times: 7560, + }, + { + title: "Project Almanac", + year: 2015, + rating: 6.4, + votes: 66044, + running_times: 6360, + }, + { + title: "Project X", + year: 2012, + rating: 6.7, + votes: 168277, + running_times: 5580, + }, + { title: "Prom", year: 2011, rating: 5.4, votes: 13556, running_times: 6240 }, + { + title: "Prom Night", + year: 1980, + rating: 5.4, + votes: 11621, + running_times: 5520, + }, + { + title: "Prom Night", + year: 2008, + rating: 3.9, + votes: 29693, + running_times: 5340, + }, + { + title: "Prometheus", + year: 2012, + rating: 7, + votes: 508408, + running_times: 7440, + }, + { + title: "Promised Land", + year: 2012, + rating: 6.6, + votes: 32498, + running_times: 6360, + }, + { + title: "Proof", + year: 2005, + rating: 6.8, + votes: 38792, + running_times: 6000, + }, + { + title: "Proof of Life", + year: 2000, + rating: 6.2, + votes: 51236, + running_times: 8100, + }, + { + title: "Prozac Nation", + year: 2001, + rating: 6.3, + votes: 15523, + running_times: 5940, + }, + { + title: "Prêt-à-Porter", + year: 1994, + rating: 5.1, + votes: 13074, + running_times: 7980, + }, + { + title: "Psycho", + year: 1960, + rating: 8.5, + votes: 476643, + running_times: 6540, + }, + { + title: "Psycho", + year: 1998, + rating: 4.6, + votes: 40252, + running_times: 6300, + }, + { + title: "Psycho II", + year: 1983, + rating: 6.4, + votes: 18625, + running_times: 6780, + }, + { + title: "Psycho III", + year: 1986, + rating: 5.3, + votes: 10195, + running_times: 5580, + }, + { + title: "Public Enemies", + year: 2009, + rating: 7, + votes: 246492, + running_times: 8400, + }, + { + title: "Pulp Fiction", + year: 1994, + rating: 8.9, + votes: 1477112, + running_times: 10680, + }, + { + title: "Pulse", + year: 2006, + rating: 4.7, + votes: 26072, + running_times: 5400, + }, + { + title: "Pump Up the Volume", + year: 1990, + rating: 7.2, + votes: 22894, + running_times: 6120, + }, + { + title: "Pumping Iron", + year: 1977, + rating: 7.4, + votes: 18176, + running_times: 5100, + }, + { + title: "Pumpkinhead", + year: 1988, + rating: 6.2, + votes: 16002, + running_times: 5160, + }, + { + title: "Punch-Drunk Love", + year: 2002, + rating: 7.3, + votes: 120491, + running_times: 5700, + }, + { + title: "Puncture", + year: 2011, + rating: 6.9, + votes: 20440, + running_times: 6000, + }, + { + title: "Punisher: War Zone", + year: 2008, + rating: 6, + votes: 53355, + running_times: 6180, + }, + { + title: "Purple Rain", + year: 1984, + rating: 6.5, + votes: 16275, + running_times: 6660, + }, + { title: "Push", year: 2009, rating: 6.1, votes: 95978, running_times: 6660 }, + { + title: "Pushing Tin", + year: 1999, + rating: 6, + votes: 25855, + running_times: 7440, + }, + { + title: "Puss in Boots", + year: 2011, + rating: 6.7, + votes: 123808, + running_times: 5400, + }, + { + title: "Quadrophenia", + year: 1979, + rating: 7.3, + votes: 14308, + running_times: 7200, + }, + { + title: "Quantum of Solace", + year: 2008, + rating: 6.6, + votes: 356741, + running_times: 6360, + }, + { + title: "Quarantine", + year: 2008, + rating: 6, + votes: 61636, + running_times: 5340, + }, + { + title: "Quarantine 2: Terminal", + year: 2011, + rating: 5.2, + votes: 16236, + running_times: 5160, + }, + { + title: "Quartet", + year: 2012, + rating: 6.8, + votes: 16936, + running_times: 5640, + }, + { + title: "Queen", + year: 2013, + rating: 8.3, + votes: 49130, + running_times: 8760, + }, + { + title: "Queen of the Damned", + year: 2002, + rating: 5.3, + votes: 46758, + running_times: 6240, + }, + { + title: "Quest for Camelot", + year: 1998, + rating: 6.3, + votes: 12346, + running_times: 5160, + }, + { + title: "Quick Change", + year: 1990, + rating: 6.8, + votes: 17040, + running_times: 5340, + }, + { + title: "Quigley Down Under", + year: 1990, + rating: 6.8, + votes: 16366, + running_times: 7140, + }, + { + title: "Quills", + year: 2000, + rating: 7.3, + votes: 47045, + running_times: 7440, + }, + { + title: "Quiz Show", + year: 1994, + rating: 7.5, + votes: 57548, + running_times: 7980, + }, + { + title: "Quo Vadis", + year: 1951, + rating: 7.2, + votes: 10998, + running_times: 10260, + }, + { + title: "R.I.P.D.", + year: 2013, + rating: 5.6, + votes: 100458, + running_times: 5760, + }, + { title: "RED", year: 2010, rating: 7.1, votes: 256610, running_times: 6660 }, + { + title: "RED 2", + year: 2013, + rating: 6.7, + votes: 138032, + running_times: 6960, + }, + { title: "RV", year: 2006, rating: 5.5, votes: 49630, running_times: 5940 }, + { + title: "Ra.One", + year: 2011, + rating: 4.8, + votes: 33460, + running_times: 9360, + }, + { + title: "Raajneeti", + year: 2010, + rating: 7.1, + votes: 13482, + running_times: 9780, + }, + { + title: "Rabbit Hole", + year: 2010, + rating: 7, + votes: 43298, + running_times: 5460, + }, + { + title: "Rabbit-Proof Fence", + year: 2002, + rating: 7.5, + votes: 24721, + running_times: 5640, + }, + { + title: "Rabid", + year: 1977, + rating: 6.4, + votes: 11872, + running_times: 5460, + }, + { title: "Race", year: 2016, rating: 7.1, votes: 26655, running_times: 8040 }, + { + title: "Race to Witch Mountain", + year: 2009, + rating: 5.7, + votes: 47231, + running_times: 5880, + }, + { + title: "Rachel Getting Married", + year: 2008, + rating: 6.7, + votes: 43171, + running_times: 6780, + }, + { + title: "Racing Stripes", + year: 2005, + rating: 5.2, + votes: 13663, + running_times: 6120, + }, + { + title: "Radio", + year: 2003, + rating: 6.9, + votes: 34113, + running_times: 6540, + }, + { + title: "Radio Days", + year: 1987, + rating: 7.6, + votes: 26747, + running_times: 5280, + }, + { + title: "Radio Flyer", + year: 1992, + rating: 6.9, + votes: 11027, + running_times: 6840, + }, + { + title: "Raging Bull", + year: 1980, + rating: 8.2, + votes: 260123, + running_times: 7740, + }, + { + title: "Raiders of the Lost Ark", + year: 1981, + rating: 8.5, + votes: 733003, + running_times: 6900, + }, + { + title: "Rain Man", + year: 1988, + rating: 8, + votes: 412533, + running_times: 7980, + }, + { + title: "Raise Your Voice", + year: 2004, + rating: 5.9, + votes: 24163, + running_times: 6180, + }, + { + title: "Raising Arizona", + year: 1987, + rating: 7.4, + votes: 108635, + running_times: 5640, + }, + { + title: "Raising Cain", + year: 1992, + rating: 6, + votes: 11138, + running_times: 5460, + }, + { + title: "Raising Helen", + year: 2004, + rating: 6, + votes: 32625, + running_times: 7140, + }, + { title: "Rambo", year: 2008, rating: 7, votes: 191441, running_times: 5940 }, + { + title: "Rambo III", + year: 1988, + rating: 5.7, + votes: 100754, + running_times: 6120, + }, + { + title: "Rambo: First Blood Part II", + year: 1985, + rating: 6.4, + votes: 127949, + running_times: 5760, + }, + { + title: "Ramona and Beezus", + year: 2010, + rating: 6.6, + votes: 14941, + running_times: 6180, + }, + { + title: "Rampage", + year: 2009, + rating: 6.3, + votes: 16303, + running_times: 5100, + }, + { + title: "Rampart", + year: 2011, + rating: 5.8, + votes: 21024, + running_times: 6480, + }, + { + title: "Random Hearts", + year: 1999, + rating: 5.1, + votes: 17900, + running_times: 7980, + }, + { + title: "Rang De Basanti", + year: 2006, + rating: 8.3, + votes: 85999, + running_times: 9420, + }, + { + title: "Rango", + year: 2011, + rating: 7.2, + votes: 200511, + running_times: 6420, + }, + { + title: "Ransom", + year: 1996, + rating: 6.6, + votes: 105375, + running_times: 8340, + }, + { + title: "Rare Exports", + year: 2010, + rating: 6.7, + votes: 21947, + running_times: 5040, + }, + { + title: "Rat Race", + year: 2001, + rating: 6.4, + votes: 98259, + running_times: 6720, + }, + { + title: "Ratatouille", + year: 2007, + rating: 8, + votes: 523106, + running_times: 6660, + }, + { + title: "Ravenous", + year: 1999, + rating: 7, + votes: 32355, + running_times: 6060, + }, + { + title: "Raw Deal", + year: 1986, + rating: 5.5, + votes: 25144, + running_times: 6360, + }, + { + title: "Ray", + year: 2004, + rating: 7.7, + votes: 119531, + running_times: 10680, + }, + { + title: "Re-Animator", + year: 1985, + rating: 7.2, + votes: 45022, + running_times: 6300, + }, + { + title: "Ready", + year: 2011, + rating: 4.7, + votes: 12187, + running_times: 8700, + }, + { + title: "Ready to Rumble", + year: 2000, + rating: 5.3, + votes: 12339, + running_times: 6420, + }, + { + title: "Real Genius", + year: 1985, + rating: 7, + votes: 25660, + running_times: 6480, + }, + { + title: "Real Steel", + year: 2011, + rating: 7.1, + votes: 270279, + running_times: 7620, + }, + { + title: "Reality Bites", + year: 1994, + rating: 6.6, + votes: 39032, + running_times: 5940, + }, + { + title: "Rear Window", + year: 1954, + rating: 8.5, + votes: 355438, + running_times: 6720, + }, + { + title: "Reasonable Doubt", + year: 2014, + rating: 5.7, + votes: 16005, + running_times: 5460, + }, + { + title: "Rebecca", + year: 1940, + rating: 8.2, + votes: 97897, + running_times: 7800, + }, + { + title: "Rebel Without a Cause", + year: 1955, + rating: 7.8, + votes: 69975, + running_times: 6660, + }, + { + title: "Rebound", + year: 2005, + rating: 5.1, + votes: 11179, + running_times: 5340, + }, + { + title: "Red Corner", + year: 1997, + rating: 6.3, + votes: 14011, + running_times: 7320, + }, + { + title: "Red Dawn", + year: 1984, + rating: 6.4, + votes: 44560, + running_times: 6840, + }, + { + title: "Red Dawn", + year: 2012, + rating: 5.4, + votes: 65921, + running_times: 5580, + }, + { + title: "Red Dog", + year: 2011, + rating: 7.5, + votes: 14257, + running_times: 5520, + }, + { + title: "Red Dragon", + year: 2002, + rating: 7.2, + votes: 217740, + running_times: 7440, + }, + { + title: "Red Eye", + year: 2005, + rating: 6.5, + votes: 99780, + running_times: 5100, + }, + { + title: "Red Heat", + year: 1988, + rating: 6, + votes: 54349, + running_times: 6240, + }, + { + title: "Red Lights", + year: 2012, + rating: 6.2, + votes: 52128, + running_times: 6840, + }, + { + title: "Red Planet", + year: 2000, + rating: 5.7, + votes: 50272, + running_times: 6360, + }, + { + title: "Red Riding Hood", + year: 2011, + rating: 5.4, + votes: 97160, + running_times: 6000, + }, + { + title: "Red River", + year: 1948, + rating: 7.8, + votes: 23384, + running_times: 7980, + }, + { + title: "Red Road", + year: 2006, + rating: 6.8, + votes: 10717, + running_times: 6780, + }, + { + title: "Red Rock West", + year: 1993, + rating: 7, + votes: 17017, + running_times: 5880, + }, + { + title: "Red Sonja", + year: 1985, + rating: 5, + votes: 33004, + running_times: 5340, + }, + { + title: "Red State", + year: 2011, + rating: 6.2, + votes: 56761, + running_times: 5280, + }, + { + title: "Red Tails", + year: 2012, + rating: 5.9, + votes: 30318, + running_times: 7500, + }, + { + title: "Redbelt", + year: 2008, + rating: 6.8, + votes: 19251, + running_times: 5940, + }, + { + title: "Redirected", + year: 2014, + rating: 6.7, + votes: 31764, + running_times: 5940, + }, + { + title: "Reds", + year: 1981, + rating: 7.5, + votes: 17827, + running_times: 11700, + }, + { + title: "Regarding Henry", + year: 1991, + rating: 6.7, + votes: 25315, + running_times: 6480, + }, + { + title: "Regression", + year: 2015, + rating: 5.7, + votes: 28731, + running_times: 6360, + }, + { + title: "Reign Over Me", + year: 2007, + rating: 7.5, + votes: 87332, + running_times: 7440, + }, + { + title: "Reign of Fire", + year: 2002, + rating: 6.2, + votes: 114037, + running_times: 6060, + }, + { + title: "Reindeer Games", + year: 2000, + rating: 5.7, + votes: 33382, + running_times: 7440, + }, + { + title: "Religulous", + year: 2008, + rating: 7.7, + votes: 54600, + running_times: 6060, + }, + { + title: "Remember", + year: 2015, + rating: 7.4, + votes: 14905, + running_times: 5640, + }, + { + title: "Remember Me", + year: 2010, + rating: 7.2, + votes: 122498, + running_times: 6780, + }, + { + title: "Remember the Titans", + year: 2000, + rating: 7.8, + votes: 173395, + running_times: 7200, + }, + { + title: "Renaissance", + year: 2006, + rating: 6.7, + votes: 14769, + running_times: 6300, + }, + { + title: "Renaissance Man", + year: 1994, + rating: 6.1, + votes: 14806, + running_times: 7680, + }, + { + title: "Rendition", + year: 2007, + rating: 6.8, + votes: 49989, + running_times: 7320, + }, + { + title: "Reno 911!: Miami", + year: 2007, + rating: 5.9, + votes: 24620, + running_times: 5040, + }, + { title: "Rent", year: 2005, rating: 7, votes: 44039, running_times: 8280 }, + { + title: "Replicant", + year: 2001, + rating: 5.4, + votes: 12077, + running_times: 6000, + }, + { + title: "Repo Man", + year: 1984, + rating: 6.9, + votes: 28026, + running_times: 5520, + }, + { + title: "Repo Men", + year: 2010, + rating: 6.3, + votes: 92099, + running_times: 7140, + }, + { + title: "Repo! The Genetic Opera", + year: 2008, + rating: 6.7, + votes: 21463, + running_times: 9000, + }, + { + title: "Repulsion", + year: 1965, + rating: 7.8, + votes: 39557, + running_times: 6300, + }, + { + title: "Requiem for a Dream", + year: 2000, + rating: 8.3, + votes: 639501, + running_times: 6120, + }, + { + title: "Rescue Dawn", + year: 2006, + rating: 7.3, + votes: 90216, + running_times: 7200, + }, + { + title: "Reservation Road", + year: 2007, + rating: 6.7, + votes: 19843, + running_times: 6120, + }, + { + title: "Reservoir Dogs", + year: 1992, + rating: 8.3, + votes: 745833, + running_times: 5940, + }, + { + title: "Resident Evil", + year: 2002, + rating: 6.7, + votes: 218227, + running_times: 6000, + }, + { + title: "Resident Evil: Afterlife", + year: 2010, + rating: 5.9, + votes: 144971, + running_times: 5760, + }, + { + title: "Resident Evil: Apocalypse", + year: 2004, + rating: 6.2, + votes: 166319, + running_times: 5880, + }, + { + title: "Resident Evil: Extinction", + year: 2007, + rating: 6.3, + votes: 164112, + running_times: 5640, + }, + { + title: "Resident Evil: Retribution", + year: 2012, + rating: 5.4, + votes: 118015, + running_times: 5700, + }, + { + title: "Resident Evil: The Final Chapter", + year: 2016, + rating: 5.6, + votes: 61809, + running_times: 6420, + }, + { + title: "Restless", + year: 2011, + rating: 6.8, + votes: 15983, + running_times: 5460, + }, + { + title: "Restrepo", + year: 2010, + rating: 7.6, + votes: 18615, + running_times: 5580, + }, + { + title: "Resurrecting the Champ", + year: 2007, + rating: 6.7, + votes: 19090, + running_times: 6720, + }, + { + title: "Return of the Living Dead III", + year: 1993, + rating: 5.9, + votes: 11289, + running_times: 5820, + }, + { + title: "Return of the Living Dead: Part II", + year: 1988, + rating: 5.8, + votes: 15201, + running_times: 5340, + }, + { + title: "Return to Me", + year: 2000, + rating: 6.9, + votes: 17309, + running_times: 6900, + }, + { + title: "Return to Never Land", + year: 2002, + rating: 5.8, + votes: 14877, + running_times: 4320, + }, + { + title: "Return to Oz", + year: 1985, + rating: 6.7, + votes: 20915, + running_times: 6780, + }, + { + title: "Return to Paradise", + year: 1998, + rating: 6.9, + votes: 12207, + running_times: 6660, + }, + { + title: "Return to the Blue Lagoon", + year: 1991, + rating: 5.1, + votes: 15423, + running_times: 6120, + }, + { + title: "Revenge", + year: 1990, + rating: 6.2, + votes: 13676, + running_times: 7440, + }, + { + title: "Revenge of the Nerds", + year: 1984, + rating: 6.6, + votes: 42777, + running_times: 5400, + }, + { + title: "Revenge of the Nerds II: Nerds in Paradise", + year: 1987, + rating: 5, + votes: 11544, + running_times: 5280, + }, + { + title: "Revenge of the Pink Panther", + year: 1978, + rating: 6.7, + votes: 17146, + running_times: 5940, + }, + { + title: "Reversal of Fortune", + year: 1990, + rating: 7.3, + votes: 12249, + running_times: 6660, + }, + { + title: "Revolutionary Road", + year: 2008, + rating: 7.3, + votes: 164174, + running_times: 7140, + }, + { + title: "Revolver", + year: 2005, + rating: 6.5, + votes: 79694, + running_times: 6660, + }, + { + title: "Richard III", + year: 1995, + rating: 7.5, + votes: 12308, + running_times: 6600, + }, + { + title: "Ricki and the Flash", + year: 2015, + rating: 6, + votes: 18749, + running_times: 6060, + }, + { + title: "Ricochet", + year: 1991, + rating: 6.1, + votes: 13653, + running_times: 6120, + }, + { + title: "Riddick", + year: 2013, + rating: 6.4, + votes: 135943, + running_times: 7620, + }, + { + title: "Ride Along", + year: 2014, + rating: 6.2, + votes: 86287, + running_times: 5940, + }, + { + title: "Ride Along 2", + year: 2016, + rating: 5.9, + votes: 41634, + running_times: 6120, + }, + { + title: "Ride the High Country", + year: 1962, + rating: 7.6, + votes: 10117, + running_times: 5640, + }, + { + title: "Ride with the Devil", + year: 1999, + rating: 6.8, + votes: 11657, + running_times: 8880, + }, + { + title: "Riding in Cars with Boys", + year: 2001, + rating: 6.5, + votes: 24075, + running_times: 7920, + }, + { + title: "Rien à déclarer", + year: 2010, + rating: 6.3, + votes: 11017, + running_times: 6480, + }, + { + title: "Right at Your Door", + year: 2006, + rating: 6.2, + votes: 11536, + running_times: 5760, + }, + { + title: "Righteous Kill", + year: 2008, + rating: 6, + votes: 76972, + running_times: 6060, + }, + { + title: "Rings", + year: 2017, + rating: 4.5, + votes: 27042, + running_times: 6120, + }, + { title: "Rio", year: 2011, rating: 6.9, votes: 178784, running_times: 5760 }, + { + title: "Rio 2", + year: 2014, + rating: 6.3, + votes: 65342, + running_times: 6060, + }, + { + title: "Rio Bravo", + year: 1959, + rating: 8, + votes: 46875, + running_times: 8460, + }, + { + title: "Rio Grande", + year: 1950, + rating: 7.2, + votes: 11457, + running_times: 6300, + }, + { + title: "Ripley's Game", + year: 2002, + rating: 6.7, + votes: 15479, + running_times: 6720, + }, + { title: "Rise", year: 2007, rating: 4.9, votes: 10667, running_times: 7320 }, + { + title: "Rise of the Footsoldier", + year: 2007, + rating: 6.9, + votes: 17199, + running_times: 7140, + }, + { + title: "Rise of the Guardians", + year: 2012, + rating: 7.3, + votes: 134813, + running_times: 5820, + }, + { + title: "Rise of the Planet of the Apes", + year: 2011, + rating: 7.6, + votes: 445858, + running_times: 6300, + }, + { + title: "Risen", + year: 2016, + rating: 6.3, + votes: 19540, + running_times: 6420, + }, + { + title: "Rising Sun", + year: 1993, + rating: 6.2, + votes: 37411, + running_times: 7740, + }, + { + title: "Risky Business", + year: 1983, + rating: 6.8, + votes: 67266, + running_times: 5940, + }, + { + title: "Ritânâ", + year: 2002, + rating: 6.5, + votes: 10556, + running_times: 6960, + }, + { + title: "River's Edge", + year: 1986, + rating: 7.1, + votes: 13038, + running_times: 5940, + }, + { + title: "Ri¢hie Ri¢h", + year: 1994, + rating: 5.3, + votes: 54239, + running_times: 5700, + }, + { + title: "Road House", + year: 1989, + rating: 6.5, + votes: 47980, + running_times: 6840, + }, + { + title: "Road Trip", + year: 2000, + rating: 6.5, + votes: 141478, + running_times: 5640, + }, + { + title: "Road to Perdition", + year: 2002, + rating: 7.7, + votes: 215795, + running_times: 7020, + }, + { + title: "Rob Roy", + year: 1995, + rating: 6.9, + votes: 36497, + running_times: 8340, + }, + { + title: "Robin Hood", + year: 1973, + rating: 7.6, + votes: 93873, + running_times: 4980, + }, + { + title: "Robin Hood", + year: 2010, + rating: 6.7, + votes: 226558, + running_times: 9360, + }, + { + title: "Robin Hood: Men in Tights", + year: 1993, + rating: 6.7, + votes: 99320, + running_times: 6240, + }, + { + title: "Robin Hood: Prince of Thieves", + year: 1991, + rating: 6.9, + votes: 155703, + running_times: 9300, + }, + { + title: "Robinson Crusoe", + year: 1997, + rating: 5.9, + votes: 10501, + running_times: 6300, + }, + { + title: "RoboCop", + year: 1987, + rating: 7.5, + votes: 198737, + running_times: 6180, + }, + { + title: "RoboCop", + year: 2014, + rating: 6.2, + votes: 195203, + running_times: 7020, + }, + { + title: "RoboCop 2", + year: 1990, + rating: 5.8, + votes: 69631, + running_times: 7020, + }, + { + title: "RoboCop 3", + year: 1993, + rating: 4, + votes: 38462, + running_times: 6240, + }, + { + title: "Robot & Frank", + year: 2012, + rating: 7.1, + votes: 56154, + running_times: 5340, + }, + { + title: "Robots", + year: 2005, + rating: 6.3, + votes: 112952, + running_times: 5460, + }, + { + title: "Rock On!!", + year: 2008, + rating: 7.8, + votes: 17454, + running_times: 8700, + }, + { + title: "Rock Star", + year: 2001, + rating: 6.2, + votes: 36621, + running_times: 6300, + }, + { + title: "Rock of Ages", + year: 2012, + rating: 5.9, + votes: 65978, + running_times: 8160, + }, + { + title: "Rocket Science", + year: 2007, + rating: 6.7, + votes: 12132, + running_times: 6060, + }, + { + title: "RocknRolla", + year: 2008, + rating: 7.3, + votes: 209034, + running_times: 6840, + }, + { + title: "Rocky", + year: 1976, + rating: 8.1, + votes: 424316, + running_times: 8700, + }, + { + title: "Rocky Balboa", + year: 2006, + rating: 7.2, + votes: 176163, + running_times: 8340, + }, + { + title: "Rocky II", + year: 1979, + rating: 7.2, + votes: 154543, + running_times: 8520, + }, + { + title: "Rocky III", + year: 1982, + rating: 6.8, + votes: 139274, + running_times: 5940, + }, + { + title: "Rocky IV", + year: 1985, + rating: 6.8, + votes: 150879, + running_times: 6420, + }, + { + title: "Rocky V", + year: 1990, + rating: 5.2, + votes: 103747, + running_times: 8160, + }, + { + title: "Roger & Me", + year: 1989, + rating: 7.5, + votes: 23911, + running_times: 5460, + }, + { + title: "Roger Dodger", + year: 2002, + rating: 7, + votes: 15871, + running_times: 6360, + }, + { + title: "Rogue", + year: 2007, + rating: 6.2, + votes: 23552, + running_times: 5940, + }, + { + title: "Rogue One", + year: 2016, + rating: 7.8, + votes: 386122, + running_times: 7980, + }, + { + title: "Role Models", + year: 2008, + rating: 6.9, + votes: 203170, + running_times: 6060, + }, + { + title: "Rollerball", + year: 1975, + rating: 6.6, + votes: 18882, + running_times: 7500, + }, + { + title: "Rollerball", + year: 2002, + rating: 3, + votes: 23117, + running_times: 5880, + }, + { + title: "Roman Holiday", + year: 1953, + rating: 8.1, + votes: 110260, + running_times: 7080, + }, + { + title: "Romance & Cigarettes", + year: 2005, + rating: 6.3, + votes: 10506, + running_times: 6300, + }, + { + title: "Romancing the Stone", + year: 1984, + rating: 6.9, + votes: 69846, + running_times: 6360, + }, + { + title: "Romeo + Juliet", + year: 1996, + rating: 6.8, + votes: 182222, + running_times: 7200, + }, + { + title: "Romeo Is Bleeding", + year: 1993, + rating: 6.6, + votes: 11503, + running_times: 6600, + }, + { + title: "Romeo Must Die", + year: 2000, + rating: 6.1, + votes: 60228, + running_times: 6900, + }, + { + title: "Romeo and Juliet", + year: 1968, + rating: 7.6, + votes: 25418, + running_times: 8940, + }, + { + title: "Romper Stomper", + year: 1992, + rating: 6.8, + votes: 33659, + running_times: 5640, + }, + { + title: "Romy and Michele's High School Reunion", + year: 1997, + rating: 6.2, + votes: 36333, + running_times: 5520, + }, + { + title: "Ronaldo", + year: 2015, + rating: 6.4, + votes: 12330, + running_times: 6120, + }, + { + title: "Ronin", + year: 1998, + rating: 7.3, + votes: 153925, + running_times: 7320, + }, + { + title: "Rookie of the Year", + year: 1993, + rating: 5.9, + votes: 19871, + running_times: 6180, + }, + { + title: "Room", + year: 2015, + rating: 8.2, + votes: 251090, + running_times: 7080, + }, + { + title: "Room 237", + year: 2012, + rating: 6.2, + votes: 18379, + running_times: 6120, + }, + { title: "Rope", year: 1948, rating: 8, votes: 105677, running_times: 4800 }, + { + title: "Rosemary's Baby", + year: 1968, + rating: 8, + votes: 155168, + running_times: 8220, + }, + { + title: "Rosencrantz & Guildenstern Are Dead", + year: 1990, + rating: 7.6, + votes: 18279, + running_times: 7020, + }, + { + title: "Rough Night", + year: 2017, + rating: 5.2, + votes: 24406, + running_times: 6060, + }, + { + title: "Rounders", + year: 1998, + rating: 7.3, + votes: 128998, + running_times: 7260, + }, + { + title: "Roxanne", + year: 1987, + rating: 6.6, + votes: 35090, + running_times: 6420, + }, + { + title: "Ruang rak noi nid mahasan", + year: 2003, + rating: 7.6, + votes: 10116, + running_times: 6720, + }, + { + title: "Rubber", + year: 2010, + rating: 5.8, + votes: 28779, + running_times: 4920, + }, + { + title: "Ruby Sparks", + year: 2012, + rating: 7.2, + votes: 86036, + running_times: 6240, + }, + { + title: "Rudderless", + year: 2014, + rating: 7.5, + votes: 15129, + running_times: 6300, + }, + { title: "Rudy", year: 1993, rating: 7.5, votes: 46289, running_times: 6840 }, + { + title: "Rules of Engagement", + year: 2000, + rating: 6.4, + votes: 39708, + running_times: 7680, + }, + { + title: "Rumble Fish", + year: 1983, + rating: 7.2, + votes: 26538, + running_times: 5640, + }, + { + title: "Rumor Has It...", + year: 2005, + rating: 5.5, + votes: 44506, + running_times: 5820, + }, + { + title: "Run All Night", + year: 2015, + rating: 6.6, + votes: 86466, + running_times: 6840, + }, + { + title: "Run Fatboy Run", + year: 2007, + rating: 6.6, + votes: 61200, + running_times: 6000, + }, + { + title: "Runaway Bride", + year: 1999, + rating: 5.5, + votes: 80848, + running_times: 6960, + }, + { + title: "Runaway Jury", + year: 2003, + rating: 7.1, + votes: 81319, + running_times: 7620, + }, + { + title: "Runaway Train", + year: 1985, + rating: 7.3, + votes: 22568, + running_times: 6660, + }, + { + title: "Runner Runner", + year: 2013, + rating: 5.6, + votes: 55723, + running_times: 5280, + }, + { + title: "Running Scared", + year: 2006, + rating: 7.4, + votes: 91408, + running_times: 7320, + }, + { + title: "Running on Empty", + year: 1988, + rating: 7.7, + votes: 11450, + running_times: 6960, + }, + { + title: "Running with Scissors", + year: 2006, + rating: 6.2, + votes: 20716, + running_times: 7320, + }, + { + title: "Rupan sansei: Kariosutoro no shiro", + year: 1979, + rating: 7.8, + votes: 18456, + running_times: 6120, + }, + { + title: "Rush", + year: 2013, + rating: 8.1, + votes: 355535, + running_times: 7380, + }, + { + title: "Rush Hour", + year: 1998, + rating: 6.9, + votes: 204134, + running_times: 5880, + }, + { + title: "Rush Hour 2", + year: 2001, + rating: 6.6, + votes: 173251, + running_times: 5640, + }, + { + title: "Rush Hour 3", + year: 2007, + rating: 6.2, + votes: 131488, + running_times: 5460, + }, + { + title: "Rushmore", + year: 1998, + rating: 7.7, + votes: 146456, + running_times: 5580, + }, + { + title: "Ruthless People", + year: 1986, + rating: 6.9, + votes: 22745, + running_times: 5580, + }, + { + title: "S. Darko", + year: 2009, + rating: 3.6, + votes: 11844, + running_times: 6180, + }, + { + title: "S.W.A.T.", + year: 2003, + rating: 6, + votes: 126105, + running_times: 7020, + }, + { + title: "S1m0ne", + year: 2002, + rating: 6.1, + votes: 54325, + running_times: 7020, + }, + { + title: "SLC Punk!", + year: 1998, + rating: 7.5, + votes: 23433, + running_times: 5880, + }, + { + title: "Sabotage", + year: 1936, + rating: 7.1, + votes: 12150, + running_times: 5400, + }, + { + title: "Sabotage", + year: 2014, + rating: 5.7, + votes: 51832, + running_times: 6540, + }, + { + title: "Saboteur", + year: 1942, + rating: 7.2, + votes: 19326, + running_times: 6540, + }, + { + title: "Sabrina", + year: 1954, + rating: 7.7, + votes: 48886, + running_times: 6780, + }, + { + title: "Sabrina", + year: 1995, + rating: 6.3, + votes: 31724, + running_times: 7620, + }, + { title: "Safe", year: 2012, rating: 6.5, votes: 90797, running_times: 5640 }, + { + title: "Safe Haven", + year: 2013, + rating: 6.7, + votes: 88397, + running_times: 6900, + }, + { + title: "Safe House", + year: 2012, + rating: 6.8, + votes: 179229, + running_times: 6900, + }, + { + title: "Safety Last!", + year: 1923, + rating: 8.2, + votes: 14595, + running_times: 4200, + }, + { + title: "Safety Not Guaranteed", + year: 2012, + rating: 7, + votes: 107260, + running_times: 5160, + }, + { title: "Sahara", year: 2005, rating: 6, votes: 82179, running_times: 7440 }, + { + title: "Saints and Soldiers", + year: 2003, + rating: 6.8, + votes: 18629, + running_times: 5400, + }, + { + title: "Salinui chueok", + year: 2003, + rating: 8.1, + votes: 82435, + running_times: 7920, + }, + { + title: "Salmon Fishing in the Yemen", + year: 2011, + rating: 6.8, + votes: 55360, + running_times: 6420, + }, + { + title: "Salt", + year: 2010, + rating: 6.4, + votes: 262295, + running_times: 6240, + }, + { + title: "Salvador", + year: 1986, + rating: 7.5, + votes: 16538, + running_times: 7320, + }, + { + title: "Samba", + year: 2014, + rating: 6.7, + votes: 12045, + running_times: 7080, + }, + { + title: "Samâ uôzu", + year: 2009, + rating: 7.6, + votes: 19763, + running_times: 6840, + }, + { + title: "San Andreas", + year: 2015, + rating: 6.1, + votes: 169965, + running_times: 6840, + }, + { + title: "San ging chaat goo si", + year: 2004, + rating: 7, + votes: 21048, + running_times: 7380, + }, + { + title: "San wa", + year: 2005, + rating: 6.2, + votes: 12519, + running_times: 7320, + }, + { + title: "Sanctum", + year: 2011, + rating: 5.9, + votes: 49371, + running_times: 6480, + }, + { + title: "Sand Castle", + year: 2017, + rating: 6.3, + votes: 10093, + running_times: 6780, + }, + { + title: "Santa sangre", + year: 1989, + rating: 7.7, + votes: 15409, + running_times: 7380, + }, + { + title: "Sap ji sang ciu", + year: 2012, + rating: 6.2, + votes: 17720, + running_times: 7380, + }, + { + title: "Saturday Night Fever", + year: 1977, + rating: 6.8, + votes: 59027, + running_times: 7080, + }, + { + title: "Sausage Party", + year: 2016, + rating: 6.2, + votes: 137395, + running_times: 5340, + }, + { + title: "Savages", + year: 2012, + rating: 6.5, + votes: 110068, + running_times: 8460, + }, + { + title: "Save the Last Dance", + year: 2001, + rating: 6.2, + votes: 51141, + running_times: 6720, + }, + { + title: "Saved!", + year: 2004, + rating: 6.8, + votes: 41753, + running_times: 5520, + }, + { + title: "Saving Christmas", + year: 2014, + rating: 1.5, + votes: 13258, + running_times: 4740, + }, + { + title: "Saving Grace", + year: 2000, + rating: 6.9, + votes: 16103, + running_times: 5580, + }, + { + title: "Saving Mr. Banks", + year: 2013, + rating: 7.5, + votes: 129499, + running_times: 7500, + }, + { + title: "Saving Private Ryan", + year: 1998, + rating: 8.6, + votes: 993815, + running_times: 10140, + }, + { + title: "Saving Silverman", + year: 2001, + rating: 5.9, + votes: 34937, + running_times: 5760, + }, + { title: "Saw", year: 2004, rating: 7.7, votes: 328740, running_times: 6180 }, + { + title: "Saw 3D", + year: 2010, + rating: 5.6, + votes: 76230, + running_times: 5400, + }, + { + title: "Saw II", + year: 2005, + rating: 6.6, + votes: 204490, + running_times: 5700, + }, + { + title: "Saw III", + year: 2006, + rating: 6.2, + votes: 155338, + running_times: 7260, + }, + { + title: "Saw IV", + year: 2007, + rating: 5.9, + votes: 121889, + running_times: 5760, + }, + { + title: "Saw V", + year: 2008, + rating: 5.8, + votes: 98150, + running_times: 5700, + }, + { title: "Saw VI", year: 2009, rating: 6, votes: 85460, running_times: 5520 }, + { + title: "Say Anything...", + year: 1989, + rating: 7.4, + votes: 71475, + running_times: 6000, + }, + { + title: "Say It Isn't So", + year: 2001, + rating: 4.9, + votes: 11798, + running_times: 5700, + }, + { + title: "Scanners", + year: 1981, + rating: 6.8, + votes: 39342, + running_times: 6180, + }, + { + title: "Scarecrow", + year: 1973, + rating: 7.3, + votes: 12680, + running_times: 6720, + }, + { + title: "Scarface", + year: 1932, + rating: 7.8, + votes: 21323, + running_times: 5580, + }, + { + title: "Scarface", + year: 1983, + rating: 8.3, + votes: 599692, + running_times: 10200, + }, + { + title: "Scarlet Street", + year: 1945, + rating: 7.9, + votes: 11212, + running_times: 6120, + }, + { + title: "Scary Movie", + year: 2000, + rating: 6.2, + votes: 201518, + running_times: 5280, + }, + { + title: "Scary Movie 2", + year: 2001, + rating: 5.3, + votes: 129387, + running_times: 4980, + }, + { + title: "Scary Movie 3", + year: 2003, + rating: 5.5, + votes: 120113, + running_times: 5040, + }, + { + title: "Scary Movie 4", + year: 2006, + rating: 5.1, + votes: 100457, + running_times: 5340, + }, + { + title: "Scary Movie 5", + year: 2013, + rating: 3.5, + votes: 54977, + running_times: 5280, + }, + { + title: "Scent of a Woman", + year: 1992, + rating: 8, + votes: 212640, + running_times: 9360, + }, + { + title: "Schindler's List", + year: 1993, + rating: 8.9, + votes: 971107, + running_times: 11700, + }, + { + title: "School Ties", + year: 1992, + rating: 6.9, + votes: 19369, + running_times: 6360, + }, + { + title: "School for Scoundrels", + year: 2006, + rating: 5.9, + votes: 27341, + running_times: 6480, + }, + { + title: "Scooby-Doo", + year: 2002, + rating: 5, + votes: 78942, + running_times: 5340, + }, + { + title: "Scooby-Doo 2: Monsters Unleashed", + year: 2004, + rating: 5, + votes: 37459, + running_times: 5580, + }, + { + title: "Scoop", + year: 2006, + rating: 6.7, + votes: 72462, + running_times: 5760, + }, + { + title: "Scott Pilgrim vs. the World", + year: 2010, + rating: 7.5, + votes: 306142, + running_times: 6720, + }, + { + title: "Scouts Guide to the Zombie Apocalypse", + year: 2015, + rating: 6.3, + votes: 35038, + running_times: 5580, + }, + { + title: "Scream", + year: 1996, + rating: 7.2, + votes: 242085, + running_times: 6660, + }, + { + title: "Scream 2", + year: 1997, + rating: 6.1, + votes: 134734, + running_times: 7200, + }, + { + title: "Scream 3", + year: 2000, + rating: 5.5, + votes: 106429, + running_times: 6960, + }, + { + title: "Scream 4", + year: 2011, + rating: 6.2, + votes: 111421, + running_times: 6660, + }, + { + title: "Screamers", + year: 1995, + rating: 6.4, + votes: 21789, + running_times: 6480, + }, + { + title: "Scrooge", + year: 1951, + rating: 8.1, + votes: 16428, + running_times: 5160, + }, + { + title: "Scrooged", + year: 1988, + rating: 7, + votes: 69474, + running_times: 6060, + }, + { + title: "Se, jie", + year: 2007, + rating: 7.6, + votes: 32595, + running_times: 9420, + }, + { + title: "Se7en", + year: 1995, + rating: 8.6, + votes: 1151698, + running_times: 7620, + }, + { + title: "Sea of Love", + year: 1989, + rating: 6.8, + votes: 32423, + running_times: 6780, + }, + { + title: "Seabiscuit", + year: 2003, + rating: 7.3, + votes: 60328, + running_times: 8400, + }, + { + title: "Searching for Bobby Fischer", + year: 1993, + rating: 7.5, + votes: 25503, + running_times: 6540, + }, + { + title: "Searching for Sugar Man", + year: 2012, + rating: 8.2, + votes: 54182, + running_times: 5160, + }, + { + title: "Season of the Witch", + year: 2011, + rating: 5.4, + votes: 80961, + running_times: 5700, + }, + { + title: "Secondhand Lions", + year: 2003, + rating: 7.6, + votes: 46061, + running_times: 7200, + }, + { + title: "Seconds", + year: 1966, + rating: 7.7, + votes: 12635, + running_times: 6420, + }, + { + title: "Secret Window", + year: 2004, + rating: 6.6, + votes: 159468, + running_times: 5760, + }, + { + title: "Secret in Their Eyes", + year: 2015, + rating: 6.2, + votes: 30327, + running_times: 6660, + }, + { + title: "Secretariat", + year: 2010, + rating: 7.2, + votes: 22480, + running_times: 7380, + }, + { + title: "Secretary", + year: 2002, + rating: 7, + votes: 72711, + running_times: 6420, + }, + { + title: "Secrets & Lies", + year: 1996, + rating: 8, + votes: 31211, + running_times: 8160, + }, + { + title: "See No Evil", + year: 2006, + rating: 5.1, + votes: 23294, + running_times: 5040, + }, + { + title: "See No Evil, Hear No Evil", + year: 1989, + rating: 6.8, + votes: 40633, + running_times: 6180, + }, + { + title: "Seed of Chucky", + year: 2004, + rating: 4.9, + votes: 31943, + running_times: 5280, + }, + { + title: "Seeking Justice", + year: 2011, + rating: 6.2, + votes: 41086, + running_times: 6300, + }, + { + title: "Seeking a Friend for the End of the World", + year: 2012, + rating: 6.7, + votes: 95893, + running_times: 6060, + }, + { + title: "Selena", + year: 1997, + rating: 6.7, + votes: 20825, + running_times: 7620, + }, + { + title: "Self/less", + year: 2015, + rating: 6.5, + votes: 71967, + running_times: 7020, + }, + { + title: "Selma", + year: 2014, + rating: 7.5, + votes: 70669, + running_times: 7680, + }, + { + title: "Semi-Pro", + year: 2008, + rating: 5.8, + votes: 70857, + running_times: 5940, + }, + { + title: "Sen to Chihiro no kamikakushi", + year: 2001, + rating: 8.6, + votes: 485508, + running_times: 7500, + }, + { + title: "Senna", + year: 2010, + rating: 8.6, + votes: 50116, + running_times: 9720, + }, + { + title: "Sennen joyû", + year: 2001, + rating: 7.9, + votes: 17251, + running_times: 5220, + }, + { + title: "Sense and Sensibility", + year: 1995, + rating: 7.7, + votes: 85268, + running_times: 8160, + }, + { + title: "Senseless", + year: 1998, + rating: 6, + votes: 11518, + running_times: 6480, + }, + { + title: "Seraphim Falls", + year: 2006, + rating: 6.7, + votes: 26207, + running_times: 6900, + }, + { + title: "Serena", + year: 2014, + rating: 5.4, + votes: 21113, + running_times: 6540, + }, + { + title: "Serendipity", + year: 2001, + rating: 6.9, + votes: 92682, + running_times: 5400, + }, + { + title: "Serenity", + year: 2005, + rating: 7.9, + votes: 256866, + running_times: 7140, + }, + { + title: "Sergeant York", + year: 1941, + rating: 7.8, + votes: 13214, + running_times: 8040, + }, + { + title: "Serial Mom", + year: 1994, + rating: 6.7, + votes: 22738, + running_times: 5700, + }, + { + title: "Serpico", + year: 1973, + rating: 7.8, + votes: 88491, + running_times: 7800, + }, + { + title: "Serving Sara", + year: 2002, + rating: 5.3, + votes: 15137, + running_times: 6120, + }, + { + title: "Session 9", + year: 2001, + rating: 6.5, + votes: 47139, + running_times: 6120, + }, + { + title: "Set It Off", + year: 1996, + rating: 6.8, + votes: 11365, + running_times: 7380, + }, + { + title: "Setup", + year: 2011, + rating: 4.4, + votes: 18941, + running_times: 5100, + }, + { + title: "Seven Brides for Seven Brothers", + year: 1954, + rating: 7.4, + votes: 17609, + running_times: 6120, + }, + { + title: "Seven Days in May", + year: 1964, + rating: 7.9, + votes: 10362, + running_times: 7080, + }, + { + title: "Seven Pounds", + year: 2008, + rating: 7.7, + votes: 252535, + running_times: 7380, + }, + { + title: "Seven Psychopaths", + year: 2012, + rating: 7.2, + votes: 203387, + running_times: 6600, + }, + { + title: "Seven Sisters", + year: 2017, + rating: 6.9, + votes: 37842, + running_times: 7380, + }, + { + title: "Seven Years in Tibet", + year: 1997, + rating: 7, + votes: 104958, + running_times: 8160, + }, + { + title: "Seventh Son", + year: 2014, + rating: 5.5, + votes: 62169, + running_times: 6120, + }, + { + title: "Severance", + year: 2006, + rating: 6.5, + votes: 33423, + running_times: 5760, + }, + { + title: "Sex Drive", + year: 2008, + rating: 6.5, + votes: 76427, + running_times: 7740, + }, + { + title: "Sex Tape", + year: 2014, + rating: 5.1, + votes: 93123, + running_times: 5640, + }, + { + title: "Sex and the City", + year: 2008, + rating: 5.6, + votes: 104825, + running_times: 9060, + }, + { + title: "Sex and the City 2", + year: 2010, + rating: 4.4, + votes: 64341, + running_times: 8760, + }, + { + title: "Sex, Lies, and Videotape", + year: 1989, + rating: 7.2, + votes: 41140, + running_times: 6000, + }, + { + title: "Sexy Beast", + year: 2000, + rating: 7.3, + votes: 46733, + running_times: 5340, + }, + { + title: "Sgt. Bilko", + year: 1996, + rating: 5.7, + votes: 18882, + running_times: 5580, + }, + { + title: "Shade", + year: 2003, + rating: 6.4, + votes: 11191, + running_times: 6060, + }, + { + title: "Shadow Dancer", + year: 2012, + rating: 6.2, + votes: 10788, + running_times: 6060, + }, + { + title: "Shadow of a Doubt", + year: 1943, + rating: 8, + votes: 49533, + running_times: 6480, + }, + { + title: "Shadow of the Vampire", + year: 2000, + rating: 6.9, + votes: 35903, + running_times: 5520, + }, + { + title: "Shadowlands", + year: 1993, + rating: 7.4, + votes: 14386, + running_times: 7860, + }, + { + title: "Shadows and Fog", + year: 1991, + rating: 6.8, + votes: 14152, + running_times: 5100, + }, + { + title: "Shaft", + year: 1971, + rating: 6.6, + votes: 13222, + running_times: 6000, + }, + { + title: "Shaft", + year: 2000, + rating: 5.9, + votes: 62032, + running_times: 5940, + }, + { + title: "Shakespeare in Love", + year: 1998, + rating: 7.2, + votes: 188788, + running_times: 7380, + }, + { + title: "Shall We Dance", + year: 2004, + rating: 6.1, + votes: 38211, + running_times: 6360, + }, + { + title: "Shallow Grave", + year: 1994, + rating: 7.3, + votes: 49609, + running_times: 5340, + }, + { + title: "Shallow Hal", + year: 2001, + rating: 5.9, + votes: 115543, + running_times: 6840, + }, + { + title: "Shame", + year: 2011, + rating: 7.2, + votes: 160333, + running_times: 6060, + }, + { + title: "Shane", + year: 1953, + rating: 7.7, + votes: 30834, + running_times: 7080, + }, + { + title: "Shanghai Knights", + year: 2003, + rating: 6.2, + votes: 88141, + running_times: 6840, + }, + { + title: "Shanghai Noon", + year: 2000, + rating: 6.6, + votes: 104603, + running_times: 6600, + }, + { + title: "Shark Night 3D", + year: 2011, + rating: 4, + votes: 22050, + running_times: 5400, + }, + { + title: "Shark Tale", + year: 2004, + rating: 6, + votes: 143701, + running_times: 5400, + }, + { + title: "Shattered Glass", + year: 2003, + rating: 7.2, + votes: 30336, + running_times: 5940, + }, + { + title: "Shaun of the Dead", + year: 2004, + rating: 8, + votes: 433429, + running_times: 5940, + }, + { + title: "She Wore a Yellow Ribbon", + year: 1949, + rating: 7.4, + votes: 13029, + running_times: 6180, + }, + { + title: "She's All That", + year: 1999, + rating: 5.8, + votes: 72798, + running_times: 5700, + }, + { + title: "She's Funny That Way", + year: 2014, + rating: 6.1, + votes: 20084, + running_times: 5580, + }, + { + title: "She's Out of My League", + year: 2010, + rating: 6.4, + votes: 108427, + running_times: 6240, + }, + { + title: "She's the Man", + year: 2006, + rating: 6.4, + votes: 127102, + running_times: 6300, + }, + { + title: "She's the One", + year: 1996, + rating: 6, + votes: 14808, + running_times: 5760, + }, + { + title: "She-Devil", + year: 1989, + rating: 5.5, + votes: 13645, + running_times: 5940, + }, + { + title: "Shelter", + year: 2007, + rating: 7.8, + votes: 17698, + running_times: 5820, + }, + { + title: "Sherlock Holmes", + year: 2009, + rating: 7.6, + votes: 516835, + running_times: 7680, + }, + { + title: "Sherlock Holmes: A Game of Shadows", + year: 2011, + rating: 7.5, + votes: 368922, + running_times: 7740, + }, + { + title: "Sherlock Jr.", + year: 1924, + rating: 8.3, + votes: 24468, + running_times: 2940, + }, + { + title: "Sherrybaby", + year: 2006, + rating: 6.6, + votes: 10703, + running_times: 5760, + }, + { + title: "Shin Gojira", + year: 2016, + rating: 6.7, + votes: 12838, + running_times: 7200, + }, + { + title: "Shine", + year: 1996, + rating: 7.7, + votes: 45923, + running_times: 6300, + }, + { + title: "Shine a Light", + year: 2008, + rating: 7.2, + votes: 10160, + running_times: 7320, + }, + { + title: "Shivers", + year: 1975, + rating: 6.6, + votes: 13853, + running_times: 5220, + }, + { + title: "Shocker", + year: 1989, + rating: 5.4, + votes: 12332, + running_times: 6540, + }, + { + title: "Shoot 'Em Up", + year: 2007, + rating: 6.7, + votes: 135567, + running_times: 5160, + }, + { + title: "Shooter", + year: 2007, + rating: 7.2, + votes: 275550, + running_times: 7440, + }, + { + title: "Shooting Dogs", + year: 2005, + rating: 7.7, + votes: 10219, + running_times: 6900, + }, + { + title: "Shopgirl", + year: 2005, + rating: 6.4, + votes: 21937, + running_times: 6360, + }, + { + title: "Short Circuit", + year: 1986, + rating: 6.6, + votes: 47621, + running_times: 5880, + }, + { + title: "Short Circuit 2", + year: 1988, + rating: 5.6, + votes: 20055, + running_times: 6600, + }, + { + title: "Short Cuts", + year: 1993, + rating: 7.7, + votes: 37446, + running_times: 11400, + }, + { + title: "Short Term 12", + year: 2013, + rating: 8, + votes: 65542, + running_times: 5760, + }, + { + title: "Shortbus", + year: 2006, + rating: 6.5, + votes: 29029, + running_times: 6060, + }, + { + title: "Shot Caller", + year: 2017, + rating: 7.4, + votes: 33834, + running_times: 7260, + }, + { + title: "Showdown in Little Tokyo", + year: 1991, + rating: 6.1, + votes: 13607, + running_times: 4740, + }, + { + title: "Showgirls", + year: 1995, + rating: 4.7, + votes: 53808, + running_times: 7860, + }, + { + title: "Showtime", + year: 2002, + rating: 5.5, + votes: 55104, + running_times: 5760, + }, + { + title: "Shrek", + year: 2001, + rating: 7.9, + votes: 512613, + running_times: 5400, + }, + { + title: "Shrek 2", + year: 2004, + rating: 7.2, + votes: 346813, + running_times: 5580, + }, + { + title: "Shrek Forever After", + year: 2010, + rating: 6.3, + votes: 152396, + running_times: 5580, + }, + { + title: "Shrek the Third", + year: 2007, + rating: 6.1, + votes: 232828, + running_times: 5580, + }, + { + title: "Shrink", + year: 2009, + rating: 6.7, + votes: 17142, + running_times: 6600, + }, + { + title: "Shrooms", + year: 2007, + rating: 4.7, + votes: 14549, + running_times: 5160, + }, + { + title: "Shutter", + year: 2008, + rating: 5.2, + votes: 28911, + running_times: 5400, + }, + { + title: "Shutter Island", + year: 2010, + rating: 8.1, + votes: 898401, + running_times: 8280, + }, + { + title: "Sibirskiy tsiryulnik", + year: 1998, + rating: 7.9, + votes: 10003, + running_times: 16500, + }, + { + title: "Sicario", + year: 2015, + rating: 7.6, + votes: 266558, + running_times: 7260, + }, + { title: "Sicko", year: 2007, rating: 8, votes: 69593, running_times: 7380 }, + { + title: "Sid and Nancy", + year: 1986, + rating: 7.1, + votes: 25324, + running_times: 6720, + }, + { + title: "Side Effects", + year: 2013, + rating: 7.1, + votes: 159048, + running_times: 6360, + }, + { + title: "Side by Side", + year: 2012, + rating: 7.6, + votes: 11999, + running_times: 5940, + }, + { + title: "Sideways", + year: 2004, + rating: 7.5, + votes: 159915, + running_times: 7560, + }, + { + title: "Sightseers", + year: 2012, + rating: 6.5, + votes: 23052, + running_times: 5280, + }, + { + title: "Signs", + year: 2002, + rating: 6.7, + votes: 294860, + running_times: 6360, + }, + { + title: "Silence", + year: 2016, + rating: 7.2, + votes: 66803, + running_times: 9660, + }, + { + title: "Silent Hill", + year: 2006, + rating: 6.6, + votes: 191211, + running_times: 7920, + }, + { + title: "Silent Hill: Revelation", + year: 2012, + rating: 5, + votes: 53668, + running_times: 5700, + }, + { + title: "Silent House", + year: 2011, + rating: 5.3, + votes: 19737, + running_times: 5160, + }, + { + title: "Silent Night, Deadly Night", + year: 1984, + rating: 5.9, + votes: 10538, + running_times: 5760, + }, + { + title: "Silent Running", + year: 1972, + rating: 6.7, + votes: 22780, + running_times: 5340, + }, + { title: "Silk", year: 2007, rating: 5.9, votes: 10005, running_times: 6720 }, + { + title: "Silkwood", + year: 1983, + rating: 7.2, + votes: 15363, + running_times: 7860, + }, + { + title: "Silver Bullet", + year: 1985, + rating: 6.4, + votes: 18780, + running_times: 5700, + }, + { + title: "Silver Linings Playbook", + year: 2012, + rating: 7.8, + votes: 581668, + running_times: 7320, + }, + { + title: "Silver Streak", + year: 1976, + rating: 6.9, + votes: 15181, + running_times: 6840, + }, + { + title: "Silverado", + year: 1985, + rating: 7.2, + votes: 30487, + running_times: 7980, + }, + { + title: "Simon Birch", + year: 1998, + rating: 6.9, + votes: 19163, + running_times: 6840, + }, + { + title: "Simply Irresistible", + year: 1999, + rating: 5.3, + votes: 12052, + running_times: 5760, + }, + { + title: "Sin City", + year: 2005, + rating: 8, + votes: 693152, + running_times: 8820, + }, + { + title: "Sin City: A Dame to Kill For", + year: 2014, + rating: 6.5, + votes: 127939, + running_times: 6120, + }, + { + title: "Sinbad: Legend of the Seven Seas", + year: 2003, + rating: 6.7, + votes: 40341, + running_times: 5400, + }, + { title: "Sing", year: 2016, rating: 7.1, votes: 88772, running_times: 6840 }, + { + title: "Sing Street", + year: 2016, + rating: 8, + votes: 61913, + running_times: 6360, + }, + { + title: "Singham", + year: 2011, + rating: 6.7, + votes: 11623, + running_times: 8580, + }, + { + title: "Singin' in the Rain", + year: 1952, + rating: 8.3, + votes: 172852, + running_times: 6180, + }, + { + title: "Single White Female", + year: 1992, + rating: 6.3, + votes: 26137, + running_times: 6420, + }, + { + title: "Singles", + year: 1992, + rating: 6.7, + votes: 24370, + running_times: 5940, + }, + { + title: "Sinister", + year: 2012, + rating: 6.8, + votes: 180429, + running_times: 6600, + }, + { + title: "Sinister 2", + year: 2015, + rating: 5.3, + votes: 34973, + running_times: 5820, + }, + { + title: "Sister Act", + year: 1992, + rating: 6.3, + votes: 71673, + running_times: 6000, + }, + { + title: "Sister Act 2: Back in the Habit", + year: 1993, + rating: 5.4, + votes: 39947, + running_times: 6420, + }, + { + title: "Sisters", + year: 1972, + rating: 7, + votes: 11910, + running_times: 5580, + }, + { + title: "Sisters", + year: 2015, + rating: 6, + votes: 53056, + running_times: 7080, + }, + { + title: "Sivaji", + year: 2007, + rating: 7.5, + votes: 13175, + running_times: 11280, + }, + { + title: "Six Days Seven Nights", + year: 1998, + rating: 5.8, + votes: 64644, + running_times: 5880, + }, + { + title: "Six Degrees of Separation", + year: 1993, + rating: 6.9, + votes: 17552, + running_times: 6720, + }, + { + title: "Sixteen Candles", + year: 1984, + rating: 7.1, + votes: 83729, + running_times: 5580, + }, + { + title: "Skinwalkers", + year: 2006, + rating: 4.6, + votes: 12097, + running_times: 6600, + }, + { + title: "Sky Captain and the World of Tomorrow", + year: 2004, + rating: 6.1, + votes: 75817, + running_times: 6360, + }, + { + title: "Sky High", + year: 2005, + rating: 6.2, + votes: 67093, + running_times: 6000, + }, + { + title: "Skyfall", + year: 2012, + rating: 7.8, + votes: 560755, + running_times: 8580, + }, + { + title: "Skyline", + year: 2010, + rating: 4.4, + votes: 79577, + running_times: 5820, + }, + { + title: "Slacker", + year: 1991, + rating: 7.1, + votes: 16600, + running_times: 6000, + }, + { + title: "Slackers", + year: 2002, + rating: 5.3, + votes: 12868, + running_times: 5160, + }, + { + title: "Slap Shot", + year: 1977, + rating: 7.4, + votes: 30240, + running_times: 7380, + }, + { + title: "Slaughterhouse-Five", + year: 1972, + rating: 7, + votes: 10444, + running_times: 6240, + }, + { + title: "Sleepaway Camp", + year: 1983, + rating: 6.3, + votes: 18885, + running_times: 5040, + }, + { + title: "Sleeper", + year: 1973, + rating: 7.3, + votes: 35717, + running_times: 5340, + }, + { + title: "Sleepers", + year: 1996, + rating: 7.6, + votes: 165120, + running_times: 8820, + }, + { + title: "Sleeping Beauty", + year: 1959, + rating: 7.3, + votes: 111600, + running_times: 4500, + }, + { + title: "Sleeping Beauty", + year: 2011, + rating: 5.3, + votes: 27668, + running_times: 6060, + }, + { + title: "Sleeping with Other People", + year: 2015, + rating: 6.5, + votes: 30768, + running_times: 6060, + }, + { + title: "Sleeping with the Enemy", + year: 1991, + rating: 6.2, + votes: 41133, + running_times: 5940, + }, + { + title: "Sleepless", + year: 2017, + rating: 5.6, + votes: 19069, + running_times: 5700, + }, + { + title: "Sleepless in Seattle", + year: 1993, + rating: 6.8, + votes: 133798, + running_times: 6300, + }, + { + title: "Sleepover", + year: 2004, + rating: 5.3, + votes: 13528, + running_times: 5340, + }, + { + title: "Sleepwalk with Me", + year: 2012, + rating: 6.8, + votes: 10769, + running_times: 4860, + }, + { + title: "Sleepwalkers", + year: 1992, + rating: 5.2, + votes: 16562, + running_times: 5460, + }, + { + title: "Sleepy Hollow", + year: 1999, + rating: 7.4, + votes: 288484, + running_times: 6300, + }, + { + title: "Sleuth", + year: 1972, + rating: 8.1, + votes: 39448, + running_times: 8280, + }, + { + title: "Sleuth", + year: 2007, + rating: 6.5, + votes: 27574, + running_times: 5280, + }, + { + title: "Sliding Doors", + year: 1998, + rating: 6.8, + votes: 55967, + running_times: 5940, + }, + { + title: "Sling Blade", + year: 1996, + rating: 8, + votes: 77328, + running_times: 8880, + }, + { + title: "Slither", + year: 2006, + rating: 6.5, + votes: 66043, + running_times: 5700, + }, + { + title: "Sliver", + year: 1993, + rating: 4.9, + votes: 24667, + running_times: 6420, + }, + { + title: "Slow West", + year: 2015, + rating: 6.9, + votes: 33707, + running_times: 5040, + }, + { + title: "Slumdog Millionaire", + year: 2008, + rating: 8, + votes: 697092, + running_times: 7200, + }, + { + title: "Slums of Beverly Hills", + year: 1998, + rating: 6.6, + votes: 10177, + running_times: 5520, + }, + { + title: "Small Soldiers", + year: 1998, + rating: 6.1, + votes: 81823, + running_times: 6600, + }, + { + title: "Small Time Crooks", + year: 2000, + rating: 6.7, + votes: 33129, + running_times: 5640, + }, + { + title: "Smart People", + year: 2008, + rating: 6.2, + votes: 21359, + running_times: 5700, + }, + { + title: "Smashed", + year: 2012, + rating: 6.8, + votes: 14793, + running_times: 4860, + }, + { + title: "Smiley Face", + year: 2007, + rating: 5.8, + votes: 14734, + running_times: 5280, + }, + { + title: "Smilla's Sense of Snow", + year: 1997, + rating: 6.4, + votes: 12278, + running_times: 7260, + }, + { + title: "Smoke", + year: 1995, + rating: 7.4, + votes: 29719, + running_times: 6720, + }, + { + title: "Smokey and the Bandit", + year: 1977, + rating: 6.9, + votes: 35477, + running_times: 5760, + }, + { + title: "Smokey and the Bandit II", + year: 1980, + rating: 5.2, + votes: 12223, + running_times: 6000, + }, + { + title: "Smokin' Aces", + year: 2006, + rating: 6.7, + votes: 126545, + running_times: 6540, + }, + { + title: "Smurfs: The Lost Village", + year: 2017, + rating: 5.9, + votes: 11182, + running_times: 5400, + }, + { + title: "Snabba cash", + year: 2010, + rating: 6.7, + votes: 14683, + running_times: 7440, + }, + { + title: "Snake Eyes", + year: 1998, + rating: 6, + votes: 67876, + running_times: 5880, + }, + { + title: "Snakes on a Plane", + year: 2006, + rating: 5.6, + votes: 120964, + running_times: 6300, + }, + { + title: "Snatch", + year: 2000, + rating: 8.3, + votes: 662781, + running_times: 6240, + }, + { + title: "Snatched", + year: 2017, + rating: 4.3, + votes: 20447, + running_times: 5400, + }, + { + title: "Sneakers", + year: 1992, + rating: 7.1, + votes: 46445, + running_times: 7560, + }, + { + title: "Sniper", + year: 1993, + rating: 6.1, + votes: 20484, + running_times: 5880, + }, + { + title: "Snitch", + year: 2013, + rating: 6.5, + votes: 70259, + running_times: 6720, + }, + { + title: "Snow Angels", + year: 2007, + rating: 6.9, + votes: 11437, + running_times: 6420, + }, + { + title: "Snow Cake", + year: 2006, + rating: 7.6, + votes: 11373, + running_times: 6720, + }, + { + title: "Snow Day", + year: 2000, + rating: 5, + votes: 10054, + running_times: 5340, + }, + { + title: "Snow Dogs", + year: 2002, + rating: 5.1, + votes: 21931, + running_times: 5940, + }, + { + title: "Snow Falling on Cedars", + year: 1999, + rating: 6.8, + votes: 12764, + running_times: 7620, + }, + { + title: "Snow White and the Huntsman", + year: 2012, + rating: 6.1, + votes: 245114, + running_times: 7920, + }, + { + title: "Snow White and the Seven Dwarfs", + year: 1937, + rating: 7.6, + votes: 149216, + running_times: 4980, + }, + { + title: "Snowden", + year: 2016, + rating: 7.3, + votes: 97053, + running_times: 8040, + }, + { + title: "Snowpiercer", + year: 2013, + rating: 7, + votes: 211297, + running_times: 7560, + }, + { + title: "Snowtown", + year: 2011, + rating: 6.6, + votes: 14705, + running_times: 7140, + }, + { + title: "So I Married an Axe Murderer", + year: 1993, + rating: 6.4, + votes: 29635, + running_times: 5580, + }, + { + title: "So Undercover", + year: 2012, + rating: 5, + votes: 16254, + running_times: 5640, + }, + { + title: "Soaked in Bleach", + year: 2015, + rating: 7.5, + votes: 11775, + running_times: 5400, + }, + { + title: "Soapdish", + year: 1991, + rating: 6.5, + votes: 12426, + running_times: 5820, + }, + { + title: "Solace", + year: 2015, + rating: 6.4, + votes: 40172, + running_times: 6060, + }, + { + title: "Solaris", + year: 2002, + rating: 6.2, + votes: 71407, + running_times: 5940, + }, + { + title: "Soldier", + year: 1998, + rating: 6, + votes: 46574, + running_times: 5940, + }, + { + title: "Solitary Man", + year: 2009, + rating: 6.4, + votes: 14234, + running_times: 5400, + }, + { + title: "Solomon Kane", + year: 2009, + rating: 6.1, + votes: 62676, + running_times: 6240, + }, + { + title: "Some Kind of Wonderful", + year: 1987, + rating: 7.1, + votes: 22260, + running_times: 5700, + }, + { + title: "Some Like It Hot", + year: 1959, + rating: 8.3, + votes: 196104, + running_times: 7260, + }, + { + title: "Someone Like You...", + year: 2001, + rating: 6.1, + votes: 21215, + running_times: 5820, + }, + { + title: "Something Borrowed", + year: 2011, + rating: 5.9, + votes: 51403, + running_times: 6720, + }, + { + title: "Something New", + year: 2006, + rating: 6.8, + votes: 11183, + running_times: 5940, + }, + { + title: "Something Wild", + year: 1986, + rating: 6.9, + votes: 13322, + running_times: 6840, + }, + { + title: "Something to Talk About", + year: 1995, + rating: 5.7, + votes: 11196, + running_times: 6360, + }, + { + title: "Something's Gotta Give", + year: 2003, + rating: 6.7, + votes: 97460, + running_times: 7680, + }, + { + title: "Somewhere", + year: 2010, + rating: 6.3, + votes: 38373, + running_times: 5820, + }, + { + title: "Somewhere in Time", + year: 1980, + rating: 7.3, + votes: 22652, + running_times: 6180, + }, + { + title: "Sommersby", + year: 1993, + rating: 6.1, + votes: 16639, + running_times: 6840, + }, + { + title: "Son in Law", + year: 1993, + rating: 5.7, + votes: 14621, + running_times: 5700, + }, + { + title: "Son of God", + year: 2014, + rating: 5.7, + votes: 16625, + running_times: 10200, + }, + { + title: "Son of Rambow", + year: 2007, + rating: 7, + votes: 28460, + running_times: 5760, + }, + { + title: "Son of a Gun", + year: 2014, + rating: 6.5, + votes: 21903, + running_times: 6480, + }, + { + title: "Son of the Mask", + year: 2005, + rating: 2.2, + votes: 44987, + running_times: 5640, + }, + { + title: "Song of the Sea", + year: 2014, + rating: 8.1, + votes: 36215, + running_times: 5580, + }, + { + title: "Song to Song", + year: 2017, + rating: 5.8, + votes: 10321, + running_times: 7740, + }, + { + title: "Sophie's Choice", + year: 1982, + rating: 7.7, + votes: 32806, + running_times: 9420, + }, + { + title: "Sorcerer", + year: 1977, + rating: 7.8, + votes: 11937, + running_times: 7260, + }, + { + title: "Sorority Boys", + year: 2002, + rating: 5.4, + votes: 12562, + running_times: 5580, + }, + { + title: "Sorority Row", + year: 2009, + rating: 5.1, + votes: 25521, + running_times: 6060, + }, + { + title: "Soul Kitchen", + year: 2009, + rating: 7.3, + votes: 31562, + running_times: 5940, + }, + { + title: "Soul Plane", + year: 2004, + rating: 4.4, + votes: 19355, + running_times: 5520, + }, + { + title: "Soul Surfer", + year: 2011, + rating: 7.1, + votes: 38676, + running_times: 6720, + }, + { + title: "Sound of My Voice", + year: 2011, + rating: 6.6, + votes: 18046, + running_times: 5100, + }, + { + title: "Source Code", + year: 2011, + rating: 7.5, + votes: 420082, + running_times: 5580, + }, + { + title: "South Park: Bigger, Longer & Uncut", + year: 1999, + rating: 7.8, + votes: 173169, + running_times: 4860, + }, + { + title: "Southbound", + year: 2015, + rating: 5.9, + votes: 11805, + running_times: 5340, + }, + { + title: "Southern Comfort", + year: 1981, + rating: 7.2, + votes: 13134, + running_times: 6360, + }, + { + title: "Southland Tales", + year: 2006, + rating: 5.5, + votes: 33843, + running_times: 9600, + }, + { + title: "Southpaw", + year: 2015, + rating: 7.4, + votes: 180071, + running_times: 7440, + }, + { + title: "Soylent Green", + year: 1973, + rating: 7.1, + votes: 48661, + running_times: 5820, + }, + { + title: "Space Cowboys", + year: 2000, + rating: 6.4, + votes: 64257, + running_times: 7800, + }, + { + title: "Space Jam", + year: 1996, + rating: 6.3, + votes: 126652, + running_times: 5280, + }, + { + title: "SpaceCamp", + year: 1986, + rating: 5.6, + votes: 11589, + running_times: 6420, + }, + { + title: "Spaceballs", + year: 1987, + rating: 7.1, + votes: 148313, + running_times: 5760, + }, + { + title: "Spanglish", + year: 2004, + rating: 6.4, + votes: 69742, + running_times: 7860, + }, + { + title: "Sparks", + year: 2013, + rating: 5.9, + votes: 10225, + running_times: 5820, + }, + { + title: "Spartacus", + year: 1960, + rating: 7.9, + votes: 105800, + running_times: 11820, + }, + { + title: "Spartan", + year: 2004, + rating: 6.6, + votes: 27486, + running_times: 6360, + }, + { + title: "Spawn", + year: 1997, + rating: 5.2, + votes: 56746, + running_times: 5880, + }, + { + title: "Speak", + year: 2004, + rating: 7.4, + votes: 22204, + running_times: 5340, + }, + { + title: "Special Correspondents", + year: 2016, + rating: 5.8, + votes: 13704, + running_times: 6060, + }, + { + title: "Species", + year: 1995, + rating: 5.8, + votes: 65194, + running_times: 6480, + }, + { + title: "Species II", + year: 1998, + rating: 4.3, + votes: 24126, + running_times: 5580, + }, + { + title: "Spectral", + year: 2016, + rating: 6.3, + votes: 32422, + running_times: 6420, + }, + { + title: "Spectre", + year: 2015, + rating: 6.8, + votes: 323174, + running_times: 8880, + }, + { + title: "Speed", + year: 1994, + rating: 7.2, + votes: 282195, + running_times: 6960, + }, + { + title: "Speed 2: Cruise Control", + year: 1997, + rating: 3.8, + votes: 64736, + running_times: 7260, + }, + { + title: "Speed Racer", + year: 2008, + rating: 6, + votes: 61516, + running_times: 8100, + }, + { + title: "Spellbound", + year: 1945, + rating: 7.6, + votes: 36085, + running_times: 7080, + }, + { + title: "Spellbound", + year: 2002, + rating: 7.6, + votes: 11339, + running_times: 5820, + }, + { + title: "Sphere", + year: 1998, + rating: 6.1, + votes: 88295, + running_times: 8040, + }, + { + title: "Spice World", + year: 1997, + rating: 3.4, + votes: 29530, + running_times: 5580, + }, + { + title: "Spider", + year: 2002, + rating: 6.8, + votes: 31954, + running_times: 5880, + }, + { + title: "Spider-Man", + year: 2002, + rating: 7.3, + votes: 592886, + running_times: 7260, + }, + { + title: "Spider-Man 2", + year: 2004, + rating: 7.3, + votes: 456912, + running_times: 8100, + }, + { + title: "Spider-Man 3", + year: 2007, + rating: 6.2, + votes: 421570, + running_times: 8340, + }, + { + title: "Spider-Man: Homecoming", + year: 2017, + rating: 7.6, + votes: 249739, + running_times: 7980, + }, + { + title: "Spies Like Us", + year: 1985, + rating: 6.4, + votes: 37604, + running_times: 6120, + }, + { + title: "Spirit: Stallion of the Cimarron", + year: 2002, + rating: 7.1, + votes: 51140, + running_times: 5160, + }, + { + title: "Splash", + year: 1984, + rating: 6.2, + votes: 59128, + running_times: 6660, + }, + { + title: "Splendor in the Grass", + year: 1961, + rating: 7.8, + votes: 14760, + running_times: 7440, + }, + { + title: "Splice", + year: 2009, + rating: 5.8, + votes: 83775, + running_times: 6240, + }, + { + title: "Splinter", + year: 2008, + rating: 6.1, + votes: 28948, + running_times: 4920, + }, + { + title: "Split", + year: 2016, + rating: 7.3, + votes: 234221, + running_times: 7020, + }, + { + title: "Spooks: The Greater Good", + year: 2015, + rating: 6.2, + votes: 16463, + running_times: 6240, + }, + { + title: "Spoorloos", + year: 1988, + rating: 7.8, + votes: 27755, + running_times: 6420, + }, + { + title: "Spotlight", + year: 2015, + rating: 8.1, + votes: 297395, + running_times: 7680, + }, + { + title: "Spread", + year: 2009, + rating: 5.9, + votes: 34410, + running_times: 5820, + }, + { + title: "Spring", + year: 2014, + rating: 6.7, + votes: 17755, + running_times: 6540, + }, + { + title: "Spring Breakers", + year: 2012, + rating: 5.3, + votes: 117494, + running_times: 5640, + }, + { title: "Spun", year: 2002, rating: 6.8, votes: 33594, running_times: 6360 }, + { title: "Spy", year: 2015, rating: 7, votes: 196663, running_times: 7800 }, + { + title: "Spy Game", + year: 2001, + rating: 7.1, + votes: 128296, + running_times: 7560, + }, + { + title: "Spy Hard", + year: 1996, + rating: 5.3, + votes: 31921, + running_times: 4860, + }, + { + title: "Spy Kids", + year: 2001, + rating: 5.4, + votes: 91900, + running_times: 5280, + }, + { + title: "Spy Kids 2: Island of Lost Dreams", + year: 2002, + rating: 5.1, + votes: 49760, + running_times: 6000, + }, + { + title: "Spy Kids 3: Game Over", + year: 2003, + rating: 4.2, + votes: 44716, + running_times: 5040, + }, + { + title: "Spy Kids: All the Time in the World in 4D", + year: 2011, + rating: 3.6, + votes: 17547, + running_times: 5340, + }, + { + title: "Srpski film", + year: 2010, + rating: 5.2, + votes: 45822, + running_times: 6240, + }, + { + title: "St. Elmo's Fire", + year: 1985, + rating: 6.4, + votes: 30251, + running_times: 6600, + }, + { + title: "St. Trinian's", + year: 2007, + rating: 5.8, + votes: 19445, + running_times: 6000, + }, + { + title: "St. Vincent", + year: 2014, + rating: 7.3, + votes: 83606, + running_times: 6120, + }, + { + title: "Stage Fright", + year: 1950, + rating: 7.1, + votes: 10406, + running_times: 6600, + }, + { + title: "Stagecoach", + year: 1939, + rating: 7.9, + votes: 34419, + running_times: 5760, + }, + { + title: "Stake Land", + year: 2010, + rating: 6.5, + votes: 37105, + running_times: 5880, + }, + { + title: "Stakeout", + year: 1987, + rating: 6.6, + votes: 20222, + running_times: 7020, + }, + { + title: "Stalag 17", + year: 1953, + rating: 8, + votes: 45605, + running_times: 7200, + }, + { + title: "Stan Helsing", + year: 2009, + rating: 3.6, + votes: 10509, + running_times: 6480, + }, + { + title: "Stand Up Guys", + year: 2012, + rating: 6.5, + votes: 48161, + running_times: 5700, + }, + { + title: "Stand and Deliver", + year: 1988, + rating: 7.3, + votes: 13394, + running_times: 6180, + }, + { + title: "Stand by Me", + year: 1986, + rating: 8.1, + votes: 303523, + running_times: 5340, + }, + { + title: "Star Trek", + year: 2009, + rating: 8, + votes: 536248, + running_times: 7620, + }, + { + title: "Star Trek III: The Search for Spock", + year: 1984, + rating: 6.7, + votes: 63865, + running_times: 6300, + }, + { + title: "Star Trek IV: The Voyage Home", + year: 1986, + rating: 7.3, + votes: 67227, + running_times: 7140, + }, + { + title: "Star Trek V: The Final Frontier", + year: 1989, + rating: 5.4, + votes: 47861, + running_times: 6420, + }, + { + title: "Star Trek VI: The Undiscovered Country", + year: 1991, + rating: 7.2, + votes: 60259, + running_times: 6780, + }, + { + title: "Star Trek: Beyond", + year: 2016, + rating: 7.1, + votes: 184977, + running_times: 7320, + }, + { + title: "Star Trek: First Contact", + year: 1996, + rating: 7.6, + votes: 103993, + running_times: 6660, + }, + { + title: "Star Trek: Generations", + year: 1994, + rating: 6.6, + votes: 65421, + running_times: 7080, + }, + { + title: "Star Trek: Insurrection", + year: 1998, + rating: 6.4, + votes: 60876, + running_times: 6180, + }, + { + title: "Star Trek: Into Darkness", + year: 2013, + rating: 7.8, + votes: 427145, + running_times: 7920, + }, + { + title: "Star Trek: Nemesis", + year: 2002, + rating: 6.4, + votes: 63211, + running_times: 6960, + }, + { + title: "Star Trek: The Motion Picture", + year: 1979, + rating: 6.4, + votes: 69315, + running_times: 8580, + }, + { + title: "Star Trek: The Wrath of Khan", + year: 1982, + rating: 7.7, + votes: 98459, + running_times: 6960, + }, + { + title: "Star Wars", + year: 1977, + rating: 8.7, + votes: 1017627, + running_times: 7500, + }, + { + title: "Star Wars: Episode I - The Phantom Menace", + year: 1999, + rating: 6.5, + votes: 595846, + running_times: 8160, + }, + { + title: "Star Wars: Episode II - Attack of the Clones", + year: 2002, + rating: 6.6, + votes: 521026, + running_times: 8520, + }, + { + title: "Star Wars: Episode III - Revenge of the Sith", + year: 2005, + rating: 7.6, + votes: 581269, + running_times: 8400, + }, + { + title: "Star Wars: Episode V - The Empire Strikes Back", + year: 1980, + rating: 8.8, + votes: 945421, + running_times: 7620, + }, + { + title: "Star Wars: Episode VI - Return of the Jedi", + year: 1983, + rating: 8.4, + votes: 775825, + running_times: 8040, + }, + { + title: "Star Wars: Episode VII - The Force Awakens", + year: 2015, + rating: 8.1, + votes: 707963, + running_times: 8160, + }, + { + title: "Star Wars: Episode VIII - The Last Jedi", + year: 2017, + rating: 7.8, + votes: 151246, + running_times: 9120, + }, + { + title: "Star Wars: The Clone Wars", + year: 2008, + rating: 5.9, + votes: 46331, + running_times: 5880, + }, + { + title: "Stardust", + year: 2007, + rating: 7.7, + votes: 226118, + running_times: 7620, + }, + { + title: "Stardust Memories", + year: 1980, + rating: 7.4, + votes: 18163, + running_times: 5340, + }, + { + title: "Stargate", + year: 1994, + rating: 7.1, + votes: 157475, + running_times: 7800, + }, + { + title: "Starman", + year: 1984, + rating: 7, + votes: 36137, + running_times: 6900, + }, + { + title: "Starred Up", + year: 2013, + rating: 7.4, + votes: 36248, + running_times: 6360, + }, + { + title: "Starry Eyes", + year: 2014, + rating: 6, + votes: 13931, + running_times: 5880, + }, + { + title: "Starship Troopers", + year: 1997, + rating: 7.2, + votes: 237306, + running_times: 7740, + }, + { + title: "Starsky & Hutch", + year: 2004, + rating: 6.1, + votes: 126352, + running_times: 6060, + }, + { + title: "Starter for 10", + year: 2006, + rating: 6.7, + votes: 19276, + running_times: 5520, + }, + { + title: "State and Main", + year: 2000, + rating: 6.8, + votes: 18956, + running_times: 6300, + }, + { + title: "State of Grace", + year: 1990, + rating: 7.3, + votes: 17972, + running_times: 8040, + }, + { + title: "State of Play", + year: 2009, + rating: 7.1, + votes: 119675, + running_times: 7620, + }, + { title: "Stay", year: 2005, rating: 6.9, votes: 66125, running_times: 5940 }, + { + title: "Stay Alive", + year: 2006, + rating: 5.1, + votes: 27146, + running_times: 6000, + }, + { + title: "Staying Alive", + year: 1983, + rating: 4.5, + votes: 12227, + running_times: 5760, + }, + { + title: "Stealing Beauty", + year: 1996, + rating: 6.6, + votes: 21983, + running_times: 7080, + }, + { + title: "Stealing Harvard", + year: 2002, + rating: 5.1, + votes: 11543, + running_times: 5100, + }, + { + title: "Stealth", + year: 2005, + rating: 5, + votes: 47402, + running_times: 7260, + }, + { + title: "Steamboat Bill, Jr.", + year: 1928, + rating: 8, + votes: 10531, + running_times: 4200, + }, + { + title: "Steel Magnolias", + year: 1989, + rating: 7.2, + votes: 37721, + running_times: 7140, + }, + { + title: "Step Brothers", + year: 2008, + rating: 6.9, + votes: 229760, + running_times: 6360, + }, + { + title: "Step Up", + year: 2006, + rating: 6.5, + votes: 98606, + running_times: 6240, + }, + { + title: "Step Up 2: The Streets", + year: 2008, + rating: 6.2, + votes: 72340, + running_times: 5880, + }, + { + title: "Step Up 3D", + year: 2010, + rating: 6.2, + votes: 50574, + running_times: 6420, + }, + { + title: "Step Up All In", + year: 2014, + rating: 6, + votes: 28255, + running_times: 6720, + }, + { + title: "Step Up Revolution", + year: 2012, + rating: 6.5, + votes: 48730, + running_times: 5940, + }, + { + title: "Stepmom", + year: 1998, + rating: 6.7, + votes: 51070, + running_times: 7440, + }, + { + title: "Steve Jobs", + year: 2015, + rating: 7.2, + votes: 124496, + running_times: 7320, + }, + { + title: "Stick It", + year: 2006, + rating: 6.4, + votes: 24032, + running_times: 6180, + }, + { + title: "Stigmata", + year: 1999, + rating: 6.2, + votes: 57586, + running_times: 6180, + }, + { + title: "Still Alice", + year: 2014, + rating: 7.5, + votes: 104004, + running_times: 6060, + }, + { + title: "Stir Crazy", + year: 1980, + rating: 6.8, + votes: 20418, + running_times: 6660, + }, + { + title: "Stir of Echoes", + year: 1999, + rating: 7, + votes: 66144, + running_times: 5940, + }, + { + title: "Stoker", + year: 2013, + rating: 6.8, + votes: 91869, + running_times: 5940, + }, + { + title: "Stolen", + year: 2012, + rating: 5.5, + votes: 39431, + running_times: 5760, + }, + { + title: "Stomp the Yard", + year: 2007, + rating: 5.3, + votes: 20324, + running_times: 6900, + }, + { + title: "Stone", + year: 2010, + rating: 5.4, + votes: 36629, + running_times: 6300, + }, + { + title: "Stop! Or My Mom Will Shoot", + year: 1992, + rating: 4.1, + votes: 33866, + running_times: 5220, + }, + { + title: "Stop-Loss", + year: 2008, + rating: 6.5, + votes: 18497, + running_times: 6720, + }, + { + title: "Stories We Tell", + year: 2012, + rating: 7.6, + votes: 10436, + running_times: 6480, + }, + { + title: "Storks", + year: 2016, + rating: 6.8, + votes: 42746, + running_times: 5220, + }, + { + title: "Stormbreaker", + year: 2006, + rating: 5.1, + votes: 21362, + running_times: 5580, + }, + { + title: "Storytelling", + year: 2001, + rating: 6.9, + votes: 15914, + running_times: 5220, + }, + { + title: "Straight Outta Compton", + year: 2015, + rating: 7.9, + votes: 149835, + running_times: 10020, + }, + { + title: "Strange Days", + year: 1995, + rating: 7.2, + votes: 58409, + running_times: 8700, + }, + { + title: "Strange Wilderness", + year: 2008, + rating: 5.3, + votes: 19489, + running_times: 5220, + }, + { + title: "Stranger Than Fiction", + year: 2006, + rating: 7.6, + votes: 198359, + running_times: 6780, + }, + { + title: "Stranger Than Paradise", + year: 1984, + rating: 7.6, + votes: 28124, + running_times: 5340, + }, + { + title: "Strangers on a Train", + year: 1951, + rating: 8, + votes: 106706, + running_times: 6180, + }, + { + title: "Straw Dogs", + year: 1971, + rating: 7.5, + votes: 48867, + running_times: 7080, + }, + { + title: "Straw Dogs", + year: 2011, + rating: 5.8, + votes: 28934, + running_times: 6600, + }, + { + title: "Street Fighter", + year: 1994, + rating: 3.8, + votes: 56501, + running_times: 6120, + }, + { + title: "Street Fighter: The Legend of Chun-Li", + year: 2009, + rating: 3.7, + votes: 20710, + running_times: 5760, + }, + { + title: "Street Kings", + year: 2008, + rating: 6.8, + votes: 99006, + running_times: 6540, + }, + { + title: "Streets of Fire", + year: 1984, + rating: 6.7, + votes: 13960, + running_times: 5700, + }, + { + title: "Stretch", + year: 2014, + rating: 6.5, + votes: 25506, + running_times: 5640, + }, + { + title: "Strictly Ballroom", + year: 1992, + rating: 7.2, + votes: 21836, + running_times: 5640, + }, + { + title: "Striking Distance", + year: 1993, + rating: 5.8, + votes: 35780, + running_times: 6120, + }, + { + title: "Stripes", + year: 1981, + rating: 6.9, + votes: 53430, + running_times: 7320, + }, + { + title: "Striptease", + year: 1996, + rating: 4.3, + votes: 37180, + running_times: 7020, + }, + { + title: "Stroszek", + year: 1977, + rating: 8, + votes: 10592, + running_times: 6900, + }, + { + title: "Struck by Lightning", + year: 2012, + rating: 6.3, + votes: 13599, + running_times: 5400, + }, + { + title: "Stuart Little", + year: 1999, + rating: 5.9, + votes: 105005, + running_times: 5040, + }, + { + title: "Stuart Little 2", + year: 2002, + rating: 5.4, + votes: 41063, + running_times: 4920, + }, + { + title: "Stuck in Love", + year: 2012, + rating: 7.3, + votes: 73477, + running_times: 5820, + }, + { + title: "Stuck on You", + year: 2003, + rating: 5.8, + votes: 46800, + running_times: 7080, + }, + { + title: "Submarine", + year: 2010, + rating: 7.3, + votes: 74119, + running_times: 5820, + }, + { + title: "Suburra", + year: 2015, + rating: 7.4, + votes: 11483, + running_times: 7800, + }, + { + title: "Suchîmubôi", + year: 2004, + rating: 6.9, + votes: 14714, + running_times: 7620, + }, + { + title: "Sucker Punch", + year: 2011, + rating: 6.1, + votes: 209381, + running_times: 7680, + }, + { + title: "Sudden Death", + year: 1995, + rating: 5.7, + votes: 27751, + running_times: 6660, + }, + { + title: "Sudden Impact", + year: 1983, + rating: 6.6, + votes: 34112, + running_times: 7020, + }, + { + title: "Suddenly, Last Summer", + year: 1959, + rating: 7.6, + votes: 11425, + running_times: 6840, + }, + { + title: "Suffragette", + year: 2015, + rating: 6.9, + votes: 28983, + running_times: 6360, + }, + { + title: "Sugar & Spice", + year: 2001, + rating: 5.6, + votes: 12104, + running_times: 5040, + }, + { + title: "Suicide Kings", + year: 1997, + rating: 7, + votes: 23626, + running_times: 6360, + }, + { + title: "Suicide Squad", + year: 2016, + rating: 6.1, + votes: 453361, + running_times: 8040, + }, + { + title: "Suite Française", + year: 2014, + rating: 6.9, + votes: 15697, + running_times: 6420, + }, + { + title: "Sukiyaki Western Django", + year: 2007, + rating: 6.3, + votes: 13457, + running_times: 7260, + }, + { + title: "Sullivan's Travels", + year: 1941, + rating: 8.1, + votes: 20038, + running_times: 5400, + }, + { + title: "Sully", + year: 2016, + rating: 7.5, + votes: 165235, + running_times: 5760, + }, + { + title: "Summer Catch", + year: 2001, + rating: 5, + votes: 13708, + running_times: 6480, + }, + { + title: "Summer Rental", + year: 1985, + rating: 6.2, + votes: 11213, + running_times: 5280, + }, + { + title: "Summer School", + year: 1987, + rating: 6.5, + votes: 14190, + running_times: 5820, + }, + { + title: "Summer of Sam", + year: 1999, + rating: 6.6, + votes: 32643, + running_times: 8520, + }, + { + title: "Sunrise: A Song of Two Humans", + year: 1927, + rating: 8.2, + votes: 34599, + running_times: 6360, + }, + { + title: "Sunset Blvd.", + year: 1950, + rating: 8.5, + votes: 157474, + running_times: 6900, + }, + { + title: "Sunshine", + year: 1999, + rating: 7.5, + votes: 11782, + running_times: 10860, + }, + { + title: "Sunshine", + year: 2007, + rating: 7.3, + votes: 206210, + running_times: 6420, + }, + { + title: "Sunshine Cleaning", + year: 2008, + rating: 6.9, + votes: 63947, + running_times: 5460, + }, + { + title: "Super", + year: 2010, + rating: 6.8, + votes: 66282, + running_times: 5760, + }, + { + title: "Super 8", + year: 2011, + rating: 7, + votes: 305903, + running_times: 6720, + }, + { + title: "Super High Me", + year: 2007, + rating: 6.1, + votes: 12122, + running_times: 5640, + }, + { + title: "Super Mario Bros.", + year: 1993, + rating: 4, + votes: 40962, + running_times: 6240, + }, + { + title: "Super Size Me", + year: 2004, + rating: 7.2, + votes: 91271, + running_times: 6000, + }, + { + title: "Super Troopers", + year: 2001, + rating: 7.1, + votes: 81588, + running_times: 6000, + }, + { + title: "Superbabies: Baby Geniuses 2", + year: 2004, + rating: 2, + votes: 27008, + running_times: 5280, + }, + { + title: "Superbad", + year: 2007, + rating: 7.6, + votes: 454499, + running_times: 7140, + }, + { + title: "Supergirl", + year: 1984, + rating: 4.3, + votes: 15532, + running_times: 9000, + }, + { + title: "Superhero Movie", + year: 2008, + rating: 4.5, + votes: 55895, + running_times: 4920, + }, + { + title: "Superman", + year: 1978, + rating: 7.3, + votes: 137512, + running_times: 11280, + }, + { + title: "Superman II", + year: 1980, + rating: 6.8, + votes: 83797, + running_times: 7620, + }, + { + title: "Superman III", + year: 1983, + rating: 4.9, + votes: 54869, + running_times: 7500, + }, + { + title: "Superman IV: The Quest for Peace", + year: 1987, + rating: 3.7, + votes: 36261, + running_times: 8040, + }, + { + title: "Superman Returns", + year: 2006, + rating: 6.1, + votes: 251227, + running_times: 9240, + }, + { + title: "Supernova", + year: 2000, + rating: 4.8, + votes: 15455, + running_times: 5460, + }, + { + title: "Superstar", + year: 1999, + rating: 5, + votes: 15843, + running_times: 4860, + }, + { + title: "Surf's Up", + year: 2007, + rating: 6.7, + votes: 58422, + running_times: 5100, + }, + { + title: "Surrogates", + year: 2009, + rating: 6.3, + votes: 158065, + running_times: 5340, + }, + { + title: "Surveillance", + year: 2008, + rating: 6.4, + votes: 15562, + running_times: 5820, + }, + { + title: "Survival of the Dead", + year: 2009, + rating: 4.9, + votes: 18505, + running_times: 5400, + }, + { + title: "Surviving Christmas", + year: 2004, + rating: 5.4, + votes: 19131, + running_times: 5460, + }, + { + title: "Survivor", + year: 2015, + rating: 5.6, + votes: 25487, + running_times: 5760, + }, + { + title: "Suspect Zero", + year: 2004, + rating: 5.9, + votes: 17272, + running_times: 5940, + }, + { + title: "Suspicion", + year: 1941, + rating: 7.4, + votes: 26314, + running_times: 5940, + }, + { + title: "Suspiria", + year: 1977, + rating: 7.5, + votes: 53227, + running_times: 5880, + }, + { + title: "Swades: We, the People", + year: 2004, + rating: 8.3, + votes: 67127, + running_times: 12600, + }, + { + title: "Swamp Thing", + year: 1982, + rating: 5.4, + votes: 10572, + running_times: 5580, + }, + { + title: "Sweeney Todd: The Demon Barber of Fleet Street", + year: 2007, + rating: 7.4, + votes: 304578, + running_times: 6960, + }, + { + title: "Sweet Home Alabama", + year: 2002, + rating: 6.2, + votes: 89850, + running_times: 6480, + }, + { + title: "Sweet November", + year: 2001, + rating: 6.7, + votes: 75538, + running_times: 7140, + }, + { + title: "Sweet Sixteen", + year: 2002, + rating: 7.5, + votes: 11509, + running_times: 6360, + }, + { + title: "Sweet Smell of Success", + year: 1957, + rating: 8.2, + votes: 22137, + running_times: 5760, + }, + { + title: "Sweet and Lowdown", + year: 1999, + rating: 7.3, + votes: 29295, + running_times: 5700, + }, + { + title: "Swept Away", + year: 2002, + rating: 3.6, + votes: 13837, + running_times: 5340, + }, + { + title: "Swimfan", + year: 2002, + rating: 5, + votes: 17194, + running_times: 5100, + }, + { + title: "Swimming Pool", + year: 2003, + rating: 6.8, + votes: 37303, + running_times: 6120, + }, + { + title: "Swimming with Sharks", + year: 1994, + rating: 7.1, + votes: 20150, + running_times: 5580, + }, + { + title: "Swing Kids", + year: 1993, + rating: 6.8, + votes: 13991, + running_times: 6720, + }, + { + title: "Swing Vote", + year: 2008, + rating: 6.1, + votes: 15920, + running_times: 7200, + }, + { + title: "Swingers", + year: 1996, + rating: 7.3, + votes: 67695, + running_times: 5760, + }, + { + title: "Swiss Army Man", + year: 2016, + rating: 7, + votes: 73349, + running_times: 5820, + }, + { + title: "Swiss Family Robinson", + year: 1960, + rating: 7.2, + votes: 11259, + running_times: 7560, + }, + { + title: "Switchback", + year: 1997, + rating: 6.4, + votes: 10691, + running_times: 7080, + }, + { + title: "Swordfish", + year: 2001, + rating: 6.5, + votes: 162723, + running_times: 5940, + }, + { + title: "Sydney", + year: 1996, + rating: 7.3, + votes: 31752, + running_times: 6120, + }, + { + title: "Sydney White", + year: 2007, + rating: 6.3, + votes: 40517, + running_times: 6480, + }, + { + title: "Synecdoche, New York", + year: 2008, + rating: 7.5, + votes: 64501, + running_times: 7440, + }, + { + title: "Syriana", + year: 2005, + rating: 7, + votes: 115584, + running_times: 7680, + }, + { + title: "Så som i himmelen", + year: 2004, + rating: 7.6, + votes: 14507, + running_times: 7980, + }, + { + title: "T2 Trainspotting", + year: 2017, + rating: 7.3, + votes: 71133, + running_times: 7020, + }, + { + title: "THX 1138", + year: 1971, + rating: 6.8, + votes: 42170, + running_times: 5280, + }, + { title: "TMNT", year: 2007, rating: 6.3, votes: 56090, running_times: 5220 }, + { + title: "TRON", + year: 1982, + rating: 6.8, + votes: 100273, + running_times: 5760, + }, + { + title: "Taare Zameen Par", + year: 2007, + rating: 8.5, + votes: 113334, + running_times: 9900, + }, + { + title: "Table 19", + year: 2017, + rating: 5.8, + votes: 13202, + running_times: 5220, + }, + { + title: "Take Me Home Tonight", + year: 2011, + rating: 6.3, + votes: 46354, + running_times: 5820, + }, + { + title: "Take Shelter", + year: 2011, + rating: 7.4, + votes: 77009, + running_times: 7260, + }, + { + title: "Take This Waltz", + year: 2011, + rating: 6.6, + votes: 24404, + running_times: 6960, + }, + { + title: "Take the Lead", + year: 2006, + rating: 6.7, + votes: 22877, + running_times: 7080, + }, + { + title: "Take the Money and Run", + year: 1969, + rating: 7.3, + votes: 24562, + running_times: 5100, + }, + { + title: "Taken", + year: 2008, + rating: 7.8, + votes: 513482, + running_times: 5580, + }, + { + title: "Taken 2", + year: 2012, + rating: 6.3, + votes: 257220, + running_times: 5880, + }, + { + title: "Taken 3", + year: 2014, + rating: 6, + votes: 151174, + running_times: 6900, + }, + { + title: "Takers", + year: 2010, + rating: 6.2, + votes: 50191, + running_times: 6420, + }, + { + title: "Taking Lives", + year: 2004, + rating: 6.2, + votes: 69873, + running_times: 6540, + }, + { + title: "Taking Woodstock", + year: 2009, + rating: 6.7, + votes: 26011, + running_times: 7200, + }, + { + title: "Talaash", + year: 2012, + rating: 7.3, + votes: 32847, + running_times: 8400, + }, + { + title: "Tales from the Crypt: Demon Knight", + year: 1995, + rating: 6.7, + votes: 17987, + running_times: 5520, + }, + { + title: "Tales from the Darkside: The Movie", + year: 1990, + rating: 6.2, + votes: 12283, + running_times: 5580, + }, + { + title: "Talk Radio", + year: 1988, + rating: 7.3, + votes: 10822, + running_times: 6600, + }, + { + title: "Talladega Nights: The Ballad of Ricky Bobby", + year: 2006, + rating: 6.6, + votes: 141841, + running_times: 7320, + }, + { + title: "Tallulah", + year: 2016, + rating: 6.8, + votes: 11732, + running_times: 6660, + }, + { + title: "Tamara Drewe", + year: 2010, + rating: 6.2, + votes: 18287, + running_times: 6540, + }, + { + title: "También la lluvia", + year: 2010, + rating: 7.5, + votes: 10848, + running_times: 6180, + }, + { + title: "Tammy", + year: 2014, + rating: 4.9, + votes: 40482, + running_times: 6000, + }, + { + title: "Tangerine", + year: 2015, + rating: 7.1, + votes: 17459, + running_times: 5280, + }, + { + title: "Tangled", + year: 2010, + rating: 7.8, + votes: 330137, + running_times: 6000, + }, + { + title: "Tangled Ever After", + year: 2012, + rating: 7.7, + votes: 14090, + running_times: 360, + }, + { + title: "Tango & Cash", + year: 1989, + rating: 6.3, + votes: 82157, + running_times: 6240, + }, + { + title: "Tank Girl", + year: 1995, + rating: 5.3, + votes: 26488, + running_times: 6240, + }, + { title: "Tape", year: 2001, rating: 7.3, votes: 16803, running_times: 5160 }, + { title: "Taps", year: 1981, rating: 6.7, votes: 14164, running_times: 7560 }, + { + title: "Tarzan", + year: 1999, + rating: 7.2, + votes: 163076, + running_times: 5280, + }, + { + title: "Tarzan", + year: 2013, + rating: 4.8, + votes: 11169, + running_times: 5640, + }, + { title: "Taxi", year: 2004, rating: 4.4, votes: 35435, running_times: 6240 }, + { + title: "Taxi Driver", + year: 1976, + rating: 8.3, + votes: 571416, + running_times: 6780, + }, + { + title: "Taxi to the Dark Side", + year: 2007, + rating: 7.6, + votes: 12445, + running_times: 6360, + }, + { + title: "Taxidermia", + year: 2006, + rating: 7, + votes: 14280, + running_times: 5460, + }, + { + title: "Te wu mi cheng", + year: 2001, + rating: 5.9, + votes: 13830, + running_times: 6480, + }, + { + title: "Teaching Mrs. Tingle", + year: 1999, + rating: 5.2, + votes: 18065, + running_times: 5760, + }, + { + title: "Team America: World Police", + year: 2004, + rating: 7.2, + votes: 143954, + running_times: 5880, + }, + { + title: "Tears of the Sun", + year: 2003, + rating: 6.6, + votes: 100114, + running_times: 8520, + }, + { title: "Ted", year: 2012, rating: 7, votes: 507957, running_times: 6720 }, + { + title: "Ted 2", + year: 2015, + rating: 6.3, + votes: 146086, + running_times: 7500, + }, + { + title: "Teen Wolf", + year: 1985, + rating: 6, + votes: 38362, + running_times: 5460, + }, + { + title: "Teenage Mutant Ninja Turtles", + year: 1990, + rating: 6.7, + votes: 74041, + running_times: 5580, + }, + { + title: "Teenage Mutant Ninja Turtles", + year: 2014, + rating: 5.8, + votes: 183023, + running_times: 6060, + }, + { + title: "Teenage Mutant Ninja Turtles II: The Secret of the Ooze", + year: 1991, + rating: 6, + votes: 45238, + running_times: 5280, + }, + { + title: "Teenage Mutant Ninja Turtles III", + year: 1993, + rating: 4.8, + votes: 26894, + running_times: 5760, + }, + { + title: "Teenage Mutant Ninja Turtles: Out of the Shadows", + year: 2016, + rating: 6, + votes: 66805, + running_times: 6720, + }, + { + title: "Teeth", + year: 2007, + rating: 5.4, + votes: 36765, + running_times: 5640, + }, + { + title: "Tekken", + year: 2010, + rating: 4.8, + votes: 23706, + running_times: 5520, + }, + { + title: "Temptation: Confessions of a Marriage Counselor", + year: 2013, + rating: 5, + votes: 10536, + running_times: 6660, + }, + { + title: "Ten Inch Hero", + year: 2007, + rating: 7.5, + votes: 10805, + running_times: 6120, + }, + { + title: "Tenacious D in The Pick of Destiny", + year: 2006, + rating: 6.8, + votes: 91597, + running_times: 5580, + }, + { + title: "Tenebre", + year: 1982, + rating: 7.2, + votes: 16000, + running_times: 6060, + }, + { + title: "Tequila Sunrise", + year: 1988, + rating: 6, + votes: 24950, + running_times: 6900, + }, + { + title: "Terminal Velocity", + year: 1994, + rating: 5.4, + votes: 11461, + running_times: 6120, + }, + { + title: "Terminator 2: Judgment Day", + year: 1991, + rating: 8.5, + votes: 824332, + running_times: 9360, + }, + { + title: "Terminator 3: Rise of the Machines", + year: 2003, + rating: 6.3, + votes: 328905, + running_times: 6540, + }, + { + title: "Terminator Genisys", + year: 2015, + rating: 6.5, + votes: 215687, + running_times: 7560, + }, + { + title: "Terminator Salvation", + year: 2009, + rating: 6.6, + votes: 304237, + running_times: 7080, + }, + { + title: "Terms of Endearment", + year: 1983, + rating: 7.4, + votes: 44741, + running_times: 7920, + }, + { + title: "Terra", + year: 2007, + rating: 6.6, + votes: 10448, + running_times: 5100, + }, + { + title: "Tess", + year: 1979, + rating: 7.3, + votes: 12322, + running_times: 11160, + }, + { + title: "Testament of Youth", + year: 2014, + rating: 7.3, + votes: 19729, + running_times: 7800, + }, + { + title: "Tetro", + year: 2009, + rating: 6.9, + votes: 11124, + running_times: 7620, + }, + { + title: "Texas Chainsaw 3D", + year: 2013, + rating: 4.8, + votes: 38655, + running_times: 5520, + }, + { + title: "Texas Killing Fields", + year: 2011, + rating: 5.7, + votes: 16211, + running_times: 6300, + }, + { + title: "Thank You for Smoking", + year: 2005, + rating: 7.6, + votes: 199541, + running_times: 5520, + }, + { + title: "Thanks for Sharing", + year: 2012, + rating: 6.4, + votes: 22550, + running_times: 6720, + }, + { + title: "That Awkward Moment", + year: 2014, + rating: 6.2, + votes: 84885, + running_times: 5640, + }, + { + title: "That Thing You Do!", + year: 1996, + rating: 6.9, + votes: 53878, + running_times: 8940, + }, + { + title: "That's My Boy", + year: 2012, + rating: 5.6, + votes: 76768, + running_times: 6960, + }, + { + title: "The 'Burbs", + year: 1989, + rating: 6.9, + votes: 56541, + running_times: 6060, + }, + { + title: "The 13th Warrior", + year: 1999, + rating: 6.6, + votes: 106127, + running_times: 6120, + }, + { + title: "The 33", + year: 2015, + rating: 6.9, + votes: 28594, + running_times: 7620, + }, + { + title: "The 39 Steps", + year: 1935, + rating: 7.8, + votes: 43400, + running_times: 5160, + }, + { + title: "The 40 Year Old Virgin", + year: 2005, + rating: 7.1, + votes: 337621, + running_times: 7980, + }, + { + title: "The 51st State", + year: 2001, + rating: 6.3, + votes: 44500, + running_times: 5580, + }, + { + title: "The 5th Wave", + year: 2016, + rating: 5.2, + votes: 78607, + running_times: 6720, + }, + { + title: "The 6th Day", + year: 2000, + rating: 5.9, + votes: 105516, + running_times: 7380, + }, + { + title: "The A-Team", + year: 2010, + rating: 6.8, + votes: 224171, + running_times: 7980, + }, + { + title: "The ABCs of Death", + year: 2012, + rating: 4.7, + votes: 15744, + running_times: 7740, + }, + { + title: "The Abandoned", + year: 2006, + rating: 5.6, + votes: 11545, + running_times: 5940, + }, + { + title: "The Abominable Dr. Phibes", + year: 1971, + rating: 7.2, + votes: 11188, + running_times: 5640, + }, + { + title: "The Abyss", + year: 1989, + rating: 7.6, + votes: 141969, + running_times: 10260, + }, + { + title: "The Accidental Husband", + year: 2008, + rating: 5.6, + votes: 20747, + running_times: 5400, + }, + { + title: "The Accidental Tourist", + year: 1988, + rating: 6.8, + votes: 13149, + running_times: 7260, + }, + { + title: "The Accountant", + year: 2016, + rating: 7.4, + votes: 198484, + running_times: 7680, + }, + { + title: "The Accused", + year: 1988, + rating: 7.1, + votes: 26442, + running_times: 6660, + }, + { + title: "The Act of Killing", + year: 2012, + rating: 8.2, + votes: 28060, + running_times: 9600, + }, + { + title: "The Addams Family", + year: 1991, + rating: 6.8, + votes: 106391, + running_times: 5940, + }, + { + title: "The Adjustment Bureau", + year: 2011, + rating: 7.1, + votes: 213923, + running_times: 6360, + }, + { + title: "The Adventures of Baron Munchausen", + year: 1988, + rating: 7.2, + votes: 44289, + running_times: 7560, + }, + { + title: "The Adventures of Bob & Doug McKenzie: Strange Brew", + year: 1983, + rating: 6.8, + votes: 13716, + running_times: 5400, + }, + { + title: "The Adventures of Buckaroo Banzai Across the 8th Dimension", + year: 1984, + rating: 6.4, + votes: 19401, + running_times: 6180, + }, + { + title: "The Adventures of Ford Fairlane", + year: 1990, + rating: 6.3, + votes: 15293, + running_times: 6240, + }, + { + title: "The Adventures of Pluto Nash", + year: 2002, + rating: 3.8, + votes: 21371, + running_times: 5700, + }, + { + title: "The Adventures of Priscilla, Queen of the Desert", + year: 1994, + rating: 7.5, + votes: 39960, + running_times: 6240, + }, + { + title: "The Adventures of Robin Hood", + year: 1938, + rating: 8, + votes: 41275, + running_times: 6120, + }, + { + title: "The Adventures of Rocky & Bullwinkle", + year: 2000, + rating: 4.2, + votes: 17533, + running_times: 5520, + }, + { + title: "The Adventures of Sharkboy and Lavagirl 3-D", + year: 2005, + rating: 3.5, + votes: 23046, + running_times: 5580, + }, + { + title: "The Adventures of Tintin", + year: 2011, + rating: 7.4, + votes: 189928, + running_times: 6420, + }, + { + title: "The African Queen", + year: 1951, + rating: 7.9, + votes: 62420, + running_times: 6300, + }, + { + title: "The Age of Adaline", + year: 2015, + rating: 7.2, + votes: 121718, + running_times: 6720, + }, + { + title: "The Age of Innocence", + year: 1993, + rating: 7.2, + votes: 39664, + running_times: 8340, + }, + { + title: "The Air I Breathe", + year: 2007, + rating: 6.9, + votes: 32248, + running_times: 5700, + }, + { + title: "The Alamo", + year: 1960, + rating: 6.9, + votes: 11909, + running_times: 12180, + }, + { + title: "The Alamo", + year: 2004, + rating: 6, + votes: 17754, + running_times: 8220, + }, + { + title: "The Amazing Spider-Man", + year: 2012, + rating: 7, + votes: 489511, + running_times: 8160, + }, + { + title: "The Amazing Spider-Man 2", + year: 2014, + rating: 6.7, + votes: 356578, + running_times: 8520, + }, + { + title: "The American", + year: 2010, + rating: 6.3, + votes: 83595, + running_times: 6300, + }, + { + title: "The American President", + year: 1995, + rating: 6.8, + votes: 45620, + running_times: 6840, + }, + { + title: "The Amityville Horror", + year: 1979, + rating: 6.2, + votes: 30078, + running_times: 7020, + }, + { + title: "The Amityville Horror", + year: 2005, + rating: 6, + votes: 92636, + running_times: 5400, + }, + { + title: "The Andromeda Strain", + year: 1971, + rating: 7.2, + votes: 28205, + running_times: 7860, + }, + { + title: "The Angels' Share", + year: 2012, + rating: 7, + votes: 20149, + running_times: 6060, + }, + { + title: "The Angriest Man in Brooklyn", + year: 2014, + rating: 5.7, + votes: 18298, + running_times: 4980, + }, + { + title: "The Animal", + year: 2001, + rating: 4.8, + votes: 50589, + running_times: 5040, + }, + { + title: "The Ant Bully", + year: 2006, + rating: 5.9, + votes: 32279, + running_times: 5280, + }, + { + title: "The Apartment", + year: 1960, + rating: 8.3, + votes: 124560, + running_times: 7500, + }, + { + title: "The Apostle", + year: 1997, + rating: 7.2, + votes: 12080, + running_times: 8040, + }, + { + title: "The Apparition", + year: 2012, + rating: 4.1, + votes: 17285, + running_times: 4980, + }, + { + title: "The AristoCats", + year: 1970, + rating: 7.1, + votes: 73750, + running_times: 4680, + }, + { + title: "The Aristocrats", + year: 2005, + rating: 6.4, + votes: 15362, + running_times: 5340, + }, + { + title: "The Arrival", + year: 1996, + rating: 6.3, + votes: 27998, + running_times: 6900, + }, + { + title: "The Art of Getting By", + year: 2011, + rating: 6.6, + votes: 50390, + running_times: 4980, + }, + { + title: "The Art of War", + year: 2000, + rating: 5.7, + votes: 26345, + running_times: 7020, + }, + { + title: "The Art of the Steal", + year: 2013, + rating: 6.3, + votes: 20660, + running_times: 5400, + }, + { + title: "The Artist", + year: 2011, + rating: 7.9, + votes: 204685, + running_times: 6000, + }, + { + title: "The Asphalt Jungle", + year: 1950, + rating: 7.9, + votes: 19607, + running_times: 6720, + }, + { + title: "The Assassination of Jesse James by the Coward Robert Ford", + year: 2007, + rating: 7.5, + votes: 148086, + running_times: 9600, + }, + { + title: "The Assassination of Richard Nixon", + year: 2004, + rating: 7, + votes: 24037, + running_times: 5700, + }, + { + title: "The Astronaut Farmer", + year: 2006, + rating: 6.3, + votes: 20721, + running_times: 6240, + }, + { + title: "The Astronaut's Wife", + year: 1999, + rating: 5.3, + votes: 48379, + running_times: 6540, + }, + { + title: "The Autopsy of Jane Doe", + year: 2016, + rating: 6.8, + votes: 53254, + running_times: 5160, + }, + { + title: "The Avengers", + year: 1998, + rating: 3.7, + votes: 36996, + running_times: 6900, + }, + { + title: "The Avengers", + year: 2012, + rating: 8.1, + votes: 1076167, + running_times: 10380, + }, + { + title: "The Aviator", + year: 2004, + rating: 7.5, + votes: 287186, + running_times: 10200, + }, + { + title: "The Awakening", + year: 2011, + rating: 6.5, + votes: 56034, + running_times: 6120, + }, + { + title: "The Awful Truth", + year: 1937, + rating: 7.9, + votes: 14615, + running_times: 5460, + }, + { + title: "The BFG", + year: 2016, + rating: 6.4, + votes: 58384, + running_times: 7020, + }, + { + title: "The Babadook", + year: 2014, + rating: 6.8, + votes: 145814, + running_times: 5580, + }, + { + title: "The Babysitter", + year: 2017, + rating: 6.4, + votes: 23750, + running_times: 5100, + }, + { + title: "The Bachelor", + year: 1999, + rating: 5, + votes: 15389, + running_times: 6060, + }, + { + title: "The Back-up Plan", + year: 2010, + rating: 5.3, + votes: 43572, + running_times: 6240, + }, + { + title: "The Bad Batch", + year: 2016, + rating: 5.3, + votes: 12315, + running_times: 7080, + }, + { + title: "The Bad Lieutenant: Port of Call - New Orleans", + year: 2009, + rating: 6.7, + votes: 67911, + running_times: 7320, + }, + { + title: "The Bad News Bears", + year: 1976, + rating: 7.3, + votes: 17548, + running_times: 6120, + }, + { + title: "The Bad Seed", + year: 1956, + rating: 7.5, + votes: 10625, + running_times: 7740, + }, + { + title: "The Bad and the Beautiful", + year: 1952, + rating: 7.9, + votes: 10767, + running_times: 7080, + }, + { + title: "The Bag Man", + year: 2014, + rating: 5.3, + votes: 14481, + running_times: 6480, + }, + { + title: "The Banger Sisters", + year: 2002, + rating: 5.6, + votes: 13118, + running_times: 5880, + }, + { + title: "The Bank Job", + year: 2008, + rating: 7.3, + votes: 159896, + running_times: 6660, + }, + { + title: "The Basketball Diaries", + year: 1995, + rating: 7.3, + votes: 87598, + running_times: 6120, + }, + { + title: "The Bay", + year: 2012, + rating: 5.6, + votes: 21848, + running_times: 5040, + }, + { + title: "The Baytown Outlaws", + year: 2012, + rating: 6.4, + votes: 12067, + running_times: 5880, + }, + { + title: "The Beach", + year: 2000, + rating: 6.6, + votes: 193605, + running_times: 7140, + }, + { + title: "The Beastmaster", + year: 1982, + rating: 6.2, + votes: 16843, + running_times: 7080, + }, + { + title: "The Beaver", + year: 2011, + rating: 6.7, + votes: 42970, + running_times: 5460, + }, + { + title: "The Beguiled", + year: 1971, + rating: 7.2, + votes: 12372, + running_times: 6300, + }, + { + title: "The Beguiled", + year: 2017, + rating: 6.5, + votes: 25372, + running_times: 5580, + }, + { + title: "The Believer", + year: 2001, + rating: 7.2, + votes: 32765, + running_times: 5880, + }, + { + title: "The Belko Experiment", + year: 2016, + rating: 6.1, + votes: 26349, + running_times: 5340, + }, + { + title: "The Benchwarmers", + year: 2006, + rating: 5.6, + votes: 43224, + running_times: 4800, + }, + { + title: "The Best Exotic Marigold Hotel", + year: 2011, + rating: 7.3, + votes: 80701, + running_times: 7440, + }, + { + title: "The Best Man Holiday", + year: 2013, + rating: 6.7, + votes: 12444, + running_times: 7380, + }, + { + title: "The Best Years of Our Lives", + year: 1946, + rating: 8.1, + votes: 45211, + running_times: 10200, + }, + { + title: "The Best of Me", + year: 2014, + rating: 6.7, + votes: 52301, + running_times: 7080, + }, + { + title: "The Beverly Hillbillies", + year: 1993, + rating: 4.9, + votes: 15413, + running_times: 5520, + }, + { + title: "The Big Bounce", + year: 2004, + rating: 4.9, + votes: 16572, + running_times: 5280, + }, + { + title: "The Big Chill", + year: 1983, + rating: 7.2, + votes: 27814, + running_times: 6300, + }, + { + title: "The Big Country", + year: 1958, + rating: 7.9, + votes: 12621, + running_times: 9960, + }, + { + title: "The Big Easy", + year: 1986, + rating: 6.6, + votes: 10097, + running_times: 6120, + }, + { + title: "The Big Heat", + year: 1953, + rating: 8, + votes: 18479, + running_times: 5400, + }, + { + title: "The Big Hit", + year: 1998, + rating: 6.1, + votes: 25926, + running_times: 5460, + }, + { + title: "The Big Kahuna", + year: 1999, + rating: 6.6, + votes: 12791, + running_times: 5400, + }, + { + title: "The Big Lebowski", + year: 1998, + rating: 8.2, + votes: 601049, + running_times: 7020, + }, + { + title: "The Big Red One", + year: 1980, + rating: 7.2, + votes: 16487, + running_times: 9720, + }, + { + title: "The Big Short", + year: 2015, + rating: 7.8, + votes: 267728, + running_times: 7800, + }, + { + title: "The Big Sick", + year: 2017, + rating: 7.7, + votes: 53386, + running_times: 7200, + }, + { + title: "The Big Sleep", + year: 1946, + rating: 8, + votes: 69100, + running_times: 6960, + }, + { + title: "The Big Wedding", + year: 2013, + rating: 5.6, + votes: 41213, + running_times: 5340, + }, + { + title: "The Big White", + year: 2005, + rating: 6.4, + votes: 12913, + running_times: 6300, + }, + { + title: "The Big Year", + year: 2011, + rating: 6.2, + votes: 37408, + running_times: 6000, + }, + { + title: "The Birdcage", + year: 1996, + rating: 7, + votes: 67196, + running_times: 7020, + }, + { + title: "The Birds", + year: 1963, + rating: 7.7, + votes: 142556, + running_times: 7140, + }, + { + title: "The Birth of a Nation", + year: 2016, + rating: 6.3, + votes: 15740, + running_times: 7200, + }, + { + title: "The Bishop's Wife", + year: 1947, + rating: 7.6, + votes: 11115, + running_times: 6540, + }, + { + title: "The Black Cauldron", + year: 1985, + rating: 6.5, + votes: 24726, + running_times: 4800, + }, + { + title: "The Black Dahlia", + year: 2006, + rating: 5.6, + votes: 65934, + running_times: 7260, + }, + { + title: "The Black Hole", + year: 1979, + rating: 5.9, + votes: 19648, + running_times: 5880, + }, + { + title: "The Blair Witch Project", + year: 1999, + rating: 6.4, + votes: 204574, + running_times: 5280, + }, + { + title: "The Blind Side", + year: 2009, + rating: 7.7, + votes: 245570, + running_times: 7740, + }, + { + title: "The Bling Ring", + year: 2013, + rating: 5.6, + votes: 73490, + running_times: 5400, + }, + { + title: "The Blob", + year: 1958, + rating: 6.4, + votes: 18288, + running_times: 5160, + }, + { + title: "The Blob", + year: 1988, + rating: 6.4, + votes: 25457, + running_times: 5700, + }, + { + title: "The Blue Lagoon", + year: 1980, + rating: 5.7, + votes: 54458, + running_times: 6240, + }, + { + title: "The Blues Brothers", + year: 1980, + rating: 7.9, + votes: 155256, + running_times: 8880, + }, + { + title: "The Boat That Rocked", + year: 2009, + rating: 7.4, + votes: 96541, + running_times: 8100, + }, + { + title: "The Bodyguard", + year: 1992, + rating: 6.2, + votes: 99144, + running_times: 7740, + }, + { + title: "The Bone Collector", + year: 1999, + rating: 6.7, + votes: 131239, + running_times: 7080, + }, + { + title: "The Bonfire of the Vanities", + year: 1990, + rating: 5.5, + votes: 19027, + running_times: 7500, + }, + { + title: "The Book Thief", + year: 2013, + rating: 7.6, + votes: 110378, + running_times: 7860, + }, + { + title: "The Book of Eli", + year: 2010, + rating: 6.9, + votes: 249346, + running_times: 7080, + }, + { + title: "The Book of Life", + year: 2014, + rating: 7.3, + votes: 53590, + running_times: 5700, + }, + { + title: "The Boondock Saints", + year: 1999, + rating: 7.9, + votes: 208050, + running_times: 6480, + }, + { + title: "The Boondock Saints II: All Saints Day", + year: 2009, + rating: 6.3, + votes: 56167, + running_times: 8280, + }, + { + title: "The Borrowers", + year: 1997, + rating: 5.8, + votes: 17522, + running_times: 5340, + }, + { + title: "The Boss", + year: 2016, + rating: 5.4, + votes: 32380, + running_times: 6240, + }, + { + title: "The Boss Baby", + year: 2017, + rating: 6.4, + votes: 63831, + running_times: 5820, + }, + { + title: "The Bounty", + year: 1984, + rating: 7.1, + votes: 19851, + running_times: 7920, + }, + { + title: "The Bounty Hunter", + year: 2010, + rating: 5.5, + votes: 104853, + running_times: 6600, + }, + { + title: "The Bourne Identity", + year: 2002, + rating: 7.9, + votes: 446706, + running_times: 7140, + }, + { + title: "The Bourne Legacy", + year: 2012, + rating: 6.7, + votes: 252525, + running_times: 8100, + }, + { + title: "The Bourne Supremacy", + year: 2004, + rating: 7.8, + votes: 383149, + running_times: 6480, + }, + { + title: "The Bourne Ultimatum", + year: 2007, + rating: 8.1, + votes: 543338, + running_times: 6900, + }, + { + title: "The Box", + year: 2009, + rating: 5.6, + votes: 81032, + running_times: 6900, + }, + { + title: "The Boxer", + year: 1997, + rating: 7.1, + votes: 15626, + running_times: 6780, + }, + { + title: "The Boxtrolls", + year: 2014, + rating: 6.8, + votes: 47051, + running_times: 5760, + }, + { + title: "The Boy", + year: 2016, + rating: 6, + votes: 57479, + running_times: 5820, + }, + { + title: "The Boy Next Door", + year: 2015, + rating: 4.7, + votes: 31552, + running_times: 5460, + }, + { + title: "The Boy in the Striped Pyjamas", + year: 2008, + rating: 7.8, + votes: 152019, + running_times: 5640, + }, + { + title: "The Boys from Brazil", + year: 1978, + rating: 7, + votes: 22147, + running_times: 7500, + }, + { + title: "The Brady Bunch Movie", + year: 1995, + rating: 5.9, + votes: 18341, + running_times: 5400, + }, + { + title: "The Brass Teapot", + year: 2012, + rating: 6.4, + votes: 12898, + running_times: 6060, + }, + { + title: "The Brave Little Toaster", + year: 1987, + rating: 7.3, + votes: 21079, + running_times: 5400, + }, + { + title: "The Brave One", + year: 2007, + rating: 6.8, + votes: 53271, + running_times: 7320, + }, + { + title: "The Break-Up", + year: 2006, + rating: 5.8, + votes: 109364, + running_times: 6360, + }, + { + title: "The Breakfast Club", + year: 1985, + rating: 7.9, + votes: 288451, + running_times: 5820, + }, + { + title: "The Breed", + year: 2006, + rating: 5.1, + votes: 10967, + running_times: 5460, + }, + { + title: "The Bridge", + year: 2006, + rating: 7.3, + votes: 10012, + running_times: 5640, + }, + { + title: "The Bridge on the River Kwai", + year: 1957, + rating: 8.2, + votes: 166597, + running_times: 9660, + }, + { + title: "The Bridges of Madison County", + year: 1995, + rating: 7.6, + votes: 59681, + running_times: 8100, + }, + { + title: "The Broken Circle Breakdown", + year: 2012, + rating: 7.8, + votes: 33487, + running_times: 6660, + }, + { + title: "The Brood", + year: 1979, + rating: 6.9, + votes: 20386, + running_times: 5520, + }, + { + title: "The Brothers Bloom", + year: 2008, + rating: 6.8, + votes: 44152, + running_times: 6840, + }, + { + title: "The Brothers Grimm", + year: 2005, + rating: 5.9, + votes: 104533, + running_times: 7080, + }, + { + title: "The Brown Bunny", + year: 2003, + rating: 5, + votes: 12246, + running_times: 5580, + }, + { + title: "The Bucket List", + year: 2007, + rating: 7.4, + votes: 200761, + running_times: 5820, + }, + { + title: "The Burning", + year: 1981, + rating: 6.5, + votes: 12063, + running_times: 5460, + }, + { + title: "The Burning Plain", + year: 2008, + rating: 6.8, + votes: 16532, + running_times: 6660, + }, + { + title: "The Business", + year: 2005, + rating: 6.7, + votes: 11837, + running_times: 5820, + }, + { + title: "The Butler", + year: 2013, + rating: 7.2, + votes: 95749, + running_times: 7920, + }, + { + title: "The Butterfly Effect", + year: 2004, + rating: 7.7, + votes: 391975, + running_times: 7200, + }, + { + title: "The Butterfly Effect 3: Revelations", + year: 2009, + rating: 5.6, + votes: 16592, + running_times: 6300, + }, + { + title: "The Bye Bye Man", + year: 2017, + rating: 4.3, + votes: 11949, + running_times: 6060, + }, + { + title: "The Cabin in the Woods", + year: 2012, + rating: 7, + votes: 308636, + running_times: 5700, + }, + { + title: "The Cable Guy", + year: 1996, + rating: 6.1, + votes: 132035, + running_times: 5760, + }, + { + title: "The Caine Mutiny", + year: 1954, + rating: 7.9, + votes: 21348, + running_times: 7500, + }, + { + title: "The Call", + year: 2013, + rating: 6.7, + votes: 96999, + running_times: 5640, + }, + { + title: "The Campaign", + year: 2012, + rating: 6.1, + votes: 112910, + running_times: 5760, + }, + { + title: "The Canal", + year: 2014, + rating: 5.9, + votes: 10928, + running_times: 5520, + }, + { + title: "The Cannonball Run", + year: 1981, + rating: 6.2, + votes: 27997, + running_times: 5700, + }, + { + title: "The Captive", + year: 2014, + rating: 5.9, + votes: 22667, + running_times: 6720, + }, + { + title: "The Castle", + year: 1997, + rating: 7.7, + votes: 12869, + running_times: 5100, + }, + { + title: "The Cat in the Hat", + year: 2003, + rating: 3.8, + votes: 40048, + running_times: 4920, + }, + { + title: "The Cave", + year: 2005, + rating: 5.1, + votes: 30609, + running_times: 5820, + }, + { + title: "The Cell", + year: 2000, + rating: 6.3, + votes: 84984, + running_times: 6540, + }, + { + title: "The Chamber", + year: 1996, + rating: 6, + votes: 11124, + running_times: 6780, + }, + { + title: "The Change-Up", + year: 2011, + rating: 6.3, + votes: 145281, + running_times: 7080, + }, + { + title: "The Changeling", + year: 1980, + rating: 7.3, + votes: 23916, + running_times: 6420, + }, + { + title: "The Chase", + year: 1994, + rating: 5.8, + votes: 15334, + running_times: 5640, + }, + { + title: "The Children", + year: 2008, + rating: 6, + votes: 15438, + running_times: 5040, + }, + { + title: "The Children's Hour", + year: 1961, + rating: 7.8, + votes: 11701, + running_times: 6480, + }, + { + title: "The China Syndrome", + year: 1979, + rating: 7.4, + votes: 22339, + running_times: 7320, + }, + { + title: "The Choice", + year: 2016, + rating: 6.6, + votes: 24018, + running_times: 6660, + }, + { + title: "The Chronicles of Narnia: Prince Caspian", + year: 2008, + rating: 6.6, + votes: 164777, + running_times: 9000, + }, + { + title: "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", + year: 2005, + rating: 6.9, + votes: 314354, + running_times: 9000, + }, + { + title: "The Chronicles of Narnia: The Voyage of the Dawn Treader", + year: 2010, + rating: 6.3, + votes: 117763, + running_times: 6780, + }, + { + title: "The Chronicles of Riddick", + year: 2004, + rating: 6.7, + votes: 195033, + running_times: 8040, + }, + { + title: "The Chumscrubber", + year: 2005, + rating: 7, + votes: 16830, + running_times: 6480, + }, + { + title: "The Cider House Rules", + year: 1999, + rating: 7.4, + votes: 83846, + running_times: 7560, + }, + { + title: "The Cincinnati Kid", + year: 1965, + rating: 7.3, + votes: 12747, + running_times: 6120, + }, + { + title: "The Circle", + year: 2017, + rating: 5.3, + votes: 49927, + running_times: 6600, + }, + { + title: "The Circus", + year: 1928, + rating: 8.1, + votes: 20578, + running_times: 4320, + }, + { + title: "The Clearing", + year: 2004, + rating: 5.9, + votes: 12264, + running_times: 5700, + }, + { + title: "The Client", + year: 1994, + rating: 6.7, + votes: 50194, + running_times: 7140, + }, + { + title: "The Cobbler", + year: 2014, + rating: 5.8, + votes: 42876, + running_times: 5940, + }, + { + title: "The Cold Light of Day", + year: 2012, + rating: 4.9, + votes: 31139, + running_times: 5580, + }, + { + title: "The Collection", + year: 2012, + rating: 6.1, + votes: 39094, + running_times: 4920, + }, + { + title: "The Collector", + year: 2009, + rating: 6.4, + votes: 47976, + running_times: 5400, + }, + { + title: "The Colony", + year: 2013, + rating: 5.3, + votes: 38078, + running_times: 5700, + }, + { + title: "The Color Purple", + year: 1985, + rating: 7.8, + votes: 66127, + running_times: 9240, + }, + { + title: "The Color of Money", + year: 1986, + rating: 7, + votes: 63117, + running_times: 7140, + }, + { + title: "The Comebacks", + year: 2007, + rating: 4.2, + votes: 10359, + running_times: 6420, + }, + { + title: "The Commitments", + year: 1991, + rating: 7.6, + votes: 28042, + running_times: 7080, + }, + { + title: "The Company Men", + year: 2010, + rating: 6.8, + votes: 38949, + running_times: 6240, + }, + { + title: "The Company You Keep", + year: 2012, + rating: 6.4, + votes: 28047, + running_times: 7500, + }, + { + title: "The Company of Wolves", + year: 1984, + rating: 6.8, + votes: 12490, + running_times: 5700, + }, + { + title: "The Condemned", + year: 2007, + rating: 6.1, + votes: 46846, + running_times: 6840, + }, + { + title: "The Congress", + year: 2013, + rating: 6.5, + votes: 14545, + running_times: 7320, + }, + { + title: "The Conjuring", + year: 2013, + rating: 7.5, + votes: 348698, + running_times: 6720, + }, + { + title: "The Conjuring 2", + year: 2016, + rating: 7.4, + votes: 157206, + running_times: 8040, + }, + { + title: "The Conspirator", + year: 2010, + rating: 6.9, + votes: 25221, + running_times: 7320, + }, + { + title: "The Constant Gardener", + year: 2005, + rating: 7.5, + votes: 118632, + running_times: 7740, + }, + { + title: "The Contender", + year: 2000, + rating: 7, + votes: 21284, + running_times: 7560, + }, + { + title: "The Contract", + year: 2006, + rating: 5.7, + votes: 21488, + running_times: 5760, + }, + { + title: "The Conversation", + year: 1974, + rating: 7.9, + votes: 81291, + running_times: 6780, + }, + { + title: "The Cook, the Thief, His Wife & Her Lover", + year: 1989, + rating: 7.6, + votes: 29255, + running_times: 7440, + }, + { + title: "The Cooler", + year: 2003, + rating: 7, + votes: 29684, + running_times: 6060, + }, + { + title: "The Core", + year: 2003, + rating: 5.5, + votes: 81833, + running_times: 8100, + }, + { + title: "The Corporation", + year: 2003, + rating: 8.1, + votes: 18984, + running_times: 9900, + }, + { + title: "The Corruptor", + year: 1999, + rating: 6, + votes: 16047, + running_times: 6600, + }, + { + title: "The Cottage", + year: 2008, + rating: 6.1, + votes: 10703, + running_times: 5520, + }, + { + title: "The Cotton Club", + year: 1984, + rating: 6.5, + votes: 13741, + running_times: 7620, + }, + { + title: "The Counselor", + year: 2013, + rating: 5.3, + votes: 87224, + running_times: 8280, + }, + { + title: "The Count of Monte Cristo", + year: 2002, + rating: 7.8, + votes: 112596, + running_times: 8040, + }, + { + title: "The Cove", + year: 2009, + rating: 8.5, + votes: 43055, + running_times: 5520, + }, + { + title: "The Covenant", + year: 2006, + rating: 5.3, + votes: 41822, + running_times: 5820, + }, + { + title: "The Cowboys", + year: 1972, + rating: 7.4, + votes: 11123, + running_times: 8040, + }, + { + title: "The Craft", + year: 1996, + rating: 6.3, + votes: 63253, + running_times: 6060, + }, + { + title: "The Crazies", + year: 2010, + rating: 6.5, + votes: 99111, + running_times: 6060, + }, + { + title: "The Croods", + year: 2013, + rating: 7.2, + votes: 164945, + running_times: 5880, + }, + { + title: "The Crossing Guard", + year: 1995, + rating: 6.3, + votes: 11372, + running_times: 6660, + }, + { + title: "The Crow", + year: 1994, + rating: 7.6, + votes: 146355, + running_times: 6120, + }, + { + title: "The Crow: City of Angels", + year: 1996, + rating: 4.6, + votes: 16864, + running_times: 5040, + }, + { + title: "The Crucible", + year: 1996, + rating: 6.8, + votes: 31119, + running_times: 7440, + }, + { + title: "The Crush", + year: 1993, + rating: 5.7, + votes: 13065, + running_times: 5340, + }, + { + title: "The Crying Game", + year: 1992, + rating: 7.3, + votes: 44414, + running_times: 6720, + }, + { + title: "The Curious Case of Benjamin Button", + year: 2008, + rating: 7.8, + votes: 501739, + running_times: 9960, + }, + { + title: "The Curse of the Jade Scorpion", + year: 2001, + rating: 6.8, + votes: 34156, + running_times: 6180, + }, + { + title: "The Curse of the Were-Rabbit", + year: 2005, + rating: 7.5, + votes: 106749, + running_times: 5100, + }, + { + title: "The Cutting Edge", + year: 1992, + rating: 6.9, + votes: 16136, + running_times: 6060, + }, + { + title: "The DUFF", + year: 2015, + rating: 6.5, + votes: 61918, + running_times: 6060, + }, + { + title: "The Da Vinci Code", + year: 2006, + rating: 6.6, + votes: 348542, + running_times: 10440, + }, + { + title: "The Damned United", + year: 2009, + rating: 7.6, + votes: 35342, + running_times: 5880, + }, + { + title: "The Dangerous Lives of Altar Boys", + year: 2002, + rating: 7.1, + votes: 12389, + running_times: 6300, + }, + { + title: "The Danish Girl", + year: 2015, + rating: 7.1, + votes: 121304, + running_times: 7140, + }, + { + title: "The Darjeeling Limited", + year: 2007, + rating: 7.2, + votes: 151549, + running_times: 5460, + }, + { + title: "The Dark Crystal", + year: 1982, + rating: 7.2, + votes: 45775, + running_times: 5580, + }, + { + title: "The Dark Half", + year: 1993, + rating: 5.9, + votes: 13163, + running_times: 7320, + }, + { + title: "The Dark Knight", + year: 2008, + rating: 9, + votes: 1864164, + running_times: 9120, + }, + { + title: "The Dark Knight Rises", + year: 2012, + rating: 8.4, + votes: 1269255, + running_times: 9840, + }, + { + title: "The Dark Tower", + year: 2017, + rating: 5.7, + votes: 69330, + running_times: 5700, + }, + { + title: "The Darkest Hour", + year: 2011, + rating: 4.9, + votes: 52123, + running_times: 5340, + }, + { + title: "The Day", + year: 2011, + rating: 5.2, + votes: 11245, + running_times: 5760, + }, + { + title: "The Day After Tomorrow", + year: 2004, + rating: 6.4, + votes: 360260, + running_times: 7440, + }, + { + title: "The Day of the Jackal", + year: 1973, + rating: 7.8, + votes: 31843, + running_times: 8580, + }, + { + title: "The Day the Earth Stood Still", + year: 1951, + rating: 7.8, + votes: 68463, + running_times: 5520, + }, + { + title: "The Day the Earth Stood Still", + year: 2008, + rating: 5.5, + votes: 147772, + running_times: 6240, + }, + { + title: "The Dead Girl", + year: 2006, + rating: 6.7, + votes: 13077, + running_times: 6600, + }, + { + title: "The Dead Pool", + year: 1988, + rating: 6.3, + votes: 33680, + running_times: 5460, + }, + { + title: "The Dead Zone", + year: 1983, + rating: 7.2, + votes: 49908, + running_times: 6180, + }, + { + title: "The Death and Life of Bobby Z", + year: 2007, + rating: 5.9, + votes: 12779, + running_times: 5820, + }, + { + title: "The Deaths of Ian Stone", + year: 2007, + rating: 5.6, + votes: 11779, + running_times: 5220, + }, + { + title: "The Debt", + year: 2010, + rating: 6.9, + votes: 58446, + running_times: 6780, + }, + { + title: "The Deep Blue Sea", + year: 2011, + rating: 6.3, + votes: 12745, + running_times: 5880, + }, + { + title: "The Deep End", + year: 2001, + rating: 6.7, + votes: 10170, + running_times: 6060, + }, + { + title: "The Deep End of the Ocean", + year: 1999, + rating: 6.3, + votes: 11230, + running_times: 6360, + }, + { + title: "The Deer Hunter", + year: 1978, + rating: 8.2, + votes: 257892, + running_times: 10980, + }, + { + title: "The Defiant Ones", + year: 1958, + rating: 7.7, + votes: 10512, + running_times: 5760, + }, + { + title: "The Delta Force", + year: 1986, + rating: 5.6, + votes: 16009, + running_times: 7740, + }, + { + title: "The Den", + year: 2013, + rating: 6.1, + votes: 10840, + running_times: 4860, + }, + { + title: "The Departed", + year: 2006, + rating: 8.5, + votes: 975301, + running_times: 9060, + }, + { + title: "The Descendants", + year: 2011, + rating: 7.3, + votes: 215007, + running_times: 6900, + }, + { + title: "The Descent", + year: 2005, + rating: 7.2, + votes: 170442, + running_times: 6000, + }, + { + title: "The Descent: Part 2", + year: 2009, + rating: 5.8, + votes: 35987, + running_times: 5640, + }, + { + title: "The Devil Inside", + year: 2012, + rating: 4.2, + votes: 32082, + running_times: 4980, + }, + { + title: "The Devil Wears Prada", + year: 2006, + rating: 6.8, + votes: 311658, + running_times: 6540, + }, + { + title: "The Devil's Advocate", + year: 1997, + rating: 7.5, + votes: 282173, + running_times: 8640, + }, + { + title: "The Devil's Double", + year: 2011, + rating: 7.1, + votes: 56407, + running_times: 6540, + }, + { + title: "The Devil's Own", + year: 1997, + rating: 6.1, + votes: 49873, + running_times: 6660, + }, + { + title: "The Devil's Rejects", + year: 2005, + rating: 6.9, + votes: 81531, + running_times: 6540, + }, + { + title: "The Devils", + year: 1971, + rating: 7.8, + votes: 10094, + running_times: 7020, + }, + { + title: "The Diary of Anne Frank", + year: 1959, + rating: 7.4, + votes: 10181, + running_times: 10800, + }, + { + title: "The Diary of a Teenage Girl", + year: 2015, + rating: 6.9, + votes: 23775, + running_times: 6120, + }, + { + title: "The Dictator", + year: 2012, + rating: 6.4, + votes: 232383, + running_times: 5940, + }, + { + title: "The Dilemma", + year: 2011, + rating: 5.3, + votes: 46181, + running_times: 6660, + }, + { + title: "The Dirty Dozen", + year: 1967, + rating: 7.8, + votes: 57460, + running_times: 9000, + }, + { + title: "The Disappearance of Alice Creed", + year: 2009, + rating: 6.8, + votes: 22306, + running_times: 6000, + }, + { + title: "The Disaster Artist", + year: 2017, + rating: 8.1, + votes: 13911, + running_times: 6240, + }, + { + title: "The Discovery", + year: 2017, + rating: 6.3, + votes: 18069, + running_times: 6120, + }, + { + title: "The Dish", + year: 2000, + rating: 7.2, + votes: 13534, + running_times: 6060, + }, + { + title: "The Distinguished Gentleman", + year: 1992, + rating: 5.9, + votes: 13275, + running_times: 6720, + }, + { + title: "The Divide", + year: 2011, + rating: 5.8, + votes: 32184, + running_times: 7320, + }, + { + title: "The Do-Over", + year: 2016, + rating: 5.7, + votes: 27382, + running_times: 6480, + }, + { + title: "The Doom Generation", + year: 1995, + rating: 6, + votes: 12220, + running_times: 4980, + }, + { + title: "The Door in the Floor", + year: 2004, + rating: 6.7, + votes: 14022, + running_times: 6660, + }, + { + title: "The Doors", + year: 1991, + rating: 7.2, + votes: 73120, + running_times: 8400, + }, + { + title: "The Double", + year: 2011, + rating: 5.9, + votes: 25630, + running_times: 5880, + }, + { + title: "The Double", + year: 2013, + rating: 6.5, + votes: 40539, + running_times: 5580, + }, + { + title: "The Dream Team", + year: 1989, + rating: 6.5, + votes: 10878, + running_times: 6780, + }, + { + title: "The Dreamers", + year: 2003, + rating: 7.2, + votes: 91059, + running_times: 6900, + }, + { + title: "The Dressmaker", + year: 2015, + rating: 7.1, + votes: 38252, + running_times: 7140, + }, + { + title: "The Driver", + year: 1978, + rating: 7.2, + votes: 10892, + running_times: 7860, + }, + { + title: "The Drop", + year: 2014, + rating: 7.1, + votes: 121549, + running_times: 6360, + }, + { + title: "The Duchess", + year: 2008, + rating: 6.9, + votes: 67201, + running_times: 6600, + }, + { + title: "The Duellists", + year: 1977, + rating: 7.5, + votes: 16242, + running_times: 6000, + }, + { + title: "The Dukes of Hazzard", + year: 2005, + rating: 5.1, + votes: 69430, + running_times: 6420, + }, + { + title: "The Dyatlov Pass Incident", + year: 2013, + rating: 5.7, + votes: 18197, + running_times: 6000, + }, + { + title: "The Eagle", + year: 2011, + rating: 6.2, + votes: 57714, + running_times: 6840, + }, + { + title: "The Eagle Has Landed", + year: 1976, + rating: 6.9, + votes: 15561, + running_times: 8700, + }, + { + title: "The East", + year: 2013, + rating: 6.8, + votes: 44769, + running_times: 6960, + }, + { + title: "The Edge", + year: 1997, + rating: 6.9, + votes: 60012, + running_times: 7020, + }, + { + title: "The Edge of Love", + year: 2008, + rating: 6.3, + votes: 14525, + running_times: 6600, + }, + { + title: "The Edge of Seventeen", + year: 2016, + rating: 7.4, + votes: 64320, + running_times: 6240, + }, + { + title: "The Eiger Sanction", + year: 1975, + rating: 6.4, + votes: 14326, + running_times: 7740, + }, + { + title: "The Elephant Man", + year: 1980, + rating: 8.2, + votes: 180762, + running_times: 7440, + }, + { + title: "The Emoji Movie", + year: 2017, + rating: 2.9, + votes: 30594, + running_times: 5160, + }, + { + title: "The Emperor's Club", + year: 2002, + rating: 6.9, + votes: 15186, + running_times: 6540, + }, + { + title: "The Emperor's New Groove", + year: 2000, + rating: 7.3, + votes: 143961, + running_times: 4680, + }, + { + title: "The End of the Affair", + year: 1999, + rating: 7.2, + votes: 18879, + running_times: 6120, + }, + { + title: "The End of the Tour", + year: 2015, + rating: 7.3, + votes: 22666, + running_times: 6360, + }, + { + title: "The Enforcer", + year: 1976, + rating: 6.8, + votes: 34977, + running_times: 5760, + }, + { + title: "The English Patient", + year: 1996, + rating: 7.4, + votes: 154290, + running_times: 15000, + }, + { + title: "The English Teacher", + year: 2013, + rating: 5.8, + votes: 10264, + running_times: 5580, + }, + { + title: "The Englishman Who Went Up a Hill But Came Down a Mountain", + year: 1995, + rating: 6.6, + votes: 14515, + running_times: 5940, + }, + { + title: "The Entity", + year: 1982, + rating: 6.6, + votes: 12185, + running_times: 7500, + }, + { + title: "The Equalizer", + year: 2014, + rating: 7.2, + votes: 257869, + running_times: 7920, + }, + { + title: "The Escapist", + year: 2008, + rating: 6.8, + votes: 15325, + running_times: 6120, + }, + { + title: "The Evil Dead", + year: 1981, + rating: 7.5, + votes: 156301, + running_times: 5100, + }, + { + title: "The Exorcism of Emily Rose", + year: 2005, + rating: 6.7, + votes: 104459, + running_times: 7320, + }, + { + title: "The Exorcist", + year: 1973, + rating: 8, + votes: 308000, + running_times: 7920, + }, + { + title: "The Exorcist III", + year: 1990, + rating: 6.3, + votes: 19690, + running_times: 6600, + }, + { + title: "The Expendables", + year: 2010, + rating: 6.5, + votes: 291039, + running_times: 6780, + }, + { + title: "The Expendables 2", + year: 2012, + rating: 6.6, + votes: 263602, + running_times: 6180, + }, + { + title: "The Expendables 3", + year: 2014, + rating: 6.1, + votes: 143428, + running_times: 7860, + }, + { + title: "The Experiment", + year: 2010, + rating: 6.4, + votes: 45286, + running_times: 5760, + }, + { + title: "The Express", + year: 2008, + rating: 7.3, + votes: 17692, + running_times: 7800, + }, + { + title: "The Eye", + year: 2008, + rating: 5.4, + votes: 46769, + running_times: 5880, + }, + { + title: "The F Word", + year: 2013, + rating: 6.8, + votes: 58518, + running_times: 5880, + }, + { + title: "The Fabulous Baker Boys", + year: 1989, + rating: 6.8, + votes: 18943, + running_times: 6840, + }, + { + title: "The Faculty", + year: 1998, + rating: 6.5, + votes: 97855, + running_times: 6240, + }, + { + title: "The Fall", + year: 2006, + rating: 7.9, + votes: 95904, + running_times: 7020, + }, + { + title: "The Family", + year: 2013, + rating: 6.3, + votes: 96336, + running_times: 6660, + }, + { + title: "The Family Man", + year: 2000, + rating: 6.7, + votes: 91526, + running_times: 7500, + }, + { + title: "The Family Stone", + year: 2005, + rating: 6.3, + votes: 52823, + running_times: 6180, + }, + { + title: "The Fan", + year: 1996, + rating: 5.8, + votes: 41100, + running_times: 6960, + }, + { + title: "The Fast and the Furious", + year: 2001, + rating: 6.7, + votes: 298782, + running_times: 6360, + }, + { + title: "The Fast and the Furious: Tokyo Drift", + year: 2006, + rating: 6, + votes: 201378, + running_times: 6240, + }, + { + title: "The Fate of the Furious", + year: 2017, + rating: 6.8, + votes: 145524, + running_times: 8940, + }, + { + title: "The Fault in Our Stars", + year: 2014, + rating: 7.8, + votes: 284557, + running_times: 7980, + }, + { + title: "The Fifth Estate", + year: 2013, + rating: 6.2, + votes: 33032, + running_times: 7680, + }, + { + title: "The Fighter", + year: 2010, + rating: 7.8, + votes: 297659, + running_times: 6960, + }, + { + title: "The Final Conflict", + year: 1981, + rating: 5.6, + votes: 15344, + running_times: 6480, + }, + { + title: "The Final Countdown", + year: 1980, + rating: 6.7, + votes: 17625, + running_times: 6180, + }, + { + title: "The Final Cut", + year: 2004, + rating: 6.2, + votes: 28220, + running_times: 5700, + }, + { + title: "The Final Destination", + year: 2009, + rating: 5.2, + votes: 82313, + running_times: 4920, + }, + { + title: "The Final Girls", + year: 2015, + rating: 6.6, + votes: 25800, + running_times: 5280, + }, + { + title: "The Finest Hours", + year: 2016, + rating: 6.8, + votes: 49089, + running_times: 7020, + }, + { + title: "The Firm", + year: 1993, + rating: 6.8, + votes: 96653, + running_times: 9240, + }, + { + title: "The First Great Train Robbery", + year: 1978, + rating: 7, + votes: 12833, + running_times: 6600, + }, + { + title: "The First Time", + year: 2012, + rating: 6.9, + votes: 56573, + running_times: 5700, + }, + { + title: "The First Wives Club", + year: 1996, + rating: 6.2, + votes: 35126, + running_times: 6180, + }, + { + title: "The Fisher King", + year: 1991, + rating: 7.6, + votes: 68514, + running_times: 8220, + }, + { + title: "The Five-Year Engagement", + year: 2012, + rating: 6.2, + votes: 83519, + running_times: 7860, + }, + { + title: "The Flight of the Phoenix", + year: 1965, + rating: 7.6, + votes: 16592, + running_times: 8520, + }, + { + title: "The Flintstones", + year: 1994, + rating: 4.8, + votes: 65040, + running_times: 5460, + }, + { + title: "The Flintstones in Viva Rock Vegas", + year: 2000, + rating: 3.6, + votes: 17059, + running_times: 5400, + }, + { + title: "The Flock", + year: 2007, + rating: 5.7, + votes: 10214, + running_times: 6300, + }, + { + title: "The Fly", + year: 1958, + rating: 7.1, + votes: 17323, + running_times: 5640, + }, + { + title: "The Fly", + year: 1986, + rating: 7.5, + votes: 131951, + running_times: 5760, + }, + { + title: "The Fly II", + year: 1989, + rating: 4.9, + votes: 18231, + running_times: 6300, + }, + { + title: "The Fog", + year: 1980, + rating: 6.8, + votes: 51466, + running_times: 5340, + }, + { + title: "The Fog", + year: 2005, + rating: 3.6, + votes: 31194, + running_times: 6180, + }, + { + title: "The Fog of War: Eleven Lessons from the Life of Robert S. McNamara", + year: 2003, + rating: 8.2, + votes: 20482, + running_times: 6420, + }, + { + title: "The Football Factory", + year: 2004, + rating: 6.9, + votes: 25482, + running_times: 5460, + }, + { + title: "The Forbidden Kingdom", + year: 2008, + rating: 6.6, + votes: 92869, + running_times: 6240, + }, + { + title: "The Foreigner", + year: 2017, + rating: 7.2, + votes: 20056, + running_times: 6780, + }, + { + title: "The Forest", + year: 2016, + rating: 4.8, + votes: 31517, + running_times: 5580, + }, + { + title: "The Forgotten", + year: 2004, + rating: 5.8, + votes: 59837, + running_times: 5640, + }, + { + title: "The Fortune Cookie", + year: 1966, + rating: 7.4, + votes: 10116, + running_times: 7500, + }, + { + title: "The Founder", + year: 2016, + rating: 7.2, + votes: 69763, + running_times: 6900, + }, + { + title: "The Fountain", + year: 2006, + rating: 7.3, + votes: 205452, + running_times: 5760, + }, + { + title: "The Four Feathers", + year: 2002, + rating: 6.5, + votes: 29710, + running_times: 7920, + }, + { + title: "The Fourth Kind", + year: 2009, + rating: 5.9, + votes: 66763, + running_times: 5880, + }, + { + title: "The Fox and the Hound", + year: 1981, + rating: 7.3, + votes: 70116, + running_times: 4980, + }, + { + title: "The French Connection", + year: 1971, + rating: 7.8, + votes: 91035, + running_times: 6240, + }, + { + title: "The Freshman", + year: 1990, + rating: 6.5, + votes: 16664, + running_times: 6120, + }, + { + title: "The Frighteners", + year: 1996, + rating: 7.1, + votes: 72402, + running_times: 7380, + }, + { + title: "The Front Page", + year: 1974, + rating: 7.4, + votes: 10029, + running_times: 6300, + }, + { + title: "The Frozen Ground", + year: 2013, + rating: 6.4, + votes: 47639, + running_times: 6300, + }, + { + title: "The Fugitive", + year: 1993, + rating: 7.8, + votes: 229254, + running_times: 7800, + }, + { + title: "The Full Monty", + year: 1997, + rating: 7.2, + votes: 87658, + running_times: 5460, + }, + { + title: "The Fundamentals of Caring", + year: 2016, + rating: 7.3, + votes: 37504, + running_times: 5820, + }, + { + title: "The Fury", + year: 1978, + rating: 6.4, + votes: 10870, + running_times: 7080, + }, + { + title: "The Gallows", + year: 2015, + rating: 4.2, + votes: 16251, + running_times: 4860, + }, + { + title: "The Gambler", + year: 2014, + rating: 6, + votes: 54739, + running_times: 6660, + }, + { + title: "The Game", + year: 1997, + rating: 7.8, + votes: 289122, + running_times: 7740, + }, + { + title: "The Game Plan", + year: 2007, + rating: 6.2, + votes: 48546, + running_times: 6600, + }, + { + title: "The Gate", + year: 1987, + rating: 6, + votes: 11654, + running_times: 5100, + }, + { + title: "The Gauntlet", + year: 1977, + rating: 6.4, + votes: 17358, + running_times: 6540, + }, + { + title: "The General", + year: 1926, + rating: 8.2, + votes: 60825, + running_times: 6420, + }, + { + title: "The General's Daughter", + year: 1999, + rating: 6.3, + votes: 45863, + running_times: 6960, + }, + { + title: "The Getaway", + year: 1972, + rating: 7.5, + votes: 23131, + running_times: 7380, + }, + { + title: "The Getaway", + year: 1994, + rating: 5.7, + votes: 15013, + running_times: 6960, + }, + { + title: "The Ghost Writer", + year: 2010, + rating: 7.2, + votes: 141312, + running_times: 7680, + }, + { + title: "The Ghost and Mrs. Muir", + year: 1947, + rating: 7.9, + votes: 12874, + running_times: 6240, + }, + { + title: "The Ghost and the Darkness", + year: 1996, + rating: 6.8, + votes: 49449, + running_times: 6600, + }, + { + title: "The Gift", + year: 2000, + rating: 6.7, + votes: 55680, + running_times: 6720, + }, + { + title: "The Gift", + year: 2015, + rating: 7.1, + votes: 105875, + running_times: 6480, + }, + { + title: "The Girl Next Door", + year: 2004, + rating: 6.8, + votes: 181517, + running_times: 6600, + }, + { + title: "The Girl Next Door", + year: 2007, + rating: 6.7, + votes: 19959, + running_times: 5460, + }, + { + title: "The Girl on the Train", + year: 2016, + rating: 6.5, + votes: 122564, + running_times: 6720, + }, + { + title: "The Girl with All the Gifts", + year: 2016, + rating: 6.7, + votes: 35303, + running_times: 6660, + }, + { + title: "The Girl with the Dragon Tattoo", + year: 2011, + rating: 7.8, + votes: 360665, + running_times: 9480, + }, + { + title: "The Girlfriend Experience", + year: 2009, + rating: 5.5, + votes: 14540, + running_times: 4620, + }, + { + title: "The Giver", + year: 2014, + rating: 6.5, + votes: 97577, + running_times: 5820, + }, + { + title: "The Glass House", + year: 2001, + rating: 5.8, + votes: 27338, + running_times: 6360, + }, + { + title: "The Glimmer Man", + year: 1996, + rating: 5.3, + votes: 16552, + running_times: 5460, + }, + { + title: "The Godfather", + year: 1972, + rating: 9.2, + votes: 1289428, + running_times: 10500, + }, + { + title: "The Godfather: Part II", + year: 1974, + rating: 9, + votes: 889607, + running_times: 13200, + }, + { + title: "The Godfather: Part III", + year: 1990, + rating: 7.6, + votes: 299652, + running_times: 10200, + }, + { + title: "The Gods Must Be Crazy", + year: 1980, + rating: 7.3, + votes: 46369, + running_times: 6540, + }, + { + title: "The Gods Must Be Crazy II", + year: 1989, + rating: 6.8, + votes: 13913, + running_times: 5880, + }, + { + title: "The Gold Rush", + year: 1925, + rating: 8.2, + votes: 77314, + running_times: 5700, + }, + { + title: "The Golden Child", + year: 1986, + rating: 5.9, + votes: 43511, + running_times: 5640, + }, + { + title: "The Golden Compass", + year: 2007, + rating: 6.1, + votes: 158622, + running_times: 6780, + }, + { + title: "The Good Dinosaur", + year: 2015, + rating: 6.7, + votes: 82278, + running_times: 5580, + }, + { + title: "The Good German", + year: 2006, + rating: 6.1, + votes: 22383, + running_times: 6300, + }, + { + title: "The Good Girl", + year: 2002, + rating: 6.5, + votes: 39827, + running_times: 5580, + }, + { + title: "The Good Lie", + year: 2014, + rating: 7.4, + votes: 23071, + running_times: 6600, + }, + { + title: "The Good Neighbor", + year: 2016, + rating: 6.3, + votes: 10679, + running_times: 5880, + }, + { + title: "The Good Shepherd", + year: 2006, + rating: 6.7, + votes: 90768, + running_times: 10020, + }, + { + title: "The Good Son", + year: 1993, + rating: 6.4, + votes: 30990, + running_times: 5220, + }, + { + title: "The Goodbye Girl", + year: 1977, + rating: 7.4, + votes: 10241, + running_times: 6660, + }, + { + title: "The Goods: Live Hard, Sell Hard", + year: 2009, + rating: 5.8, + votes: 18442, + running_times: 5340, + }, + { + title: "The Goonies", + year: 1985, + rating: 7.8, + votes: 197148, + running_times: 6840, + }, + { + title: "The Graduate", + year: 1967, + rating: 8, + votes: 224868, + running_times: 6360, + }, + { + title: "The Grand Budapest Hotel", + year: 2014, + rating: 8.1, + votes: 561138, + running_times: 5940, + }, + { + title: "The Grand Seduction", + year: 2013, + rating: 7, + votes: 13205, + running_times: 6780, + }, + { + title: "The Grapes of Wrath", + year: 1940, + rating: 8.1, + votes: 70651, + running_times: 7740, + }, + { + title: "The Great Buck Howard", + year: 2008, + rating: 6.5, + votes: 12430, + running_times: 5400, + }, + { + title: "The Great Debaters", + year: 2007, + rating: 7.6, + votes: 50698, + running_times: 7560, + }, + { + title: "The Great Dictator", + year: 1940, + rating: 8.5, + votes: 157821, + running_times: 7500, + }, + { + title: "The Great Escape", + year: 1963, + rating: 8.2, + votes: 184206, + running_times: 10320, + }, + { + title: "The Great Gatsby", + year: 1974, + rating: 6.4, + votes: 20793, + running_times: 8640, + }, + { + title: "The Great Gatsby", + year: 2013, + rating: 7.3, + votes: 399342, + running_times: 8580, + }, + { + title: "The Great Mouse Detective", + year: 1986, + rating: 7.2, + votes: 37022, + running_times: 4440, + }, + { + title: "The Great Muppet Caper", + year: 1981, + rating: 7.2, + votes: 11033, + running_times: 5820, + }, + { + title: "The Great Outdoors", + year: 1988, + rating: 6.6, + votes: 31809, + running_times: 5460, + }, + { + title: "The Great Race", + year: 1965, + rating: 7.3, + votes: 13583, + running_times: 9600, + }, + { + title: "The Great Raid", + year: 2005, + rating: 6.7, + votes: 19473, + running_times: 7920, + }, + { + title: "The Great Train Robbery", + year: 1903, + rating: 7.3, + votes: 13461, + running_times: 660, + }, + { + title: "The Great Wall", + year: 2016, + rating: 6, + votes: 89046, + running_times: 6180, + }, + { + title: "The Greatest Game Ever Played", + year: 2005, + rating: 7.5, + votes: 24027, + running_times: 7200, + }, + { + title: "The Greatest Movie Ever Sold", + year: 2011, + rating: 6.6, + votes: 13836, + running_times: 5400, + }, + { + title: "The Greatest Show on Earth", + year: 1952, + rating: 6.7, + votes: 10459, + running_times: 9120, + }, + { + title: "The Green Berets", + year: 1968, + rating: 5.7, + votes: 10562, + running_times: 8520, + }, + { + title: "The Green Hornet", + year: 2011, + rating: 5.8, + votes: 142985, + running_times: 7140, + }, + { + title: "The Green Inferno", + year: 2013, + rating: 5.3, + votes: 29044, + running_times: 6000, + }, + { + title: "The Green Mile", + year: 1999, + rating: 8.5, + votes: 894678, + running_times: 11340, + }, + { + title: "The Grey", + year: 2011, + rating: 6.8, + votes: 216353, + running_times: 7020, + }, + { + title: "The Grifters", + year: 1990, + rating: 7, + votes: 22164, + running_times: 6600, + }, + { + title: "The Grudge", + year: 2004, + rating: 5.9, + votes: 124345, + running_times: 5880, + }, + { + title: "The Grudge 2", + year: 2006, + rating: 5, + votes: 41766, + running_times: 8220, + }, + { + title: "The Grudge 3", + year: 2009, + rating: 4.7, + votes: 14317, + running_times: 5400, + }, + { + title: "The Guard", + year: 2011, + rating: 7.3, + votes: 70283, + running_times: 5760, + }, + { + title: "The Guardian", + year: 2006, + rating: 6.9, + votes: 79495, + running_times: 8340, + }, + { + title: "The Guest", + year: 2014, + rating: 6.7, + votes: 74941, + running_times: 6000, + }, + { + title: "The Guilt Trip", + year: 2012, + rating: 5.8, + votes: 32258, + running_times: 5700, + }, + { + title: "The Gunman", + year: 2015, + rating: 5.8, + votes: 32856, + running_times: 6900, + }, + { + title: "The Guns of Navarone", + year: 1961, + rating: 7.6, + votes: 38967, + running_times: 9480, + }, + { + title: "The Guru", + year: 2002, + rating: 5.4, + votes: 13997, + running_times: 5640, + }, + { + title: "The Hallow", + year: 2015, + rating: 5.7, + votes: 11871, + running_times: 5820, + }, + { + title: "The Hand That Rocks the Cradle", + year: 1992, + rating: 6.6, + votes: 32195, + running_times: 6600, + }, + { + title: "The Hangover", + year: 2009, + rating: 7.7, + votes: 628581, + running_times: 6480, + }, + { + title: "The Hangover Part II", + year: 2011, + rating: 6.5, + votes: 405784, + running_times: 6120, + }, + { + title: "The Hangover Part III", + year: 2013, + rating: 5.9, + votes: 248444, + running_times: 6000, + }, + { + title: "The Happening", + year: 2008, + rating: 5, + votes: 175416, + running_times: 5460, + }, + { + title: "The Hard Way", + year: 1991, + rating: 6.3, + votes: 15713, + running_times: 6660, + }, + { + title: "The Hateful Eight", + year: 2015, + rating: 7.8, + votes: 371314, + running_times: 11220, + }, + { + title: "The Haunted Mansion", + year: 2003, + rating: 4.9, + votes: 35158, + running_times: 5280, + }, + { + title: "The Haunting", + year: 1963, + rating: 7.6, + votes: 28813, + running_times: 6720, + }, + { + title: "The Haunting", + year: 1999, + rating: 4.9, + votes: 62383, + running_times: 6780, + }, + { + title: "The Haunting in Connecticut", + year: 2009, + rating: 5.9, + votes: 53737, + running_times: 6120, + }, + { + title: "The Haunting in Connecticut 2: Ghosts of Georgia", + year: 2013, + rating: 5.3, + votes: 14226, + running_times: 6060, + }, + { + title: "The Heartbreak Kid", + year: 2007, + rating: 5.8, + votes: 76510, + running_times: 6960, + }, + { + title: "The Heat", + year: 2013, + rating: 6.6, + votes: 143870, + running_times: 7200, + }, + { + title: "The Heiress", + year: 1949, + rating: 8.2, + votes: 10798, + running_times: 6900, + }, + { + title: "The Help", + year: 2011, + rating: 8.1, + votes: 355833, + running_times: 8760, + }, + { + title: "The Hidden", + year: 1987, + rating: 7, + votes: 14177, + running_times: 5760, + }, + { + title: "The Hill", + year: 1965, + rating: 7.9, + votes: 10218, + running_times: 7380, + }, + { + title: "The Hills Have Eyes", + year: 1977, + rating: 6.4, + votes: 24184, + running_times: 5340, + }, + { + title: "The Hills Have Eyes", + year: 2006, + rating: 6.4, + votes: 140564, + running_times: 6480, + }, + { + title: "The Hills Have Eyes II", + year: 2007, + rating: 5.1, + votes: 53674, + running_times: 5340, + }, + { + title: "The History Boys", + year: 2006, + rating: 6.9, + votes: 18686, + running_times: 6540, + }, + { + title: "The Hit List", + year: 2011, + rating: 5.4, + votes: 10708, + running_times: 5400, + }, + { + title: "The Hitcher", + year: 1986, + rating: 7.3, + votes: 36646, + running_times: 5820, + }, + { + title: "The Hitcher", + year: 2007, + rating: 5.6, + votes: 36919, + running_times: 5400, + }, + { + title: "The Hitchhiker's Guide to the Galaxy", + year: 2005, + rating: 6.8, + votes: 166812, + running_times: 6540, + }, + { + title: "The Hitman's Bodyguard", + year: 2017, + rating: 7, + votes: 96031, + running_times: 7080, + }, + { + title: "The Hoax", + year: 2006, + rating: 6.7, + votes: 15075, + running_times: 6960, + }, + { + title: "The Hobbit: An Unexpected Journey", + year: 2012, + rating: 7.9, + votes: 685564, + running_times: 10920, + }, + { + title: "The Hobbit: The Battle of the Five Armies", + year: 2014, + rating: 7.4, + votes: 402317, + running_times: 9840, + }, + { + title: "The Hobbit: The Desolation of Smaug", + year: 2013, + rating: 7.9, + votes: 530117, + running_times: 11160, + }, + { + title: "The Hole", + year: 2001, + rating: 6.2, + votes: 40802, + running_times: 6120, + }, + { + title: "The Hole", + year: 2009, + rating: 5.7, + votes: 20485, + running_times: 5520, + }, + { + title: "The Holiday", + year: 2006, + rating: 6.9, + votes: 201183, + running_times: 8280, + }, + { + title: "The Homesman", + year: 2014, + rating: 6.6, + votes: 25011, + running_times: 7320, + }, + { + title: "The Horse Whisperer", + year: 1998, + rating: 6.6, + votes: 34548, + running_times: 10200, + }, + { + title: "The Host", + year: 2013, + rating: 5.9, + votes: 99595, + running_times: 7500, + }, + { + title: "The Hot Chick", + year: 2002, + rating: 5.5, + votes: 80111, + running_times: 6240, + }, + { + title: "The Hottie & the Nottie", + year: 2008, + rating: 1.9, + votes: 34344, + running_times: 5460, + }, + { + title: "The Hours", + year: 2002, + rating: 7.6, + votes: 109423, + running_times: 6600, + }, + { + title: "The House", + year: 2017, + rating: 5.6, + votes: 16827, + running_times: 5280, + }, + { + title: "The House Bunny", + year: 2008, + rating: 5.5, + votes: 69088, + running_times: 5820, + }, + { + title: "The House of the Devil", + year: 2009, + rating: 6.4, + votes: 33789, + running_times: 5700, + }, + { + title: "The House of the Spirits", + year: 1993, + rating: 6.9, + votes: 18218, + running_times: 8760, + }, + { + title: "The Howling", + year: 1981, + rating: 6.6, + votes: 25122, + running_times: 5460, + }, + { + title: "The Hudsucker Proxy", + year: 1994, + rating: 7.3, + votes: 69082, + running_times: 6660, + }, + { + title: "The Human Centipede (First Sequence)", + year: 2009, + rating: 4.4, + votes: 62836, + running_times: 5520, + }, + { + title: "The Human Centipede II (Full Sequence)", + year: 2011, + rating: 3.9, + votes: 29662, + running_times: 5460, + }, + { + title: "The Human Centipede III (Final Sequence)", + year: 2015, + rating: 2.8, + votes: 10385, + running_times: 6120, + }, + { + title: "The Human Race", + year: 2013, + rating: 5.3, + votes: 10292, + running_times: 5220, + }, + { + title: "The Human Stain", + year: 2003, + rating: 6.3, + votes: 26760, + running_times: 6360, + }, + { + title: "The Hunchback of Notre Dame", + year: 1996, + rating: 6.9, + votes: 115443, + running_times: 5460, + }, + { + title: "The Hundred-Foot Journey", + year: 2014, + rating: 7.3, + votes: 62251, + running_times: 7320, + }, + { + title: "The Hunger", + year: 1983, + rating: 6.7, + votes: 19245, + running_times: 5820, + }, + { + title: "The Hunger Games", + year: 2012, + rating: 7.2, + votes: 754986, + running_times: 8520, + }, + { + title: "The Hunger Games: Catching Fire", + year: 2013, + rating: 7.5, + votes: 541328, + running_times: 8760, + }, + { + title: "The Hunger Games: Mockingjay - Part 1", + year: 2014, + rating: 6.7, + votes: 346570, + running_times: 7380, + }, + { + title: "The Hunger Games: Mockingjay - Part 2", + year: 2015, + rating: 6.6, + votes: 218419, + running_times: 8220, + }, + { + title: "The Hunt for Red October", + year: 1990, + rating: 7.6, + votes: 153965, + running_times: 8100, + }, + { + title: "The Hunted", + year: 2003, + rating: 6, + votes: 38171, + running_times: 5640, + }, + { + title: "The Hunter", + year: 2011, + rating: 6.8, + votes: 33016, + running_times: 6120, + }, + { + title: "The Hunting Party", + year: 2007, + rating: 6.9, + votes: 22998, + running_times: 6060, + }, + { + title: "The Huntsman: Winter's War", + year: 2016, + rating: 6.1, + votes: 73796, + running_times: 7200, + }, + { + title: "The Hurricane", + year: 1999, + rating: 7.6, + votes: 81748, + running_times: 8760, + }, + { + title: "The Hurt Locker", + year: 2008, + rating: 7.6, + votes: 363360, + running_times: 7860, + }, + { + title: "The Hustler", + year: 1961, + rating: 8, + votes: 66871, + running_times: 8040, + }, + { + title: "The Ice Harvest", + year: 2005, + rating: 6.3, + votes: 21621, + running_times: 5520, + }, + { + title: "The Ice Storm", + year: 1997, + rating: 7.5, + votes: 48839, + running_times: 6720, + }, + { + title: "The Iceman", + year: 2012, + rating: 6.9, + votes: 60972, + running_times: 6360, + }, + { + title: "The Ides of March", + year: 2011, + rating: 7.1, + votes: 199959, + running_times: 6060, + }, + { + title: "The Illusionist", + year: 2006, + rating: 7.6, + votes: 319514, + running_times: 6600, + }, + { + title: "The Imaginarium of Doctor Parnassus", + year: 2009, + rating: 6.8, + votes: 132579, + running_times: 7380, + }, + { + title: "The Imitation Game", + year: 2014, + rating: 8, + votes: 557214, + running_times: 6840, + }, + { + title: "The Immigrant", + year: 2013, + rating: 6.6, + votes: 24241, + running_times: 7200, + }, + { + title: "The Importance of Being Earnest", + year: 2002, + rating: 6.9, + votes: 20040, + running_times: 5820, + }, + { + title: "The Imposter", + year: 2012, + rating: 7.5, + votes: 39049, + running_times: 5940, + }, + { + title: "The In-Laws", + year: 2003, + rating: 5.7, + votes: 14691, + running_times: 5880, + }, + { + title: "The Inbetweeners Movie", + year: 2011, + rating: 6.8, + votes: 68706, + running_times: 5820, + }, + { + title: "The Incredible Burt Wonderstone", + year: 2013, + rating: 5.9, + votes: 64175, + running_times: 6000, + }, + { + title: "The Incredible Hulk", + year: 2008, + rating: 6.8, + votes: 355393, + running_times: 8100, + }, + { + title: "The Incredible Shrinking Man", + year: 1957, + rating: 7.7, + votes: 12983, + running_times: 4860, + }, + { + title: "The Incredibles", + year: 2004, + rating: 8, + votes: 528232, + running_times: 6900, + }, + { + title: "The Indian in the Cupboard", + year: 1995, + rating: 5.9, + votes: 22226, + running_times: 5760, + }, + { + title: "The Infiltrator", + year: 2016, + rating: 7, + votes: 52466, + running_times: 7620, + }, + { + title: "The Informant!", + year: 2009, + rating: 6.5, + votes: 55888, + running_times: 6480, + }, + { + title: "The Informers", + year: 2008, + rating: 5, + votes: 14859, + running_times: 5880, + }, + { + title: "The Innkeepers", + year: 2011, + rating: 5.5, + votes: 29339, + running_times: 6060, + }, + { + title: "The Innocents", + year: 1961, + rating: 7.9, + votes: 21569, + running_times: 6000, + }, + { + title: "The Insider", + year: 1999, + rating: 7.9, + votes: 142214, + running_times: 9420, + }, + { + title: "The Intern", + year: 2015, + rating: 7.1, + votes: 170025, + running_times: 7260, + }, + { + title: "The International", + year: 2009, + rating: 6.5, + votes: 83532, + running_times: 7080, + }, + { + title: "The Internet's Own Boy: The Story of Aaron Swartz", + year: 2014, + rating: 8.1, + votes: 13666, + running_times: 6300, + }, + { + title: "The Internship", + year: 2013, + rating: 6.3, + votes: 170490, + running_times: 7500, + }, + { + title: "The Interpreter", + year: 2005, + rating: 6.4, + votes: 89818, + running_times: 7680, + }, + { + title: "The Interview", + year: 2014, + rating: 6.6, + votes: 269477, + running_times: 6720, + }, + { + title: "The Invasion", + year: 2007, + rating: 5.9, + votes: 68278, + running_times: 5940, + }, + { + title: "The Invention of Lying", + year: 2009, + rating: 6.4, + votes: 100451, + running_times: 6000, + }, + { + title: "The Invisible", + year: 2007, + rating: 6.3, + votes: 32411, + running_times: 6120, + }, + { + title: "The Invisible Man", + year: 1933, + rating: 7.7, + votes: 23608, + running_times: 4260, + }, + { + title: "The Invitation", + year: 2015, + rating: 6.7, + votes: 49850, + running_times: 6000, + }, + { + title: "The Ipcress File", + year: 1965, + rating: 7.3, + votes: 11333, + running_times: 6540, + }, + { + title: "The Iron Giant", + year: 1999, + rating: 8, + votes: 142069, + running_times: 5400, + }, + { + title: "The Iron Lady", + year: 2011, + rating: 6.4, + votes: 89826, + running_times: 6300, + }, + { + title: "The Island", + year: 2005, + rating: 6.9, + votes: 277513, + running_times: 8160, + }, + { + title: "The Island of Dr. Moreau", + year: 1996, + rating: 4.4, + votes: 27744, + running_times: 5940, + }, + { + title: "The Italian Job", + year: 1969, + rating: 7.4, + votes: 33958, + running_times: 5940, + }, + { + title: "The Italian Job", + year: 2003, + rating: 7, + votes: 305232, + running_times: 6660, + }, + { + title: "The Jackal", + year: 1997, + rating: 6.4, + votes: 93573, + running_times: 7440, + }, + { + title: "The Jacket", + year: 2005, + rating: 7.1, + votes: 98859, + running_times: 6180, + }, + { + title: "The Jane Austen Book Club", + year: 2007, + rating: 6.8, + votes: 22992, + running_times: 6360, + }, + { + title: "The Jerk", + year: 1979, + rating: 7.2, + votes: 46074, + running_times: 5640, + }, + { + title: "The Jewel of the Nile", + year: 1985, + rating: 6.1, + votes: 42960, + running_times: 6360, + }, + { + title: "The Joneses", + year: 2009, + rating: 6.5, + votes: 35379, + running_times: 5760, + }, + { + title: "The Joy Luck Club", + year: 1993, + rating: 7.6, + votes: 13162, + running_times: 8340, + }, + { + title: "The Judge", + year: 2014, + rating: 7.4, + votes: 151986, + running_times: 8460, + }, + { + title: "The Jungle Book", + year: 1967, + rating: 7.6, + votes: 137104, + running_times: 4680, + }, + { + title: "The Jungle Book", + year: 1994, + rating: 6, + votes: 14136, + running_times: 6660, + }, + { + title: "The Jungle Book", + year: 2016, + rating: 7.5, + votes: 214632, + running_times: 6360, + }, + { + title: "The Jungle Book 2", + year: 2003, + rating: 5.4, + votes: 12654, + running_times: 4320, + }, + { + title: "The Juror", + year: 1996, + rating: 5.6, + votes: 14913, + running_times: 7080, + }, + { + title: "The Karate Kid", + year: 1984, + rating: 7.2, + votes: 143057, + running_times: 7560, + }, + { + title: "The Karate Kid", + year: 2010, + rating: 6.2, + votes: 133659, + running_times: 8400, + }, + { + title: "The Karate Kid Part II", + year: 1986, + rating: 5.9, + votes: 59233, + running_times: 6780, + }, + { + title: "The Karate Kid Part III", + year: 1989, + rating: 5, + votes: 39191, + running_times: 6720, + }, + { + title: "The Kentucky Fried Movie", + year: 1977, + rating: 6.5, + votes: 14750, + running_times: 4980, + }, + { + title: "The Kid", + year: 1921, + rating: 8.3, + votes: 80699, + running_times: 4080, + }, + { + title: "The Kid", + year: 2000, + rating: 6.1, + votes: 36333, + running_times: 6240, + }, + { + title: "The Kids Are All Right", + year: 2010, + rating: 7.1, + votes: 116244, + running_times: 6360, + }, + { + title: "The Killer Inside Me", + year: 2010, + rating: 6.1, + votes: 30253, + running_times: 6540, + }, + { + title: "The Killers", + year: 1946, + rating: 7.8, + votes: 15492, + running_times: 6180, + }, + { + title: "The Killing", + year: 1956, + rating: 8, + votes: 67769, + running_times: 5100, + }, + { + title: "The Killing Fields", + year: 1984, + rating: 7.9, + votes: 44901, + running_times: 8460, + }, + { + title: "The Killing Room", + year: 2009, + rating: 5.7, + votes: 12284, + running_times: 5580, + }, + { + title: "The Killing of a Sacred Deer", + year: 2017, + rating: 7.5, + votes: 17681, + running_times: 7260, + }, + { + title: "The King and I", + year: 1956, + rating: 7.5, + votes: 20645, + running_times: 7980, + }, + { + title: "The King of Comedy", + year: 1982, + rating: 7.8, + votes: 60357, + running_times: 6540, + }, + { + title: "The King of Kong", + year: 2007, + rating: 8.2, + votes: 32123, + running_times: 4740, + }, + { + title: "The King's Speech", + year: 2010, + rating: 8, + votes: 550814, + running_times: 7080, + }, + { + title: "The Kingdom", + year: 2007, + rating: 7.1, + votes: 107076, + running_times: 6600, + }, + { + title: "The Kings of Summer", + year: 2013, + rating: 7.2, + votes: 68006, + running_times: 5700, + }, + { + title: "The Kite Runner", + year: 2007, + rating: 7.6, + votes: 71569, + running_times: 7680, + }, + { + title: "The LEGO Batman Movie", + year: 2017, + rating: 7.3, + votes: 87348, + running_times: 6240, + }, + { + title: "The LEGO Movie", + year: 2014, + rating: 7.8, + votes: 277876, + running_times: 6000, + }, + { + title: "The Ladies Man", + year: 2000, + rating: 5.1, + votes: 11284, + running_times: 5040, + }, + { + title: "The Lady Eve", + year: 1941, + rating: 8, + votes: 16038, + running_times: 5640, + }, + { + title: "The Lady Vanishes", + year: 1938, + rating: 7.9, + votes: 39168, + running_times: 5760, + }, + { + title: "The Lady from Shanghai", + year: 1947, + rating: 7.7, + votes: 21256, + running_times: 5520, + }, + { + title: "The Lady in the Van", + year: 2015, + rating: 6.7, + votes: 18691, + running_times: 6240, + }, + { + title: "The Ladykillers", + year: 1955, + rating: 7.8, + votes: 22382, + running_times: 5460, + }, + { + title: "The Ladykillers", + year: 2004, + rating: 6.2, + votes: 89327, + running_times: 6240, + }, + { + title: "The Lake House", + year: 2006, + rating: 6.8, + votes: 122280, + running_times: 5940, + }, + { + title: "The Land Before Time", + year: 1988, + rating: 7.4, + votes: 67462, + running_times: 4140, + }, + { + title: "The Last Airbender", + year: 2010, + rating: 4.2, + votes: 128562, + running_times: 6180, + }, + { + title: "The Last Boy Scout", + year: 1991, + rating: 6.9, + votes: 81045, + running_times: 6300, + }, + { + title: "The Last Castle", + year: 2001, + rating: 6.9, + votes: 60790, + running_times: 7860, + }, + { + title: "The Last Days of Disco", + year: 1998, + rating: 6.6, + votes: 10594, + running_times: 6780, + }, + { + title: "The Last Days on Mars", + year: 2013, + rating: 5.5, + votes: 31366, + running_times: 5880, + }, + { + title: "The Last Detail", + year: 1973, + rating: 7.6, + votes: 18086, + running_times: 6240, + }, + { + title: "The Last Dragon", + year: 1985, + rating: 6.9, + votes: 10341, + running_times: 6540, + }, + { + title: "The Last Emperor", + year: 1987, + rating: 7.8, + votes: 77398, + running_times: 13140, + }, + { + title: "The Last Exorcism", + year: 2010, + rating: 5.6, + votes: 43905, + running_times: 5220, + }, + { + title: "The Last Exorcism Part II", + year: 2013, + rating: 4, + votes: 14396, + running_times: 5580, + }, + { + title: "The Last House on the Left", + year: 1972, + rating: 6, + votes: 27511, + running_times: 5460, + }, + { + title: "The Last House on the Left", + year: 2009, + rating: 6.6, + votes: 73887, + running_times: 6840, + }, + { + title: "The Last King of Scotland", + year: 2006, + rating: 7.7, + votes: 156424, + running_times: 7380, + }, + { + title: "The Last Kiss", + year: 2006, + rating: 6.5, + votes: 39056, + running_times: 6900, + }, + { + title: "The Last Legion", + year: 2007, + rating: 5.4, + votes: 31238, + running_times: 6120, + }, + { + title: "The Last Man on Earth", + year: 1964, + rating: 6.9, + votes: 14115, + running_times: 5160, + }, + { + title: "The Last Mimzy", + year: 2007, + rating: 6.3, + votes: 19614, + running_times: 5760, + }, + { + title: "The Last Picture Show", + year: 1971, + rating: 8.1, + votes: 34547, + running_times: 7620, + }, + { + title: "The Last Samurai", + year: 2003, + rating: 7.7, + votes: 343858, + running_times: 9240, + }, + { + title: "The Last Seduction", + year: 1994, + rating: 7.1, + votes: 17490, + running_times: 7740, + }, + { + title: "The Last Song", + year: 2010, + rating: 5.9, + votes: 67037, + running_times: 6420, + }, + { + title: "The Last Stand", + year: 2013, + rating: 6.4, + votes: 121189, + running_times: 6420, + }, + { + title: "The Last Starfighter", + year: 1984, + rating: 6.7, + votes: 31850, + running_times: 6060, + }, + { + title: "The Last Station", + year: 2009, + rating: 7, + votes: 16168, + running_times: 6720, + }, + { + title: "The Last Supper", + year: 1995, + rating: 6.8, + votes: 12803, + running_times: 5520, + }, + { + title: "The Last Temptation of Christ", + year: 1988, + rating: 7.6, + votes: 43169, + running_times: 9840, + }, + { + title: "The Last Unicorn", + year: 1982, + rating: 7.5, + votes: 20743, + running_times: 5520, + }, + { + title: "The Last Waltz", + year: 1978, + rating: 8.2, + votes: 13674, + running_times: 7020, + }, + { + title: "The Last Witch Hunter", + year: 2015, + rating: 6, + votes: 76521, + running_times: 6360, + }, + { + title: "The Last of the Mohicans", + year: 1992, + rating: 7.8, + votes: 124618, + running_times: 7020, + }, + { + title: "The Lavender Hill Mob", + year: 1951, + rating: 7.7, + votes: 10460, + running_times: 4860, + }, + { + title: "The Lawnmower Man", + year: 1992, + rating: 5.4, + votes: 29850, + running_times: 8400, + }, + { + title: "The Lazarus Effect", + year: 2015, + rating: 5.2, + votes: 33199, + running_times: 4980, + }, + { + title: "The Lazarus Project", + year: 2008, + rating: 6.2, + votes: 15187, + running_times: 6000, + }, + { + title: "The League of Extraordinary Gentlemen", + year: 2003, + rating: 5.8, + votes: 149821, + running_times: 6600, + }, + { + title: "The Ledge", + year: 2011, + rating: 6.6, + votes: 16738, + running_times: 6060, + }, + { + title: "The Legend of Bagger Vance", + year: 2000, + rating: 6.7, + votes: 48336, + running_times: 7560, + }, + { + title: "The Legend of Bhagat Singh", + year: 2002, + rating: 8.1, + votes: 11090, + running_times: 9300, + }, + { + title: "The Legend of Hell House", + year: 1973, + rating: 6.8, + votes: 10186, + running_times: 5700, + }, + { + title: "The Legend of Hercules", + year: 2014, + rating: 4.2, + votes: 47928, + running_times: 5940, + }, + { + title: "The Legend of Tarzan", + year: 2016, + rating: 6.3, + votes: 132022, + running_times: 6600, + }, + { + title: "The Legend of Zorro", + year: 2005, + rating: 5.9, + votes: 78734, + running_times: 7740, + }, + { + title: "The Libertine", + year: 2004, + rating: 6.4, + votes: 32595, + running_times: 6840, + }, + { + title: "The Life Aquatic with Steve Zissou", + year: 2004, + rating: 7.3, + votes: 153261, + running_times: 7140, + }, + { + title: "The Life Before Her Eyes", + year: 2007, + rating: 6.4, + votes: 12657, + running_times: 5400, + }, + { + title: "The Life and Death of Colonel Blimp", + year: 1943, + rating: 8.2, + votes: 10828, + running_times: 9780, + }, + { + title: "The Life and Death of Peter Sellers", + year: 2004, + rating: 6.9, + votes: 13563, + running_times: 7320, + }, + { + title: "The Life of David Gale", + year: 2003, + rating: 7.6, + votes: 95802, + running_times: 7800, + }, + { + title: "The Lifeguard", + year: 2013, + rating: 5.7, + votes: 12490, + running_times: 5880, + }, + { + title: "The Light Between Oceans", + year: 2016, + rating: 7.2, + votes: 34727, + running_times: 7980, + }, + { + title: "The Limey", + year: 1999, + rating: 7.1, + votes: 26116, + running_times: 5340, + }, + { + title: "The Limits of Control", + year: 2009, + rating: 6.3, + votes: 17145, + running_times: 6960, + }, + { + title: "The Lincoln Lawyer", + year: 2011, + rating: 7.3, + votes: 186192, + running_times: 7080, + }, + { + title: "The Lion King", + year: 1994, + rating: 8.5, + votes: 735442, + running_times: 5280, + }, + { + title: "The Lion in Winter", + year: 1968, + rating: 8.1, + votes: 24882, + running_times: 8220, + }, + { + title: "The Little Death", + year: 2014, + rating: 7.1, + votes: 21713, + running_times: 5880, + }, + { + title: "The Little Girl Who Lives Down the Lane", + year: 1976, + rating: 7.1, + votes: 10499, + running_times: 6000, + }, + { + title: "The Little Mermaid", + year: 1989, + rating: 7.6, + votes: 191159, + running_times: 4980, + }, + { + title: "The Little Prince", + year: 2015, + rating: 7.8, + votes: 42970, + running_times: 6480, + }, + { + title: "The Little Rascals", + year: 1994, + rating: 6.3, + votes: 37088, + running_times: 4920, + }, + { + title: "The Little Shop of Horrors", + year: 1960, + rating: 6.3, + votes: 13565, + running_times: 4320, + }, + { + title: "The Living Daylights", + year: 1987, + rating: 6.7, + votes: 75085, + running_times: 7800, + }, + { + title: "The Lizzie McGuire Movie", + year: 2003, + rating: 5.4, + votes: 30483, + running_times: 5640, + }, + { + title: "The Lobster", + year: 2015, + rating: 7.1, + votes: 138204, + running_times: 7140, + }, + { + title: "The Loft", + year: 2014, + rating: 6.3, + votes: 41266, + running_times: 6480, + }, + { + title: "The Lone Ranger", + year: 2013, + rating: 6.5, + votes: 196792, + running_times: 9000, + }, + { + title: "The Long Good Friday", + year: 1980, + rating: 7.7, + votes: 15439, + running_times: 6840, + }, + { + title: "The Long Goodbye", + year: 1973, + rating: 7.7, + votes: 20432, + running_times: 6720, + }, + { + title: "The Long Kiss Goodnight", + year: 1996, + rating: 6.7, + votes: 64190, + running_times: 7260, + }, + { + title: "The Longest Day", + year: 1962, + rating: 7.8, + votes: 46242, + running_times: 10680, + }, + { + title: "The Longest Ride", + year: 2015, + rating: 7.1, + votes: 62410, + running_times: 7380, + }, + { + title: "The Longest Yard", + year: 1974, + rating: 7.1, + votes: 14139, + running_times: 7320, + }, + { + title: "The Longest Yard", + year: 2005, + rating: 6.4, + votes: 141183, + running_times: 6780, + }, + { + title: "The Lookout", + year: 2007, + rating: 7.1, + votes: 53036, + running_times: 5940, + }, + { + title: "The Lorax", + year: 2012, + rating: 6.4, + votes: 83985, + running_times: 5160, + }, + { + title: "The Lord of the Rings", + year: 1978, + rating: 6.2, + votes: 25910, + running_times: 7920, + }, + { + title: "The Lord of the Rings: The Fellowship of the Ring", + year: 2001, + rating: 8.8, + votes: 1369632, + running_times: 13680, + }, + { + title: "The Lord of the Rings: The Return of the King", + year: 2003, + rating: 8.9, + votes: 1349449, + running_times: 15780, + }, + { + title: "The Lord of the Rings: The Two Towers", + year: 2002, + rating: 8.7, + votes: 1221456, + running_times: 14100, + }, + { + title: "The Lords of Salem", + year: 2012, + rating: 5.1, + votes: 22967, + running_times: 6060, + }, + { + title: "The Losers", + year: 2010, + rating: 6.4, + votes: 79049, + running_times: 5820, + }, + { + title: "The Lost Boys", + year: 1987, + rating: 7.3, + votes: 102017, + running_times: 5820, + }, + { + title: "The Lost City of Z", + year: 2016, + rating: 6.6, + votes: 45774, + running_times: 8460, + }, + { + title: "The Lost Weekend", + year: 1945, + rating: 8, + votes: 27909, + running_times: 6060, + }, + { + title: "The Lost World: Jurassic Park", + year: 1997, + rating: 6.5, + votes: 308796, + running_times: 7740, + }, + { + title: "The Love Bug", + year: 1968, + rating: 6.5, + votes: 11610, + running_times: 6480, + }, + { + title: "The Love Guru", + year: 2008, + rating: 3.8, + votes: 45254, + running_times: 5220, + }, + { + title: "The Love Punch", + year: 2013, + rating: 5.7, + votes: 10551, + running_times: 5640, + }, + { + title: "The Loved Ones", + year: 2009, + rating: 6.7, + votes: 31227, + running_times: 5040, + }, + { + title: "The Lovely Bones", + year: 2009, + rating: 6.7, + votes: 134513, + running_times: 8100, + }, + { + title: "The Lucky One", + year: 2012, + rating: 6.5, + votes: 86309, + running_times: 6060, + }, + { + title: "The Lucky Ones", + year: 2008, + rating: 7, + votes: 12384, + running_times: 6900, + }, + { + title: "The Machine", + year: 2013, + rating: 6.1, + votes: 27158, + running_times: 5460, + }, + { + title: "The Machinist", + year: 2004, + rating: 7.7, + votes: 307967, + running_times: 6060, + }, + { + title: "The Madness of King George", + year: 1994, + rating: 7.2, + votes: 13102, + running_times: 6240, + }, + { + title: "The Magdalene Sisters", + year: 2002, + rating: 7.8, + votes: 23532, + running_times: 6840, + }, + { + title: "The Magic of Belle Isle", + year: 2012, + rating: 7, + votes: 14905, + running_times: 6540, + }, + { + title: "The Magnificent Ambersons", + year: 1942, + rating: 7.9, + votes: 18255, + running_times: 8880, + }, + { + title: "The Magnificent Seven", + year: 1960, + rating: 7.8, + votes: 75093, + running_times: 7680, + }, + { + title: "The Magnificent Seven", + year: 2016, + rating: 6.9, + votes: 144193, + running_times: 7920, + }, + { + title: "The Maiden Heist", + year: 2009, + rating: 6.1, + votes: 13687, + running_times: 5400, + }, + { + title: "The Majestic", + year: 2001, + rating: 6.9, + votes: 47475, + running_times: 9120, + }, + { + title: "The Maltese Falcon", + year: 1941, + rating: 8.1, + votes: 125756, + running_times: 6000, + }, + { + title: "The Man", + year: 2005, + rating: 5.5, + votes: 22837, + running_times: 4980, + }, + { + title: "The Man Who Cried", + year: 2000, + rating: 6.2, + votes: 13144, + running_times: 6000, + }, + { + title: "The Man Who Fell to Earth", + year: 1976, + rating: 6.7, + votes: 19563, + running_times: 8340, + }, + { + title: "The Man Who Knew Infinity", + year: 2015, + rating: 7.2, + votes: 35156, + running_times: 6480, + }, + { + title: "The Man Who Knew Too Little", + year: 1997, + rating: 6.6, + votes: 25635, + running_times: 5640, + }, + { + title: "The Man Who Knew Too Much", + year: 1934, + rating: 6.9, + votes: 13970, + running_times: 4500, + }, + { + title: "The Man Who Knew Too Much", + year: 1956, + rating: 7.5, + votes: 47038, + running_times: 7200, + }, + { + title: "The Man Who Shot Liberty Valance", + year: 1962, + rating: 8.1, + votes: 58224, + running_times: 7440, + }, + { + title: "The Man Who Wasn't There", + year: 2001, + rating: 7.6, + votes: 91464, + running_times: 7080, + }, + { + title: "The Man Who Would Be King", + year: 1975, + rating: 7.9, + votes: 38413, + running_times: 7740, + }, + { + title: "The Man Without a Face", + year: 1993, + rating: 6.7, + votes: 24519, + running_times: 6900, + }, + { + title: "The Man from Earth", + year: 2007, + rating: 8, + votes: 146211, + running_times: 5220, + }, + { + title: "The Man from U.N.C.L.E.", + year: 2015, + rating: 7.3, + votes: 216468, + running_times: 6960, + }, + { + title: "The Man in the Iron Mask", + year: 1998, + rating: 6.5, + votes: 136416, + running_times: 7920, + }, + { + title: "The Man in the Moon", + year: 1991, + rating: 7.4, + votes: 13109, + running_times: 5940, + }, + { + title: "The Man with One Red Shoe", + year: 1985, + rating: 5.7, + votes: 12850, + running_times: 5520, + }, + { + title: "The Man with Two Brains", + year: 1983, + rating: 6.4, + votes: 21124, + running_times: 5580, + }, + { + title: "The Man with the Golden Gun", + year: 1974, + rating: 6.8, + votes: 80331, + running_times: 7500, + }, + { + title: "The Man with the Iron Fists", + year: 2012, + rating: 5.4, + votes: 56139, + running_times: 6420, + }, + { + title: "The Manchurian Candidate", + year: 1962, + rating: 8, + votes: 64529, + running_times: 7560, + }, + { + title: "The Manchurian Candidate", + year: 2004, + rating: 6.6, + votes: 92180, + running_times: 7740, + }, + { + title: "The Many Adventures of Winnie the Pooh", + year: 1977, + rating: 7.6, + votes: 27101, + running_times: 4440, + }, + { + title: "The Marine", + year: 2006, + rating: 4.7, + votes: 29126, + running_times: 5520, + }, + { + title: "The Martian", + year: 2015, + rating: 8, + votes: 592557, + running_times: 9060, + }, + { + title: "The Mask", + year: 1994, + rating: 6.9, + votes: 290014, + running_times: 6840, + }, + { + title: "The Mask of Zorro", + year: 1998, + rating: 6.7, + votes: 146223, + running_times: 8160, + }, + { + title: "The Master", + year: 2012, + rating: 7.1, + votes: 117674, + running_times: 8280, + }, + { + title: "The Master of Disguise", + year: 2002, + rating: 3.3, + votes: 19140, + running_times: 4800, + }, + { + title: "The Matador", + year: 2005, + rating: 6.8, + votes: 41655, + running_times: 5760, + }, + { + title: "The Matrix", + year: 1999, + rating: 8.7, + votes: 1358510, + running_times: 8160, + }, + { + title: "The Matrix Reloaded", + year: 2003, + rating: 7.2, + votes: 450569, + running_times: 8280, + }, + { + title: "The Matrix Revolutions", + year: 2003, + rating: 6.7, + votes: 390666, + running_times: 7740, + }, + { + title: "The Maze Runner", + year: 2014, + rating: 6.8, + votes: 349853, + running_times: 6780, + }, + { + title: "The Meaning of Life", + year: 1983, + rating: 7.6, + votes: 95426, + running_times: 6720, + }, + { + title: "The Mechanic", + year: 2011, + rating: 6.6, + votes: 132870, + running_times: 5580, + }, + { + title: "The Medallion", + year: 2003, + rating: 5.2, + votes: 33182, + running_times: 6480, + }, + { + title: "The Men Who Stare at Goats", + year: 2009, + rating: 6.2, + votes: 115503, + running_times: 5640, + }, + { + title: "The Merchant of Venice", + year: 2004, + rating: 7.1, + votes: 31425, + running_times: 8040, + }, + { + title: "The Message", + year: 1976, + rating: 8.3, + votes: 37406, + running_times: 10620, + }, + { + title: "The Messenger", + year: 2009, + rating: 7.1, + votes: 31080, + running_times: 6780, + }, + { + title: "The Messengers", + year: 2007, + rating: 5.4, + votes: 35223, + running_times: 5400, + }, + { + title: "The Mexican", + year: 2001, + rating: 6.1, + votes: 92498, + running_times: 7380, + }, + { + title: "The Meyerowitz Stories (New and Selected)", + year: 2017, + rating: 7.1, + votes: 15162, + running_times: 6720, + }, + { + title: "The Midnight Meat Train", + year: 2008, + rating: 6.1, + votes: 52051, + running_times: 6180, + }, + { + title: "The Mighty", + year: 1998, + rating: 7.3, + votes: 11094, + running_times: 6000, + }, + { + title: "The Mighty Ducks", + year: 1992, + rating: 6.5, + votes: 48711, + running_times: 6000, + }, + { + title: "The Million Dollar Hotel", + year: 2000, + rating: 5.9, + votes: 19243, + running_times: 7320, + }, + { + title: "The Miracle Worker", + year: 1962, + rating: 8.1, + votes: 13427, + running_times: 6360, + }, + { + title: "The Mirror Has Two Faces", + year: 1996, + rating: 6.5, + votes: 12283, + running_times: 7560, + }, + { + title: "The Misfits", + year: 1961, + rating: 7.4, + votes: 14251, + running_times: 7500, + }, + { + title: "The Missing", + year: 2003, + rating: 6.5, + votes: 29324, + running_times: 9240, + }, + { + title: "The Mission", + year: 1986, + rating: 7.5, + votes: 48098, + running_times: 7500, + }, + { + title: "The Mist", + year: 2007, + rating: 7.2, + votes: 242656, + running_times: 7560, + }, + { + title: "The Money Pit", + year: 1986, + rating: 6.3, + votes: 41778, + running_times: 5460, + }, + { + title: "The Monster", + year: 2016, + rating: 5.4, + votes: 10461, + running_times: 5460, + }, + { + title: "The Monster Squad", + year: 1987, + rating: 7.1, + votes: 21965, + running_times: 4740, + }, + { + title: "The Monuments Men", + year: 2014, + rating: 6.1, + votes: 111036, + running_times: 7080, + }, + { + title: "The Mortal Instruments: City of Bones", + year: 2013, + rating: 5.9, + votes: 115406, + running_times: 7800, + }, + { + title: "The Mosquito Coast", + year: 1986, + rating: 6.6, + votes: 23286, + running_times: 7020, + }, + { + title: "The Mothman Prophecies", + year: 2002, + rating: 6.5, + votes: 67631, + running_times: 7680, + }, + { + title: "The Mountain Between Us", + year: 2017, + rating: 6.3, + votes: 12554, + running_times: 6720, + }, + { + title: "The Mummy", + year: 1932, + rating: 7.2, + votes: 18569, + running_times: 4380, + }, + { + title: "The Mummy", + year: 1999, + rating: 7, + votes: 343729, + running_times: 7440, + }, + { + title: "The Mummy", + year: 2017, + rating: 5.5, + votes: 114356, + running_times: 6600, + }, + { + title: "The Mummy Returns", + year: 2001, + rating: 6.3, + votes: 266813, + running_times: 7800, + }, + { + title: "The Mummy: Tomb of the Dragon Emperor", + year: 2008, + rating: 5.2, + votes: 129879, + running_times: 6720, + }, + { + title: "The Muppet Christmas Carol", + year: 1992, + rating: 7.7, + votes: 38106, + running_times: 5340, + }, + { + title: "The Muppet Movie", + year: 1979, + rating: 7.6, + votes: 27403, + running_times: 5700, + }, + { + title: "The Muppets", + year: 2011, + rating: 7.1, + votes: 78899, + running_times: 6180, + }, + { + title: "The Muppets Take Manhattan", + year: 1984, + rating: 6.9, + votes: 16510, + running_times: 5640, + }, + { + title: "The Music Man", + year: 1962, + rating: 7.7, + votes: 13834, + running_times: 9060, + }, + { + title: "The Musketeer", + year: 2001, + rating: 4.7, + votes: 13252, + running_times: 6240, + }, + { + title: "The Naked Gun 2½: The Smell of Fear", + year: 1991, + rating: 6.8, + votes: 90089, + running_times: 5100, + }, + { + title: "The Naked Gun: From the Files of Police Squad!", + year: 1988, + rating: 7.6, + votes: 126110, + running_times: 5100, + }, + { + title: "The Namesake", + year: 2006, + rating: 7.6, + votes: 17432, + running_times: 7320, + }, + { + title: "The Nanny Diaries", + year: 2007, + rating: 6.2, + votes: 51391, + running_times: 6360, + }, + { + title: "The Natural", + year: 1984, + rating: 7.5, + votes: 36890, + running_times: 8640, + }, + { + title: "The Necessary Death of Charlie Countryman", + year: 2013, + rating: 6.4, + votes: 23761, + running_times: 6180, + }, + { + title: "The Negotiator", + year: 1998, + rating: 7.3, + votes: 114963, + running_times: 8400, + }, + { + title: "The Neon Demon", + year: 2016, + rating: 6.2, + votes: 59341, + running_times: 7080, + }, + { + title: "The Net", + year: 1995, + rating: 5.9, + votes: 52305, + running_times: 6840, + }, + { + title: "The NeverEnding Story II: The Next Chapter", + year: 1990, + rating: 5.1, + votes: 19978, + running_times: 5400, + }, + { + title: "The New Daughter", + year: 2009, + rating: 5.3, + votes: 12381, + running_times: 6480, + }, + { + title: "The New Guy", + year: 2002, + rating: 5.9, + votes: 30223, + running_times: 5520, + }, + { + title: "The New World", + year: 2005, + rating: 6.7, + votes: 75203, + running_times: 10320, + }, + { + title: "The Next Karate Kid", + year: 1994, + rating: 4.3, + votes: 20316, + running_times: 6420, + }, + { + title: "The Next Three Days", + year: 2010, + rating: 7.4, + votes: 156806, + running_times: 7980, + }, + { + title: "The Nice Guys", + year: 2016, + rating: 7.4, + votes: 200979, + running_times: 6960, + }, + { + title: "The Night Before", + year: 2015, + rating: 6.4, + votes: 49476, + running_times: 6060, + }, + { + title: "The Night Listener", + year: 2006, + rating: 5.9, + votes: 13514, + running_times: 5460, + }, + { + title: "The Night of the Hunter", + year: 1955, + rating: 8, + votes: 70141, + running_times: 5520, + }, + { + title: "The Nightmare Before Christmas", + year: 1993, + rating: 8, + votes: 247257, + running_times: 4560, + }, + { + title: "The Nines", + year: 2007, + rating: 6.4, + votes: 30202, + running_times: 6000, + }, + { + title: "The Ninth Gate", + year: 1999, + rating: 6.7, + votes: 146217, + running_times: 7980, + }, + { + title: "The Notebook", + year: 2004, + rating: 7.9, + votes: 436020, + running_times: 7380, + }, + { + title: "The November Man", + year: 2014, + rating: 6.3, + votes: 55446, + running_times: 6480, + }, + { + title: "The Number 23", + year: 2007, + rating: 6.4, + votes: 175665, + running_times: 6060, + }, + { + title: "The Numbers Station", + year: 2013, + rating: 5.6, + votes: 17235, + running_times: 5340, + }, + { + title: "The Nut Job", + year: 2014, + rating: 5.8, + votes: 22351, + running_times: 5100, + }, + { + title: "The Nutty Professor", + year: 1963, + rating: 6.7, + votes: 13282, + running_times: 6420, + }, + { + title: "The Nutty Professor", + year: 1996, + rating: 5.6, + votes: 93784, + running_times: 5700, + }, + { + title: "The Object of My Affection", + year: 1998, + rating: 6, + votes: 16633, + running_times: 6660, + }, + { + title: "The Odd Couple", + year: 1968, + rating: 7.7, + votes: 27013, + running_times: 6300, + }, + { + title: "The Odd Life of Timothy Green", + year: 2012, + rating: 6.6, + votes: 40357, + running_times: 6300, + }, + { + title: "The Omega Man", + year: 1971, + rating: 6.6, + votes: 24872, + running_times: 5880, + }, + { + title: "The Omen", + year: 1976, + rating: 7.6, + votes: 89724, + running_times: 6660, + }, + { + title: "The Omen", + year: 2006, + rating: 5.5, + votes: 51300, + running_times: 6600, + }, + { + title: "The One", + year: 2001, + rating: 5.9, + votes: 82216, + running_times: 5220, + }, + { + title: "The One I Love", + year: 2014, + rating: 7.1, + votes: 27718, + running_times: 5460, + }, + { + title: "The Onion Movie", + year: 2008, + rating: 6.3, + votes: 14278, + running_times: 4800, + }, + { + title: "The Oogieloves in the Big Balloon Adventure", + year: 2012, + rating: 6.3, + votes: 14494, + running_times: 5280, + }, + { + title: "The Opposite of Sex", + year: 1998, + rating: 6.5, + votes: 18864, + running_times: 6300, + }, + { + title: "The Oranges", + year: 2011, + rating: 5.9, + votes: 11158, + running_times: 5400, + }, + { + title: "The Order", + year: 2003, + rating: 5.2, + votes: 15687, + running_times: 6120, + }, + { + title: "The Other Boleyn Girl", + year: 2008, + rating: 6.7, + votes: 90521, + running_times: 6900, + }, + { + title: "The Other Guys", + year: 2010, + rating: 6.7, + votes: 206139, + running_times: 6960, + }, + { + title: "The Other Side of the Door", + year: 2016, + rating: 5.3, + votes: 14034, + running_times: 5760, + }, + { + title: "The Other Sister", + year: 1999, + rating: 6.5, + votes: 10939, + running_times: 7740, + }, + { + title: "The Other Woman", + year: 2014, + rating: 6, + votes: 114420, + running_times: 6540, + }, + { + title: "The Others", + year: 2001, + rating: 7.6, + votes: 294127, + running_times: 6240, + }, + { + title: "The Ottoman Lieutenant", + year: 2017, + rating: 6.9, + votes: 19405, + running_times: 6360, + }, + { + title: "The Out-of-Towners", + year: 1999, + rating: 5.3, + votes: 11334, + running_times: 5400, + }, + { + title: "The Outlaw Josey Wales", + year: 1976, + rating: 7.9, + votes: 55131, + running_times: 8100, + }, + { + title: "The Outsiders", + year: 1983, + rating: 7.2, + votes: 62501, + running_times: 6840, + }, + { + title: "The Overnight", + year: 2015, + rating: 6.1, + votes: 13121, + running_times: 4740, + }, + { + title: "The Ox-Bow Incident", + year: 1943, + rating: 8.1, + votes: 17397, + running_times: 4500, + }, + { + title: "The Oxford Murders", + year: 2008, + rating: 6.1, + votes: 24510, + running_times: 6240, + }, + { + title: "The Pacifier", + year: 2005, + rating: 5.6, + votes: 73772, + running_times: 5700, + }, + { + title: "The Pact", + year: 2012, + rating: 5.8, + votes: 21193, + running_times: 5340, + }, + { + title: "The Pagemaster", + year: 1994, + rating: 6, + votes: 17586, + running_times: 4800, + }, + { + title: "The Painted Veil", + year: 2006, + rating: 7.5, + votes: 82205, + running_times: 7500, + }, + { + title: "The Panic in Needle Park", + year: 1971, + rating: 7.1, + votes: 13115, + running_times: 6600, + }, + { + title: "The Paper", + year: 1994, + rating: 6.6, + votes: 11209, + running_times: 6720, + }, + { + title: "The Paperboy", + year: 2012, + rating: 5.8, + votes: 31446, + running_times: 6420, + }, + { + title: "The Parallax View", + year: 1974, + rating: 7.2, + votes: 12309, + running_times: 6120, + }, + { + title: "The Parent Trap", + year: 1961, + rating: 7.1, + votes: 15693, + running_times: 7740, + }, + { + title: "The Parent Trap", + year: 1998, + rating: 6.5, + votes: 97899, + running_times: 7680, + }, + { + title: "The Party", + year: 1968, + rating: 7.6, + votes: 32463, + running_times: 5940, + }, + { + title: "The Patriot", + year: 1998, + rating: 4.1, + votes: 10623, + running_times: 5640, + }, + { + title: "The Patriot", + year: 2000, + rating: 7.2, + votes: 223677, + running_times: 10500, + }, + { + title: "The Peacemaker", + year: 1997, + rating: 5.9, + votes: 48800, + running_times: 7440, + }, + { + title: "The Peanuts Movie", + year: 2015, + rating: 7.1, + votes: 35551, + running_times: 5280, + }, + { + title: "The Pelican Brief", + year: 1993, + rating: 6.6, + votes: 64563, + running_times: 8460, + }, + { + title: "The People Under the Stairs", + year: 1991, + rating: 6.3, + votes: 26112, + running_times: 6120, + }, + { + title: "The People vs. Larry Flynt", + year: 1996, + rating: 7.3, + votes: 76653, + running_times: 7740, + }, + { + title: "The Perfect Host", + year: 2010, + rating: 6.8, + votes: 22080, + running_times: 5580, + }, + { + title: "The Perfect Man", + year: 2005, + rating: 5.5, + votes: 25126, + running_times: 6000, + }, + { + title: "The Perfect Score", + year: 2004, + rating: 5.7, + votes: 20986, + running_times: 5580, + }, + { + title: "The Perfect Storm", + year: 2000, + rating: 6.4, + votes: 140346, + running_times: 7800, + }, + { + title: "The Perks of Being a Wallflower", + year: 2012, + rating: 8, + votes: 391846, + running_times: 6120, + }, + { + title: "The Petrified Forest", + year: 1936, + rating: 7.6, + votes: 10327, + running_times: 4920, + }, + { + title: "The Phantom", + year: 1996, + rating: 4.9, + votes: 29100, + running_times: 6000, + }, + { + title: "The Phantom of the Opera", + year: 2004, + rating: 7.3, + votes: 103249, + running_times: 8580, + }, + { + title: "The Philadelphia Experiment", + year: 1984, + rating: 6.1, + votes: 12160, + running_times: 6120, + }, + { + title: "The Philadelphia Story", + year: 1940, + rating: 8, + votes: 54146, + running_times: 6720, + }, + { + title: "The Physician", + year: 2013, + rating: 7.2, + votes: 29595, + running_times: 9000, + }, + { + title: "The Pianist", + year: 2002, + rating: 8.5, + votes: 567718, + running_times: 9000, + }, + { + title: "The Piano", + year: 1993, + rating: 7.6, + votes: 68631, + running_times: 7260, + }, + { + title: "The Pillow Book", + year: 1996, + rating: 6.7, + votes: 11158, + running_times: 7560, + }, + { + title: "The Pink Panther", + year: 1963, + rating: 7.2, + votes: 41425, + running_times: 6900, + }, + { + title: "The Pink Panther", + year: 2006, + rating: 5.6, + votes: 70795, + running_times: 5580, + }, + { + title: "The Pink Panther 2", + year: 2009, + rating: 5.6, + votes: 36263, + running_times: 5520, + }, + { + title: "The Pink Panther Strikes Again", + year: 1976, + rating: 7.3, + votes: 23815, + running_times: 6180, + }, + { + title: "The Pirates! In an Adventure with Scientists!", + year: 2012, + rating: 6.7, + votes: 39134, + running_times: 5280, + }, + { + title: "The Place Beyond the Pines", + year: 2012, + rating: 7.3, + votes: 208561, + running_times: 8400, + }, + { + title: "The Player", + year: 1992, + rating: 7.6, + votes: 45754, + running_times: 7440, + }, + { + title: "The Pleasure of Your Company", + year: 2006, + rating: 5.7, + votes: 13637, + running_times: 5400, + }, + { + title: "The Pledge", + year: 2001, + rating: 6.8, + votes: 46026, + running_times: 7440, + }, + { + title: "The Polar Express", + year: 2004, + rating: 6.6, + votes: 137765, + running_times: 6000, + }, + { + title: "The Poseidon Adventure", + year: 1972, + rating: 7.1, + votes: 35192, + running_times: 7020, + }, + { + title: "The Possession", + year: 2012, + rating: 5.9, + votes: 50728, + running_times: 5520, + }, + { + title: "The Postman", + year: 1997, + rating: 6, + votes: 60345, + running_times: 10620, + }, + { + title: "The Postman Always Rings Twice", + year: 1946, + rating: 7.6, + votes: 15385, + running_times: 6780, + }, + { + title: "The Postman Always Rings Twice", + year: 1981, + rating: 6.6, + votes: 18313, + running_times: 7320, + }, + { + title: "The Poughkeepsie Tapes", + year: 2007, + rating: 6.1, + votes: 11016, + running_times: 4860, + }, + { + title: "The Presidio", + year: 1988, + rating: 6, + votes: 14000, + running_times: 5820, + }, + { + title: "The Prestige", + year: 2006, + rating: 8.5, + votes: 958889, + running_times: 7800, + }, + { + title: "The Prince & Me", + year: 2004, + rating: 5.9, + votes: 34100, + running_times: 6660, + }, + { + title: "The Prince", + year: 2014, + rating: 4.6, + votes: 14635, + running_times: 5580, + }, + { + title: "The Prince of Egypt", + year: 1998, + rating: 7, + votes: 99560, + running_times: 5940, + }, + { + title: "The Prince of Tides", + year: 1991, + rating: 6.7, + votes: 13542, + running_times: 7920, + }, + { + title: "The Princess Bride", + year: 1987, + rating: 8.1, + votes: 325463, + running_times: 5880, + }, + { + title: "The Princess Diaries", + year: 2001, + rating: 6.3, + votes: 105164, + running_times: 6660, + }, + { + title: "The Princess Diaries 2: Royal Engagement", + year: 2004, + rating: 5.7, + votes: 60658, + running_times: 6780, + }, + { + title: "The Princess and the Frog", + year: 2009, + rating: 7.1, + votes: 99027, + running_times: 5820, + }, + { + title: "The Private Lives of Pippa Lee", + year: 2009, + rating: 6.4, + votes: 11693, + running_times: 5880, + }, + { + title: "The Producers", + year: 1967, + rating: 7.7, + votes: 43152, + running_times: 5280, + }, + { + title: "The Producers", + year: 2005, + rating: 6.4, + votes: 36865, + running_times: 8040, + }, + { + title: "The Professionals", + year: 1966, + rating: 7.4, + votes: 11097, + running_times: 7380, + }, + { + title: "The Program", + year: 2015, + rating: 6.5, + votes: 12447, + running_times: 5940, + }, + { + title: "The Promise", + year: 2016, + rating: 6, + votes: 158352, + running_times: 7980, + }, + { + title: "The Promotion", + year: 2008, + rating: 5.7, + votes: 17075, + running_times: 5160, + }, + { + title: "The Prophecy", + year: 1995, + rating: 6.6, + votes: 25816, + running_times: 5880, + }, + { + title: "The Proposal", + year: 2009, + rating: 6.7, + votes: 250312, + running_times: 6480, + }, + { + title: "The Proposition", + year: 2005, + rating: 7.4, + votes: 45238, + running_times: 6240, + }, + { + title: "The Public Enemy", + year: 1931, + rating: 7.7, + votes: 14696, + running_times: 4980, + }, + { + title: "The Punisher", + year: 1989, + rating: 5.7, + votes: 18060, + running_times: 5340, + }, + { + title: "The Punisher", + year: 2004, + rating: 6.5, + votes: 134403, + running_times: 8400, + }, + { + title: "The Purge", + year: 2013, + rating: 5.7, + votes: 161386, + running_times: 5100, + }, + { + title: "The Purge: Anarchy", + year: 2014, + rating: 6.5, + votes: 111618, + running_times: 6180, + }, + { + title: "The Purge: Election Year", + year: 2016, + rating: 6, + votes: 62579, + running_times: 6480, + }, + { + title: "The Purple Rose of Cairo", + year: 1985, + rating: 7.7, + votes: 40054, + running_times: 4920, + }, + { + title: "The Pursuit of Happyness", + year: 2006, + rating: 8, + votes: 374451, + running_times: 7020, + }, + { + title: "The Pyramid", + year: 2014, + rating: 4.6, + votes: 19641, + running_times: 5340, + }, + { + title: "The Queen", + year: 2006, + rating: 7.3, + votes: 92368, + running_times: 6180, + }, + { + title: "The Queen of Versailles", + year: 2012, + rating: 7.1, + votes: 11417, + running_times: 6000, + }, + { + title: "The Quest", + year: 1996, + rating: 5.5, + votes: 20623, + running_times: 5700, + }, + { + title: "The Quick and the Dead", + year: 1995, + rating: 6.4, + votes: 73840, + running_times: 6420, + }, + { + title: "The Quiet", + year: 2005, + rating: 6.4, + votes: 14028, + running_times: 5760, + }, + { + title: "The Quiet American", + year: 2002, + rating: 7.1, + votes: 24933, + running_times: 6060, + }, + { + title: "The Quiet Earth", + year: 1985, + rating: 6.8, + votes: 21712, + running_times: 5460, + }, + { + title: "The Quiet Man", + year: 1952, + rating: 7.9, + votes: 29304, + running_times: 7740, + }, + { + title: "The Quiet Ones", + year: 2014, + rating: 5.1, + votes: 16808, + running_times: 5880, + }, + { + title: "The Rage: Carrie 2", + year: 1999, + rating: 4.6, + votes: 13798, + running_times: 6240, + }, + { + title: "The Raid 2: Berandal", + year: 2014, + rating: 8, + votes: 95124, + running_times: 9000, + }, + { + title: "The Railway Man", + year: 2013, + rating: 7.1, + votes: 31511, + running_times: 6960, + }, + { + title: "The Rainmaker", + year: 1997, + rating: 7.1, + votes: 50689, + running_times: 8100, + }, + { + title: "The Raven", + year: 2012, + rating: 6.4, + votes: 76793, + running_times: 6600, + }, + { + title: "The Reader", + year: 2008, + rating: 7.6, + votes: 204566, + running_times: 7440, + }, + { + title: "The Reaping", + year: 2007, + rating: 5.7, + votes: 39200, + running_times: 5940, + }, + { + title: "The Rebound", + year: 2009, + rating: 6.3, + votes: 42033, + running_times: 5820, + }, + { + title: "The Recruit", + year: 2003, + rating: 6.6, + votes: 119599, + running_times: 6900, + }, + { + title: "The Red Shoes", + year: 1948, + rating: 8.3, + votes: 22241, + running_times: 8160, + }, + { + title: "The Reef", + year: 2010, + rating: 5.8, + votes: 13613, + running_times: 5640, + }, + { + title: "The Ref", + year: 1994, + rating: 6.9, + votes: 20844, + running_times: 5760, + }, + { + title: "The Relic", + year: 1997, + rating: 5.7, + votes: 20776, + running_times: 6600, + }, + { + title: "The Reluctant Fundamentalist", + year: 2012, + rating: 6.9, + votes: 11665, + running_times: 7800, + }, + { + title: "The Remains of the Day", + year: 1993, + rating: 7.9, + votes: 50598, + running_times: 8040, + }, + { + title: "The Replacement Killers", + year: 1998, + rating: 6.1, + votes: 24445, + running_times: 5760, + }, + { + title: "The Replacements", + year: 2000, + rating: 6.5, + votes: 51436, + running_times: 7080, + }, + { + title: "The Rescuers", + year: 1977, + rating: 6.9, + votes: 47886, + running_times: 4680, + }, + { + title: "The Rescuers Down Under", + year: 1990, + rating: 6.9, + votes: 30652, + running_times: 4620, + }, + { + title: "The Resident", + year: 2011, + rating: 5.3, + votes: 22986, + running_times: 5460, + }, + { + title: "The Return", + year: 2006, + rating: 4.8, + votes: 10496, + running_times: 5100, + }, + { + title: "The Return of the Living Dead", + year: 1985, + rating: 7.3, + votes: 44081, + running_times: 6480, + }, + { + title: "The Return of the Pink Panther", + year: 1975, + rating: 7.1, + votes: 21148, + running_times: 6780, + }, + { + title: "The Return of the Texas Chainsaw Massacre", + year: 1994, + rating: 3.2, + votes: 16423, + running_times: 5700, + }, + { + title: "The Revenant", + year: 2015, + rating: 8, + votes: 534685, + running_times: 9360, + }, + { + title: "The Rewrite", + year: 2014, + rating: 6.2, + votes: 14434, + running_times: 6420, + }, + { + title: "The Ridiculous 6", + year: 2015, + rating: 4.8, + votes: 33152, + running_times: 7140, + }, + { + title: "The Right Stuff", + year: 1983, + rating: 7.9, + votes: 48740, + running_times: 11580, + }, + { + title: "The Ring", + year: 2002, + rating: 7.1, + votes: 278872, + running_times: 6900, + }, + { + title: "The Ring Two", + year: 2005, + rating: 5.4, + votes: 79526, + running_times: 7680, + }, + { + title: "The Ringer", + year: 2005, + rating: 5.8, + votes: 32454, + running_times: 5700, + }, + { + title: "The Riot Club", + year: 2014, + rating: 6, + votes: 17763, + running_times: 6420, + }, + { + title: "The Rite", + year: 2011, + rating: 6, + votes: 81084, + running_times: 6840, + }, + { + title: "The River Wild", + year: 1994, + rating: 6.3, + votes: 35528, + running_times: 6660, + }, + { + title: "The Road", + year: 2009, + rating: 7.3, + votes: 193198, + running_times: 6660, + }, + { + title: "The Road Within", + year: 2014, + rating: 7.1, + votes: 11272, + running_times: 6000, + }, + { + title: "The Road to El Dorado", + year: 2000, + rating: 6.9, + votes: 67039, + running_times: 5340, + }, + { + title: "The Road to Guantanamo", + year: 2006, + rating: 7.5, + votes: 10739, + running_times: 5700, + }, + { + title: "The Road to Wellville", + year: 1994, + rating: 5.8, + votes: 10290, + running_times: 7080, + }, + { + title: "The Roaring Twenties", + year: 1939, + rating: 7.9, + votes: 10363, + running_times: 6360, + }, + { + title: "The Rock", + year: 1996, + rating: 7.4, + votes: 276498, + running_times: 8160, + }, + { + title: "The Rocker", + year: 2008, + rating: 6.2, + votes: 34007, + running_times: 6120, + }, + { + title: "The Rocketeer", + year: 1991, + rating: 6.4, + votes: 45916, + running_times: 6480, + }, + { + title: "The Rocky Horror Picture Show", + year: 1975, + rating: 7.4, + votes: 113940, + running_times: 6000, + }, + { + title: "The Romantics", + year: 2010, + rating: 5.1, + votes: 10614, + running_times: 5700, + }, + { + title: "The Rookie", + year: 1990, + rating: 5.8, + votes: 21836, + running_times: 7200, + }, + { + title: "The Rookie", + year: 2002, + rating: 7, + votes: 28296, + running_times: 7620, + }, + { + title: "The Room", + year: 2003, + rating: 3.6, + votes: 47057, + running_times: 5940, + }, + { + title: "The Roommate", + year: 2011, + rating: 4.9, + votes: 31218, + running_times: 5460, + }, + { + title: "The Rover", + year: 2014, + rating: 6.4, + votes: 37334, + running_times: 6180, + }, + { + title: "The Royal Tenenbaums", + year: 2001, + rating: 7.6, + votes: 227998, + running_times: 6600, + }, + { + title: "The Rugrats Movie", + year: 1998, + rating: 5.9, + votes: 15377, + running_times: 5400, + }, + { + title: "The Ruins", + year: 2008, + rating: 5.9, + votes: 63013, + running_times: 5580, + }, + { + title: "The Rules of Attraction", + year: 2002, + rating: 6.7, + votes: 46137, + running_times: 6600, + }, + { + title: "The Rum Diary", + year: 2011, + rating: 6.2, + votes: 91193, + running_times: 7140, + }, + { + title: "The Runaways", + year: 2010, + rating: 6.6, + votes: 41923, + running_times: 6360, + }, + { + title: "The Rundown", + year: 2003, + rating: 6.7, + votes: 87944, + running_times: 6240, + }, + { + title: "The Running Man", + year: 1987, + rating: 6.7, + votes: 121624, + running_times: 6060, + }, + { + title: "The Russia House", + year: 1990, + rating: 6.1, + votes: 12429, + running_times: 7380, + }, + { + title: "The Sacrament", + year: 2013, + rating: 6.1, + votes: 13925, + running_times: 5940, + }, + { + title: "The Saint", + year: 1997, + rating: 6.2, + votes: 54873, + running_times: 6960, + }, + { + title: "The Salt of the Earth", + year: 2014, + rating: 8.4, + votes: 15191, + running_times: 6600, + }, + { + title: "The Salton Sea", + year: 2002, + rating: 7.2, + votes: 27675, + running_times: 6180, + }, + { + title: "The Salvation", + year: 2014, + rating: 6.8, + votes: 29594, + running_times: 5520, + }, + { + title: "The Sand Pebbles", + year: 1966, + rating: 7.7, + votes: 11150, + running_times: 11760, + }, + { + title: "The Sandlot", + year: 1993, + rating: 7.8, + votes: 64212, + running_times: 6060, + }, + { + title: "The Santa Clause", + year: 1994, + rating: 6.4, + votes: 74291, + running_times: 5820, + }, + { + title: "The Santa Clause 2", + year: 2002, + rating: 5.6, + votes: 39364, + running_times: 6240, + }, + { + title: "The Santa Clause 3: The Escape Clause", + year: 2006, + rating: 4.7, + votes: 25133, + running_times: 5820, + }, + { + title: "The Sapphires", + year: 2012, + rating: 7.1, + votes: 11309, + running_times: 6180, + }, + { + title: "The Savages", + year: 2007, + rating: 7.2, + votes: 33269, + running_times: 6840, + }, + { + title: "The Scarlet Letter", + year: 1995, + rating: 5.2, + votes: 12823, + running_times: 8100, + }, + { + title: "The School of Rock", + year: 2003, + rating: 7.1, + votes: 226397, + running_times: 6480, + }, + { + title: "The Score", + year: 2001, + rating: 6.8, + votes: 107813, + running_times: 7440, + }, + { + title: "The Scorpion King", + year: 2002, + rating: 5.5, + votes: 112073, + running_times: 6000, + }, + { + title: "The Searchers", + year: 1956, + rating: 8, + votes: 67908, + running_times: 7140, + }, + { + title: "The Second Best Exotic Marigold Hotel", + year: 2015, + rating: 6.6, + votes: 26293, + running_times: 7320, + }, + { + title: "The Secret Garden", + year: 1993, + rating: 7.3, + votes: 31316, + running_times: 6060, + }, + { + title: "The Secret Life of Bees", + year: 2008, + rating: 7.3, + votes: 21358, + running_times: 6840, + }, + { + title: "The Secret Life of Pets", + year: 2016, + rating: 6.6, + votes: 137977, + running_times: 5220, + }, + { + title: "The Secret Life of Walter Mitty", + year: 2013, + rating: 7.3, + votes: 257706, + running_times: 6780, + }, + { + title: "The Secret Life of Words", + year: 2005, + rating: 7.5, + votes: 10709, + running_times: 6900, + }, + { + title: "The Secret of Kells", + year: 2009, + rating: 7.7, + votes: 25776, + running_times: 4500, + }, + { + title: "The Secret of My Succe$s", + year: 1987, + rating: 6.5, + votes: 24924, + running_times: 6660, + }, + { + title: "The Secret of NIMH", + year: 1982, + rating: 7.6, + votes: 30265, + running_times: 4920, + }, + { + title: "The Seeker: The Dark Is Rising", + year: 2007, + rating: 4.8, + votes: 13743, + running_times: 5940, + }, + { + title: "The Sentinel", + year: 2006, + rating: 6.1, + votes: 44185, + running_times: 6480, + }, + { + title: "The Serpent and the Rainbow", + year: 1988, + rating: 6.5, + votes: 18758, + running_times: 5880, + }, + { + title: "The Sessions", + year: 2012, + rating: 7.2, + votes: 38256, + running_times: 5700, + }, + { + title: "The Seven Year Itch", + year: 1955, + rating: 7.2, + votes: 28217, + running_times: 6300, + }, + { + title: "The Seventh Sign", + year: 1988, + rating: 5.9, + votes: 11175, + running_times: 5820, + }, + { + title: "The Shack", + year: 2017, + rating: 6.3, + votes: 18221, + running_times: 7920, + }, + { + title: "The Shadow", + year: 1994, + rating: 6, + votes: 20129, + running_times: 6480, + }, + { + title: "The Shaggy Dog", + year: 2006, + rating: 4.4, + votes: 15990, + running_times: 5880, + }, + { + title: "The Shallows", + year: 2016, + rating: 6.3, + votes: 89641, + running_times: 5160, + }, + { + title: "The Shape of Things", + year: 2003, + rating: 6.7, + votes: 10095, + running_times: 5760, + }, + { + title: "The Shawshank Redemption", + year: 1994, + rating: 9.3, + votes: 1888533, + running_times: 8520, + }, + { + title: "The Shining", + year: 1980, + rating: 8.4, + votes: 692021, + running_times: 8760, + }, + { + title: "The Shipping News", + year: 2001, + rating: 6.8, + votes: 29935, + running_times: 6660, + }, + { + title: "The Shootist", + year: 1976, + rating: 7.7, + votes: 18572, + running_times: 6000, + }, + { + title: "The Shop Around the Corner", + year: 1940, + rating: 8.1, + votes: 22183, + running_times: 5940, + }, + { + title: "The Siege", + year: 1998, + rating: 6.3, + votes: 61557, + running_times: 6960, + }, + { + title: "The Siege of Jadotville", + year: 2016, + rating: 7.3, + votes: 17814, + running_times: 6480, + }, + { + title: "The Signal", + year: 2007, + rating: 6.1, + votes: 18972, + running_times: 6180, + }, + { + title: "The Signal", + year: 2014, + rating: 6.1, + votes: 53979, + running_times: 5820, + }, + { + title: "The Silence of the Lambs", + year: 1991, + rating: 8.6, + votes: 1005824, + running_times: 8280, + }, + { + title: "The Simpsons Movie", + year: 2007, + rating: 7.4, + votes: 275789, + running_times: 5220, + }, + { + title: "The Sisterhood of the Traveling Pants", + year: 2005, + rating: 6.5, + votes: 48049, + running_times: 7140, + }, + { + title: "The Sisterhood of the Traveling Pants 2", + year: 2008, + rating: 6.2, + votes: 23987, + running_times: 7140, + }, + { + title: "The Sitter", + year: 2011, + rating: 5.7, + votes: 63242, + running_times: 5220, + }, + { + title: "The Sixth Sense", + year: 1999, + rating: 8.1, + votes: 776053, + running_times: 6420, + }, + { + title: "The Skeleton Key", + year: 2005, + rating: 6.5, + votes: 94403, + running_times: 6240, + }, + { + title: "The Skeleton Twins", + year: 2014, + rating: 6.8, + votes: 34525, + running_times: 5580, + }, + { + title: "The Skulls", + year: 2000, + rating: 5.6, + votes: 28314, + running_times: 6360, + }, + { + title: "The Slammin' Salmon", + year: 2009, + rating: 6.5, + votes: 11416, + running_times: 5400, + }, + { + title: "The Smurfs", + year: 2011, + rating: 5.5, + votes: 72567, + running_times: 6180, + }, + { + title: "The Smurfs 2", + year: 2013, + rating: 5.4, + votes: 31061, + running_times: 6300, + }, + { + title: "The Snowman", + year: 2017, + rating: 5.1, + votes: 14779, + running_times: 7140, + }, + { + title: "The Social Network", + year: 2010, + rating: 7.7, + votes: 528377, + running_times: 7200, + }, + { + title: "The Soloist", + year: 2009, + rating: 6.7, + votes: 46174, + running_times: 7020, + }, + { + title: "The Son of No One", + year: 2011, + rating: 5.1, + votes: 15063, + running_times: 5400, + }, + { + title: "The Sons of Katie Elder", + year: 1965, + rating: 7.2, + votes: 11668, + running_times: 7320, + }, + { + title: "The Sorcerer's Apprentice", + year: 2010, + rating: 6.1, + votes: 134792, + running_times: 6540, + }, + { + title: "The Sound of Music", + year: 1965, + rating: 8, + votes: 163945, + running_times: 10440, + }, + { + title: "The Space Between Us", + year: 2017, + rating: 6.4, + votes: 29211, + running_times: 7200, + }, + { + title: "The Spanish Prisoner", + year: 1997, + rating: 7.3, + votes: 19572, + running_times: 6600, + }, + { + title: "The Specialist", + year: 1994, + rating: 5.5, + votes: 54437, + running_times: 6600, + }, + { + title: "The Spectacular Now", + year: 2013, + rating: 7.1, + votes: 121292, + running_times: 5700, + }, + { + title: "The Spiderwick Chronicles", + year: 2008, + rating: 6.6, + votes: 75232, + running_times: 6420, + }, + { + title: "The Spirit", + year: 2008, + rating: 4.8, + votes: 55852, + running_times: 6180, + }, + { + title: "The SpongeBob Movie: Sponge Out of Water", + year: 2015, + rating: 6, + votes: 39185, + running_times: 5520, + }, + { + title: "The SpongeBob SquarePants Movie", + year: 2004, + rating: 7, + votes: 64917, + running_times: 5220, + }, + { + title: "The Spy Next Door", + year: 2010, + rating: 5.4, + votes: 33445, + running_times: 5640, + }, + { + title: "The Spy Who Came in from the Cold", + year: 1965, + rating: 7.7, + votes: 11988, + running_times: 6720, + }, + { + title: "The Spy Who Loved Me", + year: 1977, + rating: 7.1, + votes: 83086, + running_times: 7500, + }, + { + title: "The Square", + year: 2017, + rating: 7.7, + votes: 10452, + running_times: 8520, + }, + { + title: "The Squid and the Whale", + year: 2005, + rating: 7.4, + votes: 65586, + running_times: 5280, + }, + { + title: "The Stanford Prison Experiment", + year: 2015, + rating: 6.9, + votes: 24929, + running_times: 7320, + }, + { + title: "The Starving Games", + year: 2013, + rating: 3.3, + votes: 15908, + running_times: 5580, + }, + { + title: "The Station Agent", + year: 2003, + rating: 7.7, + votes: 61383, + running_times: 5340, + }, + { + title: "The Stepfather", + year: 1987, + rating: 6.8, + votes: 10118, + running_times: 5340, + }, + { + title: "The Stepfather", + year: 2009, + rating: 5.6, + votes: 25548, + running_times: 6060, + }, + { + title: "The Stepford Wives", + year: 1975, + rating: 6.9, + votes: 13376, + running_times: 6900, + }, + { + title: "The Stepford Wives", + year: 2004, + rating: 5.2, + votes: 52642, + running_times: 5580, + }, + { + title: "The Sting", + year: 1973, + rating: 8.3, + votes: 196224, + running_times: 7740, + }, + { + title: "The Stoning of Soraya M.", + year: 2008, + rating: 8, + votes: 15633, + running_times: 6840, + }, + { + title: "The Story of Us", + year: 1999, + rating: 5.9, + votes: 19337, + running_times: 5700, + }, + { + title: "The Straight Story", + year: 1999, + rating: 8, + votes: 69476, + running_times: 6720, + }, + { + title: "The Stranger", + year: 1946, + rating: 7.4, + votes: 14987, + running_times: 5700, + }, + { + title: "The Strangers", + year: 2008, + rating: 6.2, + votes: 100210, + running_times: 5280, + }, + { + title: "The Substitute", + year: 1996, + rating: 5.9, + votes: 10182, + running_times: 6840, + }, + { + title: "The Sugarland Express", + year: 1974, + rating: 6.8, + votes: 12491, + running_times: 6600, + }, + { + title: "The Sum of All Fears", + year: 2002, + rating: 6.4, + votes: 91728, + running_times: 7680, + }, + { + title: "The Sure Thing", + year: 1985, + rating: 7, + votes: 16657, + running_times: 6000, + }, + { + title: "The Survivalist", + year: 2015, + rating: 6.3, + votes: 11292, + running_times: 6240, + }, + { + title: "The Swan Princess", + year: 1994, + rating: 6.4, + votes: 19213, + running_times: 5400, + }, + { + title: "The Sweeney", + year: 2012, + rating: 6.1, + votes: 17373, + running_times: 6720, + }, + { + title: "The Sweet Hereafter", + year: 1997, + rating: 7.6, + votes: 28526, + running_times: 6720, + }, + { + title: "The Sweetest Thing", + year: 2002, + rating: 5.1, + votes: 49102, + running_times: 5400, + }, + { + title: "The Switch", + year: 2010, + rating: 6.1, + votes: 84752, + running_times: 6060, + }, + { + title: "The Sword in the Stone", + year: 1963, + rating: 7.2, + votes: 72723, + running_times: 4740, + }, + { + title: "The Tailor of Panama", + year: 2001, + rating: 6.1, + votes: 25172, + running_times: 6540, + }, + { + title: "The Taking", + year: 2014, + rating: 6, + votes: 19155, + running_times: 5400, + }, + { + title: "The Taking of Pelham 123", + year: 2009, + rating: 6.4, + votes: 162021, + running_times: 6360, + }, + { + title: "The Taking of Pelham One Two Three", + year: 1974, + rating: 7.7, + votes: 21595, + running_times: 6240, + }, + { + title: "The Tale of Despereaux", + year: 2008, + rating: 6.1, + votes: 32678, + running_times: 5580, + }, + { + title: "The Talented Mr. Ripley", + year: 1999, + rating: 7.3, + votes: 150246, + running_times: 8340, + }, + { + title: "The Tall Man", + year: 2012, + rating: 5.9, + votes: 33866, + running_times: 6360, + }, + { + title: "The Ten", + year: 2007, + rating: 5, + votes: 15676, + running_times: 5760, + }, + { + title: "The Ten Commandments", + year: 1956, + rating: 7.9, + votes: 52473, + running_times: 13200, + }, + { + title: "The Terminal", + year: 2004, + rating: 7.3, + votes: 335257, + running_times: 7680, + }, + { + title: "The Terminator", + year: 1984, + rating: 8, + votes: 665696, + running_times: 6420, + }, + { + title: "The Texas Chain Saw Massacre", + year: 1974, + rating: 7.5, + votes: 109598, + running_times: 5280, + }, + { + title: "The Texas Chainsaw Massacre", + year: 2003, + rating: 6.2, + votes: 116056, + running_times: 5880, + }, + { + title: "The Texas Chainsaw Massacre 2", + year: 1986, + rating: 5.6, + votes: 21886, + running_times: 6060, + }, + { + title: "The Texas Chainsaw Massacre: The Beginning", + year: 2006, + rating: 5.9, + votes: 60550, + running_times: 5760, + }, + { + title: "The Thaw", + year: 2009, + rating: 5.2, + votes: 10084, + running_times: 5400, + }, + { + title: "The Theory of Everything", + year: 2014, + rating: 7.7, + votes: 316106, + running_times: 7380, + }, + { + title: "The Thin Blue Line", + year: 1988, + rating: 8.1, + votes: 17925, + running_times: 6060, + }, + { + title: "The Thin Man", + year: 1934, + rating: 8.1, + votes: 22285, + running_times: 5460, + }, + { + title: "The Thin Red Line", + year: 1998, + rating: 7.6, + votes: 150404, + running_times: 12900, + }, + { + title: "The Thing", + year: 1982, + rating: 8.2, + votes: 293518, + running_times: 6540, + }, + { + title: "The Thing", + year: 2011, + rating: 6.2, + votes: 103362, + running_times: 6180, + }, + { + title: "The Thing from Another World", + year: 1951, + rating: 7.2, + votes: 20919, + running_times: 5220, + }, + { + title: "The Third Man", + year: 1949, + rating: 8.2, + votes: 127466, + running_times: 6240, + }, + { + title: "The Thirteenth Floor", + year: 1999, + rating: 7, + votes: 57011, + running_times: 6000, + }, + { + title: "The Thomas Crown Affair", + year: 1968, + rating: 7, + votes: 18269, + running_times: 6120, + }, + { + title: "The Thomas Crown Affair", + year: 1999, + rating: 6.8, + votes: 77349, + running_times: 6780, + }, + { + title: "The Three Burials of Melquiades Estrada", + year: 2005, + rating: 7.4, + votes: 35698, + running_times: 7260, + }, + { + title: "The Three Musketeers", + year: 1973, + rating: 7.3, + votes: 13230, + running_times: 6360, + }, + { + title: "The Three Musketeers", + year: 1993, + rating: 6.4, + votes: 44143, + running_times: 6300, + }, + { + title: "The Three Musketeers", + year: 2011, + rating: 5.8, + votes: 94299, + running_times: 6600, + }, + { + title: "The Three Stooges", + year: 2012, + rating: 5.1, + votes: 26998, + running_times: 5520, + }, + { + title: "The Tigger Movie", + year: 2000, + rating: 6.3, + votes: 14400, + running_times: 4620, + }, + { + title: "The Time Machine", + year: 1960, + rating: 7.6, + votes: 30163, + running_times: 6180, + }, + { + title: "The Time Machine", + year: 2002, + rating: 5.9, + votes: 108614, + running_times: 5760, + }, + { + title: "The Time Traveler's Wife", + year: 2009, + rating: 7.1, + votes: 124143, + running_times: 6420, + }, + { + title: "The To Do List", + year: 2013, + rating: 5.8, + votes: 32406, + running_times: 6240, + }, + { + title: "The Tourist", + year: 2010, + rating: 6, + votes: 192546, + running_times: 6180, + }, + { + title: "The Tournament", + year: 2009, + rating: 6.1, + votes: 32011, + running_times: 5700, + }, + { + title: "The Towering Inferno", + year: 1974, + rating: 6.9, + votes: 32856, + running_times: 9900, + }, + { + title: "The Town", + year: 2010, + rating: 7.6, + votes: 302386, + running_times: 9180, + }, + { + title: "The Town That Dreaded Sundown", + year: 2014, + rating: 5.6, + votes: 11248, + running_times: 5160, + }, + { + title: "The Toxic Avenger", + year: 1984, + rating: 6.2, + votes: 20890, + running_times: 5460, + }, + { + title: "The Tragedy of Macbeth", + year: 1971, + rating: 7.5, + votes: 10629, + running_times: 8400, + }, + { + title: "The Train", + year: 1964, + rating: 7.9, + votes: 11335, + running_times: 8400, + }, + { + title: "The Transformers: The Movie", + year: 1986, + rating: 7.3, + votes: 33807, + running_times: 5100, + }, + { + title: "The Transporter", + year: 2002, + rating: 6.8, + votes: 255330, + running_times: 5520, + }, + { + title: "The Transporter Refueled", + year: 2015, + rating: 5.1, + votes: 32968, + running_times: 5760, + }, + { + title: "The Treasure of the Sierra Madre", + year: 1948, + rating: 8.3, + votes: 88818, + running_times: 7560, + }, + { + title: "The Tree of Life", + year: 2011, + rating: 6.8, + votes: 147663, + running_times: 8340, + }, + { + title: "The Trip", + year: 2010, + rating: 7, + votes: 19086, + running_times: 6720, + }, + { + title: "The Trip to Italy", + year: 2014, + rating: 6.6, + votes: 12519, + running_times: 10500, + }, + { + title: "The Trouble with Harry", + year: 1955, + rating: 7.2, + votes: 27605, + running_times: 5940, + }, + { + title: "The Truman Show", + year: 1998, + rating: 8.1, + votes: 752414, + running_times: 6180, + }, + { + title: "The Trust", + year: 2016, + rating: 5.4, + votes: 13898, + running_times: 5520, + }, + { + title: "The Truth About Cats & Dogs", + year: 1996, + rating: 6.3, + votes: 23194, + running_times: 5820, + }, + { + title: "The Tunnel", + year: 2011, + rating: 5.9, + votes: 16883, + running_times: 5400, + }, + { + title: "The Tuxedo", + year: 2002, + rating: 5.3, + votes: 67876, + running_times: 5880, + }, + { + title: "The Twilight Saga: Breaking Dawn - Part 1", + year: 2011, + rating: 4.9, + votes: 194719, + running_times: 7500, + }, + { + title: "The Twilight Saga: Breaking Dawn - Part 2", + year: 2012, + rating: 5.5, + votes: 199491, + running_times: 7320, + }, + { + title: "The Twilight Saga: Eclipse", + year: 2010, + rating: 4.9, + votes: 197473, + running_times: 7860, + }, + { + title: "The Twilight Saga: New Moon", + year: 2009, + rating: 4.7, + votes: 234090, + running_times: 7800, + }, + { + title: "The Two Faces of January", + year: 2014, + rating: 6.2, + votes: 25170, + running_times: 5760, + }, + { + title: "The Ugly Truth", + year: 2009, + rating: 6.5, + votes: 177843, + running_times: 5760, + }, + { + title: "The Ultimate Gift", + year: 2006, + rating: 7.4, + votes: 15293, + running_times: 6840, + }, + { + title: "The Unbearable Lightness of Being", + year: 1988, + rating: 7.4, + votes: 29201, + running_times: 10260, + }, + { + title: "The Unborn", + year: 2009, + rating: 4.8, + votes: 44583, + running_times: 5340, + }, + { + title: "The Uninvited", + year: 2009, + rating: 6.4, + votes: 67429, + running_times: 5220, + }, + { + title: "The United States of Leland", + year: 2003, + rating: 7.1, + votes: 21022, + running_times: 6480, + }, + { + title: "The Untouchables", + year: 1987, + rating: 7.9, + votes: 236735, + running_times: 7140, + }, + { + title: "The Upside of Anger", + year: 2005, + rating: 6.9, + votes: 19799, + running_times: 7080, + }, + { + title: "The Usual Suspects", + year: 1995, + rating: 8.6, + votes: 825415, + running_times: 6360, + }, + { + title: "The VVitch: A New-England Folktale", + year: 2015, + rating: 6.8, + votes: 116302, + running_times: 5520, + }, + { + title: "The Vanishing", + year: 1993, + rating: 6.3, + votes: 20064, + running_times: 6540, + }, + { + title: "The Vatican Tapes", + year: 2015, + rating: 5, + votes: 14242, + running_times: 5460, + }, + { + title: "The Verdict", + year: 1982, + rating: 7.8, + votes: 29321, + running_times: 7740, + }, + { + title: "The Vikings", + year: 1958, + rating: 7.1, + votes: 10339, + running_times: 6960, + }, + { + title: "The Village", + year: 2004, + rating: 6.5, + votes: 211351, + running_times: 6480, + }, + { + title: "The Virgin Suicides", + year: 1999, + rating: 7.2, + votes: 126377, + running_times: 5820, + }, + { + title: "The Visit", + year: 2015, + rating: 6.2, + votes: 89398, + running_times: 5640, + }, + { + title: "The Visitor", + year: 2007, + rating: 7.7, + votes: 38887, + running_times: 6240, + }, + { + title: "The Voices", + year: 2014, + rating: 6.4, + votes: 42329, + running_times: 6180, + }, + { + title: "The Void", + year: 2016, + rating: 5.8, + votes: 17759, + running_times: 5400, + }, + { + title: "The Vow", + year: 2012, + rating: 6.8, + votes: 161595, + running_times: 6240, + }, + { + title: "The Wackness", + year: 2008, + rating: 7, + votes: 28228, + running_times: 5940, + }, + { + title: "The Walk", + year: 2015, + rating: 7.3, + votes: 99230, + running_times: 7380, + }, + { + title: "The Wall", + year: 2017, + rating: 6.1, + votes: 13630, + running_times: 5280, + }, + { + title: "The War", + year: 1994, + rating: 6.7, + votes: 10819, + running_times: 7560, + }, + { + title: "The War of the Roses", + year: 1989, + rating: 6.8, + votes: 41078, + running_times: 6960, + }, + { + title: "The War of the Worlds", + year: 1953, + rating: 7.1, + votes: 27465, + running_times: 5100, + }, + { + title: "The Ward", + year: 2010, + rating: 5.6, + votes: 36222, + running_times: 5340, + }, + { + title: "The Warrior's Way", + year: 2010, + rating: 6.3, + votes: 23298, + running_times: 6000, + }, + { + title: "The Warriors", + year: 1979, + rating: 7.7, + votes: 78567, + running_times: 5520, + }, + { + title: "The Watch", + year: 2012, + rating: 5.7, + votes: 110365, + running_times: 6120, + }, + { + title: "The Watcher", + year: 2000, + rating: 5.3, + votes: 23272, + running_times: 5820, + }, + { + title: "The Water Diviner", + year: 2014, + rating: 7.1, + votes: 61571, + running_times: 6660, + }, + { + title: "The Water Horse", + year: 2007, + rating: 6.5, + votes: 33841, + running_times: 6720, + }, + { + title: "The Waterboy", + year: 1998, + rating: 6.1, + votes: 128608, + running_times: 5400, + }, + { + title: "The Way", + year: 2010, + rating: 7.4, + votes: 25485, + running_times: 7380, + }, + { + title: "The Way Back", + year: 2010, + rating: 7.3, + votes: 95405, + running_times: 7980, + }, + { + title: "The Way Way Back", + year: 2013, + rating: 7.4, + votes: 125222, + running_times: 6180, + }, + { + title: "The Way We Were", + year: 1973, + rating: 7.1, + votes: 18180, + running_times: 7080, + }, + { + title: "The Way of the Gun", + year: 2000, + rating: 6.7, + votes: 28622, + running_times: 7200, + }, + { + title: "The Weather Man", + year: 2005, + rating: 6.6, + votes: 72135, + running_times: 6120, + }, + { + title: "The Wedding Date", + year: 2005, + rating: 6.1, + votes: 41956, + running_times: 5400, + }, + { + title: "The Wedding Planner", + year: 2001, + rating: 5.2, + votes: 66485, + running_times: 6180, + }, + { + title: "The Wedding Ringer", + year: 2015, + rating: 6.7, + votes: 61464, + running_times: 6060, + }, + { + title: "The Wedding Singer", + year: 1998, + rating: 6.8, + votes: 117472, + running_times: 5700, + }, + { + title: "The Whistleblower", + year: 2010, + rating: 7.2, + votes: 27422, + running_times: 6720, + }, + { + title: "The Whole Nine Yards", + year: 2000, + rating: 6.7, + votes: 96501, + running_times: 5880, + }, + { + title: "The Whole Ten Yards", + year: 2004, + rating: 5.5, + votes: 48689, + running_times: 5880, + }, + { + title: "The Whole Truth", + year: 2016, + rating: 6.2, + votes: 14683, + running_times: 5640, + }, + { + title: "The Wicker Man", + year: 1973, + rating: 7.6, + votes: 53387, + running_times: 5940, + }, + { + title: "The Wicker Man", + year: 2006, + rating: 3.7, + votes: 56687, + running_times: 6120, + }, + { + title: "The Wild", + year: 2006, + rating: 5.3, + votes: 20527, + running_times: 4920, + }, + { + title: "The Wild Bunch", + year: 1969, + rating: 8, + votes: 67529, + running_times: 8700, + }, + { + title: "The Wild Geese", + year: 1978, + rating: 6.8, + votes: 10009, + running_times: 8040, + }, + { + title: "The Wild One", + year: 1953, + rating: 6.9, + votes: 12360, + running_times: 4740, + }, + { + title: "The Wild Thornberrys Movie", + year: 2002, + rating: 5.3, + votes: 12815, + running_times: 5100, + }, + { + title: "The Wind That Shakes the Barley", + year: 2006, + rating: 7.5, + votes: 39810, + running_times: 7620, + }, + { + title: "The Witches", + year: 1990, + rating: 6.8, + votes: 27846, + running_times: 5460, + }, + { + title: "The Witches of Eastwick", + year: 1987, + rating: 6.5, + votes: 52381, + running_times: 7080, + }, + { + title: "The Wiz", + year: 1978, + rating: 5.3, + votes: 11821, + running_times: 8160, + }, + { + title: "The Wizard", + year: 1989, + rating: 6, + votes: 11413, + running_times: 6000, + }, + { + title: "The Wizard of Oz", + year: 1939, + rating: 8.1, + votes: 321107, + running_times: 6120, + }, + { + title: "The Wolf Man", + year: 1941, + rating: 7.4, + votes: 18812, + running_times: 4200, + }, + { + title: "The Wolf of Wall Street", + year: 2013, + rating: 8.2, + votes: 911859, + running_times: 14400, + }, + { + title: "The Wolfman", + year: 2010, + rating: 5.8, + votes: 93751, + running_times: 7140, + }, + { + title: "The Wolverine", + year: 2013, + rating: 6.7, + votes: 369113, + running_times: 8280, + }, + { + title: "The Woman", + year: 2011, + rating: 6, + votes: 18754, + running_times: 6060, + }, + { + title: "The Woman in Black", + year: 2012, + rating: 6.4, + votes: 155529, + running_times: 5700, + }, + { + title: "The Woman in Black 2: Angel of Death", + year: 2014, + rating: 4.9, + votes: 22594, + running_times: 5880, + }, + { + title: "The Woman in Red", + year: 1984, + rating: 5.9, + votes: 11392, + running_times: 5220, + }, + { + title: "The Woman in the Window", + year: 1944, + rating: 7.8, + votes: 10497, + running_times: 6420, + }, + { + title: "The Women", + year: 1939, + rating: 8, + votes: 10584, + running_times: 7980, + }, + { + title: "The Women", + year: 2008, + rating: 4.9, + votes: 18004, + running_times: 6840, + }, + { + title: "The Woodsman", + year: 2004, + rating: 7.2, + votes: 29060, + running_times: 5220, + }, + { + title: "The Words", + year: 2012, + rating: 7.1, + votes: 65538, + running_times: 6120, + }, + { + title: "The World According to Garp", + year: 1982, + rating: 7.2, + votes: 22128, + running_times: 8160, + }, + { + title: "The World Is Not Enough", + year: 1999, + rating: 6.4, + votes: 166771, + running_times: 9600, + }, + { + title: "The World's End", + year: 2013, + rating: 7, + votes: 210573, + running_times: 6540, + }, + { + title: "The World's Fastest Indian", + year: 2005, + rating: 7.8, + votes: 46860, + running_times: 7620, + }, + { + title: "The Wraith", + year: 1986, + rating: 5.9, + votes: 11815, + running_times: 5580, + }, + { + title: "The Wrestler", + year: 2008, + rating: 7.9, + votes: 266299, + running_times: 6540, + }, + { + title: "The Wrong Man", + year: 1956, + rating: 7.5, + votes: 21010, + running_times: 6300, + }, + { + title: "The Wrong Trousers", + year: 1993, + rating: 8.4, + votes: 44121, + running_times: 1800, + }, + { + title: "The X Files", + year: 1998, + rating: 7, + votes: 91195, + running_times: 7260, + }, + { + title: "The X Files: I Want to Believe", + year: 2008, + rating: 5.9, + votes: 82186, + running_times: 6480, + }, + { + title: "The Yards", + year: 2000, + rating: 6.4, + votes: 17330, + running_times: 6900, + }, + { + title: "The Year of Living Dangerously", + year: 1982, + rating: 7.2, + votes: 16789, + running_times: 6900, + }, + { + title: "The Young Victoria", + year: 2009, + rating: 7.3, + votes: 49898, + running_times: 6300, + }, + { + title: "The Young and Prodigious T.S. Spivet", + year: 2013, + rating: 7.1, + votes: 13735, + running_times: 6300, + }, + { + title: "The Zero Theorem", + year: 2013, + rating: 6.1, + votes: 38906, + running_times: 6420, + }, + { + title: "The Zookeeper's Wife", + year: 2017, + rating: 7, + votes: 18921, + running_times: 7620, + }, + { + title: "Their Finest", + year: 2016, + rating: 6.8, + votes: 10101, + running_times: 7020, + }, + { + title: "Thelma & Louise", + year: 1991, + rating: 7.4, + votes: 111181, + running_times: 7800, + }, + { + title: "Them!", + year: 1954, + rating: 7.3, + votes: 16401, + running_times: 5640, + }, + { + title: "There Will Be Blood", + year: 2007, + rating: 8.1, + votes: 418664, + running_times: 9480, + }, + { + title: "There's Something About Mary", + year: 1998, + rating: 7.1, + votes: 261762, + running_times: 7800, + }, + { + title: "These Final Hours", + year: 2013, + rating: 6.7, + votes: 12815, + running_times: 5220, + }, + { title: "They", year: 2002, rating: 4.8, votes: 11399, running_times: 5340 }, + { + title: "They Came Together", + year: 2014, + rating: 5.5, + votes: 18600, + running_times: 4980, + }, + { + title: "They Live", + year: 1988, + rating: 7.3, + votes: 85066, + running_times: 5640, + }, + { + title: "They Shoot Horses, Don't They?", + year: 1969, + rating: 7.9, + votes: 13393, + running_times: 7740, + }, + { + title: "Thick as Thieves", + year: 2009, + rating: 6, + votes: 30544, + running_times: 6240, + }, + { + title: "Thief", + year: 1981, + rating: 7.4, + votes: 18773, + running_times: 7320, + }, + { + title: "Things We Lost in the Fire", + year: 2007, + rating: 7.2, + votes: 25533, + running_times: 7080, + }, + { + title: "Things to Do in Denver When You're Dead", + year: 1995, + rating: 6.8, + votes: 23523, + running_times: 6900, + }, + { + title: "Think Like a Man", + year: 2012, + rating: 6.6, + votes: 37687, + running_times: 7320, + }, + { + title: "Think Like a Man Too", + year: 2014, + rating: 5.8, + votes: 16909, + running_times: 6360, + }, + { + title: "Thinner", + year: 1996, + rating: 5.7, + votes: 22657, + running_times: 5580, + }, + { + title: "Thir13en Ghosts", + year: 2001, + rating: 5.6, + votes: 69826, + running_times: 5460, + }, + { + title: "Third Person", + year: 2013, + rating: 6.4, + votes: 23048, + running_times: 8220, + }, + { + title: "Thirteen", + year: 2003, + rating: 6.8, + votes: 72716, + running_times: 6000, + }, + { + title: "Thirteen Days", + year: 2000, + rating: 7.3, + votes: 48091, + running_times: 8700, + }, + { + title: "This Boy's Life", + year: 1993, + rating: 7.3, + votes: 39017, + running_times: 6900, + }, + { + title: "This Film Is Not Yet Rated", + year: 2006, + rating: 7.5, + votes: 26134, + running_times: 5880, + }, + { + title: "This Is 40", + year: 2012, + rating: 6.2, + votes: 110651, + running_times: 8040, + }, + { + title: "This Is England", + year: 2006, + rating: 7.7, + votes: 104758, + running_times: 6060, + }, + { + title: "This Is It", + year: 2009, + rating: 7.3, + votes: 34810, + running_times: 6660, + }, + { + title: "This Is Spinal Tap", + year: 1984, + rating: 8, + votes: 113091, + running_times: 4920, + }, + { + title: "This Is Where I Leave You", + year: 2014, + rating: 6.6, + votes: 60539, + running_times: 6180, + }, + { + title: "This Is the End", + year: 2013, + rating: 6.6, + votes: 338167, + running_times: 6420, + }, + { + title: "This Means War", + year: 2012, + rating: 6.3, + votes: 158614, + running_times: 6180, + }, + { + title: "This Must Be the Place", + year: 2011, + rating: 6.7, + votes: 28430, + running_times: 7080, + }, + { title: "Thor", year: 2011, rating: 7, votes: 597270, running_times: 6900 }, + { + title: "Thor: Ragnarok", + year: 2017, + rating: 8.1, + votes: 170098, + running_times: 7800, + }, + { + title: "Thor: The Dark World", + year: 2013, + rating: 7, + votes: 466861, + running_times: 6720, + }, + { + title: "Three Billboards Outside Ebbing, Missouri", + year: 2017, + rating: 8.5, + votes: 12269, + running_times: 6900, + }, + { + title: "Three Days of the Condor", + year: 1975, + rating: 7.5, + votes: 38865, + running_times: 7020, + }, + { + title: "Three Kings", + year: 1999, + rating: 7.1, + votes: 146204, + running_times: 6840, + }, + { + title: "Three to Tango", + year: 1999, + rating: 6.1, + votes: 16986, + running_times: 5880, + }, + { + title: "Threesome", + year: 1994, + rating: 6.2, + votes: 11466, + running_times: 5340, + }, + { + title: "Throw Momma from the Train", + year: 1987, + rating: 6.2, + votes: 28749, + running_times: 5280, + }, + { + title: "Thumbelina", + year: 1994, + rating: 6.4, + votes: 12645, + running_times: 5220, + }, + { + title: "Thumbsucker", + year: 2005, + rating: 6.6, + votes: 19455, + running_times: 5760, + }, + { + title: "Thunderball", + year: 1965, + rating: 7, + votes: 88693, + running_times: 7800, + }, + { + title: "Thunderbirds", + year: 2004, + rating: 4.2, + votes: 11828, + running_times: 5700, + }, + { + title: "Thunderbolt and Lightfoot", + year: 1974, + rating: 7.1, + votes: 17590, + running_times: 6900, + }, + { + title: "Thunderheart", + year: 1992, + rating: 6.8, + votes: 12172, + running_times: 7140, + }, + { + title: "Thursday", + year: 1998, + rating: 7.2, + votes: 15020, + running_times: 5220, + }, + { + title: "TiMER", + year: 2009, + rating: 6.6, + votes: 11302, + running_times: 5940, + }, + { + title: "Tian jiang xiong shi", + year: 2015, + rating: 6.1, + votes: 14550, + running_times: 7620, + }, + { + title: "Tideland", + year: 2005, + rating: 6.5, + votes: 28552, + running_times: 7200, + }, + { + title: "Tigerland", + year: 2000, + rating: 7, + votes: 34855, + running_times: 6060, + }, + { + title: "Tightrope", + year: 1984, + rating: 6.3, + votes: 12721, + running_times: 6840, + }, + { + title: "Timbuktu", + year: 2014, + rating: 7.2, + votes: 13276, + running_times: 5820, + }, + { + title: "Time After Time", + year: 1979, + rating: 7.2, + votes: 12886, + running_times: 6720, + }, + { + title: "Time Bandits", + year: 1981, + rating: 7, + votes: 49534, + running_times: 6960, + }, + { + title: "Time Lapse", + year: 2014, + rating: 6.5, + votes: 33700, + running_times: 6240, + }, + { + title: "Timecop", + year: 1994, + rating: 5.8, + votes: 48177, + running_times: 5940, + }, + { + title: "Timeline", + year: 2003, + rating: 5.6, + votes: 55343, + running_times: 6960, + }, + { + title: "Tin Cup", + year: 1996, + rating: 6.3, + votes: 40422, + running_times: 8100, + }, + { + title: "Tinker Tailor Soldier Spy", + year: 2011, + rating: 7.1, + votes: 162349, + running_times: 7320, + }, + { + title: "Tiny Furniture", + year: 2010, + rating: 6.2, + votes: 12833, + running_times: 5880, + }, + { + title: "Titan A.E.", + year: 2000, + rating: 6.6, + votes: 54378, + running_times: 5640, + }, + { + title: "Titanic", + year: 1997, + rating: 7.8, + votes: 872744, + running_times: 11640, + }, + { + title: "Titus", + year: 1999, + rating: 7.2, + votes: 18157, + running_times: 9720, + }, + { + title: "To Be or Not to Be", + year: 1942, + rating: 8.2, + votes: 21156, + running_times: 5940, + }, + { + title: "To Catch a Thief", + year: 1955, + rating: 7.5, + votes: 51136, + running_times: 6360, + }, + { + title: "To Die For", + year: 1995, + rating: 6.8, + votes: 37325, + running_times: 6600, + }, + { + title: "To Have and Have Not", + year: 1944, + rating: 8, + votes: 25610, + running_times: 6000, + }, + { + title: "To Kill a Mockingbird", + year: 1962, + rating: 8.3, + votes: 243039, + running_times: 7740, + }, + { + title: "To Live and Die in L.A.", + year: 1985, + rating: 7.3, + votes: 23530, + running_times: 6960, + }, + { + title: "To Rome with Love", + year: 2012, + rating: 6.3, + votes: 74663, + running_times: 6720, + }, + { + title: "To Sir, with Love", + year: 1967, + rating: 7.7, + votes: 13076, + running_times: 6300, + }, + { + title: "To Wong Foo Thanks for Everything, Julie Newmar", + year: 1995, + rating: 6.4, + votes: 23230, + running_times: 6540, + }, + { + title: "To the Bone", + year: 2017, + rating: 6.9, + votes: 21942, + running_times: 6420, + }, + { + title: "To the Wonder", + year: 2012, + rating: 5.9, + votes: 23641, + running_times: 6720, + }, + { + title: "Tokarev", + year: 2014, + rating: 5, + votes: 20189, + running_times: 5880, + }, + { + title: "Tokyo Goddofazazu", + year: 2003, + rating: 7.9, + votes: 22743, + running_times: 5580, + }, + { + title: "Tom yum goong", + year: 2005, + rating: 7.1, + votes: 31950, + running_times: 6660, + }, + { + title: "Tombstone", + year: 1993, + rating: 7.8, + votes: 104882, + running_times: 8040, + }, + { + title: "Tomcats", + year: 2001, + rating: 5.3, + votes: 16003, + running_times: 5700, + }, + { + title: "Tommy", + year: 1975, + rating: 6.6, + votes: 16577, + running_times: 6660, + }, + { + title: "Tommy Boy", + year: 1995, + rating: 7.1, + votes: 66806, + running_times: 5820, + }, + { + title: "Tomorrow Never Dies", + year: 1997, + rating: 6.5, + votes: 159140, + running_times: 7140, + }, + { + title: "Tomorrow, When the War Began", + year: 2010, + rating: 6.2, + votes: 28223, + running_times: 6180, + }, + { + title: "Tomorrowland", + year: 2015, + rating: 6.5, + votes: 149378, + running_times: 7800, + }, + { + title: "Toni Erdmann", + year: 2016, + rating: 7.5, + votes: 30830, + running_times: 9720, + }, + { + title: "Tooth Fairy", + year: 2010, + rating: 5, + votes: 33791, + running_times: 6060, + }, + { + title: "Tootsie", + year: 1982, + rating: 7.4, + votes: 83730, + running_times: 6960, + }, + { + title: "Top Five", + year: 2014, + rating: 6.4, + votes: 23587, + running_times: 6120, + }, + { + title: "Top Gun", + year: 1986, + rating: 6.9, + votes: 239755, + running_times: 6600, + }, + { + title: "Top Hat", + year: 1935, + rating: 7.8, + votes: 14522, + running_times: 6060, + }, + { + title: "Top Secret!", + year: 1984, + rating: 7.2, + votes: 50375, + running_times: 5400, + }, + { + title: "Topaz", + year: 1969, + rating: 6.3, + votes: 13928, + running_times: 8580, + }, + { + title: "Topsy-Turvy", + year: 1999, + rating: 7.4, + votes: 10533, + running_times: 9240, + }, + { + title: "Tora! Tora! Tora!", + year: 1970, + rating: 7.5, + votes: 27158, + running_times: 8940, + }, + { + title: "Torn Curtain", + year: 1966, + rating: 6.7, + votes: 20568, + running_times: 7680, + }, + { title: "Torque", year: 2004, rating: 4, votes: 24817, running_times: 5040 }, + { + title: "Total Eclipse", + year: 1995, + rating: 6.6, + votes: 11463, + running_times: 6660, + }, + { + title: "Total Recall", + year: 1990, + rating: 7.5, + votes: 260008, + running_times: 6780, + }, + { + title: "Total Recall", + year: 2012, + rating: 6.3, + votes: 216376, + running_times: 7800, + }, + { + title: "Touch of Evil", + year: 1958, + rating: 8.1, + votes: 80814, + running_times: 6720, + }, + { + title: "Touching the Void", + year: 2003, + rating: 8.1, + votes: 29255, + running_times: 6360, + }, + { + title: "Tower Heist", + year: 2011, + rating: 6.2, + votes: 117332, + running_times: 6240, + }, + { + title: "Town Creek", + year: 2009, + rating: 5.4, + votes: 10254, + running_times: 5400, + }, + { + title: "Toy Soldiers", + year: 1991, + rating: 6.5, + votes: 17221, + running_times: 6660, + }, + { + title: "Toy Story", + year: 1995, + rating: 8.3, + votes: 704806, + running_times: 4860, + }, + { + title: "Toy Story 2", + year: 1999, + rating: 7.9, + votes: 425458, + running_times: 5520, + }, + { + title: "Toy Story 3", + year: 2010, + rating: 8.3, + votes: 612021, + running_times: 6180, + }, + { title: "Toys", year: 1992, rating: 5, votes: 27937, running_times: 7320 }, + { + title: "Tracers", + year: 2015, + rating: 5.6, + votes: 15688, + running_times: 5640, + }, + { + title: "Tracks", + year: 2013, + rating: 7.2, + votes: 22926, + running_times: 6720, + }, + { + title: "Trade", + year: 2007, + rating: 7.4, + votes: 15564, + running_times: 7200, + }, + { + title: "Trading Places", + year: 1983, + rating: 7.5, + votes: 113180, + running_times: 6960, + }, + { + title: "Traffic", + year: 2000, + rating: 7.6, + votes: 178628, + running_times: 11400, + }, + { + title: "Trailer Park Boys: The Movie", + year: 2006, + rating: 7.3, + votes: 10730, + running_times: 5700, + }, + { + title: "Training Day", + year: 2001, + rating: 7.7, + votes: 332078, + running_times: 7320, + }, + { + title: "Trainspotting", + year: 1996, + rating: 8.2, + votes: 538219, + running_times: 5640, + }, + { + title: "Trainwreck", + year: 2015, + rating: 6.2, + votes: 111924, + running_times: 7740, + }, + { + title: "Traitor", + year: 2008, + rating: 7, + votes: 51231, + running_times: 6840, + }, + { + title: "Trance", + year: 2013, + rating: 6.9, + votes: 100012, + running_times: 6060, + }, + { + title: "Transamerica", + year: 2005, + rating: 7.4, + votes: 37802, + running_times: 6180, + }, + { + title: "Transcendence", + year: 2014, + rating: 6.3, + votes: 191749, + running_times: 7140, + }, + { + title: "Transformers", + year: 2007, + rating: 7.1, + votes: 544522, + running_times: 8640, + }, + { + title: "Transformers: Age of Extinction", + year: 2014, + rating: 5.7, + votes: 266571, + running_times: 9900, + }, + { + title: "Transformers: Dark of the Moon", + year: 2011, + rating: 6.3, + votes: 348266, + running_times: 9240, + }, + { + title: "Transformers: Revenge of the Fallen", + year: 2009, + rating: 6, + votes: 346287, + running_times: 9000, + }, + { + title: "Transformers: The Last Knight", + year: 2017, + rating: 5.2, + votes: 83297, + running_times: 9300, + }, + { + title: "Transporter 2", + year: 2005, + rating: 6.3, + votes: 169325, + running_times: 5220, + }, + { + title: "Transporter 3", + year: 2008, + rating: 6.1, + votes: 137799, + running_times: 6240, + }, + { + title: "Transsiberian", + year: 2008, + rating: 6.7, + votes: 45274, + running_times: 6660, + }, + { + title: "Trapped", + year: 2002, + rating: 6.2, + votes: 20815, + running_times: 6360, + }, + { + title: "Trapped in Paradise", + year: 1994, + rating: 5.9, + votes: 10743, + running_times: 6660, + }, + { + title: "Trash", + year: 2014, + rating: 7.2, + votes: 17202, + running_times: 6840, + }, + { + title: "Treasure Planet", + year: 2002, + rating: 7.1, + votes: 81221, + running_times: 5700, + }, + { + title: "Trees Lounge", + year: 1996, + rating: 7.2, + votes: 12006, + running_times: 5700, + }, + { + title: "Tremors", + year: 1990, + rating: 7.1, + votes: 99377, + running_times: 5760, + }, + { + title: "Trespass", + year: 2011, + rating: 5.3, + votes: 37084, + running_times: 5460, + }, + { + title: "Triangle", + year: 2009, + rating: 6.9, + votes: 78209, + running_times: 5940, + }, + { + title: "Trick 'r Treat", + year: 2007, + rating: 6.8, + votes: 69181, + running_times: 4920, + }, + { + title: "Triple 9", + year: 2016, + rating: 6.3, + votes: 52847, + running_times: 6900, + }, + { + title: "Tristan + Isolde", + year: 2006, + rating: 6.8, + votes: 47170, + running_times: 7500, + }, + { + title: "Troll 2", + year: 1990, + rating: 2.8, + votes: 26609, + running_times: 5700, + }, + { + title: "Trolljegeren", + year: 2010, + rating: 7, + votes: 59467, + running_times: 6180, + }, + { + title: "Trolls", + year: 2016, + rating: 6.5, + votes: 52257, + running_times: 5520, + }, + { + title: "Tron", + year: 2010, + rating: 6.8, + votes: 280444, + running_times: 7500, + }, + { + title: "Tropic Thunder", + year: 2008, + rating: 7, + votes: 330614, + running_times: 7260, + }, + { + title: "Trouble in Paradise", + year: 1932, + rating: 8.2, + votes: 10603, + running_times: 4980, + }, + { + title: "Trouble with the Curve", + year: 2012, + rating: 6.8, + votes: 52238, + running_times: 6660, + }, + { + title: "Troy", + year: 2004, + rating: 7.2, + votes: 418856, + running_times: 11760, + }, + { + title: "True Crime", + year: 1999, + rating: 6.6, + votes: 27548, + running_times: 7620, + }, + { + title: "True Grit", + year: 1969, + rating: 7.4, + votes: 36110, + running_times: 7680, + }, + { + title: "True Grit", + year: 2010, + rating: 7.6, + votes: 262595, + running_times: 6600, + }, + { + title: "True Lies", + year: 1994, + rating: 7.2, + votes: 204843, + running_times: 8460, + }, + { + title: "True Romance", + year: 1993, + rating: 7.9, + votes: 176419, + running_times: 7260, + }, + { + title: "True Story", + year: 2015, + rating: 6.3, + votes: 45075, + running_times: 5940, + }, + { + title: "Trumbo", + year: 2015, + rating: 7.5, + votes: 61971, + running_times: 7440, + }, + { + title: "Trust", + year: 2010, + rating: 6.9, + votes: 37077, + running_times: 6360, + }, + { + title: "Truth", + year: 2015, + rating: 6.8, + votes: 14963, + running_times: 7500, + }, + { + title: "Tsotsi", + year: 2005, + rating: 7.3, + votes: 25959, + running_times: 5640, + }, + { + title: "Tuck Everlasting", + year: 2002, + rating: 6.7, + votes: 19122, + running_times: 5760, + }, + { + title: "Tucker and Dale vs Evil", + year: 2010, + rating: 7.6, + votes: 142633, + running_times: 5340, + }, + { + title: "Tucker: The Man and His Dream", + year: 1988, + rating: 6.9, + votes: 12569, + running_times: 6600, + }, + { + title: "Turbo", + year: 2013, + rating: 6.5, + votes: 68370, + running_times: 5760, + }, + { + title: "Turbo Kid", + year: 2015, + rating: 6.7, + votes: 20823, + running_times: 5580, + }, + { + title: "Turist", + year: 2014, + rating: 7.3, + votes: 35515, + running_times: 7200, + }, + { + title: "Turistas", + year: 2006, + rating: 5.4, + votes: 32784, + running_times: 5760, + }, + { + title: "Turner & Hooch", + year: 1989, + rating: 6.1, + votes: 53216, + running_times: 5820, + }, + { title: "Tusk", year: 2014, rating: 5.4, votes: 36058, running_times: 6120 }, + { + title: "Twelve", + year: 2010, + rating: 5.7, + votes: 11188, + running_times: 5700, + }, + { + title: "Twelve Monkeys", + year: 1995, + rating: 8, + votes: 506089, + running_times: 7740, + }, + { + title: "Twelve O'Clock High", + year: 1949, + rating: 7.8, + votes: 10789, + running_times: 7920, + }, + { + title: "Twenty Feet from Stardom", + year: 2013, + rating: 7.4, + votes: 10501, + running_times: 5460, + }, + { + title: "Twilight", + year: 2008, + rating: 5.2, + votes: 369363, + running_times: 7320, + }, + { + title: "Twilight Zone: The Movie", + year: 1983, + rating: 6.5, + votes: 28051, + running_times: 6060, + }, + { + title: "Twin Peaks: Fire Walk with Me", + year: 1992, + rating: 7.2, + votes: 68624, + running_times: 8100, + }, + { title: "Twins", year: 1988, rating: 6, votes: 95388, running_times: 6420 }, + { + title: "Twisted", + year: 2004, + rating: 5.2, + votes: 18116, + running_times: 5820, + }, + { + title: "Twister", + year: 1996, + rating: 6.3, + votes: 153606, + running_times: 6780, + }, + { + title: "Two Lovers", + year: 2008, + rating: 7.1, + votes: 31847, + running_times: 6600, + }, + { + title: "Two Mules for Sister Sara", + year: 1970, + rating: 7, + votes: 19054, + running_times: 6960, + }, + { + title: "Two Night Stand", + year: 2014, + rating: 6.4, + votes: 53970, + running_times: 5160, + }, + { + title: "Two Weeks Notice", + year: 2002, + rating: 6.1, + votes: 92598, + running_times: 6060, + }, + { + title: "Two for the Money", + year: 2005, + rating: 6.2, + votes: 38961, + running_times: 7320, + }, + { + title: "Tyrannosaur", + year: 2011, + rating: 7.6, + votes: 26375, + running_times: 5520, + }, + { + title: "Tyson", + year: 2008, + rating: 7.5, + votes: 11211, + running_times: 5400, + }, + { + title: "Tystnaden", + year: 1963, + rating: 8, + votes: 13626, + running_times: 5760, + }, + { + title: "Tôkyô monogatari", + year: 1953, + rating: 8.2, + votes: 33514, + running_times: 8160, + }, + { + title: "U Turn", + year: 1997, + rating: 6.8, + votes: 44393, + running_times: 7500, + }, + { + title: "U-571", + year: 2000, + rating: 6.6, + votes: 69146, + running_times: 6960, + }, + { + title: "U.S. Marshals", + year: 1998, + rating: 6.5, + votes: 83366, + running_times: 7860, + }, + { title: "UHF", year: 1989, rating: 7, votes: 22543, running_times: 9000 }, + { + title: "Udaan", + year: 2010, + rating: 8.2, + votes: 35711, + running_times: 8040, + }, + { + title: "Ultimo tango a Parigi", + year: 1972, + rating: 7.1, + votes: 40747, + running_times: 15000, + }, + { + title: "Ultraviolet", + year: 2006, + rating: 4.4, + votes: 73834, + running_times: 5640, + }, + { + title: "Un monstre à Paris", + year: 2011, + rating: 6.7, + votes: 17120, + running_times: 5400, + }, + { + title: "Unbreakable", + year: 2000, + rating: 7.2, + votes: 284513, + running_times: 6360, + }, + { + title: "Unbroken", + year: 2014, + rating: 7.2, + votes: 119486, + running_times: 8220, + }, + { + title: "Uncle Buck", + year: 1989, + rating: 7, + votes: 69088, + running_times: 6000, + }, + { + title: "Undead", + year: 2003, + rating: 5.5, + votes: 11859, + running_times: 6240, + }, + { + title: "Under Siege", + year: 1992, + rating: 6.5, + votes: 66049, + running_times: 6180, + }, + { + title: "Under Siege 2: Dark Territory", + year: 1995, + rating: 5.4, + votes: 38553, + running_times: 6000, + }, + { + title: "Under Suspicion", + year: 2000, + rating: 6.5, + votes: 19443, + running_times: 6660, + }, + { + title: "Under sandet", + year: 2015, + rating: 7.8, + votes: 19375, + running_times: 6000, + }, + { + title: "Under the Skin", + year: 2013, + rating: 6.3, + votes: 100131, + running_times: 6480, + }, + { + title: "Under the Tuscan Sun", + year: 2003, + rating: 6.8, + votes: 39571, + running_times: 6780, + }, + { + title: "Undercover Brother", + year: 2002, + rating: 5.8, + votes: 30747, + running_times: 5280, + }, + { + title: "Underdog", + year: 2007, + rating: 4.8, + votes: 16932, + running_times: 5040, + }, + { + title: "Underground", + year: 1995, + rating: 8.1, + votes: 47977, + running_times: 19200, + }, + { + title: "Underworld", + year: 2003, + rating: 7, + votes: 227288, + running_times: 7980, + }, + { + title: "Underworld Awakening", + year: 2012, + rating: 6.4, + votes: 131014, + running_times: 5280, + }, + { + title: "Underworld: Blood Wars", + year: 2016, + rating: 5.8, + votes: 52723, + running_times: 5460, + }, + { + title: "Underworld: Evolution", + year: 2006, + rating: 6.7, + votes: 171177, + running_times: 6360, + }, + { + title: "Underworld: Rise of the Lycans", + year: 2009, + rating: 6.6, + votes: 133868, + running_times: 5520, + }, + { + title: "Undisputed", + year: 2002, + rating: 6.2, + votes: 24816, + running_times: 5760, + }, + { + title: "Unfaithful", + year: 2002, + rating: 6.7, + votes: 68502, + running_times: 7500, + }, + { + title: "Unfinished Business", + year: 2015, + rating: 5.4, + votes: 26311, + running_times: 5460, + }, + { + title: "Unforgiven", + year: 1992, + rating: 8.2, + votes: 308492, + running_times: 7800, + }, + { + title: "Unfriended", + year: 2014, + rating: 5.6, + votes: 54063, + running_times: 4980, + }, + { + title: "United 93", + year: 2006, + rating: 7.6, + votes: 88351, + running_times: 6660, + }, + { + title: "Universal Soldier", + year: 1992, + rating: 6, + votes: 73321, + running_times: 6120, + }, + { + title: "Universal Soldier: Day of Reckoning", + year: 2012, + rating: 5, + votes: 17251, + running_times: 6840, + }, + { + title: "Universal Soldier: Regeneration", + year: 2009, + rating: 5.2, + votes: 22922, + running_times: 5820, + }, + { + title: "Universal Soldier: The Return", + year: 1999, + rating: 4.1, + votes: 25435, + running_times: 4980, + }, + { + title: "Unknown", + year: 2006, + rating: 6.5, + votes: 27168, + running_times: 5100, + }, + { + title: "Unknown", + year: 2011, + rating: 6.9, + votes: 223409, + running_times: 6780, + }, + { + title: "Unlawful Entry", + year: 1992, + rating: 6.3, + votes: 12116, + running_times: 7020, + }, + { + title: "Unleashed", + year: 2005, + rating: 7, + votes: 90174, + running_times: 6180, + }, + { + title: "Unlocked", + year: 2017, + rating: 6.2, + votes: 12382, + running_times: 5880, + }, + { + title: "Unstoppable", + year: 2010, + rating: 6.8, + votes: 162057, + running_times: 5880, + }, + { + title: "Untamed Heart", + year: 1993, + rating: 6.8, + votes: 10899, + running_times: 6120, + }, + { + title: "Unthinkable", + year: 2010, + rating: 7.1, + votes: 76928, + running_times: 5820, + }, + { + title: "Untraceable", + year: 2008, + rating: 6.2, + votes: 43124, + running_times: 6060, + }, + { title: "Up", year: 2009, rating: 8.3, votes: 754724, running_times: 5760 }, + { + title: "Up Close & Personal", + year: 1996, + rating: 6.1, + votes: 12047, + running_times: 7440, + }, + { + title: "Up in Smoke", + year: 1978, + rating: 7, + votes: 31136, + running_times: 5160, + }, + { + title: "Up in the Air", + year: 2009, + rating: 7.4, + votes: 285417, + running_times: 6540, + }, + { + title: "Upside Down", + year: 2012, + rating: 6.4, + votes: 63039, + running_times: 6540, + }, + { + title: "Upstream Color", + year: 2013, + rating: 6.7, + votes: 26189, + running_times: 5760, + }, + { + title: "Uptown Girls", + year: 2003, + rating: 6.1, + votes: 31104, + running_times: 5520, + }, + { + title: "Urban Cowboy", + year: 1980, + rating: 6.2, + votes: 10991, + running_times: 7920, + }, + { + title: "Urban Legend", + year: 1998, + rating: 5.5, + votes: 51232, + running_times: 5940, + }, + { + title: "Urban Legends: Final Cut", + year: 2000, + rating: 4.2, + votes: 13917, + running_times: 5820, + }, + { + title: "Used Cars", + year: 1980, + rating: 6.8, + votes: 11538, + running_times: 6780, + }, + { + title: "V for Vendetta", + year: 2005, + rating: 8.2, + votes: 878025, + running_times: 7920, + }, + { + title: "V/H/S", + year: 2012, + rating: 5.8, + votes: 49302, + running_times: 6960, + }, + { + title: "V/H/S Viral", + year: 2014, + rating: 4.2, + votes: 12558, + running_times: 5880, + }, + { + title: "V/H/S/2", + year: 2013, + rating: 6.1, + votes: 30647, + running_times: 5760, + }, + { + title: "Vacancy", + year: 2007, + rating: 6.2, + votes: 84820, + running_times: 5100, + }, + { + title: "Vacation", + year: 2015, + rating: 6.1, + votes: 78709, + running_times: 5940, + }, + { + title: "Valentine", + year: 2001, + rating: 4.7, + votes: 21677, + running_times: 5760, + }, + { + title: "Valentine's Day", + year: 2010, + rating: 5.7, + votes: 101218, + running_times: 7500, + }, + { + title: "Valerian and the City of a Thousand Planets", + year: 2017, + rating: 6.6, + votes: 81807, + running_times: 8220, + }, + { + title: "Valhalla Rising", + year: 2009, + rating: 6, + votes: 47989, + running_times: 5580, + }, + { + title: "Valiant", + year: 2005, + rating: 5.6, + votes: 17433, + running_times: 4560, + }, + { + title: "Valkyrie", + year: 2008, + rating: 7.1, + votes: 199643, + running_times: 7260, + }, + { + title: "Valley Girl", + year: 1983, + rating: 6.4, + votes: 10847, + running_times: 5940, + }, + { + title: "Valmont", + year: 1989, + rating: 7, + votes: 10895, + running_times: 8220, + }, + { + title: "Vals Im Bashir", + year: 2008, + rating: 8, + votes: 49445, + running_times: 5400, + }, + { + title: "Vampire Academy", + year: 2014, + rating: 5.6, + votes: 45777, + running_times: 6240, + }, + { + title: "Vampire Hunter D: Bloodlust", + year: 2000, + rating: 7.7, + votes: 24820, + running_times: 6180, + }, + { + title: "Vampire in Brooklyn", + year: 1995, + rating: 4.5, + votes: 18539, + running_times: 6000, + }, + { + title: "Vampire's Kiss", + year: 1988, + rating: 5.9, + votes: 10620, + running_times: 6180, + }, + { + title: "Vampires", + year: 1998, + rating: 6.1, + votes: 45850, + running_times: 6480, + }, + { + title: "Vampires Suck", + year: 2010, + rating: 3.5, + votes: 41417, + running_times: 4920, + }, + { + title: "Van Helsing", + year: 2004, + rating: 6.1, + votes: 213927, + running_times: 7860, + }, + { + title: "Van Wilder", + year: 2002, + rating: 6.4, + votes: 93922, + running_times: 5640, + }, + { + title: "Van Wilder 2: The Rise of Taj", + year: 2006, + rating: 4.8, + votes: 20342, + running_times: 5820, + }, + { + title: "Vanilla Sky", + year: 2001, + rating: 6.9, + votes: 220421, + running_times: 8460, + }, + { + title: "Vanishing Point", + year: 1971, + rating: 7.3, + votes: 23211, + running_times: 6360, + }, + { + title: "Vanishing on 7th Street", + year: 2010, + rating: 4.9, + votes: 22968, + running_times: 5520, + }, + { + title: "Vanity Fair", + year: 2004, + rating: 6.2, + votes: 18278, + running_times: 8460, + }, + { + title: "Vantage Point", + year: 2008, + rating: 6.6, + votes: 133654, + running_times: 5400, + }, + { + title: "Varsity Blues", + year: 1999, + rating: 6.4, + votes: 37306, + running_times: 6360, + }, + { + title: "Vegas Vacation", + year: 1997, + rating: 5.9, + votes: 36659, + running_times: 5580, + }, + { + title: "Vehicle 19", + year: 2013, + rating: 4.9, + votes: 13186, + running_times: 5100, + }, + { + title: "Velvet Goldmine", + year: 1998, + rating: 7, + votes: 29482, + running_times: 7080, + }, + { + title: "Venus", + year: 2006, + rating: 7.1, + votes: 11555, + running_times: 5700, + }, + { + title: "Venuto al mondo", + year: 2012, + rating: 7.4, + votes: 13309, + running_times: 7620, + }, + { + title: "Vera Drake", + year: 2004, + rating: 7.7, + votes: 21374, + running_times: 7500, + }, + { + title: "Veronica Guerin", + year: 2003, + rating: 6.9, + votes: 17197, + running_times: 5880, + }, + { + title: "Veronica Mars", + year: 2014, + rating: 6.8, + votes: 44371, + running_times: 6420, + }, + { + title: "Veronika Decides to Die", + year: 2009, + rating: 6.5, + votes: 10862, + running_times: 6180, + }, + { + title: "Versus", + year: 2000, + rating: 6.5, + votes: 11539, + running_times: 7140, + }, + { + title: "Vertical Limit", + year: 2000, + rating: 5.9, + votes: 52544, + running_times: 7440, + }, + { + title: "Vertigo", + year: 1958, + rating: 8.4, + votes: 282823, + running_times: 7740, + }, + { + title: "Very Bad Things", + year: 1998, + rating: 6.3, + votes: 41265, + running_times: 6000, + }, + { + title: "Very Good Girls", + year: 2013, + rating: 6, + votes: 12016, + running_times: 5460, + }, + { title: "Vice", year: 2015, rating: 4.2, votes: 13323, running_times: 5760 }, + { + title: "Vicky Cristina Barcelona", + year: 2008, + rating: 7.1, + votes: 214956, + running_times: 5760, + }, + { + title: "Victor Frankenstein", + year: 2015, + rating: 6, + votes: 41566, + running_times: 6600, + }, + { + title: "Victor Victoria", + year: 1982, + rating: 7.6, + votes: 16492, + running_times: 8040, + }, + { + title: "Victoria", + year: 2015, + rating: 7.7, + votes: 37987, + running_times: 8280, + }, + { + title: "Victory", + year: 1981, + rating: 6.6, + votes: 22838, + running_times: 6960, + }, + { + title: "Videodrome", + year: 1983, + rating: 7.3, + votes: 67766, + running_times: 5340, + }, + { + title: "View from the Top", + year: 2003, + rating: 5.2, + votes: 22568, + running_times: 5220, + }, + { + title: "Village of the Damned", + year: 1960, + rating: 7.3, + votes: 12036, + running_times: 4620, + }, + { + title: "Village of the Damned", + year: 1995, + rating: 5.6, + votes: 23863, + running_times: 5940, + }, + { + title: "Vincent", + year: 1982, + rating: 8.4, + votes: 19267, + running_times: 360, + }, + { + title: "Violet & Daisy", + year: 2011, + rating: 6.1, + votes: 10176, + running_times: 5280, + }, + { + title: "Viridiana", + year: 1961, + rating: 8.2, + votes: 18029, + running_times: 5400, + }, + { + title: "Virtuosity", + year: 1995, + rating: 5.6, + votes: 24921, + running_times: 6360, + }, + { + title: "Virus", + year: 1999, + rating: 4.9, + votes: 23377, + running_times: 5940, + }, + { + title: "Vizontele Tuuba", + year: 2003, + rating: 6.5, + votes: 10727, + running_times: 6660, + }, + { + title: "Volcano", + year: 1997, + rating: 5.4, + votes: 63055, + running_times: 6240, + }, + { + title: "Von Ryan's Express", + year: 1965, + rating: 7.1, + votes: 11050, + running_times: 7020, + }, + { title: "W.", year: 2008, rating: 6.3, votes: 42728, running_times: 7740 }, + { title: "W.E.", year: 2011, rating: 6.3, votes: 10607, running_times: 7140 }, + { + title: "WALL·E", + year: 2008, + rating: 8.4, + votes: 812013, + running_times: 5880, + }, + { title: "Waar", year: 2013, rating: 8.2, votes: 28439, running_times: 7800 }, + { + title: "Wag the Dog", + year: 1997, + rating: 7.1, + votes: 71281, + running_times: 5820, + }, + { + title: "Wait Until Dark", + year: 1967, + rating: 7.9, + votes: 22782, + running_times: 6480, + }, + { + title: "Waiting for 'Superman'", + year: 2010, + rating: 7.5, + votes: 10027, + running_times: 6660, + }, + { + title: "Waiting for Forever", + year: 2010, + rating: 6, + votes: 18719, + running_times: 5700, + }, + { + title: "Waiting for Guffman", + year: 1996, + rating: 7.6, + votes: 23751, + running_times: 5040, + }, + { + title: "Waiting...", + year: 2005, + rating: 6.8, + votes: 79927, + running_times: 5640, + }, + { + title: "Waitress", + year: 2007, + rating: 7, + votes: 39505, + running_times: 6480, + }, + { + title: "Wake Up Sid", + year: 2009, + rating: 7.6, + votes: 21957, + running_times: 8280, + }, + { + title: "Waking Life", + year: 2001, + rating: 7.8, + votes: 53627, + running_times: 6060, + }, + { + title: "Waking Ned", + year: 1998, + rating: 7.3, + votes: 22591, + running_times: 5520, + }, + { + title: "Walk Hard: The Dewey Cox Story", + year: 2007, + rating: 6.8, + votes: 58599, + running_times: 7200, + }, + { + title: "Walk of Shame", + year: 2014, + rating: 6, + votes: 44953, + running_times: 5700, + }, + { + title: "Walk the Line", + year: 2005, + rating: 7.9, + votes: 200422, + running_times: 9180, + }, + { + title: "Walkabout", + year: 1971, + rating: 7.7, + votes: 18963, + running_times: 6000, + }, + { + title: "Walking Tall", + year: 2004, + rating: 6.2, + votes: 57700, + running_times: 5160, + }, + { + title: "Wall Street", + year: 1987, + rating: 7.4, + votes: 127432, + running_times: 7560, + }, + { + title: "Wall Street: Money Never Sleeps", + year: 2010, + rating: 6.2, + votes: 89241, + running_times: 8160, + }, + { + title: "Wanderlust", + year: 2012, + rating: 5.6, + votes: 65787, + running_times: 5880, + }, + { + title: "Wanted", + year: 2008, + rating: 6.7, + votes: 320677, + running_times: 6600, + }, + { title: "War", year: 2007, rating: 6.3, votes: 77054, running_times: 6180 }, + { + title: "War Dogs", + year: 2016, + rating: 7.1, + votes: 128613, + running_times: 6840, + }, + { + title: "War Horse", + year: 2011, + rating: 7.2, + votes: 126737, + running_times: 8760, + }, + { + title: "War Machine", + year: 2017, + rating: 6.1, + votes: 26077, + running_times: 7320, + }, + { + title: "War Room", + year: 2015, + rating: 6.4, + votes: 10436, + running_times: 7200, + }, + { + title: "War for the Planet of the Apes", + year: 2017, + rating: 7.5, + votes: 137537, + running_times: 8400, + }, + { + title: "War of the Worlds", + year: 2005, + rating: 6.5, + votes: 361418, + running_times: 6960, + }, + { + title: "War on Everyone", + year: 2016, + rating: 5.9, + votes: 12576, + running_times: 5880, + }, + { + title: "War, Inc.", + year: 2008, + rating: 5.7, + votes: 20478, + running_times: 6420, + }, + { + title: "WarGames", + year: 1983, + rating: 7.1, + votes: 77419, + running_times: 6840, + }, + { + title: "Warcraft", + year: 2016, + rating: 6.9, + votes: 201525, + running_times: 7380, + }, + { + title: "Warlock", + year: 1989, + rating: 6.2, + votes: 12599, + running_times: 6180, + }, + { + title: "Warm Bodies", + year: 2013, + rating: 6.9, + votes: 198209, + running_times: 5880, + }, + { + title: "Warrior", + year: 2011, + rating: 8.2, + votes: 369802, + running_times: 8400, + }, + { + title: "Watchmen", + year: 2009, + rating: 7.6, + votes: 423383, + running_times: 12900, + }, + { + title: "Water for Elephants", + year: 2011, + rating: 6.9, + votes: 100901, + running_times: 7200, + }, + { + title: "Watership Down", + year: 1978, + rating: 7.7, + votes: 27768, + running_times: 5460, + }, + { + title: "Waterworld", + year: 1995, + rating: 6.1, + votes: 155351, + running_times: 10560, + }, + { + title: "Wayne's World", + year: 1992, + rating: 7, + votes: 123659, + running_times: 5640, + }, + { + title: "Wayne's World 2", + year: 1993, + rating: 6.1, + votes: 67102, + running_times: 5700, + }, + { + title: "We Are Marshall", + year: 2006, + rating: 7.1, + votes: 50569, + running_times: 7860, + }, + { + title: "We Are Still Here", + year: 2015, + rating: 5.7, + votes: 13867, + running_times: 5040, + }, + { + title: "We Are What We Are", + year: 2013, + rating: 5.9, + votes: 17047, + running_times: 6300, + }, + { + title: "We Are Your Friends", + year: 2015, + rating: 6.2, + votes: 28314, + running_times: 5760, + }, + { + title: "We Bought a Zoo", + year: 2011, + rating: 7.1, + votes: 119778, + running_times: 7440, + }, + { + title: "We Need to Talk About Kevin", + year: 2011, + rating: 7.5, + votes: 110469, + running_times: 6720, + }, + { + title: "We Own the Night", + year: 2007, + rating: 6.9, + votes: 76188, + running_times: 7020, + }, + { + title: "We Were Soldiers", + year: 2002, + rating: 7.2, + votes: 112887, + running_times: 8580, + }, + { + title: "We're Back! A Dinosaur's Story", + year: 1993, + rating: 6.1, + votes: 11500, + running_times: 4320, + }, + { + title: "We're No Angels", + year: 1989, + rating: 6.1, + votes: 18713, + running_times: 6360, + }, + { + title: "We're the Millers", + year: 2013, + rating: 7, + votes: 346039, + running_times: 7680, + }, + { + title: "Wedding Crashers", + year: 2005, + rating: 7, + votes: 297708, + running_times: 7680, + }, + { + title: "Weekend", + year: 2011, + rating: 7.7, + votes: 22804, + running_times: 5820, + }, + { + title: "Weekend at Bernie's", + year: 1989, + rating: 6.4, + votes: 41289, + running_times: 5820, + }, + { + title: "Weekend at Bernie's II", + year: 1993, + rating: 4.6, + votes: 11096, + running_times: 5820, + }, + { + title: "Weird Science", + year: 1985, + rating: 6.6, + votes: 66176, + running_times: 5640, + }, + { + title: "Welcome Home, Roscoe Jenkins", + year: 2008, + rating: 5.4, + votes: 11552, + running_times: 6840, + }, + { + title: "Welcome to Collinwood", + year: 2002, + rating: 6.4, + votes: 13020, + running_times: 5160, + }, + { + title: "Welcome to Me", + year: 2014, + rating: 5.9, + votes: 15623, + running_times: 5220, + }, + { + title: "Welcome to Mooseport", + year: 2004, + rating: 5.2, + votes: 11146, + running_times: 7020, + }, + { + title: "Welcome to the Dollhouse", + year: 1995, + rating: 7.4, + votes: 28328, + running_times: 5280, + }, + { + title: "Welcome to the Jungle", + year: 2013, + rating: 5, + votes: 10638, + running_times: 5700, + }, + { + title: "Welcome to the Punch", + year: 2013, + rating: 6.1, + votes: 29070, + running_times: 6000, + }, + { + title: "Welcome to the Rileys", + year: 2010, + rating: 7, + votes: 21278, + running_times: 6600, + }, + { + title: "Wendy and Lucy", + year: 2008, + rating: 7.1, + votes: 13530, + running_times: 4800, + }, + { + title: "West Side Story", + year: 1961, + rating: 7.6, + votes: 79399, + running_times: 9180, + }, + { + title: "Westworld", + year: 1973, + rating: 7, + votes: 41034, + running_times: 5280, + }, + { + title: "Wet Hot American Summer", + year: 2001, + rating: 6.7, + votes: 45977, + running_times: 5820, + }, + { + title: "Whale Rider", + year: 2002, + rating: 7.6, + votes: 36011, + running_times: 6060, + }, + { + title: "What About Bob?", + year: 1991, + rating: 7, + votes: 54257, + running_times: 5940, + }, + { + title: "What Doesn't Kill You", + year: 2008, + rating: 6.6, + votes: 10317, + running_times: 6000, + }, + { + title: "What Dreams May Come", + year: 1998, + rating: 7, + votes: 89534, + running_times: 6780, + }, + { + title: "What Ever Happened to Baby Jane?", + year: 1962, + rating: 8.1, + votes: 40325, + running_times: 8100, + }, + { + title: "What Happens in Vegas", + year: 2008, + rating: 6.1, + votes: 150102, + running_times: 6060, + }, + { + title: "What Just Happened", + year: 2008, + rating: 5.7, + votes: 24650, + running_times: 6240, + }, + { + title: "What Lies Beneath", + year: 2000, + rating: 6.6, + votes: 104333, + running_times: 7800, + }, + { + title: "What Maisie Knew", + year: 2012, + rating: 7.5, + votes: 23733, + running_times: 5940, + }, + { + title: "What We Did on Our Holiday", + year: 2014, + rating: 6.9, + votes: 14692, + running_times: 5700, + }, + { + title: "What We Do in the Shadows", + year: 2014, + rating: 7.6, + votes: 97317, + running_times: 5160, + }, + { + title: "What Women Want", + year: 2000, + rating: 6.4, + votes: 170689, + running_times: 7620, + }, + { + title: "What a Girl Wants", + year: 2003, + rating: 5.8, + votes: 51761, + running_times: 6300, + }, + { + title: "What the #$*! Do We (K)now!?", + year: 2004, + rating: 5.3, + votes: 12450, + running_times: 6780, + }, + { + title: "What the Health", + year: 2017, + rating: 8, + votes: 18833, + running_times: 5820, + }, + { + title: "What to Expect When You're Expecting", + year: 2012, + rating: 5.7, + votes: 61745, + running_times: 6600, + }, + { + title: "What's Eating Gilbert Grape", + year: 1993, + rating: 7.8, + votes: 185200, + running_times: 7080, + }, + { + title: "What's Love Got to Do with It", + year: 1993, + rating: 7.2, + votes: 14393, + running_times: 7080, + }, + { + title: "What's Up, Doc?", + year: 1972, + rating: 7.8, + votes: 15727, + running_times: 5640, + }, + { + title: "What's Your Number?", + year: 2011, + rating: 6.1, + votes: 64002, + running_times: 7020, + }, + { + title: "What's the Worst That Could Happen?", + year: 2001, + rating: 5.5, + votes: 13371, + running_times: 5640, + }, + { + title: "Whatever Works", + year: 2009, + rating: 7.2, + votes: 63720, + running_times: 5580, + }, + { + title: "When Harry Met Sally...", + year: 1989, + rating: 7.6, + votes: 163450, + running_times: 5760, + }, + { + title: "When We Were Kings", + year: 1996, + rating: 8, + votes: 13204, + running_times: 5280, + }, + { + title: "When a Man Loves a Woman", + year: 1994, + rating: 6.5, + votes: 17885, + running_times: 7560, + }, + { + title: "When a Stranger Calls", + year: 2006, + rating: 5.1, + votes: 37689, + running_times: 5220, + }, + { + title: "When in Rome", + year: 2010, + rating: 5.6, + votes: 54300, + running_times: 5460, + }, + { + title: "When the Game Stands Tall", + year: 2014, + rating: 6.7, + votes: 13756, + running_times: 6900, + }, + { + title: "Where Eagles Dare", + year: 1968, + rating: 7.7, + votes: 43900, + running_times: 9480, + }, + { + title: "Where the Buffalo Roam", + year: 1980, + rating: 6.7, + votes: 10050, + running_times: 5760, + }, + { + title: "Where the Heart Is", + year: 2000, + rating: 6.8, + votes: 28717, + running_times: 7200, + }, + { + title: "Where the Truth Lies", + year: 2005, + rating: 6.5, + votes: 15715, + running_times: 6420, + }, + { + title: "Where the Wild Things Are", + year: 2009, + rating: 6.8, + votes: 92375, + running_times: 6060, + }, + { + title: "Where to Invade Next", + year: 2015, + rating: 7.6, + votes: 17948, + running_times: 7200, + }, + { + title: "While We're Young", + year: 2014, + rating: 6.3, + votes: 36693, + running_times: 5820, + }, + { + title: "While You Were Sleeping", + year: 1995, + rating: 6.7, + votes: 77975, + running_times: 6180, + }, + { + title: "Whip It", + year: 2009, + rating: 6.9, + votes: 58495, + running_times: 6660, + }, + { + title: "Whiplash", + year: 2014, + rating: 8.5, + votes: 517001, + running_times: 6420, + }, + { + title: "Whiskey Tango Foxtrot", + year: 2016, + rating: 6.6, + votes: 40192, + running_times: 6720, + }, + { + title: "White Bird in a Blizzard", + year: 2014, + rating: 6.4, + votes: 23569, + running_times: 5460, + }, + { + title: "White Chicks", + year: 2004, + rating: 5.5, + votes: 108969, + running_times: 6900, + }, + { + title: "White Christmas", + year: 1954, + rating: 7.6, + votes: 24345, + running_times: 7200, + }, + { + title: "White Fang", + year: 1991, + rating: 6.7, + votes: 16867, + running_times: 6420, + }, + { + title: "White Heat", + year: 1949, + rating: 8.2, + votes: 22555, + running_times: 6840, + }, + { + title: "White House Down", + year: 2013, + rating: 6.4, + votes: 178695, + running_times: 7860, + }, + { + title: "White Men Can't Jump", + year: 1992, + rating: 6.7, + votes: 63633, + running_times: 7080, + }, + { + title: "White Noise", + year: 2005, + rating: 5.5, + votes: 43784, + running_times: 6060, + }, + { + title: "White Noise 2: The Light", + year: 2007, + rating: 5.7, + votes: 11785, + running_times: 5940, + }, + { + title: "White Oleander", + year: 2002, + rating: 7.2, + votes: 26933, + running_times: 6540, + }, + { + title: "White Squall", + year: 1996, + rating: 6.6, + votes: 19008, + running_times: 7740, + }, + { + title: "Whiteout", + year: 2009, + rating: 5.5, + votes: 33828, + running_times: 6060, + }, + { + title: "Who Am I - Kein System ist sicher", + year: 2014, + rating: 7.6, + votes: 33183, + running_times: 6120, + }, + { + title: "Who Framed Roger Rabbit", + year: 1988, + rating: 7.7, + votes: 155219, + running_times: 6240, + }, + { + title: "Who Killed the Electric Car?", + year: 2006, + rating: 7.7, + votes: 11606, + running_times: 5520, + }, + { + title: "Who's Afraid of Virginia Woolf?", + year: 1966, + rating: 8.1, + votes: 60336, + running_times: 7860, + }, + { + title: "Who's Harry Crumb?", + year: 1989, + rating: 5.8, + votes: 13504, + running_times: 5640, + }, + { + title: "Who's Your Caddy?", + year: 2007, + rating: 2.1, + votes: 14081, + running_times: 5580, + }, + { + title: "Why Did I Get Married?", + year: 2007, + rating: 5.7, + votes: 10391, + running_times: 6780, + }, + { + title: "Why Him?", + year: 2016, + rating: 6.2, + votes: 71669, + running_times: 6660, + }, + { + title: "Wicker Park", + year: 2004, + rating: 7, + votes: 47786, + running_times: 6840, + }, + { + title: "Wild", + year: 2014, + rating: 7.1, + votes: 100424, + running_times: 6900, + }, + { + title: "Wild Bill", + year: 2011, + rating: 7.2, + votes: 10888, + running_times: 5880, + }, + { + title: "Wild Card", + year: 2015, + rating: 5.6, + votes: 42106, + running_times: 6120, + }, + { + title: "Wild Child", + year: 2008, + rating: 6.1, + votes: 40936, + running_times: 7440, + }, + { + title: "Wild Hogs", + year: 2007, + rating: 5.9, + votes: 104851, + running_times: 6000, + }, + { + title: "Wild Target", + year: 2010, + rating: 6.9, + votes: 32102, + running_times: 5880, + }, + { + title: "Wild Things", + year: 1998, + rating: 6.5, + votes: 96058, + running_times: 6900, + }, + { + title: "Wild Wild West", + year: 1999, + rating: 4.8, + votes: 137656, + running_times: 6360, + }, + { + title: "Wild at Heart", + year: 1990, + rating: 7.2, + votes: 68263, + running_times: 7500, + }, + { + title: "Wildcats", + year: 1986, + rating: 5.9, + votes: 10337, + running_times: 6360, + }, + { + title: "Wilde", + year: 1997, + rating: 6.9, + votes: 13098, + running_times: 7080, + }, + { + title: "Willard", + year: 2003, + rating: 6.2, + votes: 15937, + running_times: 6000, + }, + { + title: "Willow", + year: 1988, + rating: 7.3, + votes: 86915, + running_times: 7560, + }, + { + title: "Willy Wonka & the Chocolate Factory", + year: 1971, + rating: 7.8, + votes: 144970, + running_times: 6000, + }, + { + title: "Wimbledon", + year: 2004, + rating: 6.3, + votes: 54516, + running_times: 5880, + }, + { + title: "Win Win", + year: 2011, + rating: 7.2, + votes: 50308, + running_times: 6360, + }, + { + title: "Win a Date with Tad Hamilton!", + year: 2004, + rating: 5.6, + votes: 24089, + running_times: 5700, + }, + { + title: "Winchester '73", + year: 1950, + rating: 7.7, + votes: 13765, + running_times: 5520, + }, + { + title: "Wind Chill", + year: 2007, + rating: 5.9, + votes: 19074, + running_times: 5460, + }, + { + title: "Wind River", + year: 2017, + rating: 7.8, + votes: 74682, + running_times: 6420, + }, + { + title: "Windtalkers", + year: 2002, + rating: 6, + votes: 59346, + running_times: 9180, + }, + { + title: "Wing Commander", + year: 1999, + rating: 4.2, + votes: 15194, + running_times: 6000, + }, + { + title: "Winnie the Pooh", + year: 2011, + rating: 7.2, + votes: 17196, + running_times: 3780, + }, + { + title: "Winter's Bone", + year: 2010, + rating: 7.2, + votes: 119512, + running_times: 6000, + }, + { + title: "Winter's Tale", + year: 2014, + rating: 6.2, + votes: 45570, + running_times: 7080, + }, + { + title: "Wish I Was Here", + year: 2014, + rating: 6.7, + votes: 32549, + running_times: 6360, + }, + { + title: "Wishmaster", + year: 1997, + rating: 5.8, + votes: 16578, + running_times: 5400, + }, + { + title: "With Honors", + year: 1994, + rating: 6.7, + votes: 11663, + running_times: 6180, + }, + { + title: "Withnail & I", + year: 1987, + rating: 7.8, + votes: 33730, + running_times: 6420, + }, + { + title: "Without a Paddle", + year: 2004, + rating: 5.9, + votes: 39444, + running_times: 5700, + }, + { + title: "Witness", + year: 1985, + rating: 7.4, + votes: 72313, + running_times: 6720, + }, + { + title: "Witness for the Prosecution", + year: 1957, + rating: 8.4, + votes: 75714, + running_times: 6960, + }, + { title: "Wolf", year: 1994, rating: 6.2, votes: 46491, running_times: 7500 }, + { + title: "Wolf Creek", + year: 2005, + rating: 6.3, + votes: 59931, + running_times: 6240, + }, + { + title: "Wolf Creek 2", + year: 2013, + rating: 6.1, + votes: 14313, + running_times: 6360, + }, + { + title: "Woman in Gold", + year: 2015, + rating: 7.3, + votes: 43004, + running_times: 6540, + }, + { title: "Womb", year: 2010, rating: 6.4, votes: 11453, running_times: 6660 }, + { + title: "Wonder", + year: 2017, + rating: 8.1, + votes: 13471, + running_times: 6780, + }, + { + title: "Wonder Boys", + year: 2000, + rating: 7.4, + votes: 56829, + running_times: 6420, + }, + { + title: "Wonder Woman", + year: 2017, + rating: 7.6, + votes: 343600, + running_times: 8460, + }, + { + title: "Wonderland", + year: 2003, + rating: 6.6, + votes: 19519, + running_times: 6240, + }, + { + title: "Wong Fei Hung", + year: 1991, + rating: 7.4, + votes: 14953, + running_times: 8040, + }, + { + title: "Woodstock", + year: 1970, + rating: 8.1, + votes: 13696, + running_times: 21360, + }, + { + title: "Working Girl", + year: 1988, + rating: 6.7, + votes: 44715, + running_times: 6780, + }, + { + title: "World Trade Center", + year: 2006, + rating: 6, + votes: 71119, + running_times: 7740, + }, + { + title: "World War Z", + year: 2013, + rating: 7, + votes: 513324, + running_times: 7380, + }, + { + title: "World's Greatest Dad", + year: 2009, + rating: 6.9, + votes: 33881, + running_times: 5940, + }, + { + title: "Would You Rather", + year: 2012, + rating: 5.8, + votes: 28237, + running_times: 5580, + }, + { + title: "Wrath of the Titans", + year: 2012, + rating: 5.8, + votes: 163085, + running_times: 5940, + }, + { + title: "Wreck-It Ralph", + year: 2012, + rating: 7.7, + votes: 302045, + running_times: 6060, + }, + { + title: "Wrecked", + year: 2010, + rating: 5.3, + votes: 13726, + running_times: 5460, + }, + { + title: "Wristcutters: A Love Story", + year: 2006, + rating: 7.3, + votes: 48932, + running_times: 5280, + }, + { + title: "Wrong Turn", + year: 2003, + rating: 6.1, + votes: 94754, + running_times: 5040, + }, + { + title: "Wrong Turn 4: Bloody Beginnings", + year: 2011, + rating: 4.6, + votes: 18867, + running_times: 5640, + }, + { + title: "Wrongfully Accused", + year: 1998, + rating: 6.1, + votes: 19976, + running_times: 5220, + }, + { + title: "Wuthering Heights", + year: 1939, + rating: 7.7, + votes: 13761, + running_times: 6240, + }, + { + title: "Wuthering Heights", + year: 1992, + rating: 6.9, + votes: 10432, + running_times: 6300, + }, + { + title: "Wyatt Earp", + year: 1994, + rating: 6.7, + votes: 38522, + running_times: 12720, + }, + { + title: "Wyrmwood", + year: 2014, + rating: 6.3, + votes: 13514, + running_times: 5880, + }, + { title: "X+Y", year: 2014, rating: 7.2, votes: 23033, running_times: 6660 }, + { + title: "X-Men", + year: 2000, + rating: 7.4, + votes: 498117, + running_times: 6240, + }, + { + title: "X-Men Origins: Wolverine", + year: 2009, + rating: 6.7, + votes: 402237, + running_times: 7140, + }, + { + title: "X-Men: Apocalypse", + year: 2016, + rating: 7, + votes: 304132, + running_times: 8640, + }, + { + title: "X-Men: Days of Future Past", + year: 2014, + rating: 8, + votes: 572280, + running_times: 9060, + }, + { + title: "X-Men: The Last Stand", + year: 2006, + rating: 6.7, + votes: 419674, + running_times: 6240, + }, + { title: "X2", year: 2003, rating: 7.5, votes: 445905, running_times: 8040 }, + { + title: "X: First Class", + year: 2011, + rating: 7.8, + votes: 566878, + running_times: 7860, + }, + { + title: "Xi yan", + year: 1993, + rating: 7.7, + votes: 11724, + running_times: 6360, + }, + { + title: "Yahsi Bati", + year: 2009, + rating: 7.3, + votes: 20851, + running_times: 6720, + }, + { + title: "Yankee Doodle Dandy", + year: 1942, + rating: 7.8, + votes: 11975, + running_times: 7560, + }, + { + title: "Yat goh ho yan", + year: 1997, + rating: 6.2, + votes: 21626, + running_times: 5820, + }, + { + title: "Year One", + year: 2009, + rating: 4.9, + votes: 80852, + running_times: 6000, + }, + { + title: "Year of the Dragon", + year: 1985, + rating: 6.9, + votes: 11575, + running_times: 8040, + }, + { + title: "Yeh Jawaani Hai Deewani", + year: 2013, + rating: 7, + votes: 30273, + running_times: 10560, + }, + { + title: "Yellow Submarine", + year: 1968, + rating: 7.4, + votes: 20412, + running_times: 5400, + }, + { + title: "Yentl", + year: 1983, + rating: 6.6, + votes: 10319, + running_times: 7980, + }, + { + title: "Yeopgijeogin geunyeo", + year: 2001, + rating: 8.1, + votes: 39868, + running_times: 8220, + }, + { + title: "Yes Boss", + year: 1997, + rating: 6.9, + votes: 10757, + running_times: 9780, + }, + { + title: "Yes Man", + year: 2008, + rating: 6.8, + votes: 291926, + running_times: 6240, + }, + { + title: "Yi yi", + year: 2000, + rating: 8.1, + votes: 14903, + running_times: 10380, + }, + { + title: "Ying hung boon sik", + year: 1986, + rating: 7.6, + votes: 17056, + running_times: 5700, + }, + { + title: "Yip Man 2", + year: 2010, + rating: 7.6, + votes: 79871, + running_times: 6480, + }, + { + title: "Yip Man 3", + year: 2015, + rating: 7.1, + votes: 32614, + running_times: 6300, + }, + { + title: "Yogi Bear", + year: 2010, + rating: 4.6, + votes: 17693, + running_times: 4800, + }, + { + title: "You Again", + year: 2010, + rating: 5.8, + votes: 43923, + running_times: 6300, + }, + { + title: "You Can Count on Me", + year: 2000, + rating: 7.7, + votes: 24603, + running_times: 6660, + }, + { + title: "You Can't Take It with You", + year: 1938, + rating: 8, + votes: 19430, + running_times: 7560, + }, + { + title: "You Don't Mess with the Zohan", + year: 2008, + rating: 5.5, + votes: 167599, + running_times: 6780, + }, + { + title: "You Got Served", + year: 2004, + rating: 3.5, + votes: 24231, + running_times: 5700, + }, + { + title: "You Kill Me", + year: 2007, + rating: 6.5, + votes: 16698, + running_times: 5580, + }, + { + title: "You Only Live Twice", + year: 1967, + rating: 6.9, + votes: 81773, + running_times: 7020, + }, + { + title: "You Will Meet a Tall Dark Stranger", + year: 2010, + rating: 6.3, + votes: 39424, + running_times: 5880, + }, + { + title: "You're Next", + year: 2011, + rating: 6.5, + votes: 71913, + running_times: 5700, + }, + { + title: "You're Not You", + year: 2014, + rating: 7.4, + votes: 19583, + running_times: 6120, + }, + { + title: "You've Got Mail", + year: 1998, + rating: 6.6, + votes: 165458, + running_times: 7140, + }, + { + title: "You, Me and Dupree", + year: 2006, + rating: 5.6, + votes: 71919, + running_times: 6600, + }, + { + title: "Young Adam", + year: 2003, + rating: 6.5, + votes: 12131, + running_times: 5880, + }, + { + title: "Young Adult", + year: 2011, + rating: 6.3, + votes: 68568, + running_times: 5640, + }, + { + title: "Young Frankenstein", + year: 1974, + rating: 8, + votes: 125087, + running_times: 6360, + }, + { + title: "Young Guns", + year: 1988, + rating: 6.8, + votes: 46301, + running_times: 6420, + }, + { + title: "Young Guns II", + year: 1990, + rating: 6.5, + votes: 26020, + running_times: 6240, + }, + { + title: "Young People Fucking", + year: 2007, + rating: 6.3, + votes: 18254, + running_times: 5400, + }, + { + title: "Young Sherlock Holmes", + year: 1985, + rating: 6.8, + votes: 16098, + running_times: 6540, + }, + { + title: "Youngblood", + year: 1986, + rating: 6.1, + votes: 10495, + running_times: 6600, + }, + { + title: "Your Highness", + year: 2011, + rating: 5.5, + votes: 89650, + running_times: 6120, + }, + { + title: "Your Sister's Sister", + year: 2011, + rating: 6.7, + votes: 23443, + running_times: 5400, + }, + { + title: "Yours, Mine & Ours", + year: 2005, + rating: 5.4, + votes: 23439, + running_times: 5280, + }, + { + title: "Youth", + year: 2015, + rating: 7.3, + votes: 56877, + running_times: 7440, + }, + { + title: "Youth Without Youth", + year: 2007, + rating: 6.3, + votes: 11953, + running_times: 7440, + }, + { + title: "Youth in Revolt", + year: 2009, + rating: 6.5, + votes: 68119, + running_times: 5400, + }, + { title: "Yume", year: 1990, rating: 7.8, votes: 19868, running_times: 7140 }, + { title: "Z", year: 1969, rating: 8.2, votes: 19513, running_times: 7620 }, + { + title: "Z for Zachariah", + year: 2015, + rating: 6, + votes: 22333, + running_times: 5880, + }, + { + title: "Zabriskie Point", + year: 1970, + rating: 7.1, + votes: 12201, + running_times: 6780, + }, + { + title: "Zack and Miri Make a Porno", + year: 2008, + rating: 6.6, + votes: 157803, + running_times: 6060, + }, + { + title: "Zardoz", + year: 1974, + rating: 5.8, + votes: 16295, + running_times: 6300, + }, + { + title: "Zathura: A Space Adventure", + year: 2005, + rating: 6.1, + votes: 75323, + running_times: 6060, + }, + { + title: "Zeitgeist: Moving Forward", + year: 2011, + rating: 8.2, + votes: 16308, + running_times: 9660, + }, + { + title: "Zelig", + year: 1983, + rating: 7.8, + votes: 34767, + running_times: 4740, + }, + { + title: "Zero Dark Thirty", + year: 2012, + rating: 7.4, + votes: 233700, + running_times: 9420, + }, + { + title: "Zero Effect", + year: 1998, + rating: 7, + votes: 12886, + running_times: 6960, + }, + { + title: "Zindagi Na Milegi Dobara", + year: 2011, + rating: 8.1, + votes: 51369, + running_times: 9300, + }, + { + title: "Zivot je cudo", + year: 2004, + rating: 7.7, + votes: 10794, + running_times: 9300, + }, + { + title: "Zodiac", + year: 2007, + rating: 7.7, + votes: 349834, + running_times: 9720, + }, + { + title: "Zombeavers", + year: 2014, + rating: 4.8, + votes: 13180, + running_times: 4620, + }, + { + title: "Zombi 2", + year: 1979, + rating: 6.9, + votes: 21569, + running_times: 5640, + }, + { + title: "Zombie Strippers", + year: 2008, + rating: 4.1, + votes: 16387, + running_times: 5640, + }, + { + title: "Zombieland", + year: 2009, + rating: 7.7, + votes: 423925, + running_times: 5280, + }, + { + title: "Zookeeper", + year: 2011, + rating: 5.2, + votes: 48679, + running_times: 6120, + }, + { + title: "Zoolander", + year: 2001, + rating: 6.6, + votes: 217408, + running_times: 5400, + }, + { + title: "Zoolander 2", + year: 2016, + rating: 4.7, + votes: 52589, + running_times: 6480, + }, + { title: "Zoom", year: 2006, rating: 4.3, votes: 16260, running_times: 5580 }, + { + title: "Zootopia", + year: 2016, + rating: 8, + votes: 326111, + running_times: 6480, + }, + { title: "Zulu", year: 1964, rating: 7.8, votes: 31229, running_times: 8280 }, + { title: "Zulu", year: 2013, rating: 6.7, votes: 15316, running_times: 6600 }, + { + title: "Zwartboek", + year: 2006, + rating: 7.8, + votes: 64568, + running_times: 8700, + }, + { + title: "eXistenZ", + year: 1999, + rating: 6.8, + votes: 82881, + running_times: 6900, + }, + { title: "iBoy", year: 2017, rating: 6, votes: 12217, running_times: 5400 }, + { title: "xXx", year: 2002, rating: 5.8, votes: 157358, running_times: 7920 }, + { + title: "xXx: Return of Xander Cage", + year: 2017, + rating: 5.2, + votes: 63918, + running_times: 6420, + }, + { + title: "xXx: State of the Union", + year: 2005, + rating: 4.4, + votes: 59449, + running_times: 6060, + }, + { + title: "¡Three Amigos!", + year: 1986, + rating: 6.4, + votes: 58003, + running_times: 6240, + }, + { + title: "À bout de souffle", + year: 1960, + rating: 7.9, + votes: 58379, + running_times: 5400, + }, + { + title: "Æon Flux", + year: 2005, + rating: 5.5, + votes: 115131, + running_times: 5580, + }, +]; diff --git a/courses/frontend/advanced-javascript/week1/movies/movies.html b/courses/frontend/advanced-javascript/week1/movies/movies.html new file mode 100644 index 000000000..38d768f96 --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/movies/movies.html @@ -0,0 +1,67 @@ + + + + + + Document + + + +
+

Movies Database

+

Welcome to the movies database!

+
+ +
+

Short Titles

+
+
+ +
+

Long Titles

+
+
+ +
+

1980s Count

+
+

+
+ +
+

Tagged Movies

+
+
+ +
+

Ratings Above 6

+
+
+ +
+

Keyword Count

+
+
+ +
+

Duplicated Word Titles

+
+
+ +
+
+

Average Rating

+
+
+ +
+

Count Tagged Movies

+
+
+ +
+ + + + + diff --git a/courses/frontend/advanced-javascript/week1/movies/movies.js b/courses/frontend/advanced-javascript/week1/movies/movies.js new file mode 100644 index 000000000..725e9d7f6 --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/movies/movies.js @@ -0,0 +1,101 @@ +import { movies } from "./data.js"; +import * as utils from "./script.js"; + +//short titles +const shortTitlesContainer = document.getElementById("shortTitles"); +const shortMovies = utils.getShortMovies(movies); + +shortTitlesContainer.innerHTML = ` +
    + ${shortMovies.map(movie => `
  1. ${movie.title}
  2. `).join("")} +
+`; + +//long titles +const longTitlesContainer = document.getElementById("longTitles"); + +const longMovies = utils.getLongMovies(movies); + +longTitlesContainer.innerHTML = ` +
    + ${longMovies.map(title => `
  1. ${title}
  2. `).join("")} +
+`; +// 1980s count +const count1980sContainer = document.getElementById("count1980s"); + +const moviesBetween1980And1989 = utils.getMoviesBetween1980And1989(movies); + +count1980sContainer.innerHTML = ` +

Number of movies from 1980-1989: ${moviesBetween1980And1989.length}

+`; + +// tagged movies + +const taggedMoviesContainer = document.getElementById("taggedMovies"); + +const taggedMovies = utils.getTaggedMovies(movies); + +taggedMoviesContainer.innerHTML = ` +
    + ${taggedMovies.map(movie => `
  1. ${movie.title} - ${movie.tag}
  2. `).join("")} +
+`; +// ratings above 6 + +const ratingsAbove6Container = document.getElementById("ratingsAbove6"); + +const moviesWithRatingsOver6 = utils.getMoviesRatingAbove6(movies); + +ratingsAbove6Container.innerHTML = ` +
    + ${moviesWithRatingsOver6 + .map(movie => `
  1. ${movie.title} - ${movie.rating}
  2. `) + .join("")} +
+`; + +//keyword count + +const keywordCountContainer = document.getElementById("keywordCount"); + +const moviesWithKeywords = utils.getMoviesWithKeywords(movies); + +keywordCountContainer.innerHTML = ` +

Total keyword matches: ${moviesWithKeywords}

+`; + +//duplicated movies +const duplicatedWordTitlesContainer = document.getElementById("duplicatedWordTitles"); + +const duplicatedMovies = utils.getDuplicatedMovies(movies); + +duplicatedWordTitlesContainer.innerHTML = ` +
    + ${duplicatedMovies.map(title => `
  1. ${title}
  2. `).join("")} +
+`; + + +// average rating + +const averageRatingContainer = document.getElementById("averageRating"); + +const averageRating = utils.getAverageRating(movies); + +averageRatingContainer.innerHTML = ` +

Average Rating: ${averageRating}

+`; + +// Count the total number of Good, Average and Bad movies + +const countTaggedMoviesContainer = document.getElementById("countTaggedMovies"); + +const countTaggedMovies = utils.getTagCounts(movies); + +countTaggedMoviesContainer.innerHTML = ` +

Number of good movies: ${countTaggedMovies.goodMovies}

+

Number of average movies: ${countTaggedMovies.averageMovies}

+

Number of bad movies: ${countTaggedMovies.badMovies}

+`; + diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js new file mode 100644 index 000000000..49f3332ac --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -0,0 +1,121 @@ +// Create an array of movies containing the movies with a short title (you define what short means) + +function getShortMovies(movies) { + return movies.filter((movie) => { + return movie.title.trim().split(/\s+/).length === 2; + }); +} + +// Create an array of movie titles with long movie titles +function getLongMovies(movies) { + return movies + .filter((movie) => { + return movie.title.trim().split(/\s+/).length > 7; + }) + .map((movie) => movie.title); +} + +// Count the number of movies made between 1980-1989 (including both the years) + +function getMoviesBetween1980And1989(movies) { + return movies.filter((movie) => { + return movie.year >= 1980 && movie.year <= 1989; + }); +} + +// Create a new array that has an extra key called tag. The tag is based on the rating: Good (>= 7), Average (>= 4 and < 7), Bad (< 4) +function getTaggedMovies(movies) { + return movies.map((movie) => { + let tag; + if (movie.rating >= 7) { + tag = "Good"; + } else if (movie.rating >= 4) { + tag = "Average"; + } else { + tag = "Bad"; + } + return { ...movie, tag }; + }); +} + +// Using chaining, first filter the movies array to only contain the movies rated higher than 6. Now map the movies array to only the rating of the movies. +function getMoviesRatingAbove6(movies) { + return movies.filter((movie) => movie.rating > 6); +} + +// Count the total number of movies containing any of following keywords: Surfer, Alien or Benjamin. So if there were 3 movies that contained Surfer, 1 with Alien and 2 with Benjamin, you would return 6. Can you make sure the search is case insensitive? + +function getMoviesWithKeywords(movies) { + const keywords = ["surfer", "alien", "benjamin"]; + + return movies.reduce((count, movie) => { + const title = movie.title.toLowerCase(); + + keywords.forEach((keyword) => { + if (title.includes(keyword)) { + count += 1; + } + }); + + return count; + }, 0); +} + +// Create an array of movies where a word in the title is duplicated. e.g. "Star Wars: The Clone Wars" the word Wars is duplicated. Here are some made-up examples of movies with duplicated words in the title: "The three men and the pistol", "Chase three - The final chase" + +function getDuplicatedMovies(movies) { + return movies + .filter((movie) => { + const splitTitles = movie.title + .toLowerCase() + .replace(/[^a-z0-9\s]/gi, "") + .split(/\s+/) + .filter(Boolean); + + let findDuplicates = splitTitles.filter( + (title, index) => splitTitles.indexOf(title) !== index, + ); + return findDuplicates.length > 0; + }) + .map((movie) => movie.title); +} + +// Calculate the average rating of all the movies using .reduce() Optional +function getAverageRating(movies) { + const sumOfRating = movies.reduce((accumulator, movie) => { + return accumulator + movie.rating; + }, 0); + return (sumOfRating / movies.length).toFixed(2); +} + +// Count the total number of Good, Average and Bad movies using .reduce(). A return could be e.g. {goodMovies: 33, averageMovies: 45, goodMovies: 123} Optional +function getTagCounts(movies) { + const taggedMovies = getTaggedMovies(movies); + + return taggedMovies.reduce( + (accumulator, taggedMovie) => { + if (taggedMovie.tag === "Good") { + accumulator.goodMovies += 1; + } else if (taggedMovie.tag === "Average") { + accumulator.averageMovies += 1; + } else { + accumulator.badMovies += 1; + } + + return accumulator; + }, + { goodMovies: 0, averageMovies: 0, badMovies: 0 }, + ); +} + +export { + getShortMovies, + getLongMovies, + getMoviesBetween1980And1989, + getTaggedMovies, + getMoviesRatingAbove6, + getMoviesWithKeywords, + getDuplicatedMovies, + getAverageRating, + getTagCounts, +}; diff --git a/courses/frontend/advanced-javascript/week1/movies/styles.css b/courses/frontend/advanced-javascript/week1/movies/styles.css new file mode 100644 index 000000000..ff206a372 --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/movies/styles.css @@ -0,0 +1,42 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + background-color: rgba(220, 220, 220, 0.407); +} + +main { + max-width: 800px; + margin: 0 auto; + padding: 2rem 1rem; +} +section { + background-color: white; + padding: 1.2rem; + margin: 1.2rem; + border-radius: 0.5rem; + border: 2px solid rgb(222, 221, 219); + box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.033); +} +.section-content { + max-height: 200px; + overflow-y: scroll; + padding: 10px; + border-radius: 8px; + border: 1px solid #ddd; + background: #f9f9f9; +} +h1 { + margin-bottom: 0.5rem; + font-size: 2rem; +} + +section p { + margin-top: 0; + font-size: 1.5rem; +} +h2 { + margin-top: 0; + font-size: 1.5rem; +} + From 5652ad75b2cf6b930117af2cd81f00c1e6b35ded Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 18 Mar 2026 23:27:56 +0100 Subject: [PATCH 21/33] Add task1 --- .../advanced-javascript/week1/task1.html | 11 ++++++++++ .../advanced-javascript/week1/task1.js | 20 +++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week1/task1.html create mode 100644 courses/frontend/advanced-javascript/week1/task1.js diff --git a/courses/frontend/advanced-javascript/week1/task1.html b/courses/frontend/advanced-javascript/week1/task1.html new file mode 100644 index 000000000..985a71447 --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/task1.html @@ -0,0 +1,11 @@ + + + + + Document + + +

Hello!

+ + + \ No newline at end of file diff --git a/courses/frontend/advanced-javascript/week1/task1.js b/courses/frontend/advanced-javascript/week1/task1.js new file mode 100644 index 000000000..c3823d856 --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/task1.js @@ -0,0 +1,20 @@ +//Doubling of number + +// let numbers = [1, 2, 3, 4]; +// let newNumbers = []; + +// for (let i = 0; i < numbers.length; i++) { +// if (numbers[i] % 2 !== 0) { +// newNumbers[i] = numbers[i] * 2; +// } +// } +// Rewrite the above program using map and filter; don't forget to use arrow functions. + + +let numbers = [1, 2, 3, 4]; + +const doubledNumbers = numbers + .filter((number) => number % 2 !== 0) + .map((x) => x * 2); + +console.log(doubledNumbers); From e2d514b35e88b194e278e15089d5f74747a97d3c Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 23 Mar 2026 10:52:45 +0100 Subject: [PATCH 22/33] add JSadv-2 session exercises --- .../week2/Session/JSadv-2.html | 40 ++++ .../week2/Session/JSadv-2.js | 171 ++++++++++++++++++ 2 files changed, 211 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week2/Session/JSadv-2.html create mode 100644 courses/frontend/advanced-javascript/week2/Session/JSadv-2.js diff --git a/courses/frontend/advanced-javascript/week2/Session/JSadv-2.html b/courses/frontend/advanced-javascript/week2/Session/JSadv-2.html new file mode 100644 index 000000000..0527d1601 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Session/JSadv-2.html @@ -0,0 +1,40 @@ + + + + + + Document + + + + +

JS Advanced 2

+ +

1. Click counter

+ + + +

0

+ + +

2. Delay clicker

+ +
+ + +

3. Page onload

+ + +

4. Mouse move

+ +

0

+

0

+
+ +

5. Mouse position online tool

+ +
+ + + + diff --git a/courses/frontend/advanced-javascript/week2/Session/JSadv-2.js b/courses/frontend/advanced-javascript/week2/Session/JSadv-2.js new file mode 100644 index 000000000..5385fc224 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Session/JSadv-2.js @@ -0,0 +1,171 @@ +// // function greeting(name, callback) { +// // return callback(name); +// // } + +// // function callback(name) { +// // if (name === "Tom") { +// // console.log(`Hi, ${name}!`) +// // }else console.log(`Good morning, ${name}! `) +// // } +// // callback("Jack", callback) +// // callback("Tom", callback) + +// function greeting(name, callback) { +// return callback(name); +// } + +// const formal = (name) => `Good morning, ${name}!` +// const casual = (name) => `Hi, ${name}!` + +// function greeting(name, callback) { +// return callback(name); +// } +// console.log( +// greeting("Jack", formal) +// ); +// console.log( +// greeting("Tom", casual) +// ); + + + +// const array = [1, 2, 3, 4, 5]; +// const newArray = []; +// const multiply = (num, factor) => { +// newArray.push(num * factor); +// }; + +// const callbackFactory = function (factor) { +// // +// return multiply; +// } + + +// const callback = callbackFactory(2); + +// array.forEach(callback); +// console.log(typeof callbackFactory); +// console.log(typeof callbackFactory()); +// console.log(typeof multiply()); +// console.log(newArray); +// console.log(array); + +//setTimeout(callback, 1000); +const bar = () => console.log("First"); +const foo = () => setTimeout(() => console.log("Second"), 500); +const baz = () => console.log("Third"); + +bar(); +foo(); +baz(); + + +// synchronous vs asynchronous + + + + +// const data = document.querySelector(".data"); +// const btn = document.querySelector(".btn"); + +// data.innerText = "Loading..."; + +// btn.addEventListener("click", () => { +// data.innerText = "Loading..."; +// setTimeout(() => { +// data.innerText = "Data loaded!"; +// }, 2000); +// }); +// btn.addEventListener btn.addEventListener("click", () => { + // console.log("clicked"); +//}); + + + + +//Exercises +//1. Click counter +const button1 = document.querySelector("#btn-1"); +const button2 = document.querySelector("#btn-2"); + +const counterDisplay = document.querySelector("#counter"); + +let counter = 0; + +button1.addEventListener("click", function () { + counterDisplay.innerText = counter; + counter++; +}); + +button2.addEventListener("click", function () { + counterDisplay.innerText = counter; + counter++; +}); + + +// #2 Delay clicker + + +const btn = document.querySelector("#btn-load-3"); +const data = document.querySelector(".data"); + +btn.addEventListener("click", () => { + setTimeout(() => { + data.innerText = "This text was delayed by 3 seconds" + }, 3000); +}); +btn.addEventListener("click", () => { + console.log("clicked"); +}); + + +//#3. Page onload + + +const domLoaded = () => { + console.log("DOM fully loaded and parsed"); +}; + +document.addEventListener("DOMContentLoaded", domLoaded); + + +//#4 Mouse position + + + + function mousemove(e) { + let x = document.getElementById('x'); + let y = document.getElementById('y'); + x.innerHTML = e.clientX; + y.innerHTML = e.clientY; +}; + + +document.onmousemove = mousemove; + + + +//#5. Mouse position online tool + + +let totalX = 0; +let totalY = 0; +let moveCount = 0; + +const trackMouse = (e) => { + totalX += e.clientX; + totalY += e.clientY; + moveCount++; +}; + +document.addEventListener("mousemove", trackMouse); + +setTimeout(() => { + if (moveCount > 0) { + const avgX = Math.round(totalX / moveCount); + const avgY = Math.round(totalY / moveCount); + + document.querySelector(".average-mouse-position").innerText = + `Average mouse position: x=${avgX}, y=${avgY}`; + } +}, 30000); \ No newline at end of file From e56f7bf35a9997b95f89a18d9df6434259a229bc Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 23 Mar 2026 13:39:50 +0100 Subject: [PATCH 23/33] add task3 --- .../week2/Task3/task3.html | 12 ++++++ .../advanced-javascript/week2/Task3/task3.js | 40 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week2/Task3/task3.html create mode 100644 courses/frontend/advanced-javascript/week2/Task3/task3.js diff --git a/courses/frontend/advanced-javascript/week2/Task3/task3.html b/courses/frontend/advanced-javascript/week2/Task3/task3.html new file mode 100644 index 000000000..62ea33e66 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Task3/task3.html @@ -0,0 +1,12 @@ + + + + + + Document + + +

Task 3

+ + + diff --git a/courses/frontend/advanced-javascript/week2/Task3/task3.js b/courses/frontend/advanced-javascript/week2/Task3/task3.js new file mode 100644 index 000000000..fd8f9027e --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Task3/task3.js @@ -0,0 +1,40 @@ +// Create an array with 3 items. +// All items should be functions. +// Iterate through the array and call all the functions. +let functions = [ + function add(a, b) { + return a + b; + }, + function multiply(a, b) { + return a * b; + }, + function divide(a, b) { + return a / b; + }, +]; + +for (let i = 0; i < functions.length; i++) { + console.log(functions[i](10, 5)); +} +console.log(functions); + +console.log(functions[0](10, 5)); // Output: 15 +console.log(functions[1](10, 5)); // Output: 50 +console.log(functions[2](10, 5)); // Output: 2 + +//Create a function as a const and try creating a function normally. +// Call both functions. + +const sumFunction = function sum(a, b) { + return a + b; +}; +console.log(sumFunction(10, 5)); // Output: 15 + +// Create an object that has a key whose value is a function. +// Try calling this function. +let obj = { + multiplication: function multiply(a, b) { + return a * b; + }, +}; +console.log(obj.multiplication(10, 5)); // Output: 50 From 1d02bf4810c31cfe09cea55411b8d4f696eabe9a Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 25 Mar 2026 20:29:16 +0100 Subject: [PATCH 24/33] Add Task2,3,4 folders with files --- .../week2/Task2/task2.html | 43 ++++ .../advanced-javascript/week2/Task2/task2.js | 150 ++++++++++++ .../week2/Task3/task3.html | 2 +- .../advanced-javascript/week2/Task4/task4.css | 216 ++++++++++++++++++ .../week2/Task4/task4.html | 57 +++++ .../advanced-javascript/week2/Task4/task4.js | 123 ++++++++++ 6 files changed, 590 insertions(+), 1 deletion(-) create mode 100644 courses/frontend/advanced-javascript/week2/Task2/task2.html create mode 100644 courses/frontend/advanced-javascript/week2/Task2/task2.js create mode 100644 courses/frontend/advanced-javascript/week2/Task4/task4.css create mode 100644 courses/frontend/advanced-javascript/week2/Task4/task4.html create mode 100644 courses/frontend/advanced-javascript/week2/Task4/task4.js diff --git a/courses/frontend/advanced-javascript/week2/Task2/task2.html b/courses/frontend/advanced-javascript/week2/Task2/task2.html new file mode 100644 index 000000000..68b25e776 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Task2/task2.html @@ -0,0 +1,43 @@ + + + + + + Document + + +

Functions!

+ +

Task 1

+

+ +

Task 2

+

+ +

Task 3

+

+ + +

Task 4

+

+

+ +

Task 5

+ +

+ +

Task 7

+ + +

+ +

Task 8

+

+ +

Task 9

+ + +

+ + + diff --git a/courses/frontend/advanced-javascript/week2/Task2/task2.js b/courses/frontend/advanced-javascript/week2/Task2/task2.js new file mode 100644 index 000000000..71cc3f640 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Task2/task2.js @@ -0,0 +1,150 @@ +//Task1. Display the text Called after 2.5 seconds +// on the page 2.5 seconds after the script is loaded. + +const myTimeout = setTimeout(message, 2500, "task1-output"); +function message(outputId) { + document.getElementById(outputId).textContent = "Called after 2.5 seconds"; +} + +// Task2. Create a function that takes 2 parameters: delay and stringToLog. +// Calling this function should display the stringToLog on the page after delay seconds. +// Call the function you have created with some different arguments. + +function logAfterDelay(delay, stringToLog, outputId) { + setTimeout(() => { + const container = document.getElementById(outputId); + const newLine = document.createElement("p"); + newLine.textContent = stringToLog; + + container.appendChild(newLine); + }, delay * 1000); +} +logAfterDelay(3, "Called after 3 seconds", "task2-output"); +logAfterDelay(4, "Called after 4 seconds", "task2-output", "task2-output"); + +// Task3. Create a button in html. +// When clicking this button, +// use the function you created in the previous task +// to display the text Called after 5 seconds on the page +// 5 seconds after the button is clicked. + +let clickCount = 0; +const element = document.getElementById("btn-click"); +element.addEventListener("click", function () { + clickCount++; + if (clickCount === 1) { + logAfterDelay(5, "Called after 5 seconds", "task3-output"); + } +}); + +// Task 4.Create two functions and assign them to two different variables. +// One function displays Earth on the page, +// the other displays Saturn. +// Now create a new third function that has one parameter: +// planetLogFunction. +// The only thing the third function should do is call the provided parameter function. +// Try calling the third function once with the Earth function and once with the Saturn function. +let earthLogger = function () { + document.getElementById("task4-earth-output").textContent = "Earth"; +}; + +let saturnLogger = function () { + document.getElementById("task4-saturn-output").textContent = "Saturn"; +}; + +function planetLogFunction(planetFunction) { + planetFunction(); +} + +planetLogFunction(earthLogger); +planetLogFunction(saturnLogger); + +// Task5.Create a button with the text "Log location". When this button is clicked, display the user's location (latitude, longitude) on the page using this browser API. + +const btnLocation = document.getElementById("btn-location"); +btnLocation.addEventListener("click", function () { + let location = document.getElementById("location-output"); + if (navigator.geolocation) { + navigator.geolocation.getCurrentPosition(showPosition); + } else { + location.innerHTML = "Geolocation is not supported by this browser."; + } +}); +function showPosition(position) { + document.getElementById("location-output").innerHTML = + "Latitude: " + + position.coords.latitude + + "
Longitude: " + + position.coords.longitude; +} + +// Task7. Create a function called runAfterDelay. +// It has two parameters: delay and callback. +// When called the function should wait delay seconds +// and then call the provided callback function. +// Add an input in the HTML for the delay (in seconds) +// and a button; when the button is clicked, +// read the delay from the input and call runAfterDelay with that delay +// and a callback that displays something on the page. + +function runAfterDelay(delay, callback) { + setTimeout(() => { + callback(); + }, delay * 1000); +} + +document.getElementById("btn-run").addEventListener("click", function () { + const delay = document.getElementById("delay-input").value; + + runAfterDelay(delay, function () { + document.getElementById("run-output").textContent = + "Done after " + delay + " seconds"; + }); +}); + +// Task8. Check if the user has double-clicked on the page. +// A double click is two clicks within 0.5 seconds. +// If a double click is detected, display the text "double click!" on the page. +let lastClickedTime = 0; +document.addEventListener("click", function (event) { + const currentTime = new Date().getTime(); + if (currentTime - lastClickedTime < 500) { + document.getElementById("double-click-output").textContent = + "double click!"; + } + lastClickedTime = currentTime; +}); + +// Task9. Create a function called jokeCreator that has three parameters: +// shouldTellFunnyJoke (boolean), +// logFunnyJoke (function), +// and logBadJoke (function). +// If shouldTellFunnyJoke is true +// it should call logFunnyJoke, +// which displays a funny joke on the page. +// Otherwise it should call logBadJoke, +// which displays a bad joke on the page. + +function jokeCreator(shouldTellFunnyJoke, logFunnyJoke, logBadJoke) { + if (shouldTellFunnyJoke) { + logFunnyJoke(); + } else { + logBadJoke(); + } +} +function logFunnyJoke() { + document.getElementById("joke-output").textContent = + "Why don’t programmers like nature? Because it has too many bugs."; +} +function logBadJoke() { + document.getElementById("joke-output").textContent = + "What do you call a fish wearing a bowtie? Sofishticated."; +} + +document.getElementById("btn-funny").addEventListener("click", function () { + jokeCreator(true, logFunnyJoke, logBadJoke); +}); + +document.getElementById("btn-bad").addEventListener("click", function () { + jokeCreator(false, logFunnyJoke, logBadJoke); +}); diff --git a/courses/frontend/advanced-javascript/week2/Task3/task3.html b/courses/frontend/advanced-javascript/week2/Task3/task3.html index 62ea33e66..7c2f89345 100644 --- a/courses/frontend/advanced-javascript/week2/Task3/task3.html +++ b/courses/frontend/advanced-javascript/week2/Task3/task3.html @@ -6,7 +6,7 @@ Document -

Task 3

+

Function as a variable

diff --git a/courses/frontend/advanced-javascript/week2/Task4/task4.css b/courses/frontend/advanced-javascript/week2/Task4/task4.css new file mode 100644 index 000000000..70f5aebd7 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Task4/task4.css @@ -0,0 +1,216 @@ +* { + box-sizing: border-box; +} + +html, +body { + margin: 0; + font-family: Arial, sans-serif; +} +body { + display: flex; + align-items: center; + justify-content: center; + padding: 1.6rem; + background: black; + color: white; + min-height: 100vh; +} + +.game-container { + width: 100%; + max-width: 760px; + background: rgba(7, 12, 32, 0.88); + border: 1px solid rgba(255, 255, 255, 0.08); + border-radius: 1.6rem; + padding: 28px; + display: flex; + flex-direction: column; +} + +.h1 { + font-size: 2.5rem; + margin: 0 0 1.6rem; + font-weight: 800; + line-height: 1.2; + text-align: center; +} +.title-gradient { + background: linear-gradient(90deg, #ffffff, #5ea7ff, #9b6bff, #ff69b4); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; + color: transparent; +} +.title-white { + color: white; +} + +.subtitle { + margin: 0 0 1.6rem; + color: white; + text-align: center; +} + +.controls { + display: flex; + gap: 1.6rem; + justify-content: center; + flex-wrap: wrap; +} + +input { + width: 240px; + padding: 1rem 1.6rem; + border-radius: 14px; + border: 1px solid rgba(255, 255, 255, 0.14); + background: rgba(255, 255, 255, 0.06); + color: white; + font-size: 1rem; +} + +input::placeholder { + color: white; +} + +input:focus { + border-color: #5ea7ff; + box-shadow: 0 0 0 3px rgba(94, 167, 255, 0.18); +} + +button { + padding: 1rem 1.6rem; + border: none; + border-radius: 14px; + background: linear-gradient(90deg, #4da3ff, #9b6bff, #ff8c6b); + color: white; + font-size: 1rem; + font-weight: 700; + cursor: pointer; + box-shadow: 0 10px 24px rgba(88, 115, 255, 0.28); + transition: + transform 0.15s ease, + opacity 0.15s ease; +} + +button:hover { + transform: translateY(-1px); + opacity: 0.95; +} +.timer-pill { + width: fit-content; + margin: 0 auto 1.6rem; + padding: 1rem 1.6rem; + border-radius: 999px; + color: white; + font-weight: 700; + font-size: 1rem; +} + +.scoreboard { + display: flex; + gap: 1.6rem; + flex-wrap: wrap; +} +.player-box { + flex: 1; + min-width: 240px; + border-radius: 18px; + padding: 1.6rem 1.6rem; + text-align: center; + background: rgba(255, 255, 255, 0.03); +} + +.player-box h2 { + margin: 0 0 1.6rem; + color: white; + font-size: 1.5rem; +} + +.player-s { + border: 2px solid rgba(255, 72, 170, 0.6); + box-shadow: 0 0 24px rgba(255, 72, 170, 0.12); +} + +.player-l { + border: 2px solid royalblue; + box-shadow: 0 0 24px rgba(64, 156, 255, 0.12); +} +.player-box p { + margin: 1.6rem 0 0; + color: white; + font-size: 1.1rem; +} + +#score-s, +#score-l { + display: inline-block; + font-size: 4rem; + font-weight: 800; + line-height: 1; +} + +#score-s { + color: #ff5bb5; +} + +#score-l { + color: royalblue; +} + +.instruction { + margin: 1.6rem 0 0.8rem; + padding: 1rem 1.6rem; + border-radius: 14px; + background: #0b1027; + color: white; + text-align: center; +} + +#result { + min-height: 30px; + margin: 1.6rem 0 0; + font-size: 1.15rem; + font-weight: 700; + color: white; + text-align: center; +} + +.win-message { + position: fixed; + inset: 0; + background: #0b1027; + display: flex; + align-items: center; + justify-content: center; + z-index: 9999; +} + +.hidden { + display: none; +} +#win-content { + width: 90%; + max-width: 420px; + padding: 1.6rem 1.6rem; + border-radius: 22px; + text-align: center; + background: #0b1027; + border: 1px solid rgba(255, 255, 255, 0.1); + box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45); +} + +#win-title { + margin-top: 0; + margin-bottom: 1.6rem; + color: white; +} + +#win-subtitle { + margin-bottom: 1.6rem; + color: rgba(255, 255, 255, 0.8); +} + +#play-again-btn { + min-width: 150px; +} diff --git a/courses/frontend/advanced-javascript/week2/Task4/task4.html b/courses/frontend/advanced-javascript/week2/Task4/task4.html new file mode 100644 index 000000000..f351bc729 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Task4/task4.html @@ -0,0 +1,57 @@ + + + + + + Fastest clicker + + + + +
+ +

+ The Fastest Presser
+ in this Realm +

+

Two players. One keyboard. Press fast to win!

+ +
+ + +
+ +
+ Time Left: 0 +
+ +
+ +
+

Player S

+

S count: 0

+
+
+

Player L

+

L count: 0

+
+
+

Press S or L as FAST as you can!

+

+ + +
+ + + + + + + \ No newline at end of file diff --git a/courses/frontend/advanced-javascript/week2/Task4/task4.js b/courses/frontend/advanced-javascript/week2/Task4/task4.js new file mode 100644 index 000000000..431889427 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/Task4/task4.js @@ -0,0 +1,123 @@ +const timeInput = document.getElementById("time-input"); +const startButton = document.getElementById("start-btn"); +const countdownOutput = document.getElementById("countdown-output"); +const scoreS = document.getElementById("score-s"); +const scoreL = document.getElementById("score-l"); +const result = document.getElementById("result"); + +const winMessage = document.getElementById("win-message"); +const winTitle = document.getElementById("win-title"); +const winSubtitle = document.getElementById("win-subtitle"); +const playAgainButton = document.getElementById("play-again-btn"); + +let intervalId = null; +let gameRunning = false; +let countS = 0; +let countL = 0; + +startButton.addEventListener("click", function () { + //stop the previous countdown if any + clearInterval(intervalId); + intervalId = null; + hideWinMessage(); + + //get value from input + let timeLeft = Number(timeInput.value); + + //input check + if (timeLeft <= 0 || !timeLeft) { + countdownOutput.textContent = "Enter a valid number"; + return; + } + + countS = 0; + countL = 0; + scoreS.textContent = 0; + scoreL.textContent = 0; + result.textContent = ""; + gameRunning = true; + + //show the countdown + countdownOutput.textContent = timeLeft; + + //start the countdown + intervalId = setInterval(function () { + timeLeft--; + countdownOutput.textContent = timeLeft; + + if (timeLeft <= 0) { + clearInterval(intervalId); + intervalId = null; + gameRunning = false; + countdownOutput.textContent = "Time's up!"; + + let finalMessage = ""; + + if (countS > countL) { + result.textContent = "S wins 🎉"; + finalMessage = `Player S wins with ${countS} clicks!`; + } else if (countL > countS) { + result.textContent = "L wins 🎉"; + finalMessage = `Player L wins with ${countL} clicks!`; + } else { + result.textContent = "It's a draw 🤝"; + finalMessage = `It's a draw! Both players got ${countS} clicks.`; + } + showWinMessage(finalMessage); + } + }, 1000); +}); + + +document.addEventListener("keydown", function (event) { + if (!gameRunning) { + return; + } + if (event.key === "s" || event.key === "S") { + countS++; + scoreS.textContent = countS; + } + if (event.key === "l" || event.key === "L") { + countL++; + scoreL.textContent = countL; + } +}); + + +// Show Win Message +function showWinMessage(message) { + winTitle.textContent = "🎉 Game Over! 🎉"; + winSubtitle.textContent = message; + winMessage.classList.remove("hidden"); + + confetti({ + particleCount: 150, + spread: 120, + origin: { y: 0.6 } + }); +} + + +function hideWinMessage() { + winMessage.classList.add("hidden"); +} + +function resetGame() { + clearInterval(intervalId); + intervalId = null; + gameRunning = false; + + countS = 0; + countL = 0; + + scoreS.textContent = "0"; + scoreL.textContent = "0"; + countdownOutput.textContent = "0"; + result.textContent = ""; +} + +playAgainButton.addEventListener("click", function () { + hideWinMessage(); + resetGame(); + timeInput.value = ""; +}); \ No newline at end of file From 1e4dd680a5b0c43a6009f94ae3c260679bfcc77f Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 1 Apr 2026 21:27:58 +0200 Subject: [PATCH 25/33] Add currencyCalculator files --- .../week3/assignment/currencyCalculator.css | 122 ++++++++++++++++++ .../week3/assignment/currencyCalculator.html | 57 ++++++++ .../week3/assignment/currencyCalculator.js | 49 +++++++ 3 files changed, 228 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.css create mode 100644 courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.html create mode 100644 courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.js diff --git a/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.css b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.css new file mode 100644 index 000000000..0069a226c --- /dev/null +++ b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.css @@ -0,0 +1,122 @@ +* { + box-sizing: border-box; +} + +body { + background:rgb(213, 207, 207); + font-family: Georgia, "Times New Roman", serif; + display: flex; + justify-content: center; + align-items: flex-start; + min-height: 100vh; + padding: 1rem; +} + +.converter-container { + width: 100%; + max-width: 700px; + background: #f3f3f3; + border-radius: 1rem; + box-shadow: 0 4px 8px rgba(79, 208, 218, 0.2); + padding: 3rem; + text-align: center; +} + +h1 { + font-family: Georgia, "Times New Roman", serif; + font-size: 2rem; + line-height: 1.1; + font-weight: bold; + color: #111; + margin-bottom: 0.75rem; + margin-top: 1rem; +} + +.title-gradient { + color: #111; +} + +hr { + border: none; + border-top: 2px solid #bdbdbd; + margin-bottom: 0.75rem; + margin-top: 1rem; +} + +.input-container input { + width: 100%; + height: 3rem; + border: 1px solid #c6c6c6; + border-radius: 0.5rem; + padding: 0.375rem 0.5rem; + font-size: 1.25rem; + background: #efefef; + margin-bottom: 2rem; + margin-top: 1rem; +} + +.currency-row { + display: flex; + align-items: center; + justify-content: space-between; + gap: 0.5rem; + margin-bottom: 0.875rem; +} + + +.currency-field { + display: flex; + align-items: center; + gap: 0.5rem; + flex: 1; + font-family: Georgia, "Times New Roman", serif; + font-size: 1.25rem; +} + +.currency-row select { + width: 100%; + height: 3rem; + border: 1px solid #bdbdbd; + border-radius: 0.5rem; + background: white; + font-size: 1.25rem; + padding: 0.375rem 0.5rem; +} + + +.rate-text { + font-size: 1.25rem; + color: #b59a8a; + margin-bottom: 0.75rem; +} + +#convert-btn { + width: 100%; + height: 3rem; + border: none; + border-radius: 0.5rem; + background: #4fd0da; + color: #111; + font-size: 1.7rem; + font-family: Georgia, "Times New Roman", serif; + font-weight: bold; + cursor: pointer; + margin-bottom: 0.75rem; + margin-top: 1rem; +} + +.output-container { + width: 100%; +height: fit-content; + background: #bfeff2; + border-radius: 0.5rem; + padding: 1rem 0.5rem; + margin-bottom: 0.75rem; + margin-top: 1rem; +} + +#result-text { + font-size: 1.25rem; + font-weight: bold; + color: #111; +} \ No newline at end of file diff --git a/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.html b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.html new file mode 100644 index 000000000..069ab637d --- /dev/null +++ b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.html @@ -0,0 +1,57 @@ + + + + + + + + + Currency Converter + + +
+

+ Currency Converter +

+ +
+ + +
+ +
+ +
+
+ + +
+ +
+ + +
+
+ + + + +
+

0

+
+
+ + + + \ No newline at end of file diff --git a/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.js b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.js new file mode 100644 index 000000000..c978e3693 --- /dev/null +++ b/courses/frontend/advanced-javascript/week3/assignment/currencyCalculator.js @@ -0,0 +1,49 @@ +//API part + +//Fetch exchange rates from the API and populate the dropdowns with currency codes +const exchangeDataURL = "https://open.er-api.com/v6/latest/USD"; + +const ratesResponse = await fetch(exchangeDataURL); +const currencyRates = await ratesResponse.json(); + +const currencyCodes = Object.keys(currencyRates.rates); + +//DOM elements + +// Populate the dropdowns with currency codes + +document.getElementById('dropdown-from-currency').innerHTML = currencyCodes + .map(code => ``).join(''); + +document.getElementById('dropdown-to-currency').innerHTML = currencyCodes + .map(code => ``).join(''); + +// Set default currencies +document.getElementById('dropdown-from-currency').value = "EUR"; +document.getElementById('dropdown-to-currency').value = "DKK"; + +// Get references to Inputs, currency selectors, button, and result display +const inputAmount = document.getElementById('input-amount'); +const fromCurrencySelect = document.getElementById('dropdown-from-currency'); +const toCurrencySelect = document.getElementById('dropdown-to-currency'); +const convertBtn = document.getElementById('convert-btn'); +const outputAmount = document.getElementById('output-amount'); + +// Connect the button +convertBtn.addEventListener('click', convertCurrency); + +// Function to convert currency + +function convertCurrency() { + const inputAmountValue = Number(inputAmount.value); + const fromCurrency = fromCurrencySelect.value; + const toCurrency = toCurrencySelect.value; + + if (inputAmountValue <= 0 || isNaN(inputAmountValue)) { + outputAmount.textContent = "Please enter a valid amount and select valid currencies."; + return; + } + const convertedAmount = (inputAmountValue / currencyRates.rates[fromCurrency]) * currencyRates.rates[toCurrency]; + + outputAmount.textContent = `${inputAmountValue} ${fromCurrency} = ${convertedAmount.toFixed(2)} ${toCurrency}`; +} \ No newline at end of file From c7dfec007797938f30b7384847a9de7bb043aae9 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 13 Apr 2026 14:15:10 +0200 Subject: [PATCH 26/33] Create screenshot generator app HTML structure --- .../week4/screenshotGenerator.html | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator.html diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator.html b/courses/frontend/advanced-javascript/week4/screenshotGenerator.html new file mode 100644 index 000000000..5e81ed40c --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator.html @@ -0,0 +1,56 @@ + + + + + + Website Screenshot Generator + + + + + +
+
+

Website Screenshot Generator

+
+ +
+
+ + + +
+ +

+ +
+

Preview

+
+ +
+
+ +
+

Saved Screenshots

+
+
+
+ + + + \ No newline at end of file From feb2f8153be8b70205dbb93c9a60e581ae181189 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 13 Apr 2026 19:11:40 +0200 Subject: [PATCH 27/33] init: add initial styles --- .../week4/screenshotGenerator.css | 167 ++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator.css diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator.css b/courses/frontend/advanced-javascript/week4/screenshotGenerator.css new file mode 100644 index 000000000..0999ef850 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator.css @@ -0,0 +1,167 @@ +:root { + --bg-page: #fff; + --bg-app: rgb(213, 209, 209); + --bg-section: #eaf1f2; + --bg-input: #efefef; + --bg-preview: #fff; + --bg-button: #4167e7; + + --text-main: #111; + --text-light: #fff; + --text-error: #b59a8a; + + --border: #9cabca; + --border-input: #c6c6c6; + + --shadow: 0 4px 8px rgba(200, 241, 244, 0.2); + + --radius-sm: 0.5rem; + --radius-md: 1rem; + + --space-sm: 0.5rem; + --space-md: 0.75rem; + --space-lg: 1rem; + --space-xl: 2rem; + + --font-main: Georgia, "Times New Roman", serif; + --max-width: 700px; + --control-height: 3rem; + --preview-height: 220px; +} + +body { + margin: 0; + padding: var(--space-xl); + background: var(--bg-page); + color: var(--text-main); + font-family: var(--font-main); +} + +img { + display: block; + max-width: 100%; +} + +button, +input { + font: inherit; +} + +h1, +h2 { + margin: 0; +} + +.app-container { + max-width: var(--max-width); + margin: 0 auto; + padding: var(--space-lg); + background: var(--bg-app); + border-radius: var(--radius-md); + box-shadow: var(--shadow); +} + +.hero { + margin-bottom: var(--space-xl); + padding: var(--space-xl) var(--space-lg); + background: var(--bg-button); + border-radius: var(--radius-md); + text-align: center; +} + +.app-title { + color: var(--text-light); + font-size: 2rem; + line-height: 1.1; +} + +.content-section { + margin-bottom: var(--space-xl); + padding: var(--space-lg); + background: var(--bg-section); + border: 1px solid var(--border); + border-radius: var(--radius-md); +} + +.input-container { + display: grid; + gap: var(--space-md); + margin-bottom: var(--space-lg); +} + +#input-url, +button { + min-height: var(--control-height); + border-radius: var(--radius-sm); +} + +#input-url { + padding: var(--space-sm) var(--space-md); + border: 1px solid var(--border-input); + background: var(--bg-input); +} + +button { + border: none; + background: var(--bg-button); + color: var(--text-light); + cursor: pointer; +} + +button:disabled { + opacity: 0.6; + cursor: not-allowed; +} + +.error-message { + min-height: 1.5rem; + margin: 0 0 var(--space-lg); + color: var(--text-error); +} + +.output-screenshot h2, +.content-section h2 { + margin-bottom: var(--space-md); +} + +.preview-content { + display: flex; + align-items: center; + justify-content: center; + min-height: var(--preview-height); + margin-bottom: var(--space-md); + padding: var(--space-md); + border: 1px dashed var(--border); + border-radius: var(--radius-sm); + background: var(--bg-preview); + overflow: hidden; +} + +.saved-screenshot-container { + display: grid; + gap: var(--space-md); +} + +.visually-hidden { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0 0 0 0); + white-space: nowrap; + border: 0; +} + +@media (min-width: 640px) { + .input-container { + grid-template-columns: 1fr auto; + } + + #capture-screenshot-btn, + #save-screenshot-btn { + width: auto; + padding-inline: 1.25rem; + } +} \ No newline at end of file From dce7bd3e7e211fb18f4fcfaa09c7089b2bfebad3 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 15 Apr 2026 11:17:52 +0200 Subject: [PATCH 28/33] feat:add error handling and validation for screenshot saving --- .../week4/screenshotGenerator.js | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator.js diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator.js new file mode 100644 index 000000000..4b09262f6 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator.js @@ -0,0 +1,111 @@ +import { RAPID_API_KEY, RAPID_API_HOST } from "./secret.js"; + +//static on top of all +//static do not use private variables + +//default parameters above constructor +// graduate = fault; +//new + this is done + +//ERROR HANDLING + +class AppError extends Error { + constructor(message, code = 500) { + super(message); + this.name = this.constructor.name; + this.code = code; + } + + toUserMessage() { + return this.message; + } +} + +class ValidationError extends AppError { + constructor(message, code = 400) { + super(message, code); + } +} + +class SaveError extends AppError { + constructor(message, code = 400) { + super(message, code); + } +} + +class ApiError extends AppError { + constructor(message, code = 500) { + super(message, code); + } +} + +class NetworkError extends AppError { + constructor(message = "No internet connection. Please try again.", code = 0) { + super(message, code); + } +} + +class UrlValidator { + static validate(url) { + let userUrl = url.trim(); + + // Validate that the input is not empty + if (!userUrl) { + throw new ValidationError("Please enter a website URL"); + } + + // Validate that the input starts with http:// or https:// + if (!userUrl.startsWith("http://") && !userUrl.startsWith("https://")) { + userUrl = "https://" + userUrl; + } + + try { + new URL(userUrl); + } catch { + throw new ValidationError("Please enter a valid URL"); + } + return userUrl; + } +} + +class SaveURL { + static validate(savedUrl, currentScreenshot) { + const trimmedUrl = savedUrl.trim(); + + // Validate that the input is not empty + if (!currentScreenshot) { + throw new SaveError( + "No screenshot to save. Please capture a screenshot first.", + 400, + ); + } + + if (!trimmedUrl) { + throw new SaveError("Please enter an URL to save the screenshot.", 400); + } + + try { + new URL(trimmedUrl); + } catch { + throw new SaveError("Please enter a valid URL.", 400); + } + + return trimmedUrl; + } +} + +class ApiResponseHandler { + static async validate(response) { + if (!response.ok) { + const errorBody = await response.text(); + console.error("API error:", errorBody); + throw new ApiError( + "Could not generate screenshot. Please try again.", + response.status, + ); + } + + return response; + } +} + From 731764746589ab09bb2eea11247bdd2b676fa285 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 15 Apr 2026 11:19:00 +0200 Subject: [PATCH 29/33] feat:add function to capture screenshot --- .../week4/screenshotGenerator.js | 122 ++++++++++++++++++ 1 file changed, 122 insertions(+) diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator.js index 4b09262f6..2198c9c18 100644 --- a/courses/frontend/advanced-javascript/week4/screenshotGenerator.js +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator.js @@ -109,3 +109,125 @@ class ApiResponseHandler { } } +// UI Logic + +const input = document.getElementById("input-url"); +const captureButton = document.getElementById("capture-screenshot-btn"); +const output = document.getElementById("output-screenshot"); +const error = document.getElementById("error-message"); +const saveButton = document.getElementById("save-screenshot-btn"); + +// Store current screenshot +let currentScreenshot = null; + +class Screenshot { + constructor(id, url, image, time) { + this.id = id; + this.url = url; + this.image = image; + this.time = time; + } + + render() { + const container = document.getElementById("output-screenshot"); + + // clear previous preview (optional) + container.innerHTML = ""; + const card = document.createElement("div"); + card.className = "screenshot-card"; + + const img = document.createElement("img"); + img.src = this.image; + img.alt = `Screenshot of ${this.url}`; + + const urlText = document.createElement("p"); + urlText.textContent = this.url; + + const timeText = document.createElement("p"); + timeText.textContent = `Captured at: ${new Date(this.time).toLocaleString()}`; + + const visitButton = document.createElement("button"); + visitButton.textContent = "Visit"; + visitButton.addEventListener("click", () => { + this.visitSavedUrl(); + }); + + const deleteButton = document.createElement("button"); + deleteButton.textContent = "Delete"; + deleteButton.addEventListener("click", () => { + this.delete(); + card.remove(); + }); + + card.appendChild(img); + card.appendChild(urlText); + card.appendChild(timeText); + card.appendChild(visitButton); + card.appendChild(deleteButton); + + container.appendChild(card); + } + + saveScreenshot() {} + deleteScreenshot() {} + visitSavedUrl() { + window.open(this.url, "_blank"); + } +} + +//Function to capture screenshot and display it + +captureButton.addEventListener("click", async () => { + error.textContent = ""; + + try { + const userUrl = UrlValidator.validate(input.value); + const apiUrl = `https://${RAPID_API_HOST}/v1/screenshots/image?url=${encodeURIComponent(userUrl)}`; + + const response = await fetch(apiUrl, { + method: "GET", + headers: { + "X-RapidAPI-Key": RAPID_API_KEY, + "X-RapidAPI-Host": RAPID_API_HOST, + }, + }); + + console.log("Status:", response.status); + console.log("Status text:", response.statusText); + + + await ApiResponseHandler.validate(response); + + const screenshotBlob = await response.blob(); + console.log("Blob:", screenshotBlob); + + const imageUrl = URL.createObjectURL(screenshotBlob); + console.log("Image URL:", imageUrl); + + currentScreenshot = new Screenshot( + null, + userUrl, + imageUrl, + new Date().toISOString(), + ); + console.log("Current Screenshot:", currentScreenshot); + + + + saveButton.disabled = false; + + currentScreenshot.render(); + } catch (err) { + if (err instanceof ValidationError) { + error.textContent = err.toUserMessage(); + } else if (err instanceof ApiError) { + error.textContent = err.toUserMessage(); + } else if (err instanceof TypeError) { + error.textContent = new NetworkError().toUserMessage(); + } else { + error.textContent = "Something went wrong."; + console.error(err); + } + } +}); + From 13a6429315584275f6672cf4141f165c9e70f577 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 15 Apr 2026 16:11:08 +0200 Subject: [PATCH 30/33] refactor:move error handling in separate module --- .../screenshotGenerator/errorHandling.js | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js new file mode 100644 index 000000000..e44bfb912 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js @@ -0,0 +1,58 @@ + +//custom error classes +export class AppError extends Error { + constructor(message, code = 500) { + super(message); + this.name = this.constructor.name; + this.statusCode = statusCode; + } + + toUserMessage() { + return "Something went wrong. Please try again later."; + } +} + +export class ValidationError extends AppError { + constructor(message) { + super(message); + this.name = "ValidationError"; + } + toUserMessage() { + return "Invalid input. Please check the URL and try again."; + } +} + +export class SaveError extends AppError { + constructor(message) { + super(message); + this.name = "SaveError"; + } + toUserMessage() { + return "Unable to save screenshot. Please try again."; + } +} + +export class ApiError extends AppError { + constructor(message, code = 500) { + super(message); + this.name = "ApiError"; + + } + toUserMessage() { + if (this.statusCode >= 500) { + return "Server error. Please try again later."; + } else if (this.statusCode >= 400) { + return "Client error. Please check your input and try again."; + } + } +} + +export class NetworkError extends AppError { + constructor(message) { + super(message); + this.name = "NetworkError"; + } + toUserMessage() { + return "No network connection. Please check your connection and try again."; + } +} \ No newline at end of file From 2d85450965b73d599370c1384dd021b05182f014 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Wed, 15 Apr 2026 18:00:00 +0200 Subject: [PATCH 31/33] feat:add Screenshot class with renderPreview and renderSavedCard methods --- .../week4/screenshotGenerator/screenshot.js | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js new file mode 100644 index 000000000..5c6049849 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js @@ -0,0 +1,66 @@ +export class Screenshot { + constructor(id, url, image, time) { + this.id = id; + this.url = url; + this.image = image; + this.time = time; + } + + renderPreview() { + const container = document.getElementById("output-screenshot"); + + // clear previous preview (optional) + container.innerHTML = ""; + + const card = document.createElement("div"); + card.className = "screenshot-card"; + + const img = document.createElement("img"); + img.src = this.image; + img.alt = `Screenshot of ${this.url}`; + + const urlText = document.createElement("p"); + urlText.textContent = this.url; + + const timeText = document.createElement("p"); + timeText.textContent = `Captured at: ${new Date(this.time).toLocaleString()}`; + + card.appendChild(img); +card.appendChild(urlText); +card.appendChild(timeText); +container.appendChild(card); + } + + renderSavedCard() { + const container = document.getElementById("saved-screenshot"); + const card = document.createElement("div"); + card.className = "screenshot-card"; + + const img = document.createElement("img"); + img.src = this.image; + img.alt = `Screenshot of ${this.url}`; + + const urlText = document.createElement("p"); + urlText.textContent = this.url; + + const timeText = document.createElement("p"); + timeText.textContent = `Captured at: ${new Date(this.time).toLocaleString()}`; + + const visitButton = document.createElement("button"); + visitButton.type = "button"; + visitButton.textContent = "Visit"; + visitButton.addEventListener("click", () => { + this.visitSavedUrl(); + }); + const deleteButton = document.createElement("button"); + deleteButton.textContent = "Delete"; + deleteButton.addEventListener("click", () => card.remove()); + + card.append(img, urlText, timeText, visitButton, deleteButton); + container.appendChild(card); + } + + visitSavedUrl() { + window.open(this.url, "_blank"); + } +} \ No newline at end of file From 357f2934556640fef0ea439315ffad9816e543d0 Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Fri, 17 Apr 2026 11:12:57 +0200 Subject: [PATCH 32/33] feat: finalize app with screenshot saving, UI improvements and README --- .../screenshotGenerator/captureScreenshot.js | 85 +++++++ .../screenshotGenerator/errorHandling.js | 51 ++-- .../screenshotGenerator/saveScreenshot.js | 74 ++++++ .../week4/screenshotGenerator/screenshot.js | 68 +++-- .../week4/screenshotGenerator/screenshot1.png | Bin 0 -> 87039 bytes .../week4/screenshotGenerator/screenshot2.png | Bin 0 -> 26954 bytes .../screenshotGenerator.html | 51 ++++ .../screenshotGenerator.js | 34 +++ .../week4/screenshotGenerator/secret.js | 7 + .../week4/screenshotGenerator/styles.css | 232 ++++++++++++++++++ .../week4/screenshotGenerator/validators.js | 50 ++++ 11 files changed, 609 insertions(+), 43 deletions(-) create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/captureScreenshot.js create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot1.png create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot2.png create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.html create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.js create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/styles.css create mode 100644 courses/frontend/advanced-javascript/week4/screenshotGenerator/validators.js diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/captureScreenshot.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/captureScreenshot.js new file mode 100644 index 000000000..36d278b41 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/captureScreenshot.js @@ -0,0 +1,85 @@ +import { ApiError, ValidationError, NetworkError } from "./errorHandling.js"; +import { UrlValidator } from "./validators.js"; +import { Screenshot } from "./screenshot.js"; +import { RAPID_API_KEY, RAPID_API_HOST } from "./secret.js"; + +class ApiResponseHandler { + static async validate(response) { + if (!response.ok) { + const errorBody = await response.text(); + console.error("API error:", errorBody); + throw new ApiError( + "Could not generate screenshot. Please try again.", + response.status, + ); + } + + return response; + } +} + +export async function captureScreenshot({ + input, + error, + saveButton, + setCurrentScreenshot, +}) { + error.textContent = ""; + + try { + const userUrl = UrlValidator.validate(input.value); + const apiUrl = `https://${RAPID_API_HOST}/v1/screenshots/image?url=${encodeURIComponent(userUrl)}`; + + const response = await fetch(apiUrl, { + method: "GET", + headers: { + "X-RapidAPI-Key": RAPID_API_KEY, + "X-RapidAPI-Host": RAPID_API_HOST, + }, + }); + + console.log("Status:", response.status); + console.log("Status text:", response.statusText); + + await ApiResponseHandler.validate(response); + + const screenshotBlob = await response.blob(); + console.log("Blob:", screenshotBlob); + + const imageUrl = await blobToDataUrl(screenshotBlob); + console.log("Image URL:", imageUrl); + + const screenshot = new Screenshot( + null, + userUrl, + imageUrl, + new Date().toISOString(), + ); + console.log("Current Screenshot:", screenshot); + + setCurrentScreenshot(screenshot); + saveButton.disabled = false; + + screenshot.renderPreview(); + } catch (err) { + if (err instanceof ValidationError) { + error.textContent = err.toUserMessage(); + } else if (err instanceof ApiError) { + error.textContent = err.toUserMessage(); + } else if (err instanceof TypeError) { + error.textContent = new NetworkError().toUserMessage(); + } else { + error.textContent = "Something went wrong."; + console.error(err); + } + } +} + +function blobToDataUrl(blob) { + return new Promise((resolve, reject) => { + const reader = new FileReader(); + reader.onloadend = () => resolve(reader.result); + reader.onerror = reject; + reader.readAsDataURL(blob); + }); +} diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js index e44bfb912..adfe5d00f 100644 --- a/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js @@ -1,10 +1,9 @@ - //custom error classes export class AppError extends Error { constructor(message, code = 500) { super(message); this.name = this.constructor.name; - this.statusCode = statusCode; + this.statusCode = code; } toUserMessage() { @@ -14,45 +13,45 @@ export class AppError extends Error { export class ValidationError extends AppError { constructor(message) { - super(message); - this.name = "ValidationError"; - } - toUserMessage() { + super(message); + this.name = "ValidationError"; + } + toUserMessage() { return "Invalid input. Please check the URL and try again."; } } export class SaveError extends AppError { constructor(message) { - super(message); - this.name = "SaveError"; - } - toUserMessage() { + super(message); + this.name = "SaveError"; + } + toUserMessage() { return "Unable to save screenshot. Please try again."; } } export class ApiError extends AppError { - constructor(message, code = 500) { - super(message); - this.name = "ApiError"; - - } - toUserMessage() { - if (this.statusCode >= 500) { - return "Server error. Please try again later."; - } else if (this.statusCode >= 400) { - return "Client error. Please check your input and try again."; - } + constructor(message, code = 500) { + super(message, code); + this.name = "ApiError"; + } + toUserMessage() { + if (this.statusCode >= 500) { + return "Server error. Please try again later."; + } else if (this.statusCode >= 400) { + return "Client error. Please check your input and try again."; } + return this.message; + } } export class NetworkError extends AppError { constructor(message) { - super(message); - this.name = "NetworkError"; - } - toUserMessage() { + super(message); + this.name = "NetworkError"; + } + toUserMessage() { return "No network connection. Please check your connection and try again."; } -} \ No newline at end of file +} diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js new file mode 100644 index 000000000..5bc1ff577 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js @@ -0,0 +1,74 @@ +import { SaveError } from "./errorHandling.js"; +import { NetworkError } from "./errorHandling.js"; +import { SaveValidator } from "./validators.js"; +import { Screenshot } from "./screenshot.js"; + +export async function saveScreenshot({ + currentScreenshot, + error, + crudCrudUrl, +}) { + error.textContent = ""; + + try { + SaveValidator.validate(currentScreenshot?.url, currentScreenshot); + + const response = await fetch(crudCrudUrl, { + headers: { "Content-Type": "application/json; charset=utf-8" }, + method: "POST", + body: JSON.stringify({ + url: currentScreenshot.url, + image: currentScreenshot.image, + time: currentScreenshot.time, + }), + }); + + if (!response.ok) { + throw new SaveError("Could not save screenshot.", response.status); + } + const savedData = await response.json(); + const savedScreenshot = new Screenshot( + savedData._id, + savedData.url, + savedData.image, + savedData.time, + ); + savedScreenshot.renderSavedCard(crudCrudUrl); + } catch (err) { + if (err instanceof SaveError) { + error.textContent = err.toUserMessage(); + } else if (err instanceof TypeError) { + error.textContent = new NetworkError().toUserMessage(); + } else { + error.textContent = "Could not save screenshot."; + console.error(err); + } + } +} + +export async function loadSavedScreenshots({ error, crudCrudUrl }) { + try { + const response = await fetch(crudCrudUrl); + + if (!response.ok) { + throw new SaveError("Could not load saved screenshots.", response.status); + } + + const screenshots = await response.json(); + const container = document.getElementById("saved-screenshot-container"); + container.innerHTML = ""; + + screenshots.forEach((item) => { + const screenshot = new Screenshot( + item._id, + item.url, + item.image, + item.time, + ); + screenshot.renderSavedCard(crudCrudUrl); + }); + } catch (err) { + console.error(err); + error.textContent = "Could not load saved screenshots."; + } +} diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js index 5c6049849..eddd21634 100644 --- a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot.js @@ -9,11 +9,9 @@ export class Screenshot { renderPreview() { const container = document.getElementById("output-screenshot"); - // clear previous preview (optional) container.innerHTML = ""; const card = document.createElement("div"); - card.className = "screenshot-card"; const img = document.createElement("img"); img.src = this.image; @@ -25,42 +23,78 @@ export class Screenshot { const timeText = document.createElement("p"); timeText.textContent = `Captured at: ${new Date(this.time).toLocaleString()}`; - card.appendChild(img); -card.appendChild(urlText); -card.appendChild(timeText); -container.appendChild(card); + card.append(img, urlText, timeText); + container.appendChild(card); } - renderSavedCard() { - const container = document.getElementById("saved-screenshot"); - const card = document.createElement("div"); - card.className = "screenshot-card"; + renderSavedCard(crudCrudUrl) { + const container = document.getElementById("saved-screenshot-container"); + const card = document.createElement("article"); + card.className = "saved-card"; + const savedImageContainer = document.createElement("div"); + savedImageContainer.className = "saved-card-image"; - const img = document.createElement("img"); - img.src = this.image; - img.alt = `Screenshot of ${this.url}`; + if (this.image) { + const img = document.createElement("img"); + img.src = this.image; + img.alt = `Screenshot of ${this.url}`; + savedImageContainer.appendChild(img); + } + const content = document.createElement("div"); + content.className = "saved-card-content"; const urlText = document.createElement("p"); + urlText.className = "saved-card-url"; urlText.textContent = this.url; const timeText = document.createElement("p"); + timeText.className = "saved-card-time"; timeText.textContent = `Captured at: ${new Date(this.time).toLocaleString()}`; + const actions = document.createElement("div"); + actions.className = "saved-card-actions"; + const visitButton = document.createElement("button"); visitButton.type = "button"; visitButton.textContent = "Visit"; + visitButton.className = "visit-button"; + visitButton.addEventListener("click", () => { this.visitSavedUrl(); }); - const deleteButton = document.createElement("button"); + + const deleteButton = document.createElement("button"); + deleteButton.type = "button"; deleteButton.textContent = "Delete"; - deleteButton.addEventListener("click", () => card.remove()); + deleteButton.className = "delete-button"; + deleteButton.addEventListener("click", async () => { + await this.delete(crudCrudUrl, card); + }); - card.append(img, urlText, timeText, visitButton, deleteButton); + actions.append(visitButton, deleteButton); + content.append(urlText, timeText, actions); + + card.append(savedImageContainer, content); container.appendChild(card); } visitSavedUrl() { window.open(this.url, "_blank"); } -} \ No newline at end of file + + async delete(crudCrudUrl, cardElement) { + try { + const response = await fetch(`${crudCrudUrl}/${this.id}`, { + method: "DELETE", + }); + + if (!response.ok) { + throw new Error("Delete failed"); + } + + cardElement.remove(); + } catch (error) { + console.error("Could not delete screenshot:", error); + } + } +} diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot1.png b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshot1.png new file mode 100644 index 0000000000000000000000000000000000000000..22fa3a2f9295e09f48efb8654ef136f6c694e4c4 GIT binary patch literal 87039 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�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�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�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 MSv8q5>9;}u0m}$?h5!Hn literal 0 HcmV?d00001 diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.html b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.html new file mode 100644 index 000000000..755c46736 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.html @@ -0,0 +1,51 @@ + + + + + + Website Screenshot Generator + + + + + +
+
+

Website Screenshot Generator

+
+ +
+
+ + + +
+ +

+ +
+

Preview

+
+ +
+
+ +
+

Saved Screenshots

+
+
+
+ + + + diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.js new file mode 100644 index 000000000..9f33a8f95 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/screenshotGenerator.js @@ -0,0 +1,34 @@ +import { captureScreenshot } from "./captureScreenshot.js"; +import { saveScreenshot, loadSavedScreenshots } from "./saveScreenshot.js"; +import { CRUDCRUD_RESOURCE_URL } from "./secret.js"; + +const input = document.getElementById("input-url"); +const captureButton = document.getElementById("capture-screenshot-btn"); +const error = document.getElementById("error-message"); +const saveButton = document.getElementById("save-screenshot-btn"); + +let currentScreenshot = null; + +captureButton.addEventListener("click", async () => { + await captureScreenshot({ + input, + error, + saveButton, + setCurrentScreenshot: (screenshot) => { + currentScreenshot = screenshot; + }, + }); +}); + +saveButton.addEventListener("click", async () => { + await saveScreenshot({ + currentScreenshot, + error, + crudCrudUrl: CRUDCRUD_RESOURCE_URL, + }); +}); + +loadSavedScreenshots({ + error, + crudCrudUrl: CRUDCRUD_RESOURCE_URL, +}); diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js new file mode 100644 index 000000000..0076f59c7 --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js @@ -0,0 +1,7 @@ +export const RAPID_API_KEY = + "c15db10b25mshc6f72f9459393d6p137670jsnf9b17f4b05c6"; + +export const RAPID_API_HOST = + "website-screenshot-capture-api-by-apirobots.p.rapidapi.com"; +export const CRUDCRUD_RESOURCE_URL = + "https://crudcrud.com/api/9c092331f82c489490264575a5368489/screenshots"; diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/styles.css b/courses/frontend/advanced-javascript/week4/screenshotGenerator/styles.css new file mode 100644 index 000000000..48035060b --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/styles.css @@ -0,0 +1,232 @@ +:root { + --bg-page: #fff; + --bg-app: rgb(213, 209, 209); + --bg-input: #efefef; + --bg-preview: #fff; + --bg-button: #4167e7; + + --text-main: #111; + --text-light: #fff; + --text-error: #b59a8a; + + --border: #9cabca; + --border-input: #c6c6c6; + + --shadow: 0 4px 8px rgba(200, 241, 244, 0.2); + + --radius-sm: 0.5rem; + --radius-md: 1rem; + + --space-sm: 0.5rem; + --space-md: 0.75rem; + --space-lg: 1rem; + --space-xl: 2rem; + + --font-main: Georgia, "Times New Roman", serif; + --max-width: 40rem; + --control-height: 2rem; + --preview-height: rem; +} + +body { + margin: 0; + padding: var(--space-xl); + background: var(--bg-page); + color: var(--text-main); + font-family: var(--font-main); +} + +img { + display: block; + max-width: 100%; +} + +button, +input { + font: inherit; +} + +h1, +h2 { + margin: 0; + padding: var(--space-sm); +} + +.app-container { + max-width: var(--max-width); + margin: 0 auto; + padding: var(--space-lg); + background: var(--bg-app); + border-radius: var(--radius-md); + box-shadow: var(--shadow); +} + +.hero { + margin-bottom: var(--space-md); + padding: var(--space-xl) var(--space-lg); + background: var(--bg-button); + border-radius: var(--radius-md); + text-align: center; +} + +.app-title { + color: var(--text-light); + font-size: 2rem; + line-height: 1.1; +} + +.input-container { + display: grid; + gap: var(--space-md); + margin-bottom: var(--space-lg); +} + +#input-url, +button { + min-height: var(--control-height); + border-radius: var(--radius-sm); +} + +#input-url { + padding: var(--space-sm) var(--space-md); + border: 1px solid var(--border-input); + background: var(--bg-input); +} + +button { + border: none; + background: var(--bg-button); + color: var(--text-light); + cursor: pointer; + width: auto; +} + +button:disabled { + opacity: 0.6; + cursor: not-allowed; +} + +.error-message { + min-height: 1.5rem; + margin: 0 0 var(--space-sm); + color: var(--text-error); +} + +.output-screenshot h2, +.content-section h2 { + margin-bottom: var(--space-md); +} + +.preview-content { + display: flex; + align-items: center; + justify-content: center; + min-height: var(--preview-height); + margin-bottom: var(--space-md); + padding: var(--space-md); + border: 1px dashed var(--border); + border-radius: var(--radius-sm); + background: var(--bg-preview); + overflow: hidden; +} +.preview-content img { + max-width: 100%; + max-height: 15rem; + object-fit: cover; + border-radius: 0.5rem; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); +} + +.saved-screenshot-container { + display: grid; + gap: var(--space-md); + margin-top: 1rem; +} + +.saved-card { + display: grid; + grid-template-columns: 180px 1fr; + gap: 1rem; + align-items: start; + + padding: 1rem; + background: #f5f2f2; + border: 1px solid var(--border); + border-radius: 1rem; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); +} + +.saved-card-image { + width: 12rem; +} + +.saved-card-image img { + display: block; + width: 100%; + height: 9rem; + object-fit: cover; + border-radius: 0.75rem; + border: 1px solid var(--border-input); +} + +.saved-card-content { + display: flex; + flex-direction: column; + justify-content: space-between; + min-height: 120px; + padding: var(--space-lg); +} + +.saved-card-url, +.saved-card-time { + margin: 0; +} + +.saved-card-url { + font-size: 1.1rem; + font-weight: 600; + word-break: break-word; +} + +.saved-card-time { + margin-top: 0.5rem; + color: #333; +} + +.saved-card-actions { + display: flex; + gap: 1.5rem; + margin-top: 1rem; +} + +.saved-card-actions button { + min-width: fit-content; +} +.visually-hidden { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0 0 0 0); + white-space: nowrap; + border: 0; +} +.delete-button { + background-color: #da5344; +} +.visit-button { + background-color: #1bba40; +} +@media (min-width: 640px) { + .input-container { + grid-template-columns: 1fr auto; + } + + #capture-screenshot-btn, + #save-screenshot-btn { + width: auto; + padding-inline: 1.25rem; + } +} diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/validators.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/validators.js new file mode 100644 index 000000000..ef6a4580e --- /dev/null +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/validators.js @@ -0,0 +1,50 @@ +import { ValidationError, SaveError } from "./errorHandling.js"; + +export class UrlValidator { + static validate(url) { + let userUrl = url.trim(); + + // Validate that the input is not empty + if (!userUrl) { + throw new ValidationError("Please enter a website URL"); + } + + // Validate that the input starts with http:// or https:// + if (!userUrl.startsWith("http://") && !userUrl.startsWith("https://")) { + userUrl = "https://" + userUrl; + } + + try { + new URL(userUrl); + } catch { + throw new ValidationError("Please enter a valid URL"); + } + return userUrl; + } +} + +export class SaveValidator { + static validate(savedUrl, currentScreenshot) { + const trimmedUrl = savedUrl?.trim() || ""; + + // Validate that the input is not empty + if (!currentScreenshot) { + throw new SaveError( + "No screenshot to save. Please capture a screenshot first.", + 400, + ); + } + + if (!trimmedUrl) { + throw new SaveError("Please enter a URL to save the screenshot.", 400); + } + + try { + new URL(trimmedUrl); + } catch { + throw new SaveError("Please enter a valid URL.", 400); + } + + return trimmedUrl; + } +} From e86f439a5103cef92db902db6aa8e73404a507da Mon Sep 17 00:00:00 2001 From: Liudmila Siamionava Date: Mon, 20 Apr 2026 15:25:01 +0200 Subject: [PATCH 33/33] fix: handle 413 error correctly and improve error messages --- .../screenshotGenerator/errorHandling.js | 18 +++++++++++++--- .../screenshotGenerator/saveScreenshot.js | 21 +++++++++++++++---- .../week4/screenshotGenerator/secret.js | 2 +- 3 files changed, 33 insertions(+), 8 deletions(-) diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js index adfe5d00f..9d361461e 100644 --- a/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/errorHandling.js @@ -22,15 +22,27 @@ export class ValidationError extends AppError { } export class SaveError extends AppError { - constructor(message) { - super(message); + constructor(message, code = 500) { + super(message, code); this.name = "SaveError"; } + toUserMessage() { + if (this.statusCode === 413) { + return "Could not save the screenshot. Please try again later."; + } + + if (this.statusCode >= 500) { + return "Server error. Please try again later."; + } + + if (this.statusCode >= 400) { + return "Unable to save screenshot. Please try again."; + } + return "Unable to save screenshot. Please try again."; } } - export class ApiError extends AppError { constructor(message, code = 500) { super(message, code); diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js index 5bc1ff577..d235b0e11 100644 --- a/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/saveScreenshot.js @@ -1,4 +1,5 @@ import { SaveError } from "./errorHandling.js"; +import { AppError } from "./errorHandling.js"; import { NetworkError } from "./errorHandling.js"; import { SaveValidator } from "./validators.js"; import { Screenshot } from "./screenshot.js"; @@ -35,10 +36,12 @@ export async function saveScreenshot({ ); savedScreenshot.renderSavedCard(crudCrudUrl); } catch (err) { - if (err instanceof SaveError) { + if (err instanceof AppError) { error.textContent = err.toUserMessage(); } else if (err instanceof TypeError) { - error.textContent = new NetworkError().toUserMessage(); + error.textContent = new NetworkError( + "Network request failed.", + ).toUserMessage(); } else { error.textContent = "Could not save screenshot."; console.error(err); @@ -46,7 +49,9 @@ export async function saveScreenshot({ } } + export async function loadSavedScreenshots({ error, crudCrudUrl }) { + error.textContent = ""; try { const response = await fetch(crudCrudUrl); @@ -68,7 +73,15 @@ export async function loadSavedScreenshots({ error, crudCrudUrl }) { screenshot.renderSavedCard(crudCrudUrl); }); } catch (err) { - console.error(err); - error.textContent = "Could not load saved screenshots."; + if (err instanceof AppError) { + error.textContent = err.toUserMessage(); + } else if (err instanceof TypeError) { + error.textContent = new NetworkError( + "Network request failed.", + ).toUserMessage(); + } else { + error.textContent = "Could not load saved screenshots."; + console.error(err); + } } } diff --git a/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js b/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js index 0076f59c7..f5051e377 100644 --- a/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js +++ b/courses/frontend/advanced-javascript/week4/screenshotGenerator/secret.js @@ -4,4 +4,4 @@ export const RAPID_API_KEY = export const RAPID_API_HOST = "website-screenshot-capture-api-by-apirobots.p.rapidapi.com"; export const CRUDCRUD_RESOURCE_URL = - "https://crudcrud.com/api/9c092331f82c489490264575a5368489/screenshots"; + "https://crudcrud.com/api/b13fc8abca104a79971d58ca79414970/screenshots";