From 86a3d98ee72c88def6b9e25e096c19d9ffc49684 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Sun, 19 Oct 2025 15:16:42 +0200 Subject: [PATCH 01/40] hyf --- .../foundation/git/html-css/week1/index.css | 94 +++++++++++++++++++ .../foundation/git/html-css/week1/index.html | 69 ++++++++++++++ 2 files changed, 163 insertions(+) create mode 100644 courses/foundation/git/html-css/week1/index.css create mode 100644 courses/foundation/git/html-css/week1/index.html diff --git a/courses/foundation/git/html-css/week1/index.css b/courses/foundation/git/html-css/week1/index.css new file mode 100644 index 000000000..4a18320bb --- /dev/null +++ b/courses/foundation/git/html-css/week1/index.css @@ -0,0 +1,94 @@ +.selfCompassion { + display: flex; + flex-direction: column; + align-items: center; + padding-top: 6rem; + width: 100%; + background-color: #fdfaf8; +} + +.softHero { + background-color: #f7f5eb; + background-image: url("https://images.unsplash.com/photo-1518976024611-28bf4b48222e?auto=format&fit=crop&q=80&w=1200"); + background-size: cover; + background-position: center; + color: #2e2e2e; + text-align: center; + padding: 5rem 2rem; + border-radius: 10px; + margin: 2rem; + max-width: 1000px; +} + +.softHero h2 { + font-family: "Rouge Script", cursive; + color: #a0c3d2; + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.softHero p { + max-width: 700px; + margin: 0 auto; + font-family: "Quicksand", sans-serif; + font-size: 1.1rem; + line-height: 1.6; +} + +.articlesContainer { + display: flex; + flex-direction: column; + align-items: center; + gap: 2rem; + padding: 2rem; + width: 100%; +} + +.article { + background-color: #fff; + border-left: 5px solid #a0c3d2; + padding: 2rem; + max-width: 700px; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); + transition: transform 0.3s ease, box-shadow 0.3s ease; +} + +.article:hover { + transform: translateY(-4px); + box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1); +} + +.article h3 { + font-family: "Rouge Script", cursive; + color: #a0c3d2; + font-size: 1.8rem; + margin-bottom: 1rem; +} + +.article p { + font-family: "Quicksand", sans-serif; + color: #444; + margin-bottom: 1rem; + font-size: 1rem; + line-height: 1.7; +} + +.quote { + font-style: italic; + color: #6d7b84; + border-left: 3px solid #a0c3d2; + padding-left: 1rem; + margin: 1.5rem 0; +} + +@media (max-width: 700px) { + .softHero { + padding: 3rem 1.5rem; + } + + .article { + width: 90%; + padding: 1.5rem; + } +} diff --git a/courses/foundation/git/html-css/week1/index.html b/courses/foundation/git/html-css/week1/index.html new file mode 100644 index 000000000..72e6ba6f8 --- /dev/null +++ b/courses/foundation/git/html-css/week1/index.html @@ -0,0 +1,69 @@ + + + + + Self-Compassion & Mental Health | Bloom Life + + + + + +
+

🌸 Bloom Life

+

Gentle reflections for a softer mind and heart

+
+
+
+

Self-Compassion & Mental Health

+

+ This space is for stillness — for learning to be kind to yourself, to + rest without guilt, and to heal without rushing. You deserve gentle + care, even on your hardest days. +

+
+ +
+
+

🌤 Self-Compassion on Heavy Days

+

+ Some mornings, just getting out of bed feels like a victory. Those + are the days that need softness — not pressure. Let the world move + without you for a while. You’re still enough. +

+
+ “You are allowed to be both a masterpiece and a work in progress.” +
+

+ Breathe. Wrap yourself in something warm. Speak to yourself as you + would to a friend. Healing doesn’t happen faster just because you + force it — it blooms when you let it. +

+
+ +
+

🍵 Letting Go of Productivity Guilt

+

+ We’ve been taught that our worth comes from what we do. But + sometimes, doing less is the bravest thing. Rest is not laziness — + it’s a quiet act of self-respect. +

+
+ “You are not behind. You are breathing, learning, and becoming.” +
+

+ Give yourself permission to rest. Let your body and mind recharge. + There is no finish line — only moments to be lived fully, softly, + one breath at a time. +

+
+
+
+ + + From 8e80e4c355c3269c0e98e1493a409af65d2e0bc7 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 13 Nov 2025 09:19:27 +0100 Subject: [PATCH 02/40] Add week2 JS assignments only --- .../intro-to-javascript/week2/candyhelper.js | 34 +++++++++++++++++++ .../week2/eventapplicatin.js | 18 ++++++++++ .../week2/flightfullname.js | 7 ++++ .../week2/formalfullname.js | 23 +++++++++++++ .../intro-to-javascript/week2/studentmgr.js | 33 ++++++++++++++++++ .../intro-to-javascript/week2/weatherwear.js | 14 ++++++++ 6 files changed, 129 insertions(+) create mode 100644 courses/foundation/intro-to-javascript/week2/candyhelper.js create mode 100644 courses/foundation/intro-to-javascript/week2/eventapplicatin.js create mode 100644 courses/foundation/intro-to-javascript/week2/flightfullname.js create mode 100644 courses/foundation/intro-to-javascript/week2/formalfullname.js create mode 100644 courses/foundation/intro-to-javascript/week2/studentmgr.js create mode 100644 courses/foundation/intro-to-javascript/week2/weatherwear.js diff --git a/courses/foundation/intro-to-javascript/week2/candyhelper.js b/courses/foundation/intro-to-javascript/week2/candyhelper.js new file mode 100644 index 000000000..7c5b22d54 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week2/candyhelper.js @@ -0,0 +1,34 @@ +const boughtCandyPrices = []; +let pricePerGram = 0; +const amountToSpend = Math.random() * 100; +function addCandy(type, weight) { + if (type === "sweet") { + pricePerGram = 0.5; + } else if (type === "chocolate") { + pricePerGram = 0.7; + } else if (type === "toffee") { + pricePerGram = 1.1; + } else if (type === "chewing-gum") { + pricePerGram = 0.03; + } + + const candyPrice = pricePerGram * weight; + boughtCandyPrices.push(candyPrice); +} +function canBuyMoreCandy() { + let totalPrice = 0; + for (let i = 0; i < boughtCandyPrices.length; i++) { + totalPrice += boughtCandyPrices[i]; + } + if (totalPrice < amountToSpend) { + console.log("You can buy more, so please do!"); + } else { + console.log("Enough candy for you!"); + } +} + +addCandy("sweet", 10); +addCandy("chocolate", 10); +addCandy("toffee", 30); +console.log(boughtCandyPrices); +canBuyMoreCandy(); diff --git a/courses/foundation/intro-to-javascript/week2/eventapplicatin.js b/courses/foundation/intro-to-javascript/week2/eventapplicatin.js new file mode 100644 index 000000000..6a16341a0 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week2/eventapplicatin.js @@ -0,0 +1,18 @@ +function getEventWeekday(daysFromToday) { + const weekDays = [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + ]; + const today = new Date(); + const todayNumber = today.getDay(); + const eventDayNumber = (todayNumber + daysFromToday) % 7; + console.log("Today is " + weekDays[todayNumber]); + console.log("Your event is in " + daysFromToday + " days."); + console.log("The event will be on a " + weekDays[eventDayNumber] + "."); +} +getEventWeekday(10); diff --git a/courses/foundation/intro-to-javascript/week2/flightfullname.js b/courses/foundation/intro-to-javascript/week2/flightfullname.js new file mode 100644 index 000000000..386864cdd --- /dev/null +++ b/courses/foundation/intro-to-javascript/week2/flightfullname.js @@ -0,0 +1,7 @@ +function getFullName(firstName, surname) { + return `${firstName} ${surname}`; +} +const fullName1 = getFullName("Benjamin", "Hughes"); +const fullName2 = getFullName("Emma", "Watson"); +console.log(fullName1); +console.log(fullName2); diff --git a/courses/foundation/intro-to-javascript/week2/formalfullname.js b/courses/foundation/intro-to-javascript/week2/formalfullname.js new file mode 100644 index 000000000..3bc14b8eb --- /dev/null +++ b/courses/foundation/intro-to-javascript/week2/formalfullname.js @@ -0,0 +1,23 @@ +function getFullName( + firstName, + surname, + useFormalName = false, + gender = "male" +) { + if (!firstName || !surname) { + return "Please provide both first name and surname."; + } + let fullname = "" + firstName + " " + surname; + if (useFormalName) { + if (typeof gender === "string" && gender.toLowerCase() === "female") { + fullname = "Lady. " + fullname; + } else { + fullname = "Lord. " + fullname; + } + } + return fullname; +} +console.log(getFullName("John", "Doe")); // John Doe +console.log(getFullName("Jane", "Smith", true, "female")); // Lady. Jane Smith +console.log(getFullName("Emma", "Watson", true)); // Lord. Alice Johnson +console.log(getFullName("", "Brown")); // Please provide both first name and surname.3 diff --git a/courses/foundation/intro-to-javascript/week2/studentmgr.js b/courses/foundation/intro-to-javascript/week2/studentmgr.js new file mode 100644 index 000000000..498af3794 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week2/studentmgr.js @@ -0,0 +1,33 @@ +const class01Students = []; +function addStudentToClass(studentName) { + if (studentName === "") { + console.log("You cannot add an empty name"); + return; + } + if (class01Students.includes(studentName)) { + console.log("Student " + studentName + " is already in the class"); + return; + } + if (studentName === "Queen") { + class01Students.push(studentName); + console.log("The Queen has been added to the class"); + return; + } + if (class01Students.length >= 6) { + console.log("Cannot add more students to class 01,class is full"); + return; + } + class01Students.push(studentName); + console.log("Student " + studentName + " has been added to the class"); +} +function getNumberOfStudents() { + return class01Students.length; +} +addStudentToClass("Jyoti"); +addStudentToClass("Rashmi"); +addStudentToClass(""); +addStudentToClass("Jyoti"); +addStudentToClass("Annamani"); +addStudentToClass("Queen"); +console.log(class01Students); +console.log("Number of students: " + getNumberOfStudents()); diff --git a/courses/foundation/intro-to-javascript/week2/weatherwear.js b/courses/foundation/intro-to-javascript/week2/weatherwear.js new file mode 100644 index 000000000..7bd453a6c --- /dev/null +++ b/courses/foundation/intro-to-javascript/week2/weatherwear.js @@ -0,0 +1,14 @@ +function whatToWear(temperature) { + if (temperature < 0) { + return "Its freezing! a heavy winter coat, gloves, and a warm hat"; + } else if (temperature < 10) { + return "a warm coat,a jacket and warm pants and may be a scarf"; + } else if (temperature < 20) { + return "a light sweater or hoodie with jeans"; + } else if (temperature < 30) { + return "shorts and a t-shirt"; + } else { + return "It's super hot! light clothing and plenty of sunscreen!"; + } +} +console.log(whatToWear(-5)); From 91017b85add8f666350a611b73baf13d018ae6d3 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Sat, 22 Nov 2025 09:24:47 +0100 Subject: [PATCH 03/40] Add week3 assignment --- .../week3assignment/itemremove.js | 20 +++++++++ .../week3assignment/note.js | 41 +++++++++++++++++++ .../week3assignment/seriesduration.js | 25 +++++++++++ .../week3assignment/whenwillwebethere.js | 10 +++++ 4 files changed, 96 insertions(+) create mode 100644 courses/foundation/intro-to-javascript/week3assignment/itemremove.js create mode 100644 courses/foundation/intro-to-javascript/week3assignment/note.js create mode 100644 courses/foundation/intro-to-javascript/week3assignment/seriesduration.js create mode 100644 courses/foundation/intro-to-javascript/week3assignment/whenwillwebethere.js diff --git a/courses/foundation/intro-to-javascript/week3assignment/itemremove.js b/courses/foundation/intro-to-javascript/week3assignment/itemremove.js new file mode 100644 index 000000000..948a3b25c --- /dev/null +++ b/courses/foundation/intro-to-javascript/week3assignment/itemremove.js @@ -0,0 +1,20 @@ +const names = [ + "Peter", + "Ahmad", + "Yana", + "kristina", + "Rasmus", + "Samuel", + "Katrine", + "Tala", +]; +const nameToRemove = "Ahmad"; + +for (let i = 0; i < names.length; i++) { + if (names[i] === nameToRemove) { + names.splice(i, 1); + break; + } +} + +console.log(names); // ['Peter', 'Yana', 'kristina', 'Rasmus', 'Samuel', 'Katrine', 'Tala'] diff --git a/courses/foundation/intro-to-javascript/week3assignment/note.js b/courses/foundation/intro-to-javascript/week3assignment/note.js new file mode 100644 index 000000000..ada89a583 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week3assignment/note.js @@ -0,0 +1,41 @@ +const notes = []; +function saveNote(content, id) { + notes.push({ content: content, id: id }); +} +saveNote("Pick up groceries", 1); +saveNote("Do laundry", 2); +console.log(notes); +//get a note +function getNote(id) { + if (typeof id !== "number") { + console.log("ID should be a number"); + return; + } + for (let i = 0; i < notes.length; i++) { + if (notes[i].id === id) { + return notes[i]; + } + } +} +//logout a note +function logoutNoteFormatted() { + for (let i = 0; i < notes.length; i++) { + console.log( + `The note with id: ${notes[i].id}, has the following note content: ${notes[i].content}` + ); + } +} +logoutNoteFormatted(); +console.log(getNote(2)); +console.log(getNote("2")); // ID should be a number +//delete a note by id +function deleteNote(id) { + for (let i = 0; i < notes.length; i++) { + if (notes[i].id === id) { + notes.splice(i, 1); + return; + } + } +} +deleteNote(1); +console.log(notes); diff --git a/courses/foundation/intro-to-javascript/week3assignment/seriesduration.js b/courses/foundation/intro-to-javascript/week3assignment/seriesduration.js new file mode 100644 index 000000000..46427dd1f --- /dev/null +++ b/courses/foundation/intro-to-javascript/week3assignment/seriesduration.js @@ -0,0 +1,25 @@ +const seriesDurations = [ + { + title: "Game of Thrones", + days: 3, + hours: 1, + minutes: 0, + }, + { title: "Breaking Bad", days: 1, hours: 12, minutes: 0 }, + { title: "The Wire", days: 2, hours: 12, minutes: 0 }, + { title: "Friends", days: 2, hours: 5, minutes: 0 }, +]; +let totalPercent = 0; +const lifeSpanInMinutes = 80 * 365 * 24 * 60; + +for (let i = 0; i < seriesDurations.length; i++) { + const series = seriesDurations[i]; + const seriesInMinutes = + series.days * 24 * 60 + series.hours * 60 + series.minutes; + const percentage = (seriesInMinutes / lifeSpanInMinutes) * 100; + totalPercent += percentage; + console.log(`${series.title} took ${percentage.toFixed(3)}% of my life.`); +} +console.log( + `In total, these series took ${totalPercent.toFixed(3)}% of my life.` +); diff --git a/courses/foundation/intro-to-javascript/week3assignment/whenwillwebethere.js b/courses/foundation/intro-to-javascript/week3assignment/whenwillwebethere.js new file mode 100644 index 000000000..e23c3e7f8 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week3assignment/whenwillwebethere.js @@ -0,0 +1,10 @@ +function travelTime() { + const speed = 50; + const distance = 432; + const totalHours = distance / speed; + const hours = Math.floor(totalHours); + const minutes = Math.round((totalHours - hours) * 60); + console.log(`Travel time is ${hours} hours and ${minutes} minutes.`); +} + +travelTime(); From 7779b7a6962f839e11fe7ed4c24bf7f995c91041 Mon Sep 17 00:00:00 2001 From: JyotiHYF Date: Sun, 23 Nov 2025 08:58:34 +0100 Subject: [PATCH 04/40] travelTime to use an object for parameters Refactor travelTime function to use travelInformation object for speed and distance. --- .../week3assignment/whenwillwebethere.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/courses/foundation/intro-to-javascript/week3assignment/whenwillwebethere.js b/courses/foundation/intro-to-javascript/week3assignment/whenwillwebethere.js index e23c3e7f8..5f7083ffb 100644 --- a/courses/foundation/intro-to-javascript/week3assignment/whenwillwebethere.js +++ b/courses/foundation/intro-to-javascript/week3assignment/whenwillwebethere.js @@ -1,10 +1,12 @@ -function travelTime() { - const speed = 50; - const distance = 432; - const totalHours = distance / speed; +const travelInformation={ + speed : 50, + distance: 432,}; +function travelTime(info) +{ + const totalHours = info.distance / info.speed; const hours = Math.floor(totalHours); const minutes = Math.round((totalHours - hours) * 60); console.log(`Travel time is ${hours} hours and ${minutes} minutes.`); } -travelTime(); +conole.log(travelTime(info)); From ca0f8454af8acbd4f2c60820cb788d02df494054 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Wed, 26 Nov 2025 15:33:11 +0100 Subject: [PATCH 05/40] Add week4 voice assistant assignment --- .../week4/voiceassistant.js | 91 +++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 courses/foundation/intro-to-javascript/week4/voiceassistant.js diff --git a/courses/foundation/intro-to-javascript/week4/voiceassistant.js b/courses/foundation/intro-to-javascript/week4/voiceassistant.js new file mode 100644 index 000000000..e46d2f482 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week4/voiceassistant.js @@ -0,0 +1,91 @@ +let userName = ""; +let todos = []; +function getReply(command) { + if (command.startsWith("Hello my name is")) { + userName = command.replace("Hello my name is", "").trim(); + return "Nice to meet you " + userName; + } + if (command === "What is my name?") { + if (userName === "") { + return "I don't know your name yet."; + } + return "Your name is " + userName; + } + if (command.startsWith("Add ") && command.endsWith(" to my todo")) { + const item = command.replace("Add ", "").replace(" to my todo", "").trim(); + todos.push(item); + return item + " added to your todo"; + } + if (command.startsWith("Remove ") && command.endsWith(" from my todo")) { + const item = command + .replace("Remove ", "") + .replace(" from my todo", "") + .trim(); + const index = todos.indexOf(item); + if (index !== -1) { + todos.splice(index, 1); + return "Removed " + item + " from your todo"; + } + return item + " is not in your todo"; + } + if (command === "What is on my todo?") { + if (todos.length === 0) { + return "Your todo list is empty."; + } + return "You have " + todos.length + " todos - " + todos.join(" and "); + } + if (command === "What day is it today?") { + const today = new Date(); + const day = today.getDate(); + const monthNames = [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December", + ]; + const month = monthNames[today.getMonth()]; + const year = today.getFullYear(); + return day + ". of " + month + " " + year; + } + if (command.startsWith("What is")) { + const question = command.replace("What is", "").replace("?", "").trim(); + const parts = question.split(" "); + const a = Number(parts[0]); + const operator = parts[1]; + const b = Number(parts[2]); + if (operator === "+") return a + b; + if (operator === "-") return a - b; + if (operator === "*") return a * b; + if (operator === "/") return a / b; + return "I cannot calculate that."; + } + if (command.startsWith("Set a timer for")) { + const minutes = parseInt( + command.replace("Set a timer for", "").replace("minutes", "").trim() + ); + setTimeout(function () { + console.log("Timer done"); + }, minutes * 60 * 1000); + return "Timer set for " + minutes + " minutes"; + } + return "I don't understand that command."; +} +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("What is on my todo?")); +console.log(getReply("Remove fishing 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("What is 3 + 3?")); +console.log(getReply("What is 10 - 4?")); From 7193134a8e1601ec524dd44eb354c7eeed3e1f18 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 4 Dec 2025 21:42:19 +0100 Subject: [PATCH 06/40] Add assignment work --- .../foundation/web-architecture-101/.DS_Store | Bin 0 -> 6148 bytes .../web-architecture-101/assignment/.DS_Store | Bin 0 -> 6148 bytes .../assignment/add_recipe.png | Bin 0 -> 1097482 bytes .../assignment/component.txt | 43 ++++++++++++++++++ .../assignment/edit_recipe.png | Bin 0 -> 23405 bytes .../assignment/explanation.txt | 39 ++++++++++++++++ .../assignment/view_recipe.png | Bin 0 -> 20135 bytes 7 files changed, 82 insertions(+) create mode 100644 courses/foundation/web-architecture-101/.DS_Store create mode 100644 courses/foundation/web-architecture-101/assignment/.DS_Store create mode 100644 courses/foundation/web-architecture-101/assignment/add_recipe.png create mode 100644 courses/foundation/web-architecture-101/assignment/component.txt create mode 100644 courses/foundation/web-architecture-101/assignment/edit_recipe.png create mode 100644 courses/foundation/web-architecture-101/assignment/explanation.txt create mode 100644 courses/foundation/web-architecture-101/assignment/view_recipe.png diff --git a/courses/foundation/web-architecture-101/.DS_Store b/courses/foundation/web-architecture-101/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..3d89f60db785129e54b26ad34a6542ec8bfa309e GIT binary patch literal 6148 zcmeHK%}T>S5ZlDQgb)TQu~Y%`jmUMW15z@caX_k` zaZVD_CL!2-AQ~ONkpcPcrie!}_(bH>`}4b5>c_%|^+!LAqb#r2pJ{2VJU%hWCfPJQ zaW6#I&Aq&n+1}NWob3w{`|o4VKZwF^t2(zMlH7}u@Jb~_K?otohfxxUt}QxAkf~f( zFR%)$w5kie-g8MhO0s|ls>+fy=Q@Ez`8 z@a@^+^Hujuv{My0d;dBtt}PtLaKNr_mX}}Br|sdf!H;9pi_iN%sIP$r89)Y*fe|ub z?oBp5!aZ>-WB?iX8w|+%frCo43>F&I)d5De0Dxt1D}k}>C1egaXc;Ut!U_o0sen3_ znihlVbntT%XBjLs>U2U)^Fhtd)O09R?GDf9Dx6SDBU)qt8TiV;n4VT;{oftl|9?%w z88Uzj{3`}%*>N2kj$~@gVkS1IWqaU&5JGm9 zjFZ?-GE$RRM0EYsu0)n1QlSu)%8amkcIe2B7eFmB_VO(I-Ti8F*Utp{i(Op%soYA7 z?@~tV?}pKGzgTpA(`27-Yf zX8?CLr8+Z=Iv5BBf`Ly4cs?W)V(pj>%h7?VqyRuZql-XiE}f##~7 zVyL;JKe=7)m<`Qc)RPbOnLm;jEwdwjD(0fKVbsAuFfe7{*qTe;|JV3sW|RD>OSFQ4 zVBnuIpo?bHtg$J-TMxF!yEdWRpipR+sX(Al9sy|Z9JwfiHlC=%u6E3ZjKcon4vdFD MAtb6`;1?Kp2MGl$r~m)} literal 0 HcmV?d00001 diff --git a/courses/foundation/web-architecture-101/assignment/add_recipe.png b/courses/foundation/web-architecture-101/assignment/add_recipe.png new file mode 100644 index 0000000000000000000000000000000000000000..167883ec382b47f6dbfca46725f417c22bea3dca GIT binary patch literal 1097482 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

1Mv77Nh-)W5wQj-&}DQkjGw9Y== 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%0AFn#kFy*b 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

Yd+hxqQL#?p)Stqb0M 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

yvQ~uO5o^i+HZeJP8 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

_7gKKRI%2|LD=ZRa>7pev!SmCi?Lod){|{ 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�-+Q`3?Yt??QX8=(bHkBzw_o@U}zOVPps>GzqPG*)Y=MD=~NNvSxIFXHDEU2nS^8z+X z7ODvP4e@AX*RNf>+ittn z^?b#BK&>c|;T}s3u#ASb>h!t~1~MuP=G&;zd)J z{OrJm#K=<$Sxw3!+09g z;5Pm=Ms;M1g!C;EUqS-HQ{iKzu<)Atcufyuwj%IOHzJ=Lq<)h8d(E(gNGD;S$?Wp$ zjw1Oq3ul54Kcwb-HIV87>sZz{u4thb8#vMV3CdDt%O>KPZux>B&U2E5#lMMX{b;q= zU}}hlqDyYy&%FSJ3~3E^fziih9sz&_l*B?^sd-hV%+;1d5-*n)mdr za6l$jUjXb5*^}i7W+;SDo64!61yi=7&IM*3O|W)PNzk`jC>T@|e=a1vO6Z-{f^r)#@NL5LLO!KNi!n?h%9Gdz zM_h%Ggqg^vAyazAB<3Z{792}K75;8IEI7DK!vHg((3n&pU@=feehhre+9<)Ih^-E; z&+1cXIxshPz~+@NqAe2zClORdh@D02dZA?eA@F30t_&?sS>!i-PaXJGWhITYCq6T* zQN$y94H0HEZzrgEZ+emwsRUJmh#ifOPmGUGD1;CeV@e36rdN55M5Joh-M3-M z(q(_S^|ljFJW(Jd1_ZG+lty+m=#SO5UcPeW#&sL^*>69%g%j|=2OhFy$xd6hZMpTY zw^?hAF|%{?zy9?#01kcdgT@BE@!r_v#KcvYEsm) zKQg(ABZ3R^QRg8V>-ATzUJXD*U7V3~uitau-GBJQA6Bkh`KQ1A^|(i#Al3?rDyg+Z zWNocPV`eb9Xll#m&A++&s^gA(BuKBk^0&4gDR`fK_f_J$p6^!!->)Z4mf9+T)uWy* zkuOP08s(Ds;^hPurCzTG1p~Fzrs@L_FbuS|Rn@C{)HA(p+ospA-LS`=y8-y?U;ZK@ zlarJGd)|59{`R+rb8~Er;U1By2%BnrVti(Lw#R0}{TrvZ%`I6r)fUH1W=Y|9fqoLx z1TM^xtsr8BwNg{B+PHDk+I4Gzpy!!YRYl;Gs?VKbkg5QzWECJLvQPtvi^}mPtP%@^ zT}>VD!Lg#u!AjMjM${MuY2jR$UWK`RZdifwI+lo3-N82oRxE=F zYQ?wU7Epc@kp*Hv)>%7%y1g}3SJhQ|3=wxgA2XaYh!vKUz0b-Rh)eb&g&2Vnb46-Z zptZH6Bw9NSHK=-~KNyXMs;;Dg4u>NP(c12^^X?OiCd7&{6|t%aRFp*osvzZlufKBj z&YL%G{_Ssnd--L*_{HUyfAfF7e$c@O)!rGSY6GhXhn!kpMLpObPK*#C)g7QrlVmos zg&JZ~6>IAy%a-PNzy0;S_uRYN?t47q=p(;#-ucAn zapkxuI8Q7QuKd+ixBT&@-`(*0wd>Z-%*-7B$P-RE^(p)9zrXqo?=ZvaOhZ@o#rqVc z7Ou=~x7~KzZFls?dc&F7`9~F>&?y0e)`j&x%i?Bmn>R(?D5AQdF0U#d+5XZ zgI-LIbt`>^GMhW^y6c-?|K@eSyMEo;`*z=bx2K3!=m> z;>o$L#QP%}eB^YWF_mMt;JYFas;cjVy#XvK0Mj?5Oe9=YWGbWJD(VRVxL2{)jaIl) zW@ZCs9$D!P`odw3Fy6@h# zTefXoxnhNiAk_BqJIsX@N=RlBIELw3%R=goQ-r7}xS+QvbV{ujgigMFs98VFE6B1k zy}Q7EW2@2wp!pt8c;3e;g7WoiJDnnd5}Ma_c3M5YHDZz+f@PH-d4KY{jr#jlBf#a5A*YhHdjx>w2R;bU2Db1Ig+481^lQwpc zvkNjXitxMW{mF1uavDHEwzso-7hJ*>ROK{5!CBEDcM7(_Cz0PXl!Ucz*?31_m%D6| zlqJ`}o5c#3o)d{TRBVWA%N$;X`mJBb`fVUtWG+UsC8Q%Q;<&{#k!vO{fQva*=7mPoz>Fpj zRy*&wpvBl!LP_-h6k9ufaw!3=xd%IM+e26^xWi(Un|5*lA_lVrR%o)4v!n##1f<*H z^tBWbjwA|2UoxOFiQ>da16f@(RuBt7W$trB!p2XT(=+qXf@V7y06b91vqDz#NWR4eMu&(E2j*}7%R z^!BZrH*SQ&uz|(mMUxLc>_Jytam97NyLL3P#+bkU@s=%{Hmz8({J{@8#BlGhhdkuU zE3f*?pZ|Ktop&5~;6XRtaKpwenAFhe~}^)XxOHr*&v z0~#!Y9MA59h#DqK2{RAtks%gkA|YZQWkV!lNl8T6kbqRQVknphWJTBz1Oz)2w=g!Y z28$?HtnlF^0Et?)3RN-8>XM>J)e;+02oyx@%9N_}AvrnWjx%Bv>p&7F7VGr5;R+x& zu11C>VXnBUm{1WjGY@*z#Nw$Qn_j=KVhL_mVTiWR%?;;fjp+}E!_jE8ZR=KJKwOz# zkE~2Bp8C$W&b#&2zb;<9cw}q0RC7KoHe{&UzHRH~ty{+@rVc#lfET^s`44>HgO{(~ zY0=aYz~^@;fO^E101F>7lVY<;NLdjp-l$)`dV3BaNydNzDnKO+Ch+vk^uN61ML+oA zPwu+?j!Q1N^tcmFklJ#u5??S;Ao}y4|7>o4{$US!=%XKf;+Mbjl|@raoO4!0h$x-ZJN^OTS6k)1*=6BcKaP~Q8f9zu)e%k5Ja9%;NVhqEjt^|q8KwVp6bL(Gk zJ^dNa*t~i3<}LSs{@rh4-@{^z1vURISZJ7Ub%bza0?DAEsR-b*&IY%Dxa1raWu@nSx zwKM_JsA8ywf>s`o%C3 z3ihqr+fk=czU31m=2ka7!9 zeRit`(V4ubzIU&L6ER0@6+ILmo7Ac?P(7OsWUHVER=SgA8u<1D9RH-Z= znlFYZ#07yO5tfVQNOi^Pw0WhJs1RNj#b<%HVnEr@lBw1f3JSFDrFKi#GfD~OL}Sr+ z{(Eb2orW0Kf`z|NQ>AspXF^|^WtHa?Oc}AZ(3XUG4um$orzZ>QjJR&PC!!L_>8k0( zKvZg_)DNL6ZuttJ*z-@lWkYS+)gIHVN?>y3Ga(T6F*Z?(poMz}XHa0;MG(!82^+}q z7Dg;xRUKpGS%}g>aGRi^cN`+h4%@R(UU}KR7{HgwmPSMF2^X%azGhwW8Z_GWjTTOT zf;x)e$gGNTKtf=&A`a3aps-3xVcq7G7zmgcs~L4w(07A`wfr2_k4Bv3{krBFX_eYqnPyEM1LO9=;Kned2!-!Sq_EvV<*%F$qs z|6HKA48wNgNXKF|&j8M7#>WC@GeB;Gxe!GZ2A;>zW>`uBF&BFNLF)QgP(}Ew5LPAz zG1QP6C0|+uNINQ}4D|KyG#vpJY2U-b5P%G^VGemxtm-Wk4;F*n(aNf12~Z!nF{%Yn z87-b#{$FSR*RmyxxvJ*p=0WZ-9)*F{IPhdKKvnv{pPysYq7iTy31aB?gQYdPd@o8U;5(q`MI0_aMM8t9rTAk+&DWk$Hb2~ z=4klEPK)_9lzCNv$dFNmh=?c@f|wan0W>x-Am*8w+2f9V2fc*{thzt&U$YEdq#y3Xu!|Ca*aEV35Bsprzm=`{pTp1+EEy)b) zii!{n*pBMy?bFMb?L>@dFtHjX9Suh_^D`qml)5%m<$}tWEnNoY`T5z;f8lfc?Ymzs zH4`(jkho&Iqq-I=b2GCub2E!379}GiQ)UWx#8p%46`Cs<7Lf=2F^bHNh6teH{QL>W z9shzCJRkr6tNUuJ;{P8SP=N6J8-D+Xn{HgXbP22)s)VK2>jAoU!v;G)TC?lU|MIUd zIsF-@uU@s<#rBc$$2I$+YDB1vRVYk2*A@!wY3!+6-$PC!>J|E$xW{-DDTyY#1*UUJDL^Ye4BfBl=+u3i6%GhPny6{E@T z!?6_wP}`cTYI=J6E6zA$+tzKB;WxkKZKs}gI#gkVQC)b^MX!FRl7Xk&<8A@ zT>O{6{rPWyyY1TRt~v2BkG|-l3sKQL3aP3-0AniV?EG)is#ihL>-Q_r zJP{!9tKQ&7R)EOO8Z$8rK*S7TGLq&cBNZZmIP7`5J;f{--?_o#^a-g^5e0+6>h-!p z7*JwTONM#t{I-o7Hw?xHD&k1VZvuFUQW~OEhz|b@2a}t(IFy|8B}i-Bh1tK*74jG|6Ec4*r6F~+l3Ofsc>;t@ z@X$lU{B7(K#TFvJHzqo*dl1kLLXmz^q?BagWd%~oyc24C370eQh)GyoTrmJv<42bL zt7)S)khjZNO7TAw+t0r@LWm*=JIsd&1|5>)ATf99$3I(ipJhZ4%Ee>GoDC;HY^rhG zb^Mr8^wj6rdjtn@oRM!=2XT_Z=;JPO0M-emR!NZsLkAY{{zSYMJr;v(-pP0G!%P*= zdTm1)Uh`+Pl&9swDoNfoP>QZkE{`?Tw7=Q^H;*8pCK3qMOc~08X386E!vT0&+?U!1|j-Y+0Z~Z>$S^E|r!V zKlU4%Y0zWqifhAceko{{9j{v`XP}&4{O7PISu~*z2@#K-eD7Uy0V$O92i(M0Q7344 zgBd=GHy|{zU;3Q9jJeV)Fr>jaEO*l48=B_EoiE@ST*}O`Qov{D$1H@@WG9vnWFo{L z*{q_zzO00y=K?yHUVcv5Q@No^JMgeN}k)BpXcty{N!_j}(t{2_<^ z<~LUj>$xM3IBINcpwJboR_(p-et)>}_rLh%6{ns4wCk_GesXer>9VB{dDsyEm|J9% zPZg;u1eSWzDLU%%*fh`bh(=a&22%8&mDG$KG@E zbN$}ny6dlh!3+M$^o(DJ#0^KQFu}h<1cE#E9YSPWnw@6ADu^mWLNw_0;bT@()G<`& z=jS$W+C1ow5z*M#m=!flquLs#Q9YWQpIfqYu~lo_DUyQRG2b}RG_zclGGsN-7%IL5 zfe=VGvjM!vUsT<;nL_91<^YU_^HslZttFSN2#~mihAXV3P=BzM`yVN(aS3m(e5qT* z35BS2c4x|}Do8{?E``)EATCi$)yY6*Vhezkg`~yxSG`j5JA~B;=orW0}+aHg0f&5uyd(UOq_=Zm_>;p z?pHO$Rz-=7DhMI~TM|}fGPT%VuWw03t*S6l)id+8tX;QmG^!u+kO#f^MK3z>gcAo7 z;{a;0CdN$!QRJL>4EQJzlLTWk=Duxs1;bObC?Ha`M0H)mGBDb_W!n=T|Adcz^kaA4 zamQ7^zWND|eJqKBwN~`NmtS_-?RVU^X7#G0j(+$}H{Qf1rk0R}aK+oUZu`K8J~%!x zzQ=C6{MUbeV*dm7W9BEG^u!ClfBqZa_~xmJiU0ce$DjNB=PzBd7-H3jbdfRayd;(B z)gu4)vVZ;KpKgMh*S_YJuX@$1iBxLk%G|%{{@1+fRaLLI^X_ZD@P#kzxyPOgY~8ly zJ!0^q00961NklB)thFP_nhC6=SN|`Pu2M)5Fn- znAF<-VBlQwBDUY_&(6-UsX()0T@ytPv3k7^0cu-|)}mTfK-xpmFgwv`62I)K#7eCa zwzrA2T*V5h@yh_UDs^2$>w09h0;|GQs&z&E-&}olZAarYwqyWsL65$tI{V-p+I8il#DRb!1eF6;Uz_Rk+mDV7D|ExIvFVz1J!nY~}7t9+zKaPk2XBF`=#T zrAcSb8k@lX?~-<1G$R#E`45 z>^f(fBx8t3yB2k!&yKPT0hWbe%_lP%1UtO42~JX?*-Hs$c@%;FHw4^LT1r`k;rM(= zOmHV}IFaGP&s*b6o959MM>%M5#&RzKh5yB$GY)K86+6USM%Cd}&A#U^g}5r`*YL}p z0_jDli%&evBvj}wYSor!FB1R_;h5Wb4Zw@lVFs>()LOM7i787DR2xx=7~^l0Gi{W` zNt47^{Yb<5wFv0zq)qaIgt7+<@LC74w1F;lj-M0&$Q*=?XsqtnvoQqx6+TA4E99po zQcxU2)_Oiq9wjNdH{pnUWMHc5o1|M?uC`%sUb$>+Jn8lr8Xl3>>}M0^QJ5agnIhaK z@ouD~Nqh@2@Tp`@XWV#WDWa~UhfWYP>g%|2z+G5|DL^&8jz?z-!bJo-qn7Hq7F0f|~-BQ61foV+Bh)v%FT_dn=>gAY3R z>fiik{rU~trl+sJ=K6`jP2{$;NJW0yZf4*H*MK^*=3h+pPikWm~hS-kehr~qjfE+((k!a9FiURN(ymnA5s;I zSYpo(hkyC=UskW)Swwt3q?2vT!`XQSZJ*h8t&yeFDe?!LR1 zEM7$FNDvOY!+Pjw_+4k7dBqi165+YedDg35`D$XWZ4Ct}eex5Z62in_{M>WDwR+7O zks5;KJ1u|Dd)|Hf-~WEY?|=X6tAG3VTW{TGpS=m@vY-9pj@$0+Rp#l>IDIfan46m) z47BR^Uj6DbF8#@m*WbU9h{THFDxo&`^;8rU*zj;zPfkvJ;j>@(!e>4=5=+dm(jV)o zD2T;cQdrnUixzL2*$!BRuardU+axbXT)rd|DyJR1Yd-R9FkZ5CgDZc|O0~B*1Zv!J z-Ae*L?Fv|7rm3k(LNzvSLK_O{tzEnJGoSiYzgKPEvh|f`ykc@<(%MnEpv;x5?>YMn zuq7oBvnr{R08F4p&{Y0@vP!y)3NM-1n`>wqg9;7`)lEpS`HDqL(|GY`OM0UztopsJ zCMjXQu_(*!e8)+~U)_;`QQVruWu6kWr zJ|*^I&iUy9u|P%HP;-}p&l~{&=fU>900;@P`OwnBFc~<(KM<_D))fU$LWX;ep&-w6 zJ$Dve5}ldVqYx1_WJ)VNATF%e{6wamMn7b~@ZkhXhT&`)ln@pVaMH|MN)8D@e#6^S zK&X3_^`6<_#o9P@7p(8jjFbp=*Q*|tu53<(zATNNs6F=Kb}1O@&MGas$u&VSVVciX zxq}^bh+{>D=UxrG>4_`(7`hi%87|Pc#1o`Il$FRBryT^!X`P>e!;+k(?p;na(6G|O z`~>{bZm!)HLg&lHm{2zk+QSn-D%-A;D_QQ8r&Drc)DMFDH8`?aB;lf zu0M>JOr~jm!aR3{Ksmvg7$(-mXvnL^0xTay*U&T#zl{Nk|HZzkDIc@HF_pjxNGT#0 z-DG86%BHAp_3i^p%97{~b5ZX3^_IX14RKB~_B)-?%MdeK+EF_}Y7|So6r%6`(IAF8 zJoiBga}>iN3p#Rj+zC!{DYUA^;N!RoI6DYCiksMr`reZ$$=Z#2w(P|VZjbA-Y*Xpu zDc8Xzb(XGNH^fr-Qu+}0A2PTC=~JN}Q+p{}cA?n7rszb(Pi%##5O$#@Uno3lJ4)4d z+bP^QirPRKMd{%dEbghC*A{Tkm7GB35aL#s*9Bo~$Un)7BqFns`b``!>(YKv%=&V5 z3Mdvg@x9~@#T=?^7`ahJ`J?%d9^Pg;og!O3QvfLf;Eu2f(mlkBr+~VI+zu>e)>#YR zNoDv#bz;>T?p6K`(@;`cj;}c_QBFAMTrt{;Az(JWu|8ME6>EWm-Y9|Cupx#qb#2{@ zSe43D`|h*XZMXe>ZhrpOJ8wVos3XW20F}$iun@IZ{_3hNTeeJ1O&xvAk^O$3D!&EM zL-nwSKm3|&u35Ks-OTj1|vK)`s1GT?!5EPgAY0| zRg*FRaKZT(z4P5?E}EQr^kW|Nj(5DXXNm`rbS?2BLh>M@Tv zh6p36d!`3KtPt^UuDJ#(bMtctA99dkW5p`4|AG52S+w--JMX&a!V6#guP>VDkBf?7 z7Hb_W+cs^vWD9F!&j3RM+|J8DH6a@I3? zX8QZU!sw2txTMM{)6D`Xnm)x*JHDyV6Z>Y2|7<*j4p>t~!KuOEG``k5VnxBUuJO9S z^YRDh^T%p!+qz|X zX8YvC;^U7$?zzu>{;@|N#XX}c0)Yi{Q57ck;+*JJ#Rf#ot^mBZSW;Yr(}+~Wmqxh} zRim#S>X+IgwL*x9~&L3Jd;hQ%tUtm;UY48U3oqTZmleP()g`;4zZ4&@o+%Ptd>t$X8R{iPEO zau)kgZQpAjFV;&S1#F3`sq7;B&czVii~i7(?3ac? zRBpUb)+}X0s4=)U^E)g7XsvRKG5Bd-u&pSVTzf?Aro0`^q_vaIUSNAYsHF=Jngfsr zU?)LC!D|`FFkr&BQl>0XwzLJ625pX|Vvxalyzctzdt6N|o+KC;u(}XY<;qBHSM9vI zZ+cbLBdIm6sxw0I|4A~_+Ot8SC}>oa#SEu0XK&|C1rhqY-(5ewZQJCc#fKmIATpfq ztz?~beM~lSYmO5KXr_0|R&y{-*DtBA`F zv{pBf>^0DWo6qE2%KIneeujLYX+4@+Lv-;j7(L$LBe#yl7mE0QWwN+ttF66maAs2$nL9w%?2SAj@TCa`QFn23n3N=H7(rB;pJbt z{w@G+x*CDQExB9#lLO`l;*%5#5g6o+mb30{+BC2ZPz#T8#;l#=bpNFHGrSi`6I?vm z;`DMd8k#*p6;Ysxv$GRb78p?3QZbGY|KE`un%+(drE|WELemA_3PvsXD9~EoU{0+C zgLTjZfLuuX5Q8$5xITL~hf~+eJ_D$F7c;jVQyasH#gRN@kJ*1Y?+3nYFe8G96tITL*O^-!w)$3jPt6x6%dCz4s4>;uD3ywQ4#*kPml`*HCcFLE(^tn6l zxbst={_lI&t=nz4UG~~@cMvLL03801!?Ws@s{ssR#sH)F@;qxb*`~)S;&kqNKYJPq+Ha2$mJ$IdX z<~wHRW*>a`VHaO?v8vQ|)b9-*b>cBU{>jDLhjZUQ|Gb0W{1$6R41%ddYG(7@?|ysx zwk`Ls-!Q#pYtI+~3@ZTBGa#6XMJ%97zIurj8P%i7smUuY``MrV`qzUGI#8q*8P&Cz z$|&%~FMgJoRO#Uldl(3;s*uTv@dqD%=sowY{rlawec|(8c;ze4(Av5kM}=0V_koXm z@Qa`S0yDqotg{Y0@IdQoZqX#T-(mLINoT)I`CS>(Wq6q6_}cyM->P zK|Q+juDd5ECSLTfFMZZCpT66!yE`zvC&Cqq@mDJC>_G}c6ohPI7V?E*l5`{wrTVal z96&#P@UQ#YHwt#~TG}%`K%el0Cw%79pIf``{>!es?9@|Ea~S&l4ZpkluDe&QUir|6 z9uB}AI3>1r5nse0(y{UJefQqWak~2G1iI^vJ4VB~Z-4iDTQ_Y4ksXbIv>dN(ZF;=- zUVDB2!t>wzzV|O*zT((pj{e9;K0Gx!q3SfHWti#hGxIZZ#Jpbbeu(a>5uVm1mG zLn3zds+H5*x6RJZJMY;Ek9yRSC5yIh+xE4ueQh{DddexM?z!hK!J^Yi=dx6jIzt6ceZC8|jK{c$BoJ?am}?z`{4yYIdeL8f!Lu|=Mc zV8Ox`T7xZoHK#DG8CiNYtUeo;SSZwIVa*v|DeS2j1ym;&ExzVAzrNz~Uq}r$##-qa zt!wlKz1i*42ONCh*`N5t#KeS%WuLcIs;UJPcNmEag>@9k?Dld*V{F6@89^JyNO@7? zfowZ0gm41z2bt$vs9r8*nG61pFWFlpbH!%c8;CmuasfN7VO#>i0?BvvhS|t-;_bo|?d|c2} zi}4dJMcL9saVEjDrotf6wY3+7%ZtbB*ksr6$) zCrSADQ7IZ2Yq4P)CI2U2%BvLS=~MIVj(OQZ_Dj%`QI6FvzLE+4JP4l)ty%0K7el!F)VWDA;5XsbMxG!q}0UESH`4kbW~Iv0kT8cV;fCtGTx zn@yXh1u|?R_2RCU!^qELJkF!h+QM>!2*ok*hwK4+>@y8qz0a&y18m@XHJG$rx7thVi?RwBbJFnSQYN3h&T{Jnh%Pzaz^oKtz znOZy?$>OQ02R-oMgyAL{(@3pVca)Tf))u}PD&<}|h0?LdKk|r&A9c&kH{W#A&7V5w z)312>znQ@Rz}T4Cx^3HA-~5iLMT`4mV{duWTZ}OPdc6w3kw+dw%uC0oKJ(w7d%(dD zc*;|s>RL2hoqzuKue$20<;z#CzkluP-tamAB<`>st%q8VYN>^p0W~12fQl86C>!oo zgV+4~YrgUIZ>-p9Ck1*&Q0piE`;&kD>usaa@PGsNKkDeCMXc!!w64YQJKp-vUtIc& z{@D20pE&#B4}bVkM;!^k7*^oiZ=QSJ_s-jGw>{?OW}foorvM=tqPUtN?Ky>Xa9$!P z4mX%o)q=b~$NeYSRwFgvkFvE?{~`9f47n?=uHfoyHe0H=!P?z#D$pM6KNk3zSdZ_N zc1dS@*&dDNoc<53mgdDh2K21=p0)GpHB*bG0Ek$zTJrGcKg74Kk)I7eOw84G_=XYAZ48U+Ww`9@eYhU;J zcf9>=TQ+a~)Tcl5g)e?_*|H@^KjN5^Pd@3`V;(s%F|Hy|%2IzI0_70Mt*`2?sJ}NQM+I;uyGcUs2Zj3eD6DNe&bu95~zd_t#=8jAArKDGQm!6L|Ro;Td`F|75A4ene2@Xjy&n)v)*&oqNyn;m|Olu zH+`KtEBGy3ceS|V%Y1FLhKm;k!;}_(he;5_S7Bl!vvuc(V5o)LfN8b^1LNRqRr`kE@UC7s~So;&rL+3 zR@6mildm5V@lqfoPORopoLSw#Sl%YWQ<}!P%uE>pC9<;>Ndd81T0Au|JvGs*`tzgF z+}x}xtgS`t)Y!PG%=YQ+H{S5OU;XNrhd$`RU;XM=m+!RPM9lcvU~-v$3g_ic^V{WW z`v-!#wEiOWuE5aPV0`7u-uUDs`!Y4E<^zqNmy-=ynxRrB54`t z)o+kU(Ma$Y=gl!Qt4>W$Em^WeMVBpF>K>%9;Zv%?Zo9of8^P42&KL4ES$W0ho4=Q&_%HFxl}MSe}!?!JDmTarhaLFx?se7T9ZT}o*#Qqo*&qPrP-XPf=~dc z1xAuzaf}(F{D2$%Is63JqIuobb>Rd`g1PB?>$*zn?tC<1u`!hkUv0+ChPXp_r@!A? zc_!tQ%$UrK>XiQ(-aW&GnhWmHeE+Bf$=h8KD}@I1iN8SyNBKz2>1!qYroun|*QWQf zJrm`EyPJl0#L4b0wt!)#5Kd1(afn*ZBduM^j@fc+7q?Ua(CbwqHZX>tk*Mv7E2?@9 zR|3maRS>A2dFGj?oN}ra`O;Uuyl%sWdI8_e%ISiJN4<-%EvzT(Hn32!xNtHcths* zH~ryPzr5nMJN~|P0E$@Hd`&aM0MpZ(&gq#=( zIxLdQ(PX0ZTB3PJHJq<(6co;li7%9i$w^8TOyCJ^N6|ivrZy~|ZQXBhME-kPQxnfgZb8-Sh!mfBEl1`~q=rD@-VR9#nxdYMp5sx_Xd*^-cnrpAQ@7{ZM-F^4< z8`fU-i_3XXop|D-T$G=2$H}ovyCgD7qD(wLKmWG3y!DbxF1_#GyN5C)GRv2*m>3(M zoSdkw?HN{U0Wb*>v0+tk#TR`4!bMY)n>KA88}vT-fe$?Pv5y-Y4BTSc)|QQ#-Znim zJ3TfStX#fwe9;6{AR?-@SW>P<>}a@scIN*3Hvk|t0)5_do_*i}2YmR0AH4aGw~(Q= z_pQJ1{0lC=@PeIp+3lPE^Ud9M-&L$D@Z_hI-DyUyptTG1V~EuA!=aLl=4)Ra%!-l# zVn@P*YTM>53JIJ9w`xg>mYm}U3}0vpzEVr0oNh)q3U@xes%23nBIBkhacD*%!i0X` zY}~Z|+0T5=3!eY{x!G9}H9a294Oi{FYWeb=27_?`u;o%YvPUSI+|t}lGn&=;u1En@ zCBHn=aH?lv1{8eI;j-rJ=cuR=Rh|DgM6~@wi>D!^TB9t6>c0498>TL0)v3$#qq7&& zRvf!3WZsWXaJETmGFzbf%$TN#DFg>03t)0h#r+|n#u7>dY}5)EM4`}>B>K%97aoZiY{q>eVZJU|fYwta8`u&Zse8m~x_}bUd?`2k`tL#b60?MpUC%iIb zwvG7?BI=xuI0FLGx*n<8x|YEp9J(YDN<%uX#B;jh$HvuiObV?DGMYuM+r$shiYZV@w35}-jT~w1Q5oQjAq7}d27DpNv z9}7`IjKS!yJyvK#)QjYkRJ1Ikwbpi9LAQ!L=Xi9D>lz&lvA6;Im zNDHE*Dl^m5Gux*{6)sIlT~L58r7t4er>AFUwrko&cvHn1yk9+K6|MTM?9}EUXoCc8%ZV{>zJPkPEzKJfnc5{V%L zSb$hbATR!x7vFW~onQX?m+eq4y6A#Se*BZVwqW#oWA|^^aO!DKdF|_7C-sP{9u(FJ zv)R6FdTw@lre{X=2w+vKDu7Xlk}BkVAAH}kB}+g5R0o#bG?4= z!|(ghV;=K3sA|vcnJWp2%BiQF*6a0N^_o|2-#CBHr#{87;2skh=6-+hk&k@n)YDD_ zK+QdqWK?DHy|j_qG@Znoc)2PH0!Y;bfv6H-RI>M^Lpi2Rx8^Ch&1Fn}FM?2xqf}#E z7F8i%N|ELSMR8nBTL4me%R|S79Fc@w*Q=0nCRx=h(>$QAVTEJ{O;(n)sao^EQ2@cy z*6RgHn7BPuPe?`%knz5A4Ur+TLY4rfDx!-NN{LSieoa6P&{6CWxy6hE3RiQ}FF)<^ zCmg?O)v68aH~ip-7yrw@zUmEDrcI>goy2EwcdQL=#b_f8q3iJHT%rl<# z?CXDb?bz7FLytJ(*hd_B_(PA}XWzY-Of8xp4gdLt|9sEddxxXiBV8;r4aNqWwrm<7 zAA9RN-*)#McYfj%pV&6N{S9w=(>b5`FR?Y5%9Sx)xnjlCCCo)jBF5DK0?8vDDx>}wpd1UNGrq7WU8 z&zW7PoT1*8<#AB}+;n-pKar3n7$wv?B13cAh9^Gy#7CX@s5B1{QQf|E+lN2+p>KZkTYK-b z&lQ*d^4xEK>v_+6o;$QPpfVPwRB{JasGBo@Qnlo!)=Ah?C<&z#DT;}39|gpoy+sr@ z2w->;0TAkqOKQH`OjLI`x4K3P4~U~pX@*>RhpANz|=M9M{cF zW%`;+!T;%u@-jruc|Gj{ib$mTa9t}*&z7V`wO{DmkQavLf50^LK@?xWitS|Bo} zvCu4-a7VjoZOZ5*NuUsdnn;0Ate*v?>oN(A)|iq}=Nc;|URsJZ7f4YW6RtdhL)Ijd5%RnlHUq@C=%^5Xd{SWTG; z&DD4V5U)2iqkoF{$|xh4JLR}C>WboS+y-0aNuJ^3aFe zd+$B_?YAEUqH4T#YM}D4haYk2PcQlIcfR}cD=xe4n(LX+ADdjce5aSZj@)au%o_OFsd+!Z^+(DH@01i3i(1#xJuvIHpk8J(8$2}1M zyNKRwwXhJOj`ha&*>j)qiNVy=QoyAx1cbO*s-Vy#jy&p@zq;Z-|MTOQTyp8g`!~+b z&-P4zm)&+b<V_uqrBtK)1*_^Ih*e<hb}E9%Y6%u6k2zUMv5*R1;fc^BTl zVZG^96XWCiK4`D^zW03x9CUy{Iqe6;gjapilb^hJ$+C0L{pPy$>+ZVa?%CPd6{}Z1 z;NXK__HY08z=IEJYsu35N%1^QYHL25|LPNk{Bf|vj{4ln&=OZol~pX0G8>tatD@0E zLGi_F+WskiPHP)R*E4yreQYYLN#+)?Y2;ljn#qy8EA@DBs~F`Vmy#+fRgYIs1w3i9 zu5|T>w@PqgyhVXA1wdsiS0RJ_;QaJiL*ftL5;dHKQ4&(L)+-luw=gpBG&Cqvt*Uh39_joAqdP#L-9Yw0wCzs;eF|S1QJex-dPf zwj%STFMsL!>#tw3blGu_eB{Uf>*Kv%6*qBbX18zKx*ZxKCYixTMXIW2NAiM~{?n8)@6?0vqPax%h0QGiQvVq!y+pnqOgoc)ag7IG!DaN0OU`WBrMh$^LvVOyQ0P~|!rZUD5fnZbsYpF6# zstKPQEs9zoRDKsILsX&4oFz&J50AJkTBdv!{JySAJyI|;38`>pG%PkLJ2Z|#lfwfj3TvaRzB1<4uQm_GtMWI?7swmEArs@F|kXSJWBtOu z+Og>=$*d+Vltby%>+UrUFZtW@;iO68tf5?-g)tR9wQ4VwZ#E$Ek}9-XxXZJL^La#$ z*1V52jTCnU120n(>KKpO)e_RnF;1n)C;o6jkTA&6ordJQ7zxrGOP5LB8f<*96kkCI zM|tk)E#*R{f5IC%^8_b+ciKfuSfWKgg|XuMDVj>G62w5!Ku(_NP7H3%Nj85zYToRp z3|)RwTRfLTkjtAU<2OeJYK?2btCOh%)wB_mBRPd!dlGGnl|pM}Q`;@EJ4fcM{V@Cv zfy9V^=1cdaYvb0J8n>_*#1b*DzPJP8xGtVyI)M z(A{t7umXb(ksW`}{%t&k48_Gf=TEpQ{vf~#$hcEGyol+7Gh=s9>D6wMM`g?>KK}90 zkK3cn3a==pCMUo8)h{6kjb1th1^~&Zo?5i{pI`K%e}2)6?%!}f8y=sS=v9?5CQxXZ zh2#+^M;~?c#8(S;9sl`ryM3`|RhxFdPl;iRT+qQ-=H@d0F|@ed)AqCU5gC*{g@l8?htMg5E1jBGOv5>YhQWB8Pi+0Y}vML z&B|5dlam0%y47D!r%|HnamO8d+;PWBEwgjm=j(dW#8j_ewdt`-rWRT_VlwFR?k%FM zDJZEZh(w5diKQZV*cr0Uq6+abzDETb#k|AJ#CN-v3_FskR1m@f(mBygxt2qRq1M@F zyO01*LD zTOmSaxT>6M+gQjo*IYL>G0|i5nty-opx?Knx~^1e+wb)^tlzkC;c%N&k(TC!~Ek|moqZ2r@qZV_w2YKaV3 z0TJD_al`bsZL3zSuEzU)?itX!b?fh2f8XTTZ&Vewr?L_G?B^bfPDer_6f37t+4T*%_{&f8$)IUW>o;Jj3#wjpfV7GLVP%RrOv%UF#2b)E!CYG#(mv_Y=%YnytIU64k zLuoqg<^qB)hR=E^P}VY7QrL9sB1C$1TS?A70MwBnA=`~|FEl~y5UZJ`($JSpC6nC^ zBgwzD<#lY-;av#iC7@xQ$2b^rdlWlNWC-m;~(qu!vG zLT5-tgxU0ZtZGN2;b_hd#>T6PQ85$(UktmUh7<}YbET>?GxMZE#uzrHN6f|oj96{U zRrCfMLke;UkBaCJ6jcUuKLub~tK_^b#G=aV)2&9M;c$LPWF{uZ$s2;85S0dih)s`; z3run~|5QQD;O$$t^#=X^U;wHVP;X99z^MYPstT!$f$Hq+%*bl5XU4|{y}kj|7*ZiJ z;MxHi{0f~aDT~(kNYi)#Lnok{Yl|%KpfE}oRM!iLtOm<_U_;sZ99ndJ^KQ)?V1gS7DG_Vj^3LWW zKiTRqQj11WA!S=2P(!dk~0HqVLERt3{!M!G5sj!qoGyP!_IPx0cjnx z?BP%8zYWN8j>raI^j9FsJsGF0b9_5OK&IkKO+(ROD4Hrcu0eha3YSh(zvD$9i-!+D zCA25hH>R!YYAe-5%;_%0#RfbTC%e7fB(+JsyX)k7E>3kw+gFL2OHOEVL3_gU9c|5C z3akNu3YUuK>qNe#%Nt>&+F3);-QZ$1>`$Tm}`GdZ!*Y|T2VHo3}`|_fR1Ww zjH#&CU)CdH5r_&?v?Qot5CMp+h#lEp&+NJ99uaJ@uJB_<{|bP?w(3xBmBMJ_(2w8XF%! z{*jNm>#lEHbKP}6{rS%x_qfMeI~u9>Of{UHd*| zYN(wbbwbo9;p}aY0Stf0s#{EG+Uts=3IoeY(+N+n+}LN1x`ZQ=Tw1whR~);0 zqZRt@sW1#ZE2S51GLk>Cg+0S{_)YOz6S*}d63$DV%0=nim zzy9XA-@4)Y8}8q{m&Cmb-4>#R#!}aH#f5B~kzjf!GcRBWv$2{v9 z&)j$aeJiS*UIn1F3hT``-MI1oO&d3Ee!}A(KNug(&d&Yk$Nuw%8-DkvKmTdblBG{O z^^}vI_{4)Aa8Q|hMG$gIh={Je{`z;n>&$ict~V7y%}FOc?&W8kv25A0L4VAc%8FIv zcU)M^7k;F80N=IVf&Zz99Lw^0>D zoKb2+Qv?7p+jLcp7&sgTiGpS&bGc6KV+Z6X%xuUi6K`x>T8aK+f3Z!hM~xh6RP)FkOb zVeFVKUE4WdJ08t^Vh#H!jHZM?P;pj8J^)CusNp|=B=yjGF!=u^L7j65g^cXtexl}V z%^F=WjWId0jX05E9-#`Gx|=DC4hG@O_1RaFzb zKiYgl2^OHrkO_N(&h<|KzJOWcHblnu^TD}w4 zA_@?(F^02r^X$hQ6i{Uaui6B>@oJdw@&Ro;RD4ttxP=h`4C7)* z466%w_o4dkjgZl1ow##&)(p2%bb>(Osv?HkTG{j}b~>1uAv8WVc+yEv+&;7Y_B(DL zjfST`?X+b(EmK%`3b?f+fDN0f*Mo~8BHH(W{Re~oefO+A?|a{Kl*SAYF1!4)Pn>i1 z;>ABkPszl{E&wb7jM;rm4}b8(fBW0t*i=1JS(Wc!bkV(Q*KM1f-hH>-4}a+4ZWI5QM;xm{Q&Ur) zIQx^LYM2aH{Xze#UtRgz>war`y;GlZTEE9utufvtciJg2E5XVLgkIm2WE5y5%3EbS zs$I5v*ZPD(X(6bCq90)4q&U&Pg3@1ql_jZ+M`|)m@jDN3Cb5 zY4$5f({q|T%{@YpA`O~TReYt?VJ2de=>sk7jL6;DPwBP1oivIhjuPD{LBX;R_!<3y zeK;9OO-f)Qk&q)*Os&Uy0z!*GFIAX*kH^N3fRamMFA_uset z@lV^fZoT#Iw_bel58w0N_Z@xo(QDVQH$6iIttb=3+Bd%b4W~Zs^zVM}ygTl?d&B)3 z@4V~IUtV#=d*A)O$35 z%lvRwe5@$AVrKr_XFm6|)1LmuH@p$XY}k1JV;}#xPki#6tA6wA`!{a7?Y7%K{$HPX z>M5ta_pA?ijwgYWw+t~ly?y&D&v^CIPCMm>8-BOp{tfrseb?=G+J6z!l&N)dJ^s#n~`D3#0%Lc+5KD(bWnWD#s(bTGz(&C@Q;@}>DflF&2l1{ zJsg&QoglaGQ}(j|p2m^l>HTCVb%|Azo;L%)&XY?BlMrlBpb_7T%w@Jgult3_S;G&^j@QOI8DpZnu2cdLM zWQg^M)X<)hOh06B=1F>KvdCuudzxx`f4t?;x(`3`1IbSx+tUPyVz<5zOp2Ts$5M?uBLx&5(5zsm4)TsM!2%I5gD96>c_7dXf^{p!%IP>*}KwoXhldmg4z~}yjCDDof&7o z?bC1LCquOq7Ht~DLS(zpZ>^v`bt;G&)6%J_fI!YvP7fh`@!JCcvh5^845$c<0ZCBp z47LCh)Sb-jqrkl@BWzeBhttVj#O!ew&i#>dCU zCnrvN;uE1D!&+NF*_eL6GR9atf`}8nkALimpFI1V@yY&&Km3uKZ@%fk{SREZde!$Y zIRA$~{NbU896B~OcF)>--P!GqRz+>U-#1L5kgO_ERhhHSI`j0WKfSi{&Ud~0xJMo{ zn3$|>y>iv6_rL%BFMP=h@3`Z(Cq3!O&v?e^`|i8{6~DUT(n~M3qv1Y#?*7?Ne|l^% zP!Sb*&U2shzvqAd>Z`A=ZTwkY11bV|^v6xB{sq^it4<_%iE2)$0xVW_&Pa2vCjD zYMp9|g<#O@Gf2nB$NN14Ukf5py^u1408>@Hst0CMRRBnZP-WapO}U1QhXQ+cGg2f! zRS+2iVt4kNgCO6{pRe|~;ts`=3nP+MD5Ro7g1?Q@>}tVN5K_A7JX!H4X--@cQRi~fG= zt=C<9?anJ!Z{D=&1KuD$o(gCFpKU3b|z0cI}tH{3W59*~NC4{q{d#@!};@ix!>xKmT*_4=?`PpZ;>h5l0;Th@+;)7ysgl z%l`bAKa=t&Kl8~058D6f&v=GUyHXOh_5A#+Uis=ve*EK|civ^|w#|ne@}Q|jlZzKE zzUQ9%uD$-+XFcQTC!BD6Wz771?F*TCRw@r$D5zLl1lX`<8y^Z|25~VH-IXEZ zIYOM9nm{mc+CW>6yNcOxZXvhvL_V7?PXh@mGXdIVY?PGQ5C|R1uw06HmsFCEQIKYG zi5kx1!ZK}sHF!F5RYm6@!aS6oLXuqfUxg%SZSmNfiOf_@9%#`yiBwgg>W+l~prl!}nzr!U zIZPmuNeU&S)*EfA?p$6|2&~=|V?SGSM@R*CgN^lnPaB-MVGn+Iy?sV0LzxwS=~xZGk095E`l`?l$`KmBQ{Wo&$6Y7wCq*zfmMg_%G9h0p!Vi~i-;zrJ$a+O?O|BP(K<`h)R3cHi~fZ=Sn&@giu< zPKB2(Dt`H^5T&(i@7=O(%lZxX1Ho04akmf~!ImxC*4?*uz8-Gect1cDS-^!vsjCMh zf(qEUY0IXKTkg8|9!pvk4$WNbC1*K+>FL=m8@Ix28_kYDE~q%1&jVs{5n;OF{`=Rj zUpuVpjrVT^Amoa-CCUo!mQ1O8X&Y?bWH%)m&C<_9J3?y3Q+G0|Z(&@U$>39EVc7jO6ix({l7h$8C!nJ+52QQK|VNo40US_aQ zzC>dQ8-p-rA+j~v`jg51(Ag1muo-(W#^;w=~ECALx$2U=2;DKV;CNK^5%s4 zWP*Y?eTG4F61D69rwMJNysf9yVMBa|Lb4=>bBYKJFnjL zMK5|WNC*AC02q!6`uiM0eeJ*C#*u$=!C{<(_-)e$^RgyzJ$#s46BUQF-mF|NW|MBsU9eChD!}+=XU?6H$ z`F-zu|1E$1)6~S&>Q$>g@PQ9L@X$lX2L0{Rv*(?E{#oxmYv4R z%4w&%8je;0;9K80?}tD5;cmO{GBY#xA0Pj(lb?8!b!G7D`hU+m|MhQt!?oAluw>EF z^|R|-6k*tRE%KKA6qg$t852c;l!V8EtM|x1fmZWEO#)B-wMJzDh3llG&Lgi5nf~ujavVrA<)YiES0uiN@{O=72M{%bB`u2zT{f zKG1a)qfEk5i`1_|qG%AxrMQd@WvRkh|B-rH2x$oMQf`+b{{LdVWvU@IfhchnUO(o- zyc4*>+mo$#Tbj5@RN+S#?FXm@Y}oUlRQRcMiDyG7JOq^flq1<8YIeNfY2FF>-tCo- zBh$v%+)sh=bJY1Yyu{!ZXFmHQ1M?iwOk}jF%Hz3I(B4BJ>8#6=igNNThLUOKyx-Cg zX|L&W%mj*90Ox6P{NaM-OcLc~l3U6;_0_rhMn0gh3zU&V+aO9j9uDIwnF?qu-<$jS zNLEX<28-qH0;JSpnDSZ8-t7`4>0U*_1>;=-F$1tcrkSxA1`}>)g;(9YNJgR2?s3bo zD62G7^-S#}Ew%(O!JFqzhV)c6v_|YgB=aPnIBn>85)0KQ9X#ahH3F1sLa$?d>1fOR z#O-oolPoXLp4?l0bYZ3%6H`o3!EK3?bKR6y6pE&JD^QeQWt^90OVON8RMY7t0HW=j zwW<(`hm&^q=5J)w%Q;!9DqL>YV;}#xUVqT*_m?kQ3gmfb&01#E zC^VL+ETc0Z)ttz216QjD-Srm$WO=x`=u~80`J}GpE}5`6c8QWp^jx+tk#jA=9!adqlW->;>_&Pa1>lHeSCeqP=WYAN*e(PJ`!AwUy{0R3FtE$?uiSf^U_6vXe>z^NX^pSnTs-%p*VE~VK z#4#WG@P`*KUAosEdjT-U5I}66`J87jUApwz>#x7}o_l8J=J(rwztyW&KJ_V2UAlD1 zd*1t=?c1jxdF-(Os>%>BR`uWd);F)cf5QO>?hmM{iqwWGfxPBbuU@fY#mvm?)=gXP z->`ATiWO`{883Osi;q6~s2~35hkyUu-|JUg5}?9c~4?P*V4w0Nntqkg{+QDRo; zvZc$u@r|#4|Ney+E?vCjK@UFsBOm?niWMu63;^1?ZOiw*``zi8?Ms&}dH1{C)$jMEu2C64 zPd@3SWlNX6@Sp$LF#Y%^KYsk<9_z&aa5UF9W1sun=eEym7szv-^SoES>QxRXQDsw| z`R;fA;+I#98QgLE-Pd0G+ee-7C~L(qt3m{<+UpIh71NWd*Sq%G>tFuzmsLHp@%~L8 z`RGSZeDsNSH0t%nq_(E2?!M>l@BZ(1mo8hfc=6Kz`R2K+R;_etFvmW7yUs1*)p|#y7tHf6qH_ zG#dT=w!d%RKD~6wGPPn1&CJYw_P;;7a^=d6_iujDzr66|lTH$;0T?ls%_*lo_2P>! zzU-G*tX{Q3nSyPaAAjp7JKk#A?}_vpc6laTTI-2m_X;Jm-k)NU8x+W1Cm_@xP$j5y zGY2Idy5Q)Q@-K_eLd~U@x~!eJQj5l0>e9EIEj0@r+|bu)jHS%+V8iE9x|4T(-?7ST zroc;Epis$$!wgi^dd!6=c6g~5vEJgzp7wIY%Y;y-#(}8NT#Uu)a4}MmP%JY1TqODB zC1hIpmRnl6+%3grqf5AiNWn0xH|%kALz)h#7j~bH1HI!n(Pl?1S@JYuF~z zyfso40wL6JfQrJ9JL0L~aVQtDF;ftTI;%OoNvEMyB>9lCu@{;m+geGDg<78(z9LX* zdjPq5$?uF=~48_i70mVYxu2csT zll7V_o!Fi(LT(j@-MI)#6Dx^{5D_SWlat9?MB--f`{J^t5KPF-C3&``knvK3ipmbk zNQhz|CdXl^uzY4Ra!WZF6Ujtw&`F$_6z-Ns9_5#)F9({zkLjHA&_~GgMw^`u6#&o>%6s#kVwDzHVUfsL;xjM zL`tAuF$!QjzC}T?o_L(GWYuSl7Xxcz8sXIjJdK|U#TxHuM5cc?tq9{_+U}KPtK@FD zl$erne{RMk9S{S@3kx^e1mV{_=d%PVnLMpUWt4fLg@*h^q<3!}kVH=*!3#4cCe+r9 z6e^*Pm8ue$NrG7yoOnKR*;mT+NCVW05|cY-Pk`ksc6!;%{*?@~!-PNqVlr%wJK>SX zo$yEiB9;LN!LTY0KIp)M4nB~ABa6v^d|LSvPd@31CqGeCSSe=fippuHofdGU21cP~ z(0}%GpX*VjAfVz(NJ+4G>Ef5a{N+Am(l5n`6k_F&Lmqg@ArDjt)e4hpE*R4Td`g`2 zIrPWIUiQ+LDxjfIj_+S;qAJK&PiPriu>up56EFCu=LdKZDx^hS=8^o+haUcrhaLv+ zy%AR$Kpp*&s=`$+eavG{Jn=D)aalC(ZnP6TWjekl0L-Ki-F^4nU--fo1OPNFiJa-h z?lb`rJ@Tldjy&opN4_e~dG7NhkU$RfugMtk9veYW)1DObm73p@QU#G!kdqM_k%Yt~ z(eU+_R9OB|Ab%H+439$6EF`F8;^5S5_CAIiv9aXG}`X&#PMkVx>Mo2licAjh(z`Cr%v&* z`g+V5pBy{;;~)Rv2WHq9DD``NQ9B%tCMPC#S+#Q6vK3$X>gUHNrs}%p%9RLmOHF?A zQ%_p9bmhYy`jEj`&x#nT)G9=W_2_^D4(Rv$^P}P2cinBpI#_$X!Pd>2FZ$sR7A;#k z(I0>7o8CYo0y2h)P+Plb@#1Ga^BG_J%2%q2Zv6dCk2>K|i7S~vEVhO!b9Lj5H@@Uw zUW{HfKR0{kd*1cTXFb!}ntMG!Z7pQ+r7wSZI6FHxgSWoZyvYhf|Xi zk9qW?&%faOiRCM-b=HF#@aD~%*Kb%qHa6IGw_X1Ib*~j$lQJ7GzVSVk$H*k00gIw2TR;@o=J$eTnpL?FkoSGS*!7Hl}cjGvV+v|~%SDg`J0TOrE zpn@Qx99fFevrfyw`67#|Mv;LtkbIC^=}O7`LYbN4KEyq^%(l(sL&JBgF*}HgMgp#y z>>H5WVakSnvxPbb%VA*yD|Q*JhvF(%mI;i|cao*yYZ_zAWfhMbLlR|?lG5yFYO?Sq zbOTmUQLs@om;e4#3O7Nk)ktq}b~}eT&=kH-zAYgj=74!Bi1wxWEGM@%&5#j?$)~2Asq|AAV7{j6GJ_Y!U)g~+qi{VvFOZ{^M{>o#Sx8H}^B^Gt>6E16 z8qLB}LQkO(K`-PC?uKL!U_K4l9GZM1IY|4T;W2a5jw3df1&ml-L3P^9` zAsc0QKR>4=*ejGHr90)O6>*mo@ING~4OsBE z-Ha5&j@XjiTNVdaI>mBuNmw3czB1uPBWg2dY*)Hp(5X1|NB&m=L>P!k}UFGY+T&m^wvPQBw&26d< zaYM)iLHV3-kDBP_Xlzge9fjtP@KP)Y5T52-!vNV7W!Q+NJVe3Xz0QVVsP-!p%Z39E zeda2VYT*+ld7Xe$G8AG1e8Wo6dRSMLaTU)!h6vVL0@xU4jze>c{dzcJX08g?H-Sf^ z5s0hGh_&R-ZgDvjRxG5dOfF4qt$-RsQHMBRsscKyEt4TIQg>$Z`SglOC zPa0i9q*g40RfULDFs$pUXOf$yaE^Kx26-1T>e@opxT+*x`2{u)S$dL0ysOicS9Nd&4j5wSBWIIln?P-g#_RdIefCUT;L!wwI{tdS!r2p*c%;S>(ll_hKoJ4GgzHjVQrUo+0I*J}|emC@S z{HKugL=7Oz7sB)TDkj09;q@pLbF1Ce-iiDbysa&%Q0zE*ii@TKBWxPQoq|FSPl8Nn1bwdn+ zF^1V#6*d)#4(m~Ehonr<;c$N4`q6NtPd(+7GvE2HV~#mSYC+{kG&ME#v5)>I6aou? z-AOzk81!Mr2ZP>V&>IdnZ{7qVBDPj4rl0-%^7}X3Ul~5`F^?OYm{b*4Qk@KXYGBOU z-ujj^Uh(qLa5z3O0l-uQfYlI4LCi!`006wt9XJfC^x6`4v|ThjR)!{)7|8`{T-i+lf>} zNe|j@zuk7+qW$r?6?Yxu2?OFyIB-!V}I3;%S(wU zW>P3jDULEHWbP{{Rz%sGEw+hmdh!T*x2o70Yep>zCP zv(p3Y<-CIYu|zRk1%$@=jc6lXW6zBhW|FI&@3`q{N0B<$lNdmdTg5 zvcpxD2e4Gb#pt{#?Y0(DTWMvM*6$hoB^$TKRp_m*Xq^-_R<8N8MAnQI(lRK%-b83C zCmY#rv^NHGpfn-ISzk&GLdasUx~6Wy&%sB+&HMQi*-x3yZio#^qYE@w%wi*a&%3GF zf6N+lO=wn5L&K+JJ8=n^k3Ox^`@sX$O-KG~^QYu~_G4@c`*^j)UG8tn54J3D&`wOr z+R55lSdO9ydW+2(sC&sd4BT@rvBr|mJIUxm#WPabN80Rc6rM(QvLbTfnOLtljlINb z$4ImQXW_9@f#sIKiVWF|W^GcYr?!TO>R2LlT~vNZ@OJF+w1Lxd6iv|^mMxUO$;`}s z_|4DIe$4M`&>p4k6h+bS0v9_TYM~_Bov8n>NiwC;5BROSz_O0^I9mK32bs$YIq`Q) zM}v#w;5xwQ8dP)n*?KmzY!o~`dQbD4L@s2jSe!W`L0|UWIGAT zG18uQB14Y6eQ4L9-$VX*6r^5khOr62sEi5I7T5Y25Ji9?)CF%M2n3=C8k549 zChtZr)3CKlNs$qQ)CAVhY^yP@atJQ=s)EU+nCl|jnkud!-6$Cd|3JL@HpGg0s#E|X zo_3-!)>Q*vAqr*+rOJ}=rqr3?kTpRGRqmapm?-D5F~TGZb8go}{ox%y^Pyx~SaK57 zy93jfg!`D~H)XNq8SuHu5o~NXinurloi=AEud#}}WErJibJ6I)60M<1tVAYC#*9@F zHB+z-G7B(kGcK?iLNv*Z0Gvl?PPYh#PcW<-nqC1?u`W`ac+2K3|N4@boN(f!=eN&; z?8vH7)R5o)=IWpQ?B}=s{nqK}>6gCrr59d!@!osyVFgSeQesl*aDH|$HUVHb8qLnm z-go!ix7>2e)Z)dLUvc^L^tSQw@hw}o)}zs&Kc+5GPDbPXK`plG_laO_^B55oU9x0J zHmO7eWhL^}@$S6)u2;S4HQTpttNOjiKlO31IO7aeNwMS5iYhCzapPt~W_sK7rI-G^ zH{Rd2Y0IL?NnwoUM_lpJrAzO;{qBBmeAE4#`V|8ZTLXPn5k;@pUo_p>_0PMN;r&8etK5Vc%~=~Ea?UQTIY&yz!b9H8cyjS*Rz zd1;bd*Q{^q=rg4~ekyiW8kk3~#xu z9WUL8sEzF$(ozk?wj%T7gaM~)wJ`#BLln#`q9i_S$i*-RK^Rl63PlqqEkjOfHlKhp z`m`K%q3{xo`xiYbQpA^gz6&RX=E^*3)O<1@zMJ95W?5c<12|@32Ip7+Sdp*zTcPtM zvf_+6>JJXN-1sih;N>{^$iSw;EpeG4Enp%;g_nScP&b>P?ufj`Frx=BN!vCfl!z{# z%d#Uo2|D|l)~^AQ!Y;{-oaA?H_e=!0o{etVA{eoNz!jWG3{y0h+oABzF!G#J#p!E+ zn6+I@Z8S67tTr7YL8mzxnX0?G=wvyQ_j{MZxR5OQ_sCg|`z1ppMcO$>IeOa@S?C6TgWEPh zqp8f4?BsDYzUTrPRzrWy7ZQf^)_e(~bU$k|S{V(f(|9#4d)jzt2+hba+~V zAlr`2C3>zhv?XMM3;taUR3-kFU}}D4uOk)n)6&JfWQkB39ysYDQc?3yA;UQ ziG61{1+pz1IIe!3`yr3pUVx`i;K<)-;whtuPR9z$DJ6v{sY(j}h@7M`1f&H;2qR!m z4L%>4f0)~5Q0%x8w@OB39zarBMn7bG6wlj zIKrGbQURz-F6Cxd$rXN6l0rQePsbjAW#V}V)>0@0V&`YKANG)kKIE{&YmqAXV{r5% zj(Pp-UiYTAzWMy~zdy3{@>jh4!V53zRe<+7Dry~!P2Bv)n|}Yh8^8Cx@7;UfJ%9b{ z-VK%XYeZddt?W+W^>+#W=)@AyF|Z0n1UW5fM;T6)Y^o6@RvMO@{8e z?G7a#3UDEVPBU zc07vcbqVi=UQx8@B;c15Fj6AWph9 zqA|#YrZXk?*~d7nHX)UUS95H|=VEF!=)&+@t|+m%xkXOT2Edb~^?j z4F--E1IT`cz0pdM{t_C)e6?J}4gPT(2$5(*Zv=!|ow*H-5Y>?yqlk{U=aeC)WQF`y zYWxNAP_zyYpT;OW*Jud9?~J?%wmJkobRAZV29pa zhfOhQtaSd|0asJ8wB6~{ z_!y|3n8*cNs~{4U?O+~<{6Fc3u=d0Z2dQ1hKUk2Dc>h`Uy(EB5BhU_+I0yWuqe zzyj*0%T2GAGC64&6%@tCD0Rrl65;&Rw{Y#Nd`Nn^X-&t+ITC%-DcBYntt(kJnGM(} zu_+rucS8%`O+?|RSp5QdVR-X4f`V}BI@DH4Di9j}@1CagT0;Q3PTg@%>2@SHPdyZD zj{?`O`OMj#ZhF!aise}{#z^>VGi@%&-Cs6_$OU5fw^KuH;nQ_-PBMS$7t0wo@IrIigEF0O7AkPoZKo4cr+Xj-S1^kO*O+%+i!zB|MZ( za?^Z^?IU?R1CR+-07wZ?1E6AZDf%ik05-85jg1ENmbty*7ed~yE-gw$|3RssN^UoO$M=sm0@i@ju>j%T-rh z>AGX4+Dc9OiL*cPlqaA1&Ud~0S65zn$L)6w2K^;Vmh83HUQavybk)jQS+;a1t_%TO zF@WhUTdlQhc=ei{0o0<2tYShDF*7l96bZ&Kg!;Yy_U+T_)^Av|X7%`B%=D_Se(kG2 z{LxR8E60dr*s-oLyk_T}M|C|lH8C|YJ~1&lIW@Ip$&#tXljDmgm+iD_Fh0SR*}7%3 zsrtA4>CXVj7yz^Lb8ISwj_e44kRY(DssJ<`j)aL>H8@6?&7wt%+{Ep)YB>lnm6sWY ziHMCcRd4a4#UooAFdGJ;Sc`RCnGA8P?vat0Bh7C{1ubKa%CGQA$+=i9RDus+vb6pAJ7^=OWt9d$oxb5E*7i`IZ8kgDOZo4h5G)zC{bmpD! z+(XChmjA(}?RgDtddPx*tszdiyNxv7{3mVTxdi~VUZwo~e3g?u7Ja^{v8F&-_-YO{ z5(AZ8`^$N2o17S+V@()wQ`9tXTVZeI?q?pDR`guNezmXWxxLwYS^EuCG+gCoja1l;tvcMQTythk-AfYAL%my~jV^jfB#=GVz_EzPU-a;1xy3LJxO{q`3Rs$OuXsHr+xZR}(0}&3UnbwD41W z#C@PPrV@s-IG1c*IJDl5&2N%>7?86RIniCWs7Zv-WMIu+Qf9Cz7a<7yIQ`Zr_o z1yF$&p4yoW0io&La!FA1n}G4HMyZpBs;5gRS_8=fO+%oJpVNJ9{18aH8GzM=uHwk~ z_On@=N^XJdGVz?xmlcKqmr7GGu!A8LsZIi*Vc6%Rb?HrkxV5Pa;)FrVuzub6U`z#SY7)SpmYRAzLA}9v zAAn);M>&M~QBi?qjSfx%P+L(ICNn=jw{6?DuYUO}ciesFt6ur46)RS}>5XrA|0V0?@r&>Bi0(~t~oxW`nBh%1(?+GUZoFK>fJJ}Ecm zTJQcNIUTL1g&q{G0Rv;0SP-H?6k@@PoJ+LAL-+-7mj5gKY?Ars!6k@21K zEfdjA<2pnTETqNK^QL_(-HB_GLLg>YM6DG}s2T{EhPvt$#p!jf^V4ShAmf@iEIU=fP*qXu8}u^P zSJmrKsTnvCwuR=T`{#HkpMqvUcKLV^Abtn1=r~FG9nfh@>&3en5*sgPdbZhK3Q&SJ zf6L8@|AVqD?uQX{)$mO%H_e;!dqxV~9PekkIH;PM4|GA;6_@glgl6#|73-sn=^NJ1 z0_|#J#2sZfvL{Pn*%@_J+I_`NV%t?ykXPm&OcbE#B8P&51I1*#luv$WM!oNurSO!8 zv7oW_kw=2%FojpRfU5+tgMK?NMTnDtl89(j$5}*M9Hzwk1*g*j&h>64()a^qw+q1? zu2L~OKem?Lw8=zsJT0IgHFm1SJDNY%n$-+4MMPG;fR_X z@~rOyy{alvy2Kco=GC?R+hVVOB+L`SB>Ns2Xa_Q-90DTx(rlzFRW%{)m>X8VgPQl7 zBS&M5WO~=3CEY6W+;#-IBJ9x;pt_@R`t45gTVN`xLR5pqzZCb6veX?v91Q~^H*Tj2 z5}oCm10H7@QP)&Z;jm zNQlhccis(v$eop?s;cflOu%qO#t^aFrdB{jRJFFF>Fv{>`s61c{LsUm@}ws}_(2ce zvUS^Net71)-UYCVC{z`qI_UQnFIqI5o!h!~+itt=wrch2HLF%H-)X0%OP4NPwsg_r zWs~C*iSqlK7fzVhqXk(wk1pp*OphZg-6Vq^R_V(NE zVCT>Bi*bc21EYHM`x|bkdVOYgVe%R(7Pcm{oK*F;7x^!4W~d>;f_%stDj3225zluG z?rB^uAl8*MSC9Zo3i6R>ny9ylh;8Y3+D4{+Mw@rgG9tF_T63FC9XcZEw7OKUX%oVtp*@0LFf+tAc#6tp`C%py~WIcTqPxtv|ME52A&os2{nE!!Jr&OcXpzuCeHr zKyNU}nv}Hw$2IKt_RqzgE|LpQ`+&!M&VtyM=+2UIP+rR*UupT_6wqf^u8zY8&A;Se zH|~ddj7{gQ7d@3>_)Qp!D-d^%|0YgTShWW*j9YVywG?eFn>b$FF~BG~|1ThSVQ9ez zL!TWtb3P52ZzR~Xt~lSFkA&H2%)b`jvO}|*7H#AcMJED%3~QE77(X;*+QQSHqC3@- zqo01IY%8iWpQ41g{jGJQdg-DVy{gaY-yJuE+as(-F9Q0--7H4BBmU8mj*_9U6X#1!xW( z50tQZk?8Okxj@~wR;$6L%1to<5MqFd$yy?I6YDE=rE2^M2nFDd|JA&Drz=6G2>{CB z>KIHoTPjR0p`o9FEIqrRMor`OG$_qp0ybPg1Js@C>)K&0wSq^-j&){JV`?OJWQ%hb z21RLBikRQ_c385m8>*2In5S(n2Ryf4h2KNWhSk8HMo+cFcyd)`$cXB=32TVOD|NE_ zo9E5uA+$vc`CpA|P)%7}s)do8t8Xm?bwfC0U8li!UvVP6_;KW+Eh)6X+ZjAUCHhq3 zytliHLc>v8nZ%K|>}QPpEeUT(*<9z9rwbSNSSgeV0p)4MU5z-098`#z7-Hc4KMqx- zSx0HS4LwDEgTs+S_IyqR1aMdmx7s14Yz2rcQa)QP1c~AN(gd!+R^19LYtFF~sVJ;f zz|?g;7#}A#ZqM~+KmXa*EnA19(UVR(>G{upo~_l^b#3dquEo~1tvB4iP61*fH6V6x z9rA!fRqfo|>{VA@DI!*^Q+GrpR*3M2n{NE-SHAkmbI!Tqm%jv%ssO9b&&}_(=U$I_ z%wr8;D)Ye)zF$VeomQ;8;DU>O{_~%MjaYZWpfFVrIP?MB>&?#1+`lUcr#Bs17QAZeH#w@hRyk z=(*W>wm=CQEQ5dw85|=;h{~2SHLcBCdB8t45~<3I+TR@8k)QT(%Je_dSnZ#kOH?$Z zhiTfUZQ7@eDG0Zcx@y^N4arLy#~cJ)OdASTQBzokeck9C8UF4#Pi5$G3@k4c9r!1YT5h0AE7%Y`?k6cU{5txWz6p-W|r8Hlm!vuz( zu3S2HXv_3tXCs{hjTocic2R&BnSghrjy2UAFzkR+lhSalQqEgJ^k>7(7X?YP=40z( zGEEpS@)_IQQcQBDn~UEw2c_l^QLwX<&dOV$*8P_D%kOC0ZKT=P{BwzsvaRg7e;_$R zTY>D*3bpivllUc{x5lN3QaYGa0<*V^_V{N?{AqF&CBv4Q@MUe3#6dy2WGMBuel$hX zyO%n)omw)o^Xk~lE|K4aGkuQ|wz(7nB1yYA17}+~HxMb5tlNr#a;||j{o(wkMo>#1 zzJ_jchEGnGV(r_2kjguVsosGhkZ{{^?T9ENe`R+H>DBpiCNi2=$eV8b+_qiX!6RXF zw$O|y<~Ng#+1vTDzr6{P+V_}BPpHPtGerv?B2hv!OoBSPD2CNSS%Q|bedR!%MdU++ zwUhu@SM3vORS6IdQb&B`fdZt`#2d9i`3E*pcc@6`xE5y7@|E^qE$;z{D^@hgJj&O$ z6!(o$qb1JvQ+?`jX5M_<~ z*Gzzfeei@dx4}ta>6JLY99FZ0iGreY#xqVRo28jR$>&rf$))C4GZblT+cii4#Ui{O zrZ&!7tRF|Gnx2YXL|Y|fz{dtci6U(bRy|KP_qx0*E1ARLPps7&1{L9O>6K|X8sW`i zBijk(Q4WV^D0)9)^FeMXYuxn-0xxW8=Hwh_sHJl{L`?cs5z0?9;8x~-oK)^ZM?W#8 zW}EGHNwVUrCSVkq0ibYB$Q=|4Sm+m@_oSKJb@oyjV^v5yziMiQ1qKhI#25VsN@W`~ zD{>V6a5-u%b=*KZu3n3$WL2Ma_^WfZc)w6l zyYIa7P5`yIr9LYN;>EI+j4xdTr;0ETqA`19033Sgq0H3l^)I^M!tK-BENXsKsB8lEh=Rg zoaYS*s?^`r49>tYnV5uT76Hm3Webz+^2U!g%+BWCddUZVyyPVSW&bTO=oS#^2L=ER zhXZF4q4W7xCz+|;vBED_!1;RtX;l88aZ!+sGj>Xd1}~tR7uxR}th8@6pGzf0DBbmb zn0)Qhu?FaBw`p%DNn6Igrgqtb5lo9jNe()H=$;ZWlxk8iG%kHSFXvE}rf|rb;~km) zW#N|ABnIHKT^Lnuj5V9DuI=|ij%C|M_%6u-n0B+`s0p1v(=A3lRquZS- zBGD;*%n2xhkinPvHz`^m1+#~ji=Fub&IPV$Qxy6?!IJieU3NA&%_| zggv+#i)N7`9NCaiPwVZ01mi?sS2Lj z#9tXkDW8-uMO;KaP-wP9X1Sf9#ZO)4LWDICdzf6~4j-~QH8}~!SbxkI!)$uSfSK8t zs`~Lye{%KJzgf1^vQa&H*x?V=Aeg47r-@9h_3v)D9w4blLgW(oMx*+JANo+QS5?Lk zDG`%^K()0iSFJwm@WZXz;jq5sl1s@L5~-~+l#H31nZ5OIf7@e^J$G8M^65`M9q=`G z84T5`GNanMvW(1t${8>Jw+9?@2&~?5`|Th5=zkbC!{HpWQI(TVe#-v)?N@R2lS_Vj z)m2v#v#rGl)PlM9yWd@R!NnJxcmDr=`m>*{Dg(G^5jSHN>_kKP*5eL9ayNq)-?yaB|kx>|sQGnsZ;uVazmiPR+52Zdju6 z)6(!^@4BIn3t-ay&M?E+Vq;jj6v;$cZp+71B_IzDT5ud~&eVt}C)9IT;tS;@7kJg| zF#xb_wLuFQv)Pz9dpH4@=h8NWo+`rm2N{@o_-VPr61JSO9pTcLapF8mxo}T8>(mGD zGMd58fOpHO+a--h;7X*boc3CSj;%OW4+Ni2?m}0h$5bRfKd{!x_pmrjY*!LzYEQc+ zHU3n7%x<{hRdJ?SawJo0mWIPKBJLZwCKL4qWoI^)Iq(uiIh!CC#QQ*vnn>> zVp6Cg9OqUYHT24N24KJDmTQT#gC|sdw{5MSA%U(=!fNq6l>oQ|IL?M{8Ae81=uK;1e{dt=DlyvW*LKjV;3GvIGG^0K9J}7uxPc5e+I+oSmp-YavCi z>H#3;4$3P)>6Y$@gtxDkL(|p>(V8y)x)m{&xxl1&3)vb!5t78s z>Lh_37{SEIWo!&~1U>htr>bnr!na?@q*D4T0c4exp-kbV6z@UGrMcfM3*s=} zyLI@9XNm_QD9(W%EfsAhD^JBPH2*n$ByTH$k)3Ljx9JDtDnA1t6;UvZKjYh1r%-^TH2)Fjy#Yk{)TPuy zKuWPwOJT`VU|PlLMu|;v3Axs!%&d@JzxTIWZ~eoKf4J<5%Wu5lx@)hy_IKA`fAw## z{^=z@eb+nQ{f0NZX{Vib`rF_B{FGBp*>}Hvt*ylhfZcZ4RaM5u2Iqb6`#0ZsQ?K7M zL@IWEcJ>W#c+(YE{9^I4rL%LhRaL1%4FRaABG!L?(TnZK4sHF>k9_EhU;M(n9Vyey z?DoI??Qd^*!yC75o8C6PZRLuU4?gTL6&N-OSQTP2y=r!TZa6;&Ky0l-{lVaU?|-it z9UBb3`sFYE@sEETj15Gzwz72b(pSIs-?wewx_I&8e>>xhE3Wv3t!=F`GdK6U-(COj zZ+OG%mAfeLf%m>^=bd+{t?g9?PKX--hGC&l<|5A!P_fFSYQ@$7RmQLqm|uCuE2g(? z+j-5-?|A#$&OZC>*_jz)og2>Id(XXZdGp(U@$;WQ=&(b@+Ic%4SlCO?u8Dd{TAwnpal(ud$=gf`5#obr?`;3yi(P!bTt2e8J+3!J0~B=!4X zt$=v{27^-MTP8Ld^dHC8yn?pZIIg^b7R$I;LrrOH@qTzX#pNMcCei^rX^`d;)PvI< z44BZbBrwExq#0D?J9Ij(yzljYnzCj(PA;BOIfyRAfE1NBZ@&1+a{X#lym zv>bJEVQDBjRYvT_cjI&6Uy7x+v-Tq<8=cmI zwk%NCMWKf{i6saPGpcAT?Yn9E<7Tu|%4FZN%&vk8krcZ7E#rochH~;zK(jOGh(hHT zZFCoGCTgH3I{ljx$V=45aGO^~0j^(n;N}8`Se7XkL-f1aYhO7vX-1umXX2;q=l_ql z0Ovp$zyFN49l95CdAc8GKMr4c$7Rls{jj>1~2@qhD zEDW|WIb%c;m@F~~1SqbwyV`X3-gBm_{x3TB%$&W;&(AX-(4ITfp}M+KS65dnKqL*- znYy(evKNy6{v*w&-y4bL9WI3I##l-%s+X%=U1{&Jbgs)>aFV4abqo_lh3b|S)FF`EH3GXtC_)BjalJVwWNkQ3awUQ2<*MF&3NSByDC~; zm=&ln{kIqC15>@~r)TFVvLJO)lIyJ;f91tIsZf4R4Qrf=oI#2qu-kp)iY2l#iRpt5 zpiV33oy<(W1SuEpd2ICE~!rv0y@o#vG906bzu?5I^GB&MOWw zREict4i9po$c7|pSxG=dq%O@xBPy&UOiaN#@Ke~E$gWQY6P&F|n)|gQP6FFzv*%-8 za$5B-io;YHpMdLc*0%p^jw83}ISp-}Pc8Xj$EN(JQ){*9Ye|E%+_(h`|MX5u44nxN}9#FR{C1nDUq%^WoBrDgc z0|Dj63B`Kkm))Fwszr%tJd{EPXrUao%Hl$n;|QX>15l|Vk5Vc5!+p)Zrz2tYl`sFX*`j)qR z^gsUNvOoN>8ILJgcmz^Qe{s_7U-8OUJ@2{C;q~iY_u6wl^~uj1viYFPue#!om;Gti zuHDRL@1C7+eapG))~#*ZsbNDzs<5qP(zcbhZ6P2tQf*cFrZ+v|@1OU)SG@d{>(;M( z<*Q!#f%m_kje+vSPVRm0dp+o{&-lcD{wGAA_=LYX=GdbTIry;O|L&6Q+pnFQU);L= z+B@F$mTb{@l7B4z=w}K;_#)VJ-`3`@3(Bb_Al;ur^i0#v9Em1tH+};8>V=pg_3kG zuuG)OK`cp-ACU&sNln1nnH?+8wUx*%+L}RL<-#WK-ijFkDoP4ir|86mJ#~sZoubhO zb5^e-{6c?fs*o$lteHraL5>byAmmNM-Vs;hCwOdTYqE%f_%TW_s_eHYE_!5GvCM#% zblG-7Ot4C}xWdo={MHO6{wsG_IVC*A}I5tsN>?Hybc}VDw*){xA z9I)dWZBT#mDPk>`@ zra%1Q(yOkzV*SQV)HH|@FJ8Up;Y!|%z%j-m8&Ads`+l_iB|Tr%zfXgX8cgf5S%JQ0 z;%`qm1#*@ACUqQ-NJdp2nY}SlIT>V{y=IfxR_YN&_<}AkaJwiz45+$c-b) z&Pc#Bb3C||6{hTU3R{Y2Av2jPxj^&6R^x79NxTx|jL+FrtVW`5L9-C$T!C z)BzPABY-}}xU!9iL{-FY*|O!b%dXhEZF{S2V@9p$q@7ONcJIpaq@A+iy(@dIwGVpm zgFgIkA6dJ&7VP&{*^n{jJ@0+@Nhh7O<=Shm+rIU)U-;a6-t)dsfBMsxUV7kVz014y?EdM`e)_4;e(u*l|K-jd zJMFZ+#fc|=@XKEQvXk$2*DY6F1EOu)xBloyKfd_qzuddLa?4xX>Z2E2aKzzS>afV(At=I?uR@624+2t-EGdIgKtZ_ItjX-HDOG6 zf5;(mewj#O;^l?Uh)@Mmbp{;Rk$@o!HKHalc6yvpE7Vt#sWpl+=IgYt8iMlj0ftxx zRSt(b3-tAeIxvtY56V&(mBk5lj-iAm4^7g$5+cs?p0uU_^-8nQ$QgPP6t1ZtE(?@U zX`E;1=oRU41l9N|DdyTJLXrAH#+(sA2?LdU^KJ(fRcTvjIIc;Oj#Z?%$5JPCM5&gy zP=y*bICpr= zWl|P{Gixgn$aiQJ+KkL?Zg<-YzkcCG7ky{f_H7$BZVCYxj?Th(7&$LeL<<2bVborn zMYwW?(U7w#yB;XGY4d>;?$SKkA^kUx7YdE1Z5ah9`07*D#G+{nnA7|CD}vv}p_U99 zehBqMKcxoqels_1DnMnE{;yyU`QsU$Xh;DPQn&L?5#Rntk|hRKMn6JjWY z4_66j6%8UM7!Mh-XJSKLN?gCO>ZMP{p`~M4NLju7a$|P9sYGsDO*k&?DYfTiF^k`Q zf`A3oKvkF+?nrtZG{GgEa`Q(nzQ>1CM=_w9?Q6!k7Xl(G9Gp(SlM@mG5F4IMSAOw} zU(Jo0aWifqq+m86h0x;Kwe$04VR7yJ+`JnH3n^Rj*U)5wAYn0*n8pwWC;lZycxuVl ziA)1CjI~m zhLC|lLGflmC1Kyh>xF19X(qRwmZl&~(rkJs14WdQs4_)Fu}4yU(M27iJ_0GC(xg0f~nIa`9co-oKL-Zqk%|Fkvo#Yhnqnvf*kdNFZwd>WshI zwPV-Z{Mf26acixL5J*Ml<`)+i$D1}Dc=`kGf7oG%k+PyCa&pl-yXP0?KKQ{8e(*yd z_}VwVzIDsi<>jSgk2&_a&wJkSH@xA_-8-ND%xCQ0u~QU{VUY7)S}2(YQ2fmkpK#he z@BW!jfA->we{$uOSGHCTI%M;MAMn6?-RHFNxKXu4tlEMMfekljJot=ByF!YEHH!o_ z&ZbtV0RwM%!#|&U?wi`F-MD_;%4B6U8WS5>ORTSX%|ATgfe-xDCqMP4%m1`-{f29| zZaw;_qtATU!)|`Fo2rOHm<`;v3eg=;I%#Fk%4j@VzkUM%LlPH^j$BW>_kE5!>d4V( zym|8hy!jF0WKgWXHX4)t5o@7+gh53`V<`Z!xq6+X=fkzt5p%|Fc^V9~R(-FmNAZiQeK`p|a{HQ6- ze2~Xpp{Ix_5f}o%3<+ypQ5Xk$kw_weq+Ufv)fJ*A<6luWBduzaHp+-Mm%S1Api-1# zXjTtJXb}66!gJ#`Uup+KqF7OQ?H1NafQqsU`XnSZr^sft7*(2F=cM9bjmE}$ptp@?kEXUM;cvA|K!W;B_~ zd3ol7&?+q(f{YxbWdl*dMnt5im&Gm$t|(glGUbA&js z;u1*}7BH%+?t&5Wo|zbA7=U&E*Luwb@w%Ztm=j4Z@>|cuN)X!sh{VT|`JOYd17rHI z*kWE&iF)c$pgAH_0aB}ATyyO;r<{DsWHLSL(T{$?i(V-0#58lYpm4vc^?3bMlj?tV z1`;WuHeq8#BNbo0uoI-~7&`p|9f*ga>&ReR>QOIM}j zPG7CU)DESbehNY>x{Y$FGp4@T(V~&yzXoN?>s-A_emOMo}V^mS6$7MjjK&5_Ke*5X?P4xTLwDup*7&ZP#o$ z=`ZfMGO?qvare%MwW37Uju#gW*syVa&BC4Ubf+gh=_$t?dkk3-RwnK^C_%~c0=(0$ zCIWT934t^q*VCbpa30&3S*6{n31guG<8J%RYZX-xL|nerz!1`nc-MeMuO_06l|n9D zU!2}1QcvPSH9O3JtcN5SomS5Ef@?^k<2W~0YAqJ$7M*2ZS-hjUf))jcX#4i-PC5CM zox6Aa*MENO<|p2w726mSv8$93Yu0sF;sr1zvp@35sO3o|U9u0o2QobDJt9K@&a952 zQd+Sj*pt}|P^8LAMsLu}U00^Qpn9s8JRO_yTQlqR#IkU8QvRI1uTO?!M& zFIgu27LBy-5HdwBl2151#zY@lNsoZsfT@ z^0tlE>vd;MgOnH^U~7Z3qEqerN6(_jOHfO6(4FD`nIW3{6`^KK&I~}l4>d#2jcA)_h*l# z99Q{NiYte3Vs!Gd#{x>_-{HSn;wLqiJ=r|wTdb)a53Eowrc#$Bb@+$NKJ$`Vzo=n} zCRe>)a9ovpe>8!EfYfxWVFn@P{YC*CocvuZQN&+-ndnwiA;gp;&Qt6{NP5QQ+{D$G z6)MJ%Ve{I5c-@vQTNc->dCF6t0;pT-`rrsEFj=+{#3s1|8WFOb0P{M78cdO&GYP}b zhf-86@}`9EMF}nNpQ$+Y<~C*j_n}lF%dwBc&5v97mQws&Q0@ik<_{HB!#z)qC8NgE ztbqtr+}y(AnueOK+qYhE#g!la zw-4RtKKK6KcfUv8OO+6zu_q$VL`QZHd^n9F0l1jsJeDE9ZxlvAscDpC8TdV;GD`2D zE<(YFv2a+uBkc~yX^-+MwB@!L+$MI~Dp7FQR#qZa(aCi3i(mfor$4*+vdb+Du(0f%D?Q{5O7;Q5#O56W#Tu-a*9f>IxyUQ1*-a0;#pkiIk$MrttvyJ!Z9txkUpdk@|jO zUtZUigDU-p=^LTA+&H~N)L&s_x$cWd^}`@yYpoUAPTOf~t(~^*6xxc2dvB-HN!yB8 z#GOvc6$Tk*Hn5YawQa)~H;o%a(=-GXvF&tfC5Eg<-RtT)y(J1Z#t@OUR@#<8jS0u2 z5a^c3id8#pMPhKJ!&|s<)moW~N;_2mnhr1s0jeTa{5|igZ95e!oOyo|{uI-8D(NtH zVY)b9kE&Q}mBEOS5CkOx8Dm7JAQ~^sjmKk^ROdf^%`S?Pio6A%%jcTM5)8TAE2Kq3lL@NpR+ggwsW zcrR%-meDYL7vpEWJ&-;21xcp+y#J(`iK@pu9VZi!Cb0Dv3n#RL?$&ug}A?x zm@Kv6UFzA#8qZ1Dg|EI3N$tkL5CIZzi}12Aud`qzy)_Y zw@zUdIf%k+<@TdrDg>BvmF z&F}{!%(Y`jFQJo5IN_3GF;E;+5keU;ksFC!wS~N>@5gVhW*$)LS zy$V&il#M^acZtXG^LoVwU>%DFWC%laPUl)RY&!=>6EX=5fTXoBL~l9w&HwdZA0yM8 zapqs$;>4RPQs8S~0!>glJQO?R)EQ%i^B#(+o+KsfXP58C8!#DbZdl=VN*+bszNO^h^B~5bq7}{D42|~HE1N~QfP%l;Oeqd zd<0ce0sAG6m(x+!MYZO8SFa>OpmRQ+V7J6r0SyLBQuzcZ#6nuJb~-upA!kk|69wky z=fP(uYd8UOaHXAytKSLdFYvEeCD&CyYWqq*SLEbmxj*&OexYNL$K3sBFr%m zi~KQA^4mW_0MDAEb;;c0$=-s?6&hkWLRgIFKqW!T z++2CZmecNY+S1;olTSY7!yot{xnULif6lL$;~-~#PX}RN$psaJvl7AnsXV{Mq1i&n z*SwaaFg4<~$ONQr_mf@XK4mouXpEOYqU(I@37GK4PnRYUkaR-*B!cy@P~n_OO#&{A zEc;j#i9#XjxAe9yRA;zNk=vdNG*<#t?Wg6O?*)4nM%oLTZ_Gu*F_F8+E1u5u-k{ue zPACzjk;~8_2w8~;ridZe`UG|nA(hFQ3cxyIEO|u>B~KKMrQ&2k32yw;xUdxCSjND3 zqa{wN$t8_L4TWZWfU{}F2C%9O--IV@X2V>cGmSsUQxHJ_Ln;9n1mex?M!@9*iWY97 zQGaJ98v|p))v;M1pGyYIRx6wD~&;1mFAnkF|9 z*(GU<-c-se_ED`X6x|;_3ddiFKoR6Xv|5Op+%R;n#NU1w)>_#p^Ul2*0(p7m(5-Q! zR!bHm7oX=Vc_5?Y3B5%WQy$k<;?`3{j^JMK&)$hz zv93lDvpv-)2i^y&WFkH*p1n;Lv=0@j!$ebmoo2ifBhxO4whFA}%D0lwL}^Jv5i(!d zw*$nGyqa(d6b>9Jj+;7(<%039ezB}Mq~3`0*JZ?2Qdk?4!k-ZorwkbcHfXbOuTn|% zL7an9N$LPB# z0Ll;fLs1+@kK;lvKGN4{N*A1*iSR@KL2hQzw(5~U09@E^?N)N_R0+{5CJ1zz!}w{acreoZ_MC+FVZ9)~_8W$ILnrXa`(PKSAh9 z*mDCEF^IN77O>$*D`C!+f>VdGrcBv-4B$)+m84D8o8o5}UYrU)+YYob#{eR8N6eEqtx9!srA2wfIZzZ2|N<0xQCP>7G7ohP3XCQSjV9{bzqd)sXxSz}bxWS8fnXC_mCc$yEm z&5vp$#ka0NiulP8qabqXr7)QX_@lV{Co{gRV=qEO7Dl3_<|c+T94PaRB_R=E^frTY zsW>vt%wz=U0wf$<#Dz3-7$9P0riKYt`8j7lYu%;|*KU2pBOY=2WtRc`@|VB# zf{%PeASPci5C9UDY17>N@PVF^kG4H^E;%+RRUoc-rdsF(68$Ai0Tj}4eeT7eKiOwn?2+JL;PIU7?7 zIidm(*LzZa9prh>UG~WlYuA?0&Okfp4zm^EEz_8Js4_uU)Pm_V%Hv!VgQ_v-T)Q=A zRPO)Kjz6mxPo`?WiBwR2HpbeH&jvE<>0qgzi>#w+4iYkwBO?X9C^G=g z=U%FYKwe0DO*KEIZLV^h^Gih?}D#FQ^oqYn~z%0=+F95J~V>L9TjHWMkO zx+J(9TuDsDq;^aUcBl$t?%GQgf@)YjOrU`0w7M-TmhVe*$>X!~g4a?0`7f8}Fta5p zJfw0J`E~G?*$R>H$_T2kxoXZPpvM8y#aXXt^(sp9g5Gv2ony(8&>p+D zkiQ-34ZG%udzWrPvM~-wx43T4?OpOFTU;;=3A?^YEjYA*JQ9Rcs>vdf4AxY^Pg%7~ zl4HA1eD~q0Uq<^Mh2O-Nt*}psDH&@&Ox1Mpr{@j;$@(i!fFz%?mmmUed=Y0kqs)e0)fYR_OvYZ0y55`B9i6iO= zrV!1SK{d#vRj09(r*0CFhn#W7qaOYUtL--~yzu__zyEJ8`AyqeHq@9#0TCq;e=y*R0^vKL{tO{vJL?f0}Vw4 zs$@l#L=+bOyZGLfU_IQ9dQ==nt*V6mbWhmfw?@hYT!v4FPS-dTqHI-J;bsMZSb>EA z7HUORt+j1yRV|6jtzwK}=4N?$`JZ0*PcM7POKscQY5T78-np>2(6;R`?RK`fGBYtU zidNtHD1YE_R$paPpk&?-N1`IF^_D~)4Gbt?6;{+R8y*?v)>`p$$Z@bU!hLbIR;`H5#~Mec zVr61me^|tknG2>Oo!V9$qMBwj8ZnHLT2-}?XA4aw)7IrkZn$a2BLfx{RgKBhy%bdi z!HTRbFN4X74M)DBdZEmWPO;H$_dcWUD5j&QEQEAvTt2wBUGGmAZL~trLxYKC;3a_) zk@~$FRrob@Ua@B0;!6TDHLu0Ts)9=FIxA9DsV||Z3#NBfJKd+eCqyH{G_6CC^GL?+ zxn<>%5MswP{0}`_`UxuMVp5N3H@ixReA@Fk;i>GY3n1giAZqgE`ArX&(MB(2&R zeD&T_gSesipPB(^LCmKjUd#h{_SI zgsvVaf$U+asFqZF-@B@kwL?{zN|<*=E@e;zhgbn-87`8(R6@1)DXge`I6Wl;qQcd2 zog!Ykg$=&)TP0-k&lEd%)}JF0N?&SGQa6yj5>y3}(x~Fvx;KE84d>{9Ixi5#@Knkm ztVWvYp7^zheo6pURzuk5(z;!$tJhI8D8ml}(8EesV~xQlPD|0IfS3%u_~kEAmJfdT z-!A#>?@zneeeZOqJKg>6cR%^mlMg@aP-Bpyn~041>p=V-bYKGlDGZa#sT7ArfOnHe zF-H{6yf6qxeV~9pMnv(>l#pA_%3V(Qk3rcE#Mn!ou9#o6mjo2{%1qI&Gl{yUZw` zKGqD^KXh29Q+5_t?5kMulKTtxGhSi(d&=$>%R>=T(>)TS8?V|am2r1!l ze=oZ6jZe7Ajc#-*Fw7pfnn>KZu%c zH_YiQpEODvIN|V{r|(Qd)fd1NbVW50XH!|SL|#*YuybWq{mB+0Cb61Y4gGiJNcog> zU2$B+1~Ko_tS5_dozYaMoj&>DAS&cp3hdEL50+!0a0aYnEc6Vq^W^grers$wKaP+>$dU%k+KC|5 z6iO}%$7!w}Gfg{xQa18R;s#Pr8-MXan;ahTF8Ev|_hKb`zdA+Or)-B>oLQnjkRxFz z#!?b`^YWC>k+7N&*TJn{gQ|)o6~qb?jc*CkB@SU)D}$$ z!O11T@PLPpqu;Sz(O>=rbFxo;#^uEYL z<$~}p8!U42q_C^pE^Vqfq@HILBpB#7!V)EM7m@i`(jS8+B4x#67-*uaVyRs-3uP5yVuiM?B?IOL5avcj zh?snki!w7vLr{^bk_!o9W0jm>Y$iT1x_Es6apjOFU9&x_ZLJwvjgA5RYZux*LF~ z7KV!XY+NS`nR9wARJkOLcZ>k4PSp zC&57hD45y!s5d31;z(M&R6ZB9n*Y=1BhU3m4n~AMcc>~rFw`($3F4dqE+voSD3XPR zMJq7IY}~M6$Ie|#yLPQCFT;uGXc#aq`tEmM_<|Q)cG+ddj6|?79&b8es}i! zB2xu7Y_7ic>gPS@@4xxYZ!gY`_D(FRY(DV7$3NkTk9o|)X*8GY8Hft3>PP?MV{bY4 zZQHNgx_8gAF_>Soc#l)>_4KpW>Hpx3buj_s}MhR7kLJWu7Pa zzMBsH(^;@k{UhH&te$s6L%0xHoiD{5 zk2#z(TCAFO?F>{HrhF8L+SdfswrnDutfm>3MZMkj$bYJe3_Y|DI;zJNx*FJ5Ue%Mq zn9X@OARBfGQt8?e){`}3)o|=X2o2c@14^=dI*9Bth*mRSWkD!>MS1a@E}Q*Ax(>|o zkV5NOx@t&=lFDm_k;*!$P$ltFhytJvBwcH+ma5gb7^K2Pr{4YUC!cci```EekNn5K zUv<@0*KOZ^;n)7hiWQJr3m>H;qBKG))QI}<9k<^nsxEJ|f)v7FAvLNksR2XPG8=b> zikxdkjA=+!8L$E}M52}~Nu#X(zF22M8mI_lM8=)?B2mAQO=PWYjBzI#eB2`w5n0j^ zjF5;D)B?su5{Qr?g-dGSw$7QMst~3I;UGjXOr0ylt;ZC?jUj)2!YHYk8!s#_&h6Z@ zTiRAgSd4{LQJ?&V{82D(zKaSN?p_r3w@E6rG0u z);hk(`BGBs07>`I_e`-JwZ(ue`!metKi|U66h+mD3@eEa8ng$GSs#Vb8=9w-=cfl8 z4*+G_g8&i%lfc4x8(BhDhHxEY>?j`k)(Wf;#5G`s42au)sV6QNOsw-l0#VYtDBVXUAuNMHekgXHs`(bov(h?tHPI{*x=PKfAzUby@hNon$^KX#em z>Fp~AJBO4)>QVRJv81u>M8QpCI;|*tx&RQ1VFoElI1@@$>v3NjN}!?0gkCTsE>PNl z*^<6vA9hFD`^OBb!vM{AV8SH`T`Lv9@XC9YPaZB+PNmk{pgm+%zSy56Q^%POftqIt&R_Qy1`uxfLfcM_F=svgv5$G|qj&FG`pLyVnoK8qb}d=4 zq&^X`OCIZTp(+Tl4E7fzvQK%Momp29sa1u5U8FQvA>;yVTw)ON{uxympPk8Htp;X5 z{PqorT4r+hOR5#)f?8c}9hc|EWqML5`x}_exFPGpTmTiQ0ZWp+3<#?#5!}fVVxxdU zNJ4UQSaI=0aQCSqUhcw%CzI)mp8tXsYoGJ%=iKPV$F~#PjLdj6-aFZ=7Hr)0DK0-n zt7O!=^WP%YX9^<4lrT1iyfaEX=_pjyGz4qKo%3fVx0+>zs))-J@8Y7E7={UCR7BZ3 zambyPQ3hNNp%kF&4$&B51qrE9QV}HvT7bmcR7&nTB!M!CwBu$3g0%n`WFbxri)!n` zl6?c#!nPl~M~AU^KsV-7m_pbZ;0a^r7aVa~Jc=FHLM=;+(-A!(t~I@t%+ zck6dgHtdfg>}R_A>FJ~kOr6O-9Jre$bi>ct{Zrq#y0?Ut;KaS6TzIJxRIHLQB&q;I z6fE$!0L1>>X<-VH2tcR#pSPZ*}w>Zown38PL8M&GyVG4zrOaG zYuPmG)+}z^u+h~PE5?{_eEsXMdc`X?Zrrr6xOnm@CqMSFk6T{a^UZI5`<>^%b8afn zIQ!`r-s)?I9C~QbkMxBve(|m6zWtCx4p~~-^R#C^X0)`t z^28@Tare^RLk>Oc$xnRzEpK(}X3W3(#c$vEhS%Hm_~K_i|Asfb=~>Ty7AdS)W6bA1 z|G9Uc|L(jM|1EAjdQ`~`&CaR#7v?oy*v{{+T zGtpt`WOc-Oj}1i#)Kj2`!ip$JfJP1b6tbx;SKSxwai8{D1%cRl7_FnVp_s9`U)Jk2 z7Luvdfg=2!n4+-r`sIMY?ZxC9UA^T8VD96rz{pA@Xr=wmcP_f!?M@nx8*5u4W=hcy z?qrQi8byXh(N3&i{-rByR6!(JHnXUO`{5~n<|NWHwwyFqA&C2M(~l}2Uf*4vBKJG= zbVq%zn|;{%eV@|_np#2^hh}Q7>Uv@J=_IL&2ffgbmooYxli?M=IN9I3*7bZ}u0v;{ z$KQO|!;yUk1W;dWQwWI8`q$TRQ}ktrIDrjArfnH3t-V_PVR@x?>w^ zrth41KCr>*ue|_8sce-U_^^%*>Ud%iE_}+A_$n5b`JVvt8wmy~Q>S~RHC4yh={8Xa zmt3}}mP@^Sv_mT_0O4%rKE@Y2EEK@dw89qSB>;>noJCPw32}BAv6#_^3yZXMc1$f`kn`MB$fZk(Gfcc=jF32&$~r^2XW&xGutS%(wWa8HJ3hDyLbD1`slK0 zMk*p|iD})2b$7b+UFz;J{G!L^=(De~ zG|a26x>AkVyKDDd?t16j-1;{EN1fvTMXK#*U%m5{@k&pz{cE(hbyyMGvN2(8(<36I zS}aFcrNLE$DIC5RfgK1p=W0GFCkDT|InemK}?Vu z6*8>Sw&5OPNVw0Yv?NaSw0C*s;ZJ(PXl^WO8AMF2ZD0R}HySf)M&tLq_r15c`H28jaO>OL z=BT5Ne9?$GTD6{KOOQ zdY8LA;6V>uTwL22Ge5roXgDy5X*+F2r|mS)$>;7!G}I{>7|!$ zJmA1*J?j~ddDK~M{I|XBNyi;`^rIg2=tB-W_`J8D_mDFma@3JWLM_yM@ckbYr4w&< z;+x*^`tjU?0*4%W$UndCoWH!wT`!yb;lmeP@XA-dYCJza@x+_n{KONtUAOi8cfWf& zT|W4bLr**HK4O)_CDIKW0AhuhL=>zfB&3ZRfxzF&RG%F$CpfLHdaU?3ozZv-Ih`tT zP}Ux3W1>7f1IfM6qm9k zD{Me11QnI z{u?zwn%-<}-x)!dPovke;>dx8L>1ivlC3U5?$FH3y28ANqQ5G)+JXku1bj z$ql`i3Rg=$_s;uMdte6AHcNTq0|0mG-mzL^+<5~HTcMh>K-O?J$Sea}&s?s8WJ;{o z5wuCw$El_6vcJ$TQV2l3<)=lF*jj@Q zf@(~3pMGlvNJ?R7%JUAQ6FnufP6axc>7F&Mt)l@@`(tT1y-j@1R)}K zyC7Iq3G6QAA~#+pcOSZl-!vfxftB3m34`77Xazy7n1;o=eL+|yqi5qGT=xf?j$ zu`MNK+lUI70Cl%(xg12i27-K~JAvH1%LKmRvZYU#F z%f>^fqD-)ga3GC+923JRSrJkdrI65C0(q-gHykQ+P>NW9l*kYfsR%$W_R6ZH_#Y_T z{qIWFojP-WC_#xGB0#Dzj`l1GGpmgrImbxMtfKy$o4f3R6&yo|2;^o`K}0S;j4~L8 z7!65?r>ck(< zMGm<|Co@@#RumFX4dt3Yi(%+SxR7R%O)iz3+RU^WOE&-Aljv>es)qed~?`58OcD>$YCEZQJ&h$;xeRecOjU z@{wX~kcYVO2`4=9iBEplyUv3#qShfmd}<^mxbtIaPhW%#6N?H2?9z-H)hRWj9ou%i z^ZfIb__(8wIrG71uB=QLDy(Ydc6T`G$xr#4_r34E0CYi%zDvt{F8b!Tk2>=Vh1s)b z>8fk4R+bZPa$`25<>iTKNQK7Z=A1XZ{^S4o@%0gH5fgz8lR^y|^>P=0s`xv_(w0dK+Et&8vLdE@nUYz0ZmX4skNlMn z1&f-PNXX^EgeaP>RZ;#9OS3?pJ}@EDW+Jz8LFM23Xw`b3E7#P;womTLtb^Q;45z%8 zvfr2jgvw)fp@cwtPfz)SxD_H@oNJ%VihNy&5Ox1i7hlROf=!#&Uv~Lrk9^Ey?th>A zKKUt6x$%u}gm8S)4T;nO4U=+X)L*TmRD+)IRxo@V6}UuYmmG534OwGd|6DGXIz84c z<(+l^@S_dZRpf%wXse!qCFoFBeS->bhIae>*k-GO&ewkXu>VWv8QgXmoIMn-gP9Tc zB@ESd+eN*20J&iKv^wb@&d_`*0A_W*Oo|NRBz6`?osYw_dlnos8+*k7vY*3tMfE!E zW%r$x$$XDJO%0qCn+b7eH*Q}ckkwbNUzVDk%CA~v66`ixOdSoQElBoRR))%YLcfHJ$^iX~_D&zk`2F=_7cM?KEI{~n!7rJ2n z)&ehd?JpAWqNih+l@(^;fHJUioOWY?y4q${3%(&QVsF$~26$|oVK8z(vJ6X^PS$KH z01)?`+i|=Q%Q7QueFJDXI}nj=2Dw#7YAEWDLZ&)MjUgartw@m#1cnh{RAz?)0E3YN z?sS%kgJLKe)S{Tc)a2H^0UU61<1r~I$WA8!n$gHv*U@Uyhh6A2I~MC@{)qJ}X!f zgqJTK*go>C)nFludi1=`Fcwx}!scwcA4)I}UYXhSObCjtg5DA{1?}LPBE1<(3lOM6 zV+S1cN38}k2G0y6?|)=FVrvx2?5%M3Iqif7(H#@zt!1EPy`hk&k-czr4>{ckPx++PHS68Y>C3@gsD?$}p=TYgGjPs4BjC;a9J^?25(p zi!Xb{%jVZER8x7@V;=M24}EYC(+__5gEP)Ng9y{MH8303Z~WTVzV@@9{PbqGx`hd| zankK>f70!455S$5ZAK$7jT#!6(PX;UjEo_&4bL@RE|FqoveLG;olGr>h>(&(+_w1g z^75ul>lfFqQLAiB>CcmNM;kJ>Dl*bk6I~>cE;+kv)GPTwGggRkhmna@T2~>nfa=tt zSs;>9P0jHa0lm7_Nu`0MS;oI*OWi?rPmX0Z1_mD(r&!#A3Ch`Rc!5t1;7#J#grmEHhC^?US5Z(Wc^Hh&?L31*J{_l|tZctH-Z!mwd2OK1upG{R zrk#-dBzfN=W3@VLsN5i34gKBy5s=tpZw*dNxcWNbsp%E4lyH!J?|_vXPUs-Xw}8&t zH19H_-Q2}k!|h5@2_pK~tyd?+$IWo}kZQ?7`<~udIH59!qf?){i^>5@xv!u488kV% zVNwA4Y; z4pT&tH$1*lD))Sgkk1}u{XLga8NC$dKzH%g+x0Bq`YEdOz9!n)W?hMsyllAK)W0a# z8=c&d9YG)4j&{H1-jICx-G7KrYsLitB69an^&z81lLOIO8G%?`1YagE$p;epZrly? z;i4T6ocK_fP^^Q}bPhj-%!J`YuLxv&(oGMOHI%+b4d?FP9^&jI3VueoaHuATD> zYcBli|J>nrw>#BcG*%G?gougQ1%bjcNQq&UK$etA zNmXFf=O=Tw3lNbg2%-R#!KyC1zH?2eGQ)a+RS8fgD8r?>b8G>3zobj1$1WrlN}>!{ zhAJD!sE@lSffV;=G7bsN?SR3@zfF_E>}jGQ`FckgEu+L_#{Buf4Sx~Z~P^b{V7 z!VGs{$8TAGrSHDeKph83<;xPDu4F~AH2%MNoLG-e5C1Z=)O`R!(Qmc}%n$qy1C|ms zWep&*YJebzVNm;J?NrIC%d*f;({tPU zn&CCT7q;P4Kq(8LlUD-bK1kBQT@+|=p>>Wel$}+$Ne%W8QD!*wTVmClI0X^Hn%2YA z)H19lg)WSJ{rSJB%wQXty1xw%Thz2FK5>O%Dd{xf zFw$eJHWYN}&hrl)3+;PJ1yGs~y@p*u+0pc}kQ3Z9dmMK4#TNQTmHnMUkhMlur*Ljh zm#tJO6A^Z_>Os#+3z5sr95@8p>QkH@Nb09zg0kjpr9UL8l2FXwJB^ZAE^#Mj2)Ho$ z6soI&nuOBwso!VcCHdYv!^x&JekT+&5fhYAE=2Ot4v|KUB>%fm00pi)gy@g$^o_Pm zuA4n|u8^v=PD?$?FEhVu;PVKCP6q>1IY`n2A69RSxoo(7;Uq(CkD7)U#ERC5<008o zHP;JgzjI|kMhtW?(7D$aoo`BES0|brQT&u!T>-!WDc2`!3e&8n^r2_qz+%sUdg|_@ z?bSZRunx(IKIvA2-6v}mrKJo4vIvT(>FYKVgh3SLomZkJzUjc&le3GfzpGza6Y7eK zg@_fFNT(Z#3%miCqKUUp=Unyt#5hjY4^LYv;wk|7QesrkE7AtRaai~ ztY<#Mg`>0(5*C$lW0dKDO`CV^yl%&JJ3zX$w0zyponqy{O`8usXtOGs5&MJfU;v|$ z*|cfHAO83UD^q8Lx+9vS@jR(AH73KW>&{y1oM>Q|GDrdJU0N2gi;HVt`r{py#A=;QzOpX0@a*PZjm8y|ne zzr5>RpYpV)Zr;4v+Ln1lAP6y!R9k7CBO+Wrs17VUZQGqYciMJJ!~_!6k>QD*j7M`; zuxr;Y(Kw9U0UM^tsaik9-+03h}U(lx${-TRHFQmd+m!#z!U zn;;KnM`cjD7*Petb<@dgqA=uuC6mSqD2P>k44Q(%{4*ONQLA8qK#4)BLesVdM6I*{ zadX5`NA20O^9|>`;lKa$zt4Kyqwjy({nl?-4^V4Gq-AS-Fsj;+j-(TwUJfz~0p%hyTX1KU z{Ee&%=eyhoKC^TLsn^_MEaZFmRYIPk)}m6Q;PunYN)N60BUZ&BN#9YH%eNew22e{8 z;cc%#LZxOaR(|f)&~BCsqSIE1L_}R!MJbfJW}fr!R_pfuJ&q;q>-3V_lYyIC4(vPfH;4l`udetOWJ-ZRrX;=Y*4hVc zY7Is8lZquwFB7b8={JPR0>(HsX+9AP_4qkc6(zTg zhB)s;*-4xd(hfxV2cA8Y-dY`{TB||;Zo3gZQ`yxE`7^XN)ibLzreV+u>hu0|JrMa& zySjn;-=ot^*>h}s&`4XAvtX41a5W(LCrkcjb!2!+b){WVw|z?xpY*7PYPL-4WxC#p z>C*eN#mis*@JBtu5J{^v!nB=QD8S>wp8+Gl56tk!qH2h&sE9y?Kvr6A8WIqo>~4C5A!=0`!(!F= z@FEow6#|I>>~e53v#Rr+S+Ry0Of-cx1ZzR0(6+VAKFOZT4kQ9YWYrooB0@uq@o3D< zqw&}@D=W*yJU2gHGoI)9k+dQzYt}5Psxgf*+?bJ{2z5t@#h6ixmH{P_)-p9a_v~6+ zm^U6L_PCUZ*-SkP`_89e{_VNBlbh%@~&wHz^ZMq zU%9s8qlJ>4N>Ly?E;z%tm_KRg`?6bVyd~9HR!g~u_YJ`;^QV99wm$^nWZ)_sxx+o> zlvI743CUm*q0-Rk^tW%ErI3q(;!%e61@Y7}tt*d)-lvLD(m0}POxubQ*rndjuNg&; zA^7J%)bpzk&%<(ia5l5I`vf*G(CMInXQ(Oacun_r88A44RiSzY!x#2Y_6(hx+uzBp zmB_wod&_^Iyc3SS^#8g9NdNsh%!Jk77|0fhQvk~h3Ib5iEW}n1E z@9YeGUY&bbRp6z2n@}Y=K7XG@de00viRCz5A!! zVCdUAD!{BKqz~*g;O0~)FrP{m<~Id4$Ef{)Uh(!c#rCF=J@ z_s(nLq7loZV7+0TCV-n~m(w_YdG61hB9P!VFItkNpPQp0Y)ODqTw$aFew41#p9$c*OZM}}7>D;7Fxn(=skY=})GP$+XlOr~iJM2+Fb7^@)FiJgubv#_u@8joF= z1Cv@MW)*1_Shu)l-I_H!ckFoEJKlcLcfNW38{BYyZhkb^1RWIjOQhEZlz?8h^^26ekxWqbPpNv0CYdNU+r`dgKVzWbf;yyNZXG1DU+`S4Rt zz59MxNc#Y%?6z~YbEQ3t*-6v74=p@H5!8uO_XT)wkAn~S>nv3j)M%VI^v}5a?3k65 zhN5VPUnU_~S?T)(w`-%ir;08tvU<#HV+NG@n}NpqU-yq=e^~O*GdNuppR^l&P5imM zuult(fWfnD{ryK4a{7U0XK&2%?)h_@>~2JGyU?nnCc9s62-^J;O0`j3F3yL^tLOFq z>GHPI(!O7W*M*j-0sV7<+^>3>{Zqg0yksptX9{Sj%VO2qDK`tyVv!hX_vfbQJMfx8 zxzG2r!03=x_Is96?_;`j+9=U(b`5-1HxKL^##m8}ihmPx)@{tBjEtRnQVOo}Y|M<7 zR|CW9o_)*zN}tW5(CkBIER_Gu8tUqhTQ)PJXursGweks7g%T;q#aCO$AlMH(qYKt- zm%O+zg{Vs8Fjh`|0U%n zn;tZf~3j2QvgxbXmmOs9JFRab#X)g28~ zvC3@R`8oy2Ur(jR_<&Zi){5P@Y2yPPaQXutaQcoNJ6`hQ7k~cqU);EU!{Z9`_oPFPv}CaA(fq=nV#WGYs~T6O*wA+Zy74ogxi!eFRc zvE(9aNEL>|6)Ot$iLof8lyGr7uz)kVeX1z|psiamvPaU$^15waRL1go+PBDO?^i4?k`)5aJ!5V0$^ zo!W_^h73b>veGW^-MccKvI2ssiea*1Sp-ePhK)dtX&NJ{u)1d5ng$Fu5G4>3RQw^& zmFbj37Z(=B&G^Evef@v`_lIlOEKXOZ>ekHRP)C}`$hpSWX0;vhgG3@RmPPCqV*edapuY zvFb84p(W3TeYw11otgnF`tN_TDeoc9PPLNBI!*mQKE3$tGZK2LOdn*hY>eZjAg}xebveK9Cl$D^QX8I_ia}!r+f7Ju%KG{6>F_mIQKvyk6(z%>2 z__?8(eeXMJKO?Yjb%W{+f9)wovp!dn*q$tqygT472@yR#B~s;9@G_6#_O;F;Atx?^*x8kxWfCToe zww8Mr0bJ5Yo?n?sK-aH@M*qZ*cwNobG<; zLm%?7k9@Q-&4vH-^#?uhbie{6Ot6-jw_J10l~-QLJZ2J7f|4N;)#;=q=C*BHYsY5n zR%5N5j+*hFrQOT6H4S^97ywQ=1#~gj!u?KD51kmnXJFne#own2Cu774nOjUUE6m~rqh+la>FAlRv{pW)%p3cwz7A!*IK2J;9m$3A{8*VtqowPLJb)q z7h3~zwvDP1Yuh@vn21kk!$cMWfvU2I3mRf}x23tfI;0Y^|0qNOc4yETVjZegm6#RM za3iYBBub<%(u)MP(ME}VR$3KeA%Dx4V;vP$hFU``3StNVf8nEo*`Q(L@^To{uwlb& zMZr318Ulj|R@DGP3{32lK*sQRG*Upsk`kE5qtVV?yH0<={pV@H7*>T?0guE~G}++Rc9s z?7Lf1sG=2&n4l~KVvzJWUlbt~tA|%1>ckNfkX?GGP}NqQ8x~AVM3t4DTkqtvc-3O?=f*v~Anbc)V`Iy7e12%#X+8`FRVK)*54~i$cA8Ru!=gvlU_%7vxq4FjVHX z%dhUk2btaYhP(|k%#tCasd(RK>J`~jQmt98i2{BG^-vKp!HGmQ41djOeid17I?Fya zH)Iv8(q>()U0SR@ss7N@%03z{K1c6QZT`;&O*=CaLF}ujoUMxsTCP?M9RSPb2wkz! zt+tQF#;hV8Xol8tmHAW{Ynn`-yt&~vDsh<`Hst@q%8qoE6gH}CZ(j||%E5u<-Ph~t zRXnlmP!19ItD7)tRaDxB0}4wf+aJt?36F&blugaT`^HG$=Z+xg0@Eit zJr>g;(p7bqb+Y=^G>Uob@NwV!8PDLA(%HWXg`YnK2u;T|6v_oc>>o{!BncDMA?R8& zN8WdD^Jt^OUDY?58k&6ytiHFaE!nqZAD-ORf9W(j^XaXc3D+L+-V4DjOmxIvk1*-h z0suB{FVqSI!X&LWG*Gn{zKR_7&nnGGG!nYs)Y?D4n5(+Vay@Q>ee-;OuJ2yySxv6n zT8ujyRjT0Oe)o6yovA<^Tpu#~oDnmhYJ#hO>)o&Z@lj?6cVbq(rPOD!_rlX9ssgai ztfcdW-s#}_BZmCnuLFs~#E2$TIp)fA^<#hlg23*8q)uV`8Vk`_2qhx(D zS>!%ZcdJROE_%VG?t!9J+bG}lu6J$b#tY+xH^2GZM?L)E^J~^v+v=ocZm!+7^_fq7 z+SZ-h4?6hZAAJA&s{~q3+vYCRKED-FI{uZH3uJj$YeTY0XL+IbKm^dm6hdY z%+@MMR1^#%o}ZsLY%ag-^6l4cKlqS?C(A3N(P-3+rz<@V`kKl9=r{YW71JO6$6z5o5J)qnYy z_rKzmub3Onz3{~^eCku5swx0mQUGQ&o?Dn}r|rbHfR7X(n~?w@tXsPl1SYm(smyf| zxuOo$NK}&PLJd>d7v9%LpHvsvJX0mcRfDh5Rlar7jO>Djo!<^liK&&08(ky~y^j7v|^MX=_Jfh*d?Qq}ntMl&;&p zb@%Swr=516r#<7DC!BDTU;p|yOUp~6@ks0xr2bBzL=A=Hn<1bEt`+Dj9)=$N?D#|a z3itQh_f|xhnTXO^NQSne1TuNzJ;b5KmAjT;TI8D)AV&aaS#7-lvN0As>`gajdn zHiZnxZq`%+ps-_ti?11;9C`$AlYNC|*A7E%SQf*qn< z+O>fWg8i=GoTUF>$Gp1AGm|9h{w!?w(eIG;+WW3sxX)Qyv^{8J4WN7I?LJJx8MUb{ zJ6IvTqk$4sUS!ZC@|+s+R!;xjGeFY4UCYr+90Dn<0`6Y|N&gH~HwNwF$?f6QROzvw z(OJ6Gi>t2t?$2Qv*GVaFiZHbbs-T8?!p;UJJA+VfcsjjnVFYD*7Hcc#KXP((hF)Q z_up)p^k+QO`KwnrmF?$9NvnWf3agnRoZzO6oO;8EgL>`2xSA&ju0DlSN|RMdW8Oaqxkg&wl3Fiwlb?(oUzFHf?&^)Bg5V zuYApc2X1=&Ga%l-}3uQe!ua+O(&jk!aeVKPf;<3&wSWJKmOmJ_`@GB{nvl_ z!1b)K4{>YzduM17uB%F>7@7V6x4P$moSMAs3ZU{(tOAS6~)U_}A(cfgB! z_oNb7Rp9pQ-R39>3Hj_$>d07B86;q0A?s}g7yROU7X%?uWmZ+6xQA3hR>}EW#FIFu zi$+DkWEJ6XjJmP1KnT{6g{sTuLqrg@76e%1t`YEQr3jD~U{N7hC595n5|b!c)LJIA zVhVX6@Q_H@fkSN29SnJqUoQoyvvZxbVoskGlMi zf0`SQ75L@Pf4*tMh8@>kw|>Lg+uZhc%p6jLkg^)^WYYfr(%+AoX4kG=Ten_wz3biJ zm}8D)AO4YXV9@u5XxGkNKfCzi$z-xTSy@{w*0!D^1CXq)-LRvQ`}6lc$HlH+|n zoUJJW^aav-6a*>2#hvhdC5v~RJF7c|`zgG))x7KO=L$#Nqos9!wHzq0QST~s|Ly5B z8QT5AlCuA&D%BmN1&4ODaJi(;XtkWq9yHg89r9&lR6rF*0ic;F>sI%aJ6dUdHKVaU zOm_wGFjyU(SBmu227mOI3bJZ&C7n+U?PH`vS3Z;?ZJ(&`gQcuf2#?kKJZ8;)#sEFU z?kqX6))J8l8z+b(LOP;oU}PP}?T2ATnW2_4TIeIVnKRq{YsS-0aGl8wQ`EE9F_UR> zu@!bosAw_oad1<)=XH;aoCQt*yc>zGk!5Nb)7vYdJ29D((HYw`e};zaC;2`NFvuL} zMF!mB(2rd$)bu)pJx|n^wm2kIxiyk~NfjFfoH(?Vn~AC*2sgw;reU9wMRTKyK^QmV z`Nf6h<&|d6th5sVAXXJpoc-))eep|Qx#TyOeC5kuI{g7Zz4M*!xO2zui@tZ!WM#T{ zW#twp-tv);e2iFSre-u!(I-6qai943fB)do%`AJXSw)L8)|LxOnbc5q>c*2d=ty_Q5x4!kO-~Otd z*pp8=`Cj+BHvppq)y)TNKH$KEuDs%Mf;{lSe|7nlS3LY-4}ZyvUlhD0arT_xt7LF3 zD9RY2DhIt6i7Bc!5=FrWUM|g&b>Z^))=pI{GgK`RjA@eSt*DF?EHNOC zK`;zBcTJ|K3;`zE-<)ANNEDCYbXdoEY>jK2AE@!%Q~C1NthjF?Ci%x2rR?R)p` zIrf-ipMB1A?{klPnvuItLqRk@H-@`SESyJ6O02WL*C*!UJJFsC6=u~OcxEm4DHiAu zxLEJa``3SY-@DI0|4)DX6Y+>hNU?F##?$YA|G)dYXKp(10I}A4oS7!eD<_|N_pR4% z`NStbd7~TM=$z_hfDNmV75lcgzwHgLf8)Bf>-Oy3 ztyUO(@ZpEQ>}4;!_dV_-1WYZB*iVNjG40*E^5rjo=^y{$pZ@sAKM>K%^4|G{HL7yI z`z&gO~v;OW`*Ic`G{kpZAH*Xe^x4ivruRG_TZQHI{v-aYPFP@*D zgUj$m5Rw1>#DBlzt?#(xlHZRls|NHiB+oT0Iq|D=nZ+`Pzz3P=Ox#>-BA!?aSPWMAL@1T{@<9eu9$g9#~y-i13 zuCIF{3p6gZqo~inE{?fUAw?0D9KH>iIElP^&$1=?R}8+JdCEf=OHoli;o3)*xD3IA z_oxhoRpsa10CyJKNh{xeCw91ZxloP9{ZVI#D`#?Fc3L0gLo>c#E4tclQIvrtww7FcL{b?VC91e|Y!cM2+ucZhvZ1AY=XXh&<-DaohTdnW zsPRKHP!QVT)lXKpL*zzCwUFs#Ly8L^p5b=tu7;vNwNfai$yacq$@*RwH)$z6J)% z1zB%+Qn{KhWVR^vlK%`C_94=XKKhy&YC7V)p9DI_RIgOXN@L*oPuXOTOwC~Es~Z^^ zKxU9vqPOU0mcy!kmxZ$R4NH|3U~U>xC6|E#ZavF`Y0=Zb0^N2B=HGyBGyTx#MY9q^ z;aNjd)<3cPe0mF}*$bb;@}-AYb1-XHUZv{eUxR{sfYN)GV8g8C)~Fq{l{A+=^rLy! ztL)@nsZNHYr1$l7g>SciZ+8#K%UL?9#<~kL2B}p*)e@LUn5uI)nbppnfe}I+Qr%5C zU&+>v;V7jvXOOhmwr#sirz?}m%4Ef7#|_yypaRmyn8|dq<(jKn!I!@Hg|p5&3jh(T z%HsUm|M=KPANi<9|L})DURhar-*10wh8_$`W8*5mRippp-e&74v z_msbR>i56*y*<14eC(qiGi;{q#5ALG&pr1$-@fSLi+^g2aYJFSSUK?)w|?%kp8du* zz1cM8%U}7*=f3d8m6g3sGd}s$yFc?8&v?Yc9=Ut>uBE+uJz@lg$%?${)vqD&M?d<} z%dWiY10VWVR)#T9d%}%x_TKlt=a^%U5m6$*uv$6w)KlMm{`pV)+o$f@v-G|1fA70L z{9ik50kdY!!b8t|=s*19tLNrMYDI})rD>WMJpXxr^W>)*GrsiFKknMG{dd3r9sIF} zK$%#iE}j)Y=n1Lv2wHRsaY`{!cmVL_7K3;c$>sxxePvTQ-Htu;)<0)Ns+JvVyGJINyQ9^c4KmZB-?Hcr%k3wAks)uXYp(~F#) zjL02EZsF%kx==WmO_~68$4nH&6z+f#A{XWpCc_P}NRpDSYKozAQPyynkUsRg$P*^p zw)67~dsg;dd*zm!-1sKX{rl(M^{#grkH?`LthJ_TMx&94sIrK4@k-h0ykS!yOuU%N%s%@<`WcDuYeb4#t zx#+v!{n$r7x_;w2+gdiP0%9hWmC0n+?mZv+;D=uQ>en1_z-D7cdzW^sUAIn|SpdPx z%JLJR{5N0z;uqE|uGzbHx2ldtbCC9$tFL^@lm7N;&wToGo^`g%6&}40d-v?U|LOPp z-S2)k*NoP$TQ`}uWlwG(c}la)zhngcd&P@>6n zLc}DrxVUCzd5K{5F6|wU8z!>S8Xmv#oHxGy^{-#MZhg}vXE-L8==Epz$@k1Vb z#z+4Bf|KrWd#Eae1PpH5_RKRM@}2Mg@7gtM=f(>%XXi%amF4Bd`GueS_(%7>-{}`z z@X^2ci`!eZ#`}Og((Bb%*klY?FWn{`i?EY9YPIY8&U&@0Zz>9M>>w^#lF$DREl*NV z0)#TVAev%>#?`Jm&k{C&6{w-&FtTvX*=GSrAf#N{I(o8I)vpVZQW*(WZb{bu0FqKYIH0 zLW;5yA{xpuT$VD|0>$~)px$b{pyY-6cR6$|aFxob*JdT-_MF@9;o`pKaS+kv;IkLA z^Vf%*17-Ct{d+V6=pNJVZCEQrX+DsCtmnzHy}-<6UX!?k~yT z_b7l7422cRyehR2KBd<32@)b?5OpN@c=xQXO z$HCS=1KHc`_(Bkclzr^+*ZCoo(^8l+B}|>F9)h&a%w~T`e$@lYjOXl2PEraYte0L)_m@*RX+TC4tjdq6&{Hm%HFz}__Z9M z9}#zFr$ZnmN%WR=f6R`A=N~*u~nEz zA>;Y+si)q3F@_;H?C?WB^6ww{>Q}z{ z$xnUacb8nUVZ+A1{L8yN=s^!S?9jtL@rjQclg?5pR2hconP)%aArC#{oY$Xo#T8es zU9-k29{KQx-}x?gYE1L|7d`j7>#n=$%}#_u)FqB4Vl~9C`o~v3_6cWw@)MuD_$L?d zSz0>&M#tao_P0CrLMWWc~ z)^ORoBZ0)Fci>YuP3$?g4tk3cAOw2UaA2P1OQ6MR6IBt zz7U~vj#P_CoU{W_>A{rXh2Z07fRNdTV~GGahg<`G+_^mRiG=(~v)FuC8mHt}>UZD6 z#(Zil8WVZ`!P2;juUtpjq1y1|Hb{MBdF`vuJmZY|xbh*nb%OGt=rnM7w7p8ex?VWM`QZn_P0{0X|Y2jA|v}Q|*+yLor0mq^EtGbJq zs3^>Jqaebv?P|KJDI%A4N&#^a7V?yn#GptfyI)3npcs4=g9 z!|N~k&2QFkJYa5a?ySc=`u4ZK?SThuzWC=CpYytNuuF;g6|Z>p-A=yS+I8zi?82J) z_r3o;n-4zdf)D@ud)|G%D4z0^C!BWL{dex(*_dYihBeGaRGG(L{mPfleapFr9C7%L zt=sN$*Snti@Q2RN&t3kf%fI}^FMaJBUtd@=e$h)_^x4mTx-kuuCbk`q=s!O8(I5Ws z$D1~7TEB7qQ=j@bH^2Fb4UcwQxAQ&kJ^z~*UDQm?-@o8_U;N@1N6pAjOr=8#%zKoV zJ~#y^5qg~YM6WRfZ%E-5`h-IHu9E9p>4;CR!X&CA;}WYoFR1Ts(BMJNfxX5f70N5C z+{MZ&V)-)^lm=GbVcu@4FstGIxbbXULiJIP!t%;L5ji`P3fWYzWAfEWmBo-i#RU=7 z=ry#}g}Ct8g~Azly<1^}IL}rG#d@d0L%vJpzf=EqaCTRogiB;|-A6MtB=0TB=^_7bvCta8Nto3F1G(<*VkyF3>Rswt??n8hFZ*!U^hVC7 z`OY6gW!`E{4tcCvqR$v-loNc8Np!lY`7mNU7%JTn?a$Mtnf%OkrpimI&$h;@Y!G=` z!31SRM&Wxez!YuYN*oLewR$RhK1YDH02e8GhTJq3Rx5k|Y9v6Dqfdces7gm!Up_U!?VwWOgYlH) zq8YeIFzi}_x)b3!<_LfagF#RWWhUWpFAD&MsYQwB_%2XA2e-2FGYS_onc+D@MCNWP zI3}4}wH6P=P+RFeq!3IAb*r~x-_`H>`;Vk>!4y^rqf<^f`IJ*m1~j^x z#Hzq~e=@8wMC^Fn+~+>`y2m|FUYWG>b906bAY$9rs*-qpc=GtYczoG9b^Vq%bpGMgLT;D*n7*4eGKL}Zu&QmD1o7*DP261Ebo=wXK* z`qG!a)J|7GBO+zP0#dOqjYWP5kum0!yZz-Uce`5>zZ$NS_ih!$Ao66d5a4|_u7Ic2 zC;$j?-hFz5Y#JiLM%5HU!`!7x8t5%)K}oNiXfXr=`x8q9cmT;O(xHlb*b|W>G}dTCiJ@Fd(Gvf_NXkWJTQhG*0FRQFrmIk$fVq zv_yHtdm%L_+Y3*ZY6XpuO^mn2oChH(p6oM_TRTcbcG~i&*?R4@FM7#~Hm%#R+PjnJ z00961NklNanA`&%|| z-V8uhMddH<_!p0V;uAM*I^d-*dhzXVeXFC7J+^J9Bhzf(vFkrR`qB9{i!z;lLd`Mkn0#W<-4W5r?i!R;H8b zjgG&`jc$CrpHEdln0RSv@3Wu#ybYT+?cTZTwXb{a8E2fqezO#heE1_?@ZuMI`qQ8N z?IoA|<7-~~(wDu|T03f*$z<~W4}M@YKb}lh&VTp2Z*r5HL~NdPhm%e@`EJ*2+xp92 z{Nf8={QUh-yPp*?U=V_G&kRE)Kz)*`WSkBdK3+&iBY`E88aYX1l%G#@mL~;(!jhW4 zljv@<*dJ?V#*g0>Wvq5M<&rXE;zA~ZUxl}3fbl!DWUO6q+dpBs#&Z!;Wb9Wyr zmjHEmL_)XbCQ_e|NWBRV{V@sI?mvVm{9;8HSwQ5svZ_&65;ANkxZg@?i0JpZk(-Jt zkBb82wiL+aa`Na->-#)^T@R_1;yl`BSxL^L)w&Y3yHM_)eg}|tNqpdF^fDxsnq*n9 zdxDVjB%>lQECMBEzvfi(dK*a2D$U28wO72Zj!ZmtDA5}teiUh0y*sKfcTV(kI7Mc}9Si_NYhL@dJ)f|a&qXPNp!x$|(8?N=Z zDoj+bBwUY2og$8&DO&aZ_@8$W=Ifngy10RaOcqpi8T*LKgiyKXY#@5MCu@iDU)n$O zy&@~Ov`U0f@q@bW`=Khlz*%w4^O!||NJ1J%O=8Z^R*rmibQ|QcE9AdwFh@NSG>XVV z#yipA7Dsh56Ny6ARm;S!CXlkma$IP7OZgOQUcrHgN*yTxC5`A0wWO?FbzF6kO_V0m z%RcnDt~Ak{C+FB6`Dp0QXf@R=MeYD$QfI#XUyP_LqA2wLgjAe$Tful|f6EFK?Yc4opq?56f(tdUq2ym9h>7kb2;$Bo`M`V&3A`?IMEv))H;kCRFXa33gK%qD z4*Z?UIDCeK8_0=3gQyzpiE7^L#Y0$U=EagQ$=gWs!$a$9J7R)R+?aDEw@+;zd&K+Xo;)gb|=Bttceq^PM>M3wzbUQxbYS-Bg$-`WbKrxS)89|ux;(i!~)b#C+*ZqYgNMa zXQHGqrV%UFw#uZfGNH8=3R0dDWwJV6mmWi&6@N7W`-IgLm^S2BekzzitUNhv#dd?bhJdFg*73fkOt%g zuJhAJ{Tuu&b93X5|L1?5{dZ?Cu35Cwf)ecr(~VO3sMMt> zDMwaYGX*=Rr4jPi!6eWeQ|hf^zhhe=vDo}hHj9XYNvyo;Rj=8zbI-K3XFT}94|&KL z(@860)ymXP*RS97*t5>MX3Lhz)Smm6w?IMa9AL&Y&1gKn?z$cKxW_%8|M$;Xvv!RY zA!g6HlgURv^3icK+PGoU>;CzlH*elNnNC}g)=s6hx4Xkh54hj`mv-&hv1`}YzW~ud zF2DIrKT*to{KFrvz4ltWVvj%mhDRNFlnT_MwXKLAwE3VHJ^w{J_Uu_)T=>Bcz8|on zlfBEVSYBEtW^T-`-FvLHd-g8b)~b3o`SO>)c-{6LyLayT>j(eUnP;BK3@1J9q~(VH z=E+Y5uyOr{uYCE-lgSE*h-l~T-M{p+Ssjvq_bD{OTXjraM_1-HA zBFnKI5pSWBmP8q3VoxX#C0KmpIm74HtEPV{D}?fwsp$xR2Tck@VUi?`Z#`(hAZ*I^ z5UWNJSTK=)FC32SmLN%{DJr-qm@yO?P3i``suPfnQWjL)GIvji1VryrYT&MTu%Vie`xeWr0LEh3aW@Z&4w7a$0^~V_lTFmdtC_tb%D|v zZ@tiVUTMZ;UJg)qfJj=hr@4VggP}m#pBe9_9{jlC@H+6im!b+GRkz7OeS9?Q>9(u@ z<<}GT;LyE_VbHa^DX)bvUKE)ThVY-loV8dD_0fsCC3CDEETXuvkcy{L8K-sQvFlE% z$XUOU;nxdY`lni4gh#mNgd+8Ef&Vgqr*6@1x!y8~9$O|`Yg5O(VJY_W_dzp zO=vHe)xlE~5CPHslvx3qa-oFNSb;Q@02p`bS~>VEC`J;b^1ciucmq|$z)FfSfo>Bf zoUzGbt+N!+`IAp9hr4Gw)*okOh2z;-|PhZ?hboPtURq1`6`^cNO~<3t0BU(XPYpCJA*k72GBlfQK*=B z?5GSFib<_N5z7(Yiq126r_r4pK_ZSt`kAEOs!j;bjJ&zr51yhsJ&Mr+ zw^XV*--n1oc3ijX2S51!0h79nhmP02r&~`A2V^{%}#9C zFgGic7620yk&ELSjYhU@Nnjddj2Vx{jWHk}lknr8T)by_?+vbhgQuVUbWw=402yO2 zf}KtdKm3TB+~meT_}}mC-Mja)%P+s)ao4jV^Ye4_3k!Sp?3&v%R+XkP0LWm`EQ0BA zXFd9Ur=51_5r;HptfGcFF=d(GBU3aKnYKS1+LtcFk~M}U`tu5vj?Mn*a42VVUs9mY z{bej*+^zaLPX}>Z*;=4)_ zl+}}}4jWzm?@kE)ARiIDddVmu5=aKrSS`V)B>FUQi7**L-O3bnkO z52VSF$oXVQ7+M-i{fj6@YlpY$orHdZwW<@KPCOV+OJs`-$tXh0`h95WeKHE^R-$5H z-4=7w3f!HI5ec8ZL=22eK1`__)$TaTbxGN~`^M#;Jw*p_(NjJ`+$-5bA@yt7*mxyQ z@^a7yqV8%M1;rShVSqcYi}?-qC|94eMk89oZh2KudwlH#xJ5|M4n^njj64IiuG!k* z>QS3P6!6{GD<#*j7K2b3njcSD#D&c<%omYld!3h|bPyX#sMpEaND?P>J1E=K?iQDO zUv=tXqmXkTo6TO2qed|i8p;YeTI`2DGGtfQYK-~P&}|^#?%IkRk!J=lsTwk9r)DYw zVP;QiP7}DD1$WI?Wjcn#JVX%pg)_NFQ6&2_U$&B?nHRrrxG1+M^627(y+A~@Sj$`L z)y3$0=?}U#w?s3d-ZMvIgY6f2SzjNGkBha|N^>Vke8_2ygh zNJ_AXxhD3<2|1k`OHAhj)JjF2DPo5bw}%zkR4Et~87pW8NNR}EFcXU0xN2gIsy`k( zDkXrk5qcU7<4Afz^Nr3-_=QQY!0g#$uUfBkeIFlbdh3lVH)#}(I_J_q#0!%!!JW?` zu>^sI6P}u)q2sYop+aJLq6iz@k^VcorCtnX3c3~r4h!MTYS7`1E)%h8{Y7S$KU8iP~zZqRRGL$qq#S}=}n*c{O4Zr%9o8sV~{9`sM@xjE>CZL z>)RZ4)Zrr5gp1VGwg7(d)1Q*+cwz4LC!J)7jd5GwZc(RgJDp!MziItOsDAPjpWL-` zHwX}!8;?)8=?OQx$xRPG^3b`tg{Cn?%sg72Ojg?VhZp~lOfzk#OG`_l%5Fq%p-2ot zYbWklr}2g|fni(u@ehBvW?|v*Lk>OS(8C#EV;W`xF&S#cqd9Z;Q%|14Hlyad-~A30 z(%Qv^g=3CBQmoy(JbC;Ro_y)0m$tSg5HS(78P6Sd^byn6w(ZnULNuXbY>D<0egCV- zMp{_e*_uCF#ShvmWm}0JlMKv@_)rWb0@NzGs5SL5s2LFcCuf2!Q?fmxA~VZka7RWS@vPQXDi`-wYgjOlA9khVC#|2IxwzE zCnUJT1reEbkPCvIUTPB}{F4bw-*O0vRm#hzA0bY)5TijwW=;CI$xypooQL6oh^+Gg z`L(ulj8wSp%rq(v8+s}}(E-hAJ|4!BdMrEOJ>grXN9gR2-J1*<07OsRAjCuJ`wk2T6B zj{L!mte@!csX$1}yJ%oXxbpv}v-!oThol$smRBK+B8NtEl7gcuh{NpR)R%@`C%1%l z=x8bgApe=OZmC|J)t7BnlJ_cW)~7%8AJ9}!ZK9G4{ozLsJh|i;el$$NK6T+LO60ik zXrOd&GnIXnaQc&pg|nYR3#)>mbkDB}+yU6LSDH=85SAzyD&^NqR{#LqeMc-rOhhVf z9U&6K2L=EhlA(T(buFp~pE8}6n?!+HLn8bd-pturimiNnfvSg1sl*f&A$GBuT(W7> zHOxXbsg!CH%9!c`(hL()-X4|3#US-W9o!A_MG&YxUlkZg;@2}Trzs|{uQ8o~t0Xv;ihB6t3a%ZcsX zj6}#2tsuuSLp=YQls65Af)qg$}{oFqIvZ`N`GO-~*|MqYH_Al;y z=Mzu78AO!@VkpEWg|TWPtCDnyG~W{L9={(Nbkv8%%X(17FG_sZl}urTeg~ZMGx(`b zH;xXfGA>NL`EQ(!HC2f8M)5_;^^&zq!DFKY^>M$^M5+ctLGN>t1wLLNPG5-;4{1jX zdq&b4n$T#^93=uNP~z~S+4y>%+$hKniWM?HkxhQWUNyTrOS@2X9?juP0S=KD-PWRu zO{~OM{+9?Tw*-c=0hrZIjz13{(}Tx4PJqW)o*3^_#RYXplzPUKgqQ;!&ZC@f&IeN@ zl6^*zA)3UGScSQ{_L^(2*>de<@8k}*KWQ``Su3X0?4qKY#at!HH(Yu*00^QYmaG+pCE-* zF)$2s`4v}O^qq@-{?ngty=Lq79b5P8*}FWMF3gQrAWKWjE*L=7tp-7c*tqZ&1LTLx zY3Hu(zx?Gd7uPQS{*Qln#j9S`PNz^YW~|ySFHhzd7N+gWuYUf^BM&?LnrpUh+^`V< zF)^8!zvAT&eBgs8E0dr7^rsJc-~$dhs@Yjt6Lv>&>;Zk#`6#%MzMKZ z=z)qb`&h(JjdR1~Le{?z+2<)^<9!*vbw3$sMQBe@$?k9^hlNZ{H@Q9vgj{Ka9*_#* zrwJcnb2HL5B%bqg*4)vAO93J(8EkIXvEZLq#-2kQXg$U>Y zH|-XL>7bn1fm%)$QX`*%Vo8wx>69&wIaFBcE-9h~9%Mz-=vuTMS_^fuLSB{;kg`7( z{pJ>XIvr_AVZHfO+77+Uk*3Q})Zpd1-6vb$Rc%v6GhvXDD04>Mz^S=B-^7&;kkp%m`%AucGO%w7JLV&VnRrwJ`TP5nh~mkj9??`9V%5`w#28prSwp_H7$BVC zgWz(}=h5k?kAM~C)J%d3a!TRD@yLS}RV){$G3=F( z=xx2w0ukBlO(DSh;F1#8G-?IhHTO#HiYoxn)_Y$>gHuPvT?J2sbfE?k=x$)yDWQ7p zq8L2!+H1Hb2@#;p)Osxs2st}AiZF%%9nFoFmX`_1FBuG4`kD$^t4OBcr z04Q43hUn_6uQd&i#^Yc9{O1>b{X%2rm_Y27h)STwG$3Zfha7T9JDmy^$f~e5#NYkj z|9#7w-}0@CzDe9{zizuxB{rk+$Z&JOL7T0pODAstD6=Sxv(Gs#Ky#;q$gVwm4%&Rs z^3u{<-|EsBiB$k(n5(=hrvE$G~4+EiTj1_y!Ti)`+AO7Gop7!)@+jq3m z?%cWb+u#27f`7YU^Tv(0yZ!CYI_t3~-Qgqx{1DxGCQ0QIwgoqag~YfVo&?rKX(gIZGxZ07=>wOCc)kk@FPv4#nC|Is!UT+20&UO$E9VIbngF^ z7b7?-nf52r9T%nSSrJ82l1#nA~yK15ychQcE017U&`m|~Fx{5uEm1gwcrz*Ouqa<#qLy?7hDFEq#p@^;|7jm%j3!S`0<^6``wTzLX3q1Eg zUp;m40)Sx_>$MFk-q?%)6fKdX9ucc5q&@}8pbe5CDWlMgg)8xt{I*H8 zQ1-iLRGn^1P)hrxu;DQar=14NY40f;o%`Ky;xtEh_l1%UC?C!o-BemO>4JkmpXvU> zatXArCmrG+pe9XuD|?Dkfmsx6AH+{=uR0l=nJyBzR7>HYikLkkbrj@P&juZsN-Lp| z3z6Q^R$Y=dUQ|T68C?EgkitP2Mn+&#Q7Bqc;}+)>(GmFug_T3`P*Xuk-gFE(&Wd$- zCK&6rLLtSv#OR^vs?Q13i+Ii{y4knz?lHNDtn&*Fp$BF=vhko*>Oq`LW#zR6a*E8 zJI#c~0_0OjveWz~imi?i&mbmrXN`QFUe+lUM%WIIwvPJxmFbpkqh!4}BPkr99*yPz z8X1~v<^ZS_G^PuHKZxxOYf{kM{DO$CTf5%v0S1++ECR4hS{1fx?{nJykGtNnOM7?E zkLR1w$mPi1yJwdW*;e-K-hKO%PFh%8U{ObQAN}`_J^MM&ZbjFxU$;0ne}~)N?)o>l z{&6=r?q(;PxaF#=|NaHf2h_GLtO|pPLI{|6@itXBwn5`S+O>OWI-QP2bEEa6zdqxP zrR5c)y77Pw4AYE^F=Jwd3h_v!J@UvSRjgGsZ0ywD@s4-8@EhNF|G)g}gr?=Jb> zbvv)aM3itA;A#6~E1O^Ou$R#}%ju=LY&9s?c8Xy=#6k89vHGAV>tpKXP zt5iU2G;cqNC3iUqGIlC@N$x-gOLrL;O=5y5QNBCIjJWnshL`75E|P@6`=|qJW&H>& zgaFl6EWz2(N-l)~Q$tWNV2MbTiHQUP%gW+dnw5mb*$S%8K5_pp0830H1R|^A{6`Q~hLa*9(4!$S{fTh*{xV zQg)_f$i_?Vj6SOhNSH{(x$lM5kb#IL;TQ?TOw7&{2rAu~q?{r}^94?^RLdn-!QuX| zxKHdqBI!4`pPg@nWSn0Lh+Kx`{S<}*(#}L&$5tjmk^w5wKiugecNvBb;~FK&nNDEN z!1}9@ztUNT*LS|nFkd{XQjl~Mb-u-N6D%Cf45>z&Skke6j~^mwl=ARUWmq}1l(vbx z`=Lj&hd;x7cRE0kyQnw5yt9HVhyf@kjjC_%uMmiij`}T3^=OMHw-Bef%|@LTLg{Tp zVrQk=!E>*r+O=T|ny9ej98-Paf-X9N{1UaK)1rwOyz2XnzAmMhxeY|_sz4RX%*2hj z1-cSIK8`4^^An6UeFEhibjKN~5*a#kRMi-BP!%e@ZlQ`_6mZFg)$jdKhOgg&tL!$UO0oVb&KU&T|6|wXe>T$si5^D!@qA_GC zHI|9@x}sr3n>~D#W(1 zAf*uihFTH=31C1j$uqo$h|xjG7p9Rd6hv;1K4dnm*0OG1y(6#?Rs~59OkZYg`;?(Y zj3{*)Ddj=pjqZ{k0g<6613-)!8S-@H(N}mFd)7NnGUZw}7B7Bg6PCGAU5Kb#aZ==q zylNV6hzuh?wsQO(IqP49^h93S_)TF)oj!an^P8vZWa0T!GkS=2Mj7f>PGC+9?!G!^B2K0T_lM0JL`98c`K>H`T7u{ zZeA3|@Y3?qo8Izf(-@=XzW2KK)Bo<7M;?B7Gak7*OMCauy<%>%V?v}*OVTKdvw|j* ziCe#q=jH&Anqc2xNnb?|FZ}usDb6DacZw+%QBeG3>ORo11^i zQ=jsrr#@w}vU169F8SuSzWwDded&ik`2Jx>9Qx01_~#REann=ocB-_Nn>6(i<8cW@ zQSNm+Cgi)I)m{~x-pm4wDRmGVE1aiVazf(na?nv~3Dg3u2&^KDdkBKFFbTYR$XGIS zJ`oDh*ri}^Vj>B|9(mwi=KI3=$7~-zvU;Jc2%X#ZvhjAsLwXGItGtMb2+a8Fm4J;OejDd`1kdU%Rig_Y@iwVJ@kyQ zpD68liu$JdH~d*@C~K`{c9*~U6`E(&g7Q0dT%{w^x-Ba~oeJ^s&PA$sIdj9PQf+mS zOxUE6Yq5)zc3*s0khdnX^SXr?>fglFlqOmiRwIQNZBr6T;1myG65JD{C;r* zkJsMDokA+LTxc}vPV&*l!HeRq8-N8Fj>o|elqr#0=|TkzwOLDXM$@biw&+bzre^Z8NR{%A;z^o}`(u0AEB2caIiN@z zTWQCe(r7gwPoil8ye}HbHtc7ROxCPg!xX*xKk_vB8Chk~e{pe|qb+xF<o-e>sD#86=u7hVWoG6isZ0Z2qpV-yN2!VC-R5&(tkxLJK@KptW2 zVn{MlkK3Z{m>4aVWunN~mr-;g@wKA=DU^k8-yJ=2df6|DKruWoJCNZi zEqIs${UnmCxG2Ixp1^X7h-e{@_ysI0h(?VUby7PSvYP$l$`BY&RZ>Dp>5Zp?%>y&$ zs7YPMKd4rFnvXXVQk|-W0?fZU(<;}=nIk!my!ANtqBe7%WG6%7U#6AhqMG3}8n)D&Z{>Yj;{RVlJdf5LW@tBm%=Y!fCp! zDN@CTb?Xl}@W8FtY`Nm{%anw2@(N;iG>U6Bb#W|A%uH5=h?rnis9`7}CE({P- z$J@@k+gNPso@UNdR_om8&lR;F4sK*|lrukAC>G?|uIwsI;w+;c+wa zdl+DW2Dg=hSS^9A3$qcmzGWg2j7F^19pw?IznRji7$&k%LjoZ&N-Zh3qT_~{N&HRH zK7xpupw`9yu)BXk0d`R~q?QP3i6E9hE-b2PNG%bQ3rbOU4puEeNl9EDc6V1WxmaoI z=z$DKNmQIl8;w|n6c7L0#X&feeFDIhDe!Ib#88Md3o6|EzB*v{jG0b zw{~4?1q?$FQ38Z`)DS6IA4={Q;118s#i=gr$|uRR`fzyb5-&9{JaY%Ng6 zI*S0M%JwM~lVp=Y*<2lUj{1Vv*3cZXe)M6}(TLt1=h8ZeUl@@tvAZh$W`v*a8b8*M@k()$^_I;sWk}+`<69vc>7lLqLkEa`1XUQuH2t6%H*E+6AIEwy3X9Ed}3xu zO9-ed_KKwbkyTe(`;LZV)p75_n);oQsZ~EZkBS~V0F?_C;jYwB?L~BFMB~&OlUI(1WH5a|jrvmN8Rf8sdXUJ)*tCB-rSg=_Q}KsC zktbxeMZDx`>hKCWYwpQb38b3(?R9!<_arwj%s%;;sMxBN<|(b9shDyfCq+7m3AE}y zAv$a&5f#X+8tZnU0yGsVcYDk)=|4%hdKhb0t`L&`dO|u9VwD@7g^s5Gyjfq-X9|FI z_R*{0Y%w~`C&l%6NVPW!l1Uu#Z{itG%FgxXU<(;A3&7Bk0wmFXF9}~Pk7dp#)JmuB^|efro9MdP{e{110=LWzBK36LR4ex4wPRy00ik16<+-m9aXNaj~< zmS}glNSpM2XxJtrnVPaHB2;okLy$(1T2H~6ia6AO{ammxv9!$0k(#4%))x#&-&r}> zDl0PdQ;6PvE#Il1n`L`}Of_N9kv{Y`5(;#u^v{#=5m@2i9)dwCVZJfByL7WIGy>57jgcv8-CP zYQwq>(-Y%l0Wuu+;t2r9%*>{-uJuCRi+geo!$GrT#j=}ky=Cp1b$|Wqbx(NW6HMSs zAMKJYTV{TH^{ynQS9~ZtW{GS zb)4`h`6y;m=+2Wc0w6F#mI=fT0$~$%izj6hS=!6`lt33mVd85fV+BZJL{*&7pB{T8 zU$1cJsR{+RL|jE1A21__Al6t0d-IzOLBvo{6)bE`Lj=ddo?%E#IBU-M9brBM z4FLfx!XQfqBz~j1fUOB3QNMZFF`KBl2m;dtz3yox#I?y70}()&1)&G{z73K1bqQi| zFhmT2Awx#M-1AXIm`R9yM8_kT$dF}W zW+AX`n(3)Yfqd@sXSZ!D!ong%#2gF@KUxxT#N@z402z`%F2=DV0&NGqiG)~$h()YvtRd%5h!m0N6pP;? zK*COp5x@Oa2*l)#CvoBv8+`IH*~YT4A#no3-n{!c27C@pf|ngU$)(L8wjyDBgDppc_E)$nG79oQHT#W6k5t;L%8PY zTHwWI7}XX^^GN>@synlc4vPUB6FI&Pbg! zQrQVg>UI>e7Jpr3UVS85c2=siM^S>=QDy$K7&qbWY;phiKZV2=_NRdr}9%3dyLa?yp+lrgw+(+P1z2GTFT~P&)^H)~M zn1OZ# zXk|ZqoxubIgD-B-WM6wo2!4s&hx+x#WT=oEvh^;A5wkSmN#jO73rnz$p`J`BRg^drh_JVX!|G(%XB3_PaQJ2#z0#*z8tPD|&k~5vWmJ_V zTWIDJWhZEMOA@FSD~f816i+oQbu=lUHw-GrR#jmy=U26ss$WDISFQwzr^(oU8MMwU zQf2sv9zoS*1d`#)EU*wP$j0t~Q2$x7V2~t_yhiXNuZ$n1?>fe!mcJQN9XHNc&W%+; zwKU`Df&dl*7$M9sKNt?ztzCENrI)_)m9H4FvrI5>5F@za2S5DMd0%W>IrPv& zUwX{TT4n+npk-%4!BLYK7GPLd2cDjq+Igp)Zn)uwKmGBVAN=r&XFUCgk#l|_d^GFE z#s}{|;e_+PbZ%pYZ+qKY-uR|}0W$`c*)@Yf>)hr|o7++A^#a3)uxac$Up#v_9MGT< zA!cc;CF4d;tjJ(6Xe_nty!-E5>v!k+Or^&??y*;0@x!U9>61Tt(l@^G4Py*DCXv~8 zcGxuc-gEDZjy`%~Y;3!g+kWN$E*dUdVXeLV>)(9uf4;{K%&xobe%UuJot~Zt5^(}@ z0=w-t%jZqc8;#lp3l@Ng9b0`AL7Kf_NP5@1s&ZA*K)Rq76*MszEud75$sivk&a!5< z@NZiAtziqB@>ob8o>P*|l&)8HwiWv5g0DQ2klpDQDRADY(NG54%(WJ#$bv}(+<1*Qj((n5rpYho<{`c(9ty=Zq z%*^cg*!W(1?LB|qyvd1)X3$t`Tj$!gZJi@y48w^SpGrd@V<048Zw?sp3cwhF6Cnd( z5x~M*ga*u<+z=*1OxE}ig_n&jgCN$Y`Wtd>E6%Yc5YMtP#KOiH29tv~gM3a> zD{M_TjL)A!D8j~Ch*)E0Mx&vzLNLa9Qwt=c?Y)C2po|BR-B(F;g$fg zB(O&Op^8Lgh@B&E2>X>}7VlpP`y^8_24bjz_4r{C3Sl=E5ZL)cdK}2W7z1V|V_n+< zAR>QyiLe)HC^H)f+QKa*BJKX25m~3;B{*zUDyqmI-quCP*Fcqdo-YMbRph*Ib( zg4FaEGuBptwtiHMjDjgu*!%Su*`#GnJrKm`gHUlJcA=1zl|*S<_Q>xXo$&$ijvt}% zR${isbcKV|eR@$ppXX=R9Fdyw)NhfZAyo&ll}`8w`HR8lQh?eQf821tJrPD zqun@Q)slLI3iPH}fn=8@JfdSs8OV&z67UkuO7N7B8AO^)*Qt0Hb%W_U>Fc?J1h~q$ zqUzP`qlk9qm6Y$gdUWbge}n0ow^uU>CCojmWy3O zMJ8#A>rhzh3@=3&+X!G9L!*&(hS(X?gm9mOSSCU6>xKN?01`0RiSVodVttTE zf@@Cj@hv+5#Cms8og%4c&To9+cpw}^47Cme6Q?VWIlh$bWyh^^AaG-RNh3!_M95e} zc_s-0cCEzSNy06}myV3pj{NG90N~a+8ra6K0s3?}PaRQfGYi8JleIS6?K&js=eIY8 z9h3c(d zPcHF9UDf<0iJ2!pCpEGZC3infafCVz--tLLr}BOHAUuhU6+Lt4L<0|0Y?@G8w6Afk zk}09W5Q_8)mddU6RiG<+OK6BIO`=nc>Isj?t_q1&XpekJDT$N?nPapknN}4FizhW4 zpcF(>NGZ!z9rH>o`DJ!70{GIS67oD$Fg2o01ST1m3BQ@Kr9f?^Yck|gn@cgWq>2|& z#*yR)(>>AX36B^U5E;Dhg!euB$mdT@jeq`gpMUhD9`*1?Jlrp<4}djm*PQg>la?>t zX7gy~xZ_^q&jDrlypoU;nzkf>LP2I}UDFI+`?}-*<&AG#zG9oVzwO^1_Vr!%++$CO z@xIq@fB)MHzH;H>CCeVT_rBq9KtztY0e0ANhta4V4hP@3?DCf!eRS*M{ug6@@WUTo zeDT+;wP1{m56S0XkyoFzc+vdH>FI|ad}#Hm)kJ9Qz;9O(!+?4DOJ4Scv%j!uk1GunL8NhdE~w#13d&hoM)ONdBBp74an+2LT9T_1MaEw}#g z$}6AqoaX|d27n=!^S}J%nbC}M?X!+Na<AxfZ$3X6B(xc$p!Y#H2O3IKLq)6+k{; zH>S-+b)Fil62MB$S#xUO*B*N(BmhB#84i-x`W1V|ev^*y0T#cI$}xyu8+DW+?Uc~b z&t)UFYJtjkym{rDO114ml#GI;ChF#+7k%}b5dCIgJ)pR2Ohvv608`a0Kfw;h$jt2Q z+uri_?|uKf#>ldz%b$M4Gmd`Ii+9^&_d(NmJHxN~5da|;3FUi*j6#YC80-r}`+N_O z2&>$y$m2{fzSgu)WFe5J5)>I>QM4(V&yS7OH&jN|b!)WWZcpdoCBZa;gl`|R^t2;Iv`~iDL@Tm>9BLI;F4tA) zsNNPohd^e-vfXNc713@LqT)i&jH5#ul&$JM%I~+TBZvhuFR)xgtQ zejz)L!A}+PGLe}d@osi#_0lZq76*J_d?YH99q&ncwJ=L>2G zt$FJ{MU}OWuMwS_FRh49>_;LkrlDx5RHQ*_a5S8A$Fb%zY^0i`daHuoBN^1b;_V`P zr3+8k#93ml9B<^pn2Lj}k($cb&B<*5WN@3(iSkfj~5+bqA z*wz>^#*Ekv$if#wHsvrgZN$z91lw4M4S_scAW38Zf{0_V1$o=S6f`Ozw2m8V0n6}* zL5MLzg9ZS%PArVE(XNR@WN#rb3&_}^Aposw+jeGre9|}Fy4Hqst)p6NlqX|TDq9c+ zY4eH*jWyQuuLy&*vWg)_Lk2d4F5=y+6QHDFDaq5M7Mx538{KV64OIIZ(iShZLQW77 zV~ULpi3Ae0_-2w#6Cd#DKz@-o95d@X3O(e)SBh{W>`6|U)TQj)R}}2F0v&m} z((yDD_$Y;o>d;BIpF(pe72>^|xSm&JCaMl>p>=*0~)ec&e!`C)P_MC)OI*$}YR?_Qp59_LKkhUn9padFjjF`Hp`( z@~ES@!tFMjjuUw`ny2XCI4{oxOPaPGP1E?T(wo_p@uW3SzheZ{dNG8`Kd#*xoD z^5l z(wDqswjJGc(@mfM{1>jg>WU>xmaJdB=FBtC7!1cmAmaAkXP*~7|M?eP^wsUQ-}XZv z`tX|7tN-aq2eFf8NSA%%^0Uu5yBUm)W@isR=t-dHl9bc$r!CniaSl!XUc@W&+C*IH z)9hK6M(ELxsM85c_AXUUu~26T-mi~|2&5W@WI2|IGC0uT+&dLktoJ@vmTV!gk_nuF z?25APWfSFRluorIuT3NXVY#M9UiEgU2pP2$$X`7R$Ga+KOonDhqqn^E?LYYbcR=Pb z2R!zZpZxgB9d_`KIRb>ed_3BpYK6FvI$5YGrP5s|D|m*AU*+F!jJs=_BrY?>f>oV%nR5TVKn?4J zP~b-ErAMAh&P+W&!J&ZW!VDINms=u6=*C(uui!WJ=k*0`IqiaN7pkZa~{y#pRBd= zn<0{z{F=UZI(Inde-cpasp?>%ybx{L+h7v^@&W@27fiF{F=Xl%ymsfp4 z`37jj5&%TEm6?PLg|o%DIx8l9MW?$y0Q8{3`YUxFE#`oFUJlrl9wSJKu&@TCM#x-z zS%8yxL; zHw-T2_sptZIY*Z;GgaJet6waz;9sbncFkW=XlKA;Ie?0nYM=`B6?f$27?od0;QiRz3+ejmfLQ< zE?%+pDTf|n(1bLgl78kUFYTnH9FnlSqd5+lQWROl3(=%C*IaYWU#|VLrRLzL9K3w_ zauy~Oi#_qLX5O&jD%Z@Ry0e@(8vu-Sqd=hWSYDM0&!!wCKOQAo(vl&^Y7EBLYE$9z z9M!2-PI^*Q<8vbL6)Zc-rJ9eeh=ADQ)}}ALSS2d;8x5&J3X!i;I0C6;R@uA6h2O3s zuhfZ_At|LYG^rhO#3}4H5zyq4hKr*e5=H z>Z$GQ?9A-!_{8{w4?gsigAYFClvBpW#{KFxL#C#tk2>m^=brba1qAdqV{o19* z*iD-@u3NWuY%u)NrCC3?2I+VrfEs!9PR3w`YWZMQ@OMWuU?5Qli3P+hyIE&DAX#w4WPtZ##+%uRlqDFNTLu< zPclR03~+Wai!H4}x$Fjnl9SDF+}ftO;QTNB;0NC&(;W4zXMOUMA2&@iYFh#SB1-Kw&1xNk5ahUW^~4I@Bmy{pc=8 zSIK9T##W$NfK>QCjvPc*F_IdZO7ttn3kn%(9fbjyFf{=nZ{GW@!<4R5UT8ImG=ry3 z1REGX6kJTZ5!1HCNGO@KECH}a5}g2&1dj-0)bb8H?R4h3PQ&{2J_z(6qfG@vyKI!p5kv4Kakv6ve}Sdmq!9}+>} z7`a8D+CsI|xUXj<0@&|iCTvzCMLK1pycO3H6emRkx6l>^t;AtffwxSO-5fP#>m;-n z(5cC;hb0|k%%cnhQRCJptgaDzuL?vv!W7kA18P>v}l|Fg_p!lz_GSs9*wn$_2 zZ~4?QWw8r^{7MG_5O%_1m~tPb*6ksbF7-&yqbj_p*kda;uwsNfk*ZlKDP0iJ*a1?B zt2u0@N}|V9L_HM>SZ$x^F?UY&&NnHM7?9TeHK@9Sf`Fr)x%H1!&G~OekE`1Cfw?iC zTg-9$axT@Ms@oV^q!^FSET!@*0)s?C&?2M9=g-PPaaGzZ0!1L4-Nz86_McpmHTM!X zb0qu=kvI{69dp*RNk&oHDHXlEIA4yr0e$_l%f4~h*XPY&h}QY@FGL82EMaVXoSFC9 zYp=Jz<6jQ|IYGw0J@_fkaomFB^Qwi6nVp$A>&*W>_q_A&yz|cCa4L-S!mcE2?_AVx42t&__RZ%2zJ<@*#&j^{~U98kRH@0cEeECagHQaUKJ$ zgjzf~+FQKh7X(r6KO{iNkZZ*@`0|&(eAby~%*?hYobdjC|Mzzot-mB6p_ErDVp?Q) zOc!ucVoVzl0>9TQiN!cZ@y0^xGSZD^NKNO8Gb~dmeIYhsp`bm*fXWH&5upSMTvtS) zlo&6xissJ#IV!=ZK2$wQH0QIGE)b|1Q|Ypjh3PK=apKC`Tlo+Wk6o>$Nv_jWZm=jG z6TeBqh-D#&z*(^O2%SGhFa`wugiC(0Ak6@92EXpAQ|h_4FFL%Vu4PRcjw_5HAkcw2 z4TXGNku%OX{rw*};i9kn-*9Z~-uv!l!PNLz>qfgiY?sgc&;RVY>#o8KYsu#lINW#l z-D}pYTeoVhfIt-Yodjh|L~ZNl&s%uurI&u-eeb{MlCKiX#`PN-+YA~zXqx~0&;NYo zD~_F-o)*Vs2}I-=BqyGD;_PVls~257GdnXov)Pi}Jeoc9(5Jlbz3! zHEY)~J8OnSVvH4bPUI6G|M+WO_nM#m_~&C|<1AvE;lywv=zhR3UjK&I?zQ)x?|8?% z*R5IWcy`13bSZnUT@4iob;*;$b_q4+g z`LF-_FM+UY8=GS#Ie94c>uIF2!o0^Pg{dAl6&D*g{IgzV5|hA}@Kt&Yp_q)vlh#ed z5TE|ykMi*zI)@{r;FE%4{%Q~ysUUea&jg~6ra)Xz_DjcNY>F8onl@yVN9CM9n2+KH z@7PXQ2?=s69MkFx@Dq8)N!haS&k+SGO{YZ)SlIXgCBtvb_1RWpK+GY4m&OHc=_f_lzvNp_q=mo@WL1Fv+v## zaKh;X?~3T+3?&we%NZd7y;$x@lNkkFpPsHAoX`zPDOPJKk`fie^cVI^(NogJX(ir+ zlFT4&188$X2lkX)m9#Stq*HwJPSL7;jgWfu)Ezq&e^7+aNkd!+*C3V|Vkz&MK$8%V z1y)2x2bc=9gx)f8-hC@8EgiRu!jUMj4}p~APz{$tpL(E6sQ1S=m4wvmh!z+0B8_Ts zE9!}&Q5<&QR%*NocgE$Bs`VP2Qsd;_yDG5QA1N6nvA|krp=&AvF(vTnVq9TV0femc>^js^c?G{ zNQrZgovMIQu}wlH>}Wrf%erXFk|+H`-%TrnLH_usR90ItJLROLBQ%ocPLe0`aW6i5 z1xZAtPOPY(sXUBK8r|fj0(Eu23BquN!$_kA5cXY5N{Rp|sh9!{GS`oy&w3wm9uAb& z%aYk-Eg4OUI87XxTtXXuWmCkEkb$*iAnY7lVO;}V;}q2#Kgq({P~kp6DwD)T)Je*tvBCt`yGE9jW%C+!TC2{fBgj)ez_S81x}3F zdFO{cbpL}>Q`5Gw%q@YevCW{FoSfXaar2ffn`TC%u|eaQ2euJu$qt;i@Y0MB!7#V- z&;t)mP0c_2>4y`UmZga-C4^8)6y6155eN*ZBgZtCdy@1&DNa&aTOa|!9|q!0L&aTA z*xr5b1B1bsv4b_M)`m+a|#d z0zk}6##96yjWwY#Vrj?;vy*nTMF5Cs>nfU_p{E2>QZCUw_myPu*06V(+(?}LBkwQ42m|i2zdU2h3|UzyZ+@( z|8nhLul?oEe&wXyX{TLw-(#13_Snk~2d%U~V<-mevi?d2c9wUwz6`oYF-p=+KIIe; z?|O6I5S)Zvd`*&FP2pSxi5vlhGCkQ5P>cBfV+0ru#;viQEd7Ldb!Va_&r|@0d+Zmo znVf;Gx})qy#0I>Q2Rkbk_M<1CvTnorU3cI0q>r3rt#NH@22BXL`sZwtfyDu`sl6B$ zDa3k^(Q)dlu>~RNLjWLXx77zk0$(a|;lHW~U)q&VCXubgEw;+QicRM|9iDh?7Sz#u z0Ael*2;{d;DfrX&U29ATo`j8sDbN^SEi|w<7vnuWI|?zmM6a(PC9y#h6j2ycqP$`Y zuNJmII^;rKFIb6UK3u?kl>KTxLb%;y%}~(Glv`8Qj~|-Hu@?&})i|<|fPCpIk)$zw zVJU?vquxj@N0-J98ewS~bJEEl{_~&zeB%u_eE<93-+S*pS$s;7i3@8HcCC~%DTLNk zX?n^?%T~Awy86fTf>Rn1R6=CHOer_=V5E?R%7qDe!oldzMu8v=Pl{aPqT)oK zLnUcC^EHZPL$lCR?nmuMb<7?ukklMU&W=`2GS?#HaaoWFvGB9W^h6{AowpXOH(kET z{}fOX#r~>9KF$K0B8{m5sTm1EMhCPd4=OB@r!ZkS{3x6EHDW4ZuV|$>Trv(R>4!wB zd3JJWPZ^++kETU5i~>(tAW6(F%qIs4!GJ8p*BTQzL;i3AUzbmcxvOR>{*s=H z*|1G)LJDtrmegyK1yLLeq8iP@H_oMZrQ&fhqWfh7gJQ1YoP;bC4O;g|2c^Ul%8z5Er&{@{Dx*?#2?zHI?P+==i1&{bDnx&8Lrty=xi zi(dS~H@)%AOO`G%MC;dYy6jt*opRDgCMGAYz4qFd9rN-_FTP|j3>5&F#WwcO*Z$?B zC!aJuH4h@kz3LUmz3#OO=P$6& zoO9MT_uPBeb=UuOa(dz!&w3^RNIWt%pMfnwUxi4Eq*8k^7mT8#t7C%_2rDfl1oRUi zluv5O)M>3{l23m8V;?x-eeLEg%T_Gsu)vjEEdp^&evAuhq0o|JGO->OF(gO_xSW4& zQVEvjRt0hurY?ffy%8R;E7LqVw`v}#@3bw#E=mZ$6^h3e%Q`CKWt|`#g3g7+F!*)_S-Y9JyY;^bv|0CRN5(;bIX$Fr$m>JBpzdLoFYT$^k)B%dN0rKN-K z|LOAz65XX4$d`)el)FKwL>PfU6yh`KV4E@&MNzI&B6wdy*n%Fo|Nfu<{AbR|%U<@< zZMIwCMy+WqrTL{O)=bfH@;sQ>z?h1YkR??$R4qZ`vV>QRB@*-$sJZB#ODcJ|Y+{js z>7!9ciLEaqz= z-J5k#9GR^84LUSAhm>|oMITWrQdDzB(anlW_*Boc$8mTlg;ldwPH;pz(kdWpw&c5) zkO!O-IpziP=KsgL-~BIdeB-(2e(@E@9YF~|AR7L}0-EScxp-=-TdcvXVmO6@n z(po~OITcC6XR|4nsFbaFr6UQ{9H`7MMB}(39-WsK-r^7e&d4D>nWaE0RY2}lu~5*s zDalU&eHLfuGzQ9RrFl+6qiLX&EJ2TZMHNyA6-qCpL)U}p9HH~+1&NlT^3!3CY=$CI zO|}RWsu6GyQ6BHq4ndT)Ij$OmU?hoZkxKykV~ClJHw&1_pR^b^HI?E`(Z3>#{7p$_ zN_-MVn4ic=of?x7-slrXVy>5yg%DQ^{9_!&bcke1QPQdWB%V?f80jqvDYZCNkz%3) zNlULlh^M4gi~=`7;}$DHS;aB@0ehPEwN)eli38cFYjU(Ifz{!gJW%Pm4Cw7oT|NVf z;GBO|C2kZLRiqtnD$^u8EphQmBO;mNl-kXF5M_b@N$C~A_5?>-5wOuj*Fr{*GRaqH zD2WV#*})p?gaO0sj1e+9oFOr#8M*Krg{H^=Xj>BR~sF<$xniaKp3=m z>F|}u9(&*c2fXnOZ+K|c>OcSCn)AMN?yFvXoL{u@F^6 z!Xm;f3l}YX>Y<12x8HtmdDC0|^4Dvx_}&lR{jUEQA0H=}1@jh0Q!;#3tXS?wvu#VZ zvCCI%2VpWQcf!Y5)4B42)9~Bh{&xMk4Lj_(a^*JL!7l@PZxAjVjU+5>jA9#DHVkLT zfPI2Dn1xyVX|`mO*BqUbG~GnbIWi#>}acyba5sWlqUf9by9z!T5-aFVay7am{m?e=zM*tke zrVwqqn$~mU1y4l^#Bg?Pm*@!M=xeF&P@#Vb+>3U?t z$X10QPVz8-m0~+pw@NB1`KVS^L;oHhX5_^BqNoIRVj8k0R)~)fg?Ah~0ts0g`^*4F z`^pE41Q5p{A#f{(h#IlR79a$D2Sa29!qW1{gaQm=?7+f`6|g^m8Dts+GbiMk5Q#V* zi8Pj6D~1GQLM;pLlacj1IGk%k{Ma!`(^$hs3_~cn0q}t(GVrOI>_i;Hu%Q7+3|X?p z2IiEUC{6b^ZcD^*Z#S$;7@$i+lEo5Hk4(uhl?!F?;xmkk}C1tdfgPFc!; z0VvEt1}qtWfR<+~i5q!>JDMY_o2B#$S_5>lyc$&3kmou|98>7_dl@R zw%b1Ina>h{3{iS5_@*IppG2V~lh;Qbsg7Ssns-k#IS*YwRS4DSb;X8ioFs45Krvxr zL_gihvDXp}dV#UDOHs^AshSvMH0gQwUI=;_BxlP9dh!1yIt(LBm@LM{aqU`nF6qJa zBe@^Qae_jy*2vNWorCC9Ms3jj0U9r#vcTsIT5%#vk@#G8;`v>Iw;boajB{lFktjHu z*$++LW`dL*#Rv8 zrTl;qKw`+LL;r^TWeMq{>QzJ`Cq$`zlB6~eUIl{_c8a)Lv>XM+Rj6zF6O6O`XppUO zLq;X7w0!K0j^c3q9}W;pFpVQ2i0D^UHitri|539>xNM?Gp!k@;^NM;XG^55Wse@=C zq@MBw6q2~OnSc)MP~yZ$O;NoQh&^kF6A_5dT+|_nu;i_JkP_4cd$d{#ogttc84Yi6 z@jJ0(q#*)j6sbMtTCj+peBX`<8*Re{Nj6k`m22F@BT{{cs-$_m|Y4OeZDH00?<4qLElLP;pH+pOYg|&RiUv zB$8An2&JV-01^)H_JZ4pF&bDuP7uVOmYL{B0VDAlB(<1`IyV!g0)?~!c;bl1Dx}8} z++7T?Cne`X#*e2S5kO3uO@Ab^rz=Sy0p!m|g$SgvX3NYLA#o!o+`86zf97Eid)P}~ z_OjJ$R?nMS@P|MBVav>n0LIX&HLE{*^2rkuQ>#`z^q&8G_dh-PNi#FEA`WCMk%+YI z?7sW%d)jHIZ{D5@hN^@;ylvwDpoFpD+R&dlC%`)y9#a5y;r_}7ZCbI!mt)ds$c2dySvU*t!gTV*`%D)e4pUsC4ZMH>Q9@GlX4XpndG^=*X#^<(O(KAhpFavI1rm?; zi>8kxzB8(Q2z<~t?G`}1lQuC(*qs{KytFEk%t;ZfP*j~lCXBJh7qs_0Zje%PBs9kU zb$?IB1NqgF#~(YiwCZDvXn?wT-onu>(77tdIT@ z48`0pZ?OmhoslurG~KT8}ShxwCLwWs{m6jDe@yrSA;L{T3{SH2SmuL2qXKx85q0s)K=D|;Mi zvw@s;^^(Tn# z6x+&G2$ZDF_G*?Ji5|FkT(m?9&jc#Uh8!pypzg&MVqRz3O9mw_`|L(djf&cXL`(tB z&_M90!4kdnBuYa&@!!BiB4Mbp`yj%SR^iyN!bY$YIbA8yElL4sVcFGyarBvz0yD%s zPQCF~EoI03LE1u8SfrY46Z*p9OoS_PTb9h8c71;oz41a(r@=+$5k&qqU}@*ipMTVm zM{U}${Q*Cd%T;1DGs==tsvfD~3?f9|6_hjHty>)lyW~Qr@84o;u`9BL8~ft?hsW zy=PvNifobqXna&qj}+irX4fd{rR(+wGdsHElCK{3>f?mPSR>LpcFer%uDcD#2JLJ+7#jv4MQmdLnVgz@ z;uD^@Vw)A)?YKQL2FAjOuTg1Xj6dFo2*$R;WI@I>Q0Gb{SI2}zWpPZ_u3NYE+P_{m zYz9Xi^(<@c?Ck7tI26YZu3oiqmJXgeN?Huf6tKvS^VphFxo{3F?SKW{n~H*K4o6=bn3i_q*Q% z?aG~YdfK6fEn2cjoERHI8OE49{&vTz2Ob)qn%HUOP7_lTZ98fjyJ=?2-FMyz(25mH z=S?q|ot^#0x4!wyUtGOn+vR)jwbv7$_=E-X7f8!wZ4mqnzt+p9F~A*vyW@vH_`!ya zn-|PqaM;rhU9e!mh?6^hnl&UVSb+44?r z_}3(Mq(5qnRox15A-g>376I`{^R5h|D7o{~lwOKDH$yBCiYFy0wcZ!T^1%32<5cEJ z)UyfxtUuYOI>ZBaLJY%)(u9e8Ttbo?9Xi)TMcDq~hm@2+HUIg$B(u4+Me}d{Qj&%! zYz~R4N7B|eXagfXm-4DS&N&Pxt5XEvrF=1KB8BDrRqwjbVl_2N_3Xradqn+!lrfM% z76jYUL=RUl>qHD`L5@O)6go0L8J{i;j4-qaPMhYMC=mmc z1|k{Q1WKC4n4%S9ADmKUvab?nIUv{wu`#sU?z;_!gN>UuaNEKHMxDo5f~0a8H5z;K zg2SKgz%q8c8J(qOPdkN(joPxFKtSi>P~>eyRB3A^x0d;$@`e)C_Do?MZ^oqRw@}qR zgYKfBLr$3#B~CsQnGkB1G6)cT4-JS;5kk`=zoOrgee9fJ7SBDGdL3!>^Yo4`JR+WG7uvmvO;3QidXb`wepdO zFO~aSOlYzEK1 zW?#*Dq{XoDr0QNs6l3ayRzoGJ6nLsg!f$EKPse+Coi&?x0-s*&*_RW?dI#I1*2HFV z5q%hAxk1Y@0U+459QAURlcXm%u%R%qad6(&Gr}!3Y4f{)1lz9IX5pfRECQjK*;x?~ z=&B$6XfPPI(!S`0|J+zRGisYbtP=qMFqRrvL+0f#efiIR_Va~{7F_V<3ywbeB@+|l z3?3T}=g*%Hn4508`Ieh+*?rI5T|4r|0KtcK@UC~g>mBd-ck)F*oj*A~Ykjenh{9ea z7-14{W--sWEMl_5!sINOd+)jDo;&~644TIsa3Bx@M)yB-|5FY+c=ejKpZw&fp8MRR zjy>ksKmGYH8#ZrfNA2t1@cOnDYlV#c+~+>`iU0b<`gI%H(WtTZ^s&i#3#T9d_$Pey z!zV3VvWQcy9!F$l?b`MK`JexBs{{<$EIo8 zcGNV3&;Re)XPka|Gd8^VqKh8?gvT=jzzu)B?uchT(~$YhXFl`fgP#1n=RW`DTW%s? zFc{9x&g{9zUN3p+i(hm6aTdf3OAHt%Vu;qSS##nECtUu`Z*3XP&TQGz3T|=)spBbIdI_-?(x8#t}Or8f%8T?Xmm6{rkTj`HW}! ztrJNkE23or1V)G*#IPZga)7!TP?C9_-j6OGf_(R0nv#j7(ICj-BBk@lFSTZw8lVh} zU+%dOZ7LL>xTK`o$zlXVsxE(F)+O@?$`DXZXpFxr+*Pt$ccnbVT^W(5ZUR%j%ez@2eYwg`jp7 zPz>)=nSh^`a=jnaJt3noPQn*TJX3yxXVMvC#E$N^%S{=%c^7&BKr0PEmkZB@($gwz zqJZ3^(J>EElM;RLTBa0p95F}$tf7EG5-)Cmye~Dx-H=$+?{`W=Mo7q$(&o#?bJwTM z=4P}T)6!fOFYbJ_@W^r7-xZ_XlOQrU!AYL}LbkPI7n^c*7*`QWxTBD<&3=LG}NF=EhTTbMf z4Lp-p_4+;he9`!{>A8Xm2}lYRRZXb&po6E0!}Q^;$+VZ^w`vl_oGWD3aB2?j{iwra z!&~UQQdr=uv@HO&&rLU*nY0tROu_n~FXGa$pXOdoTS6318q5<))r&D9W~Uui&YQnr z-TJj7;UNtL(mj?V$|NnV6*2S^fVV~JZO(w?Y=eY-iIO`h1t7XmSyf7+SBc3*eUp|) zE73zQ?p6{TM3g*Rf6dI@II6f!kLQ(!=?5N&tdk@G=tYvEfq=D02-J}!i11M!QdrQ6 zoWP>RMEJxkOrj{nk^s+p*;CLwMQnAz3wV&? z1yM-r;W@P=l^d!$S7?n-`tS*Wm^3T^EctaG2*OGQWpK)_lZeT^B?#h%Km8sNB;qH) z(-qCxpvjP5-*3I+ ztAN25uJp~bl34*u6ts$TUyV=Ish?S7A{uk)Vg1pebMAd4?Lbi?GBhm+!YS3XQoW=h z#Pk(EIUyn+qX+rDxsd6%@|8kdKyiZw0_{Z+;8Si3Rv?6!ql6Ksq2|RUK_Cwjh)**n zc5K9whzVys3xY?IXIUU{5||@w7Y%}y0kW0^V2+M~&kGZFEW*>1lT9<+vU$sJI9#@L zIf-oAxZ&Ds|2#c8Jv}x3#3w!;z;HO0r-@<^-Zn6J(m@Apx6KNOz3HY~AAE3?F~;kF zJ@?$ph>VX9U+}_z{=pSjfT(G#ZLBfGEN#o9wskGq)Y1bO)W_@_UuUB7Pk-F92DY?%m*F#ufam@zpqxnTahkDh$WkAL#hEi;>EHf$aa z1^_XSjA_m~^UU{u-~$Ajnw;8u?|rx3e&xuGHm%?E&C4%;_Vb>wxdOhmmGND6SrNtV>1|TT(|yzKKtpjzi_q~a;;+~0fxh2Gd6AowrQf# zAmd{b6T`8^ix&Oz7e7DZh-cn-<8?c%T)ERu53|i+$>L>q-gV~*?>q6Fv(F~FW<@rKvE;bR~Fm;qCV>d1&0z5QR|oxxb?X+Y8Qo;`sB$jEcy82#A+o@ z)H;5Epj3ET9j6o;LWwK&5J5!1X-;Az%9KjdC##wGucX#EipRWXLb7(I_(fkKl*mr> zp{7^>aO?u1f>y$-8b(%W6-{)^2c#X++DDZn@)E8jc6b@R1{I~q)`Md zrcA0l?~0x?@uT{rtrm(lGu9OX1tik3$?`sSR)~;fUWABOAI8|Hh(JS6o(l2|2K;%O zsLPIF%#^mp#+elF0pt$TM6gNu8DX^Kb$G6b7#y~=)hDV-WVKJM8NvUn{f~4*F-6Wx ztA{|MuT%9m{)o`!*HE&O-y$AN$$UnoiVOz(1KNz0n0n@mtd1}ru+m*C{t-Bh@wx0BL81Ec4kVNNfewwO~>EVXz_wSbEp!86$Pdr z+3Hcq(c(A-$rMTV%}H-R(DPm*KMgz@UEMjBpyX6{(Sh)*>g0hD#LePbMnpx%0c1{x zD~p80yDT6D-aCmqe-()F8A?+c=|qxGm>4+e0F4Ece}pCiQaH`4pRyQc&w^iy(NpzT zVKc*^9PcXY3P7wICIE%AG`J`J2Y@(_IO@F+)m9Xl+Rx%YUQg4luSg>CXpxBSG{D#y z8_M*V`pKZmH5la#WLhb(5lORnD$q?7R-zcqBpuZvum;2V6FN{xWgxz)xG~`;QMKCq zqnRgZgcJtSpM=liP7fD_w-r<*ps2Uwdn(_DsF;cLjU-Q90cY$2Q64D*sT+y_bDo71 zIwS_T*pye2g|9EgL^+g5$fNSdQPn*1yJl#4p+;_SiD(Vg&8|R?^e8_ zehHL&Ksjbj#WRRnF_>RS284tc!|0+X6H-~SaxZ#SOLv|N86ih3)1pL4L{WQ^z=Q(4 zAQHd6X_>(=;*2oD0&Exq0UXqZq|?yz#@&?Q3L-NY4n-i2*)a!aAIP1c0}OUzxEBUea&mXc+MBE`|I^Hqqb@6V9;1Y#$wRev_rBGvw;~L zHGuPar4(9$!YPC{g-OV<`@s*caLflC{FK3PKqPJJJW`l>!NP@~JNpZt``lRvJ^9HO zo`1oY&p-b;&v~wE-Ee&T55NDz$tRsWJu&&HM?Lz=A71s{?|k#BE3Y{9)KjVqZ@%3+f>s#OY z;g#Qi@<9hpPfRUZy6BWsPF}rg)xb2u;siwI6CeNNhK=hN&R=-Qp$C2YTi?FuqKm%% zjZ0qk(w7_4j17h-eBgu!AAE4o4BDC2T6^)=F8%4xe!*zp^S<|7eDNh`opIJzzxtK` z{_jssFIc!}@#0g@IOFPH{@gT{*e9W6)h2KNh>Rf!hvnW@^AzHeVO|X^REAP_1V}QD z{l>mLi9wzdllZNT=|)I61_gORh5G8T%v6uk!;;k}1YL9d5J6A`v6ATp~L%ckftZgy`mBEqMRl*&XgoomK z8Xx8Ily#vvFS=q6;lL~Q8a=S4A4#l%r*@_hJW*xk8x3S_i71RE6d+iIDc>Y?5!M{* z=K=VLd32SPuI$slQD*x=bFvQwOd*3U*%^WINuN&-n6x`VIno^LK&8S}R(TBksk93T z`Z`l%Wli|$iH((CG6teCLJ6N*^~V+8P@T)AoM|AtMnM7ZT&FU&2XaWe=Cfw*W?b)RZHR3rthU6ABywkg7XDA>0&P4^jB+ zT|vt_+LJ|}*^}%zE~p5dxdNb~Fxh?+5RiE?eWQMGgjA-|8*4(u#0)!V z$cis^1%zdff~%D+CNY~k)=3LiV`1z;`S^vyt?@vmN-ldsd8gFyVQ_IdKAwUnVQ5i0 zM97k$jGCp_gsxz#?&r{l?>AO&0+f9&r38;XQL=oGFMTn&EZSh#ZhG;qp>R9Qiq&1?lND5Ihy~I&v z()R*~Be%5eXm-|FLl}@40@*~88V{175H(k|w&;E;`=tD#+V6V+Q0vcXML9kiMV3Z6 zXA_k`QCCIP1r#ZVX>1*mjbDq&NdmvT71U#%)uNp~l0uk_8UvALb^2jA5;`uzc9<{j zT{RN&PbE^b(rkpJs>|3}4Jk#?!a!15v?^GnNx0O1)wkGFjLB33ub1`pC&EzaR`ktC zF$`rklDeRt4%8Cus8a5B+N*ziSxNc5Eaej$R^3*B_FgQ2tg{=d_sjh@b2lFc)FDMe zHl3)VN)Nn^G8Zspng$J`%E*hKU42l3#2O!ZN^*Jdq-gv{)px6AztA;ld9Fhpo_h*8 zUe`h@<}3X64Q9J4W2#yc=uvYVdktXMwfzZzGgR%-&my_Pp7dapyzQr?J35VR?RRI) zHTCoit3x!Mxrxx!y{XmAB1SsTD%Z2s*X{t#~R3o2n1scI|pOX7!tNkV;T!0$AIHs{pRX- zzT;gB=1tCQ*>c1)4sRL*k&T-+Y}vAj8w|(o*!UPiDO&-ALjn;SGQN~RGZ^f<@4g_{ zI$r(ILm+}BVQjy{4xj$?e~a+Cb!!`IfBle)f^iI{fg%Pde%3AOHBL5V6)W zw;oy+(bEy)WlrE2#2_}_m&<${B5*{OKnyaLW;SpB{qO%UHW)tQ5&HvR7JpuHI~r{n z%?^iyYybS`fBmqP?()TR&e?wDwgWqu zoSb_0vyc45$3Nj5j|~T3zx;B41WMD`TW-AZYnNO+Ha5B4b}P<2{fvc+7Y&BP$$8U< zJ@t_PyYS1iqtV8V>%Vm21@TB|tXj8j&Kb?0M&(Zw&U>ZI7d0e6($bgF$1gJ@}x5 zpZNI4t$JwnXlC}RD}Mrjj7jUnUac6i@rN*pX~>YVh0cyPVTY+>qN92?$Qdf0%go@J zDy`9_Khd;E+(k)Zp(7efQPRyz>itkwLg8n|g6gVxLn|->D8(xEhvT5K1d8pJIyU7y zL}NCovmWI^02mfPE3GHRaFlt9+^6(EEv8i?$}G$$!lOi1RFAraSoJA7!|548Jm({4 zte3fveVQTfiu3nuoLoVTu?R&Bi~C#J2huuSUCZA!{*+xr**}T@rtAfZMJNzPpX**l zJV+AQs)Yn@{%H!1pw839ObL=<5#@NrY0!^rG?Z?jP64By*K_9t05&?NUIE2^)in99 zws6n*>+Xo_;CJAf;7^WLFdj0Y`N3D~h=z zo7K;ipJd2KAFlTy4^M$z=|i@5(y|di8Ho|jh(|Wb*ie*&JQ3jy0t~Db8XB($4K)gS zPzUp#TV`D@z7)~~J zV2}^KsNoKsn5c}x)f)QxQ`1l1<5B`xJYuTLRazkB9wOgLay$GLMiJWUfriQ}$}^aY zDE!*W9K)JhzRjTuYS_F~2;T!alqZ^ce8j<1Y=#h}q5#r#ZLxf%yX`-*V0u_D@E0{M zyy4Z|DOklOGKHe*EPz0gHsq@|@-EgseDxH}>ixv0Qoq{d5X57ob-&TsQnD&HmFI>j z9gf*8`2~vY&qW6v@FnSn^0JQHYEUwD*QlsFQ{>%)w6qCZze;&`fe?gPh(*9DskaWO z%sm-OG-qy!doJSu^mkv%zK9xxd+;%9ol->Q_|=U$NeA_#<>fwOV=eKW1$Y>*r8;HM<}%zmc(bhr~X zf>nGkK$`NJ9`xho6#3&Y3(l=jp`{an!KT=99_0f7k8v^}Vump!BqGM-2&R8t(vn?) zLnAPTCMPCefBfs`&ztAkc4BgJW_H$byJgGh`s=PU77sl5;C}n>_tKZVh((MsmdG(1 z(2hIo+}K9imKx$*RFh#W00KD?18lSH3db~RN7vtY{bL{hIOf(iP3!ou!w&uW*S~)9 zNhe)*;|;goe480yVla8{z4!m`S!bSc)|pR!@{?YB{A-^0q$e3BnBb4r^4}7S6#<+P zn6&&ENku~KSRy!vrMvIG>!H;TELyT?zrFVXa#3N18xDrd0MRR7{i?y(m}9nLSYQm@ zcH3>gzWQp0Jo~7l2F+m9&NkMx?3|NFJmL|D9CGki|L?00-v7V@_ujW++Z6z=zu|^; z8#Y;sH@)S})|$4RwWc8m3ol*1V&6UXSg?4>uDk5gjz)Gs09-pmhJ4->0Zcpqxz@Sa z5nEce&C+9Eag0D*>x?n&OgkJ7-taGP_|~_+VP@UsmwoftV_)HmNB#EKzrORXJ0~W_ z|K%L}>v@R*-ccg+V z8E9!bR0WXA`p)Bx#QzVN0vhv$#>ynCv$Dfpu3VnP#b*VX3^oY^G+)2-FO~r_PpT0Z2W>|b! z{DOF*{~9x;|I(31qU2sa(ItjXgPkJ`ABB$sL>1jBlw@e1Mc7H)vl&lI6N*%tXoyG= z7jkvpSYD|dQY^VwGDg(C>1ypjbtfS`SUwg-K_!A>LA1)c>!-95t~qZ)X@Sh9p?Dgl z+d=LH%8k~hqC_g`G0l%&9Zj%Qh$Afo`(UpnP$?10%eARo{^kO6b0H}H(shmI=pewa zXRW@eL|IZ=!3GQK4@LA60Ym{nOd@D3EScJO?}exE11ffpLb8T1-tU7x2;1(Bexjmu z_)B%Y3zGlVU(hH>^?s*MJ(j3ewX9u|o&d(yd7-*J$J2$CS3k4$9y~`8&?FI_{>egJ zMR$V#66=N|$|;J%rJR0IDjl}A$=8$9ED6zt!bna5 z5d)U}3D}010b+70GyNa zu}Y(zRi>=IABK~sD1$avv?@ccX4Mf)7m_S!Y^}8C{-j3=q3z!<)uV<@0i{;W2MSMIQ*5IwYZ)tYtdmMmS`44Uh& zyU8>l&;gHn3;<&W3Fh&!;dvKcuwdQ-cn)O&n3()oI~*2O2|z2tkWK5>zvk7inHZmB zX4_Z-4aSGAbvv!xe#aem{lg!BcgtJhvrjc_^ zLof!0_T6v)>#w_h?fNxq*RETzaG|w>?YCR`>#MIGG|j7Db^LqZ``&%_*>hrI62MM7 z@4Ul~JH~AS0wS<43m#10bncHpKq8Jw^jf?2d&@IX0d+uSQ0p0ACUG-F(s_zbz0K;Nbd&$ zO(hl*#Cp9ez@PN2f0_X+j#wZrEKw`56`xa4nF8TazDqD7;xnZ+nZSgRl)xU_=QPQv zKH7-Nf-#j6QPzJNXtpwn)*K=$$uUB@)MGz^r-)mMjj$lDTV#up64_X*F00Il;P+KI1*P(# zicA1Oa^X6{+tW!|SwGEFAD6`)DKQ;4;vay|8%~W#IQLT2!7AA!P?Oy=Dk{X8f>{3w z^H{Na6mb6EIo)iku9Qm=y0Jtb)N?yu$;m&EV(JsKs3FyuO#=uO%nRm@@6HiL744k> z1PefnkO+$~i7i=DJ*lR7Zi(t~U}7A;jIX3I=cXl`iBdNj;GAO+MlYi%8A?>D^cwwn zG+A9#loQoYC4Z#S&{UwNo&cahU%qTA+UXT=)z2=OAgMLA%^>wszN6kQm2RV6QeIe| z(nPZaCO=BdB-B;V^2BE7?xlFwe3JPSO3ilqUu-)`SP?C zjfC8qk}@ga8EaH0b1XVky&0QGypq{L({pmua_S9Hg(tnPUzAnIAnM62qwF2E*8N2P z$B%xiVJ?mKxpZP_g(b|V0V^Se+-T%ilajkBBhP>&I5?WTsWbD6gp1xa29$({#HA&u zV+Ihzc;3}ef$rEj6G)u6Pyrb-f@u&cYOne)sEn^A?B@fi`a5c<0~l93LNU z-m>}G&wc*P=1pVc6PDrN#wW%N*>&sIFIc#69s|LKo^ zc+o%q^Ue=@*xq~Wb?~7FKl;&+de|pCA{BT0)m*B*;Etb=c`NR&NfFIV-rXe@wfdj#W+tR)jzqSIlD0GiEA>#_$uA(* zsvwY1IN>%PTM;yOTHMHb8Cehn#o{v;!dX+jOy5bjd#{s$G z@gHvIqZU1043xD~Sr=IqD8%_;grJjT1wvU9kh$uOxpj*p<6exu-w zck`6{R(*la-(A{Te#)=(|_f2w&*&sY8Vm>eMmt7>Qrlx#4uqj=afr}%dn z25^8)KechL(O3KkQMP1|XW1zQ{3r)eyM2IuHD4k%B~?H(^brXSX{}Q~SeeP;Ta@lK z-qLH{G{~O5ICSZJJ1J6iPgN#AsfWE#L%vXj6({hSC=rTN0&a z&Pfq~ngnQh2w$PI%CJyZc`EE^#ied%mMcUv;)YERKnHD^oVB5uRT(O=+$C&{uYzRi zUJCLmeg2{yN^_RH`AQ6M9!iH^D~RgrLS2R~M-Us2f1_9|jOsZ#z2?pQipm!)?h{b& zu<`PVVlhEO5DPdV3yMqB0I0|t>LRfdyHzt(2+2|&rn3$^!^n|qswOkfZ+KE$b#p{I zH18{VPQuTq`+As_x-Kn)Fj*0U=rTKp^*;ij^NKOY#6}_3N33NysJhwtC?}}Ao|sU8 znER`rt+?HbfgS^`c$mbWlpZEck1KDjilvi0Td+TDIhT{ya;OIul?;$XQ;~R;Atc0Q zCD9;9ijdO3xbQ10maf>+ zj>g9a)(l9*Hntfw00}cYHkOD1@Zu#)mo8d3%kJ81uf6N8zwNlwPOf#nx00?pB6AP8xXAF)+a6*A$r)ZyS?W=q7Q9`)i1VDB5P)&GlR3AR9JrzW(~ZPEAc8`qV=K6D?5&3|Uy1 zR@%k@5Ca1;5NVnQB)8vw$JEpmgMW4PuZ7Sw7Ggw1z}DKvn(^Vprj1)ht`%Vd-FDk; zhRnjn3&+PNg#|>xP85NmnbBx$FlHd^<3AiyY>c6pwdLtRoD*X(GrJjpu)ro4&sSe| za56nL)eIVD;g)Z{^|r~$snx4j-+B9;OrcJ*bB+ksTH7?k!I%iK8yRC9^U|eDzW=@N zy!owfx%!vCan4=)*K4o)^R?gn);H~-dH(aC_rCZ2=e+3!a7@Mo`!qOp;tzZUkp+nu zc1942nMCoFQ(7zQxVst{N8Iz#8cJn5Ki6am4&nbRowS*XayAE z&qGmO2|xtr1LSIXBW~GaLi-a$8`b(4*Wa`%a(|AWUph`U+EV1_5$mL83n6DEc1tr)$BM1RUVf zM;+!Ddfb$9w`8Zex%%%ss#?~>8jpmp1CeFKN>NWe`>5<(eO>$j7yQro{_!J>q%x9geP3J){}itf%1~kPl4J`(p(#d(GirS0<^o3l=p2MX zpzxCS#z@$Dz3C)FnCK(~eNYJQQWoh!_4o&oANwUa_5A^W+5_*rWs=<&17)=k26dt7 zUI@WK^-`@bl#r|#K>=CKFr{SJ9E6t6W~uZF^`RgPE&CYxeu3;tVI=rVg2>Nw*)M&v zpAweP3x~Svm&UI}6ko%s=BFHQ64P~zpVE8kcNx2i(!@(w2H;Pj3H!2ZEXGgIf`5-5 zDWXiNJB@!Yx68mo#oSf@N#%3{P^AzlqMH7`TEVEA)#K>nt!`sIgD&qB5e_vH0p;jb z-&T)d`keDIRH&C^=#MEFQg3JFquX2SgCl`Oa6tebex_F|A^7( z$b|EEa){OU{CWqR{6sdVx~xz(uLWV%T4l*Wx79yVb!qO$OX}8vfjPG&^){Ai0E)f5 zNs1y{K66|@uQP$jfQFuPIE8}P_5IHlak$D(sQBzNhEdk@;Mud-ETPjz_QGEHwKU;ZaE7v3Xvy|?(Q%W7JN_x~q zB;{h#^7D}m^u+pl^(iN(6xBUUFEA-7Uqcw6SMN!ZVE-UOV;H~zL_~&~#sMM*d3U51 z^f6Vwv|5wF$IPQyw_@3fsd>|r#pYGGwlx$MasWeCL@ zjyvt_wY1%tH@8bpHbnz%;wv-pf?R?gm zXZ`aFUuXuyKmOs5TQ<*(PmY&3umH$3CI}7$2q~BSAo!Xj0_QLoTyxDIZ@uHT-FDe^ zuif`dGvNbdM6d)SLe?UCe|}$+-FM%8ufOj4W-$EBXFqem0gtgT&2T^jcG3)*!CcM&r!xyBANNrU+M&p_05eEy61LjXse=IY*`_yH($$566A8Q$7>trXpsFO5`6i znX-ueyHDtcO7_oyh0UIc+p>V*Xly09RgSa|+%gtj$*dlL3v#byX8#oE9&#)!(NCp! zFbA4?Gi#!(uQqmQ4yw7l6b*&y>$rZYX@V6?WDE#oz}%z0q;9+Ob?daIe5u&R(Z#Crg6b#ZEmGMht}%5L;%wH8%cDfEnpRU zq%nJ+w6n+0WWTQi^2jxPhmGbYDYY^i2&AP}{!Y7WqOHYz+xn zfY>L#)-88hOCOcDFo&d&LiUwap65jMS!Wh1$OQdMQPxQm*&t{`jTkv(nA#$emcSJQea4)%~&fY z6Lv_vAP^_pLmO5AF&Tq0tmE0MHg|$_=oy_d_0^LeZ(G5}9K=ju=QA&y@sydCrUTT` za+lg#3i61^HnwFqaxDPYj!ZK&(ek!U69l0@$59}TO=BN@z+--N<&VdQW8eDr<&Syn z0g~|H126(7t-u)J(@*`Z8_mql%s%`Pj~E*p&WuK5#(v`)U%&XPmx#z~kAK~h4*Dl? zOxF4U5*ZqprggmcUc2wT_rBL$`{zxYH##>G9wVPaANulD#vQ|u1qpFLuhH!6=hYcw zfGdA^n^+KNf8j7kPY~CEdyA#Y#D%i?z?yMmMxQ0Q~pWz{-8j_S!2mI0316DYloH%WYi*^ zq$Owt&PmgZdm?Sc4MIZziF174{r5N4u3Nii^XAQFYO-mD2R`<|KVI{v^=sFz+@Nh! zEh~0YGi9`|#v0p-;5oFyh8Zwo$nP>%vIu#KqWzQbJcrcuAm~-EQ@^>jj^!LhXDP0F zo=)v}T8)CUgTInDOYQ(_1of1Xonw^6r&p)+_?0T?S~sgeEQ8q;0kaqw5`s`lS?#Ks z%(LYTZB^+dYrR*F<{zBNxN30@Pd@4V?EXq7`?&y8O>u89CgD+14r9eZ(sQjdsCp1{ zTv3CpS*q6b9jetbv_Mz57VWxXkd$Rp1$edvGX+FhJqO5A-|7+{;4QVxmkQ=w)Sw^^ z(J#wZAc#_Gj!PO-lFsYQ!4gQCObv$sdi#(5q((&3SZ}s*xL%-0{peCg?!7lY#i%~i z{i+0%rd5T99(+s2L@m%IzD~@{!f*}<*y2uyeIo(@G5UTls!F0Uo(MbC)u%l2Tb;XQ zz7XcnW2n&A(MDy@iX$Y`D0Rp**R0c7;=C0o5M*Q`|GCOpY8QE}4mfjG`5lk zByPeKHio9Arhf5@UpeQ-21CbAKnx*jHqUIi=k7a2u+P5xELymzX@7V`LCxBQYr05T_7P1WTS=nTCib&-YX4MeyOOL()D+=fMyr*Ic0xa8i z*=p-b!P+P7F?^6!zUE5P`%q=n#OISPj>!rDlEn}$X(^<(f6@=mnEHCu^%RqN(taEA zNXTY@l5GJD@fI4x3Hv@;&$R)A9lLW5n?QXJySO;Id8)z+AX0xw5B z2S-}1I?}Qk$qw*;GMELwu|SwFz4Ys!|J>PUoq5L9zq%Sku5E>D>!nZ@wH21S%DeJ{ z4(L3eiBm-xeaHv^B$UEcJy&n$e*=9+GD7`Pn!7`m0s?z72FP#rqqt6+a|=ihMlwqj zG3aiOHMDVR=awE__>|lWw3@D&*kXFXX|qIILJ8OePwv?yq2{k8VDaoh2ttH}xSh-yPPG6ewu_fb>;0ev4OZPnu;{;As%jjiry z&gf6>rZ7ZBxqbo&IKrY!+oh?Ms$a?SKE~~$k5*}w)MJ--I`l6+Pgg_gS^G`+lcJAI zSN)wBJ(1j*ZS}ks;8|?u=X(Q(Dt=M{l}Jmp1Wx=Bt_nkl5VT@ZhoKx!jH32{zI8t} zH6}fGyf#eHbM;)o%E~}Mb+@!j`l(-cYWg3GT+x>e5rLy(Zpsd+e!jPJ^+_P~rhBGG z3JF}cmZr6&|Dd@|9gW@!Sbq5dkq8S;6hYZi*Jr9Ue4ZI7E5pC1Y#L4Ol3MLqXzBqy zDI}$-I^!jD)0jLgk@hu@>p@k#-xn~dz+93%;)%uGUL1}0djglHf3bdxXD_^gmwl2Xshb4|Ne@u<9TDAo`6YLVXOw~q4CrZ7I-qe(_; z72oNt>?(;SC5ZpgPYNg{8B&#Nn%m>#V&*JB168uGc{HmZ@b-!XB~0GXf#8X-uHnMytE`sj$0=n5o-n; zHg9~>o8R1yc-{K-uRQM9{T{x*2$&$i3!eA9#Y>iKv)wkAU-tD?t5!7w>!Y~s$hF)G z$QWGl!z*vS{T48`-+sIC$)Px?84FTWoD*TPLJh_3ULngXiD@xttlh9_(=V_7<@^Qn z4t)IMhyZdKn*;-42Eo{YLUCNdKk&cwQ00}nj)sfRu5nMeHRyWc%KnkB*w zH(vj!M?UJ&kABqW&i;Z3&(6%c*3Hhg%)IYD`;1SFuU)^+5(!h-P^1WujD^>@EW+a2 zR#dz&k&UKq{h=I%?O_5a>0Jno#151RV6G3P@Mh<+IZQAqbRT8FH9uD?`6>1j)l!eR z5-xsrcZ|o@vObDJDZeDj@<^9-v!Mk8Zx;^87=MP1Pn~d`PWz0q>KQ+}w8&T?ocew! z2ulM=Zv*HUGW9hT`^X$GJ-sBdB*X)*g)=f0J=UG|Ypl*SZMmuY>g^QQ>hT%~x-4z|E^M=Ac8=LvV{KTj(K|BKz*P%~YNBsQbBm1RAF<4V!2WluI7Sa$ z6~BrN1OJ$XPRK@Wpd8ZvGVmaG*PIAwG2~xdOE`7Z%NnSIbpQe%XGIIUDO(B9!^SOH@|{mF1$5PR2MDU}ZH<09&G|PH zLg#+7EJTtn^>&sxF3f7erm3Qvb0r~UIVfR@ioPYs`s1BgNDhhA!q+_FLW4=12{5jjwI=SIlWH(k5JF#rVE{mHK@`TgC~vJs8JI>bq6*7#Wy;MS3M~q za}Y>@c&Vu(G$x^zh5#&)iim`{b)}awhXCqfJnFj$(zO4!vikuj)nDv~mlWCU#0Wb%WXTclDRTP39HH>d!$n;lT}n%_<@ zb(p3fYT3$9B|W^vsHD3nZJ$ETbJ!mJ-RbKc+N2Pt3kCF*JreGAS}*|M02l*myuHgX zVhs~qn%B5w8$G^)It3tW$XDna{ZY{`)2- zr(X4{SN-w#f7miJGS)PM!Jugj#kb zLIkMPfByTQ{`ALnYuD|(kId5w9>eU}S;e(^iTc#(+k2>-wK&Y`I^5_E|eZZq0Jux|U#_4DM z{OX@KgQgh_CMTy1@u{btwr72ewjwUv)WfEb|7Av+^R)a^05Q19DswDnLrUqY0X>_*3rH8d12BoY7eZPK5 zfRM+>6wB3%00^Z&qOwS9q$L_kIQ3qnD(4`+F^7ho>&icJYwqVME46^QLc4~Yoc+gq z|9|YaB5D1dBN-ESQTP9^=gRU4Q4b=3CWqtg%xHErGaQVCy2vciq3yNu<^n<`w+C$| z6|Zs~pfMUY0xEh$+#=iuht!P$KEu8z>)camPRSJ@Z2OJJZvcViJlqnAf{J!BtJi(> z%|^1pjADqw)R@}}FR%5qE=c6k)Ad$AX(1{!n{p5mp?BqH=JWJv97Nbc#3v#32)m-4 ze-zFlGqL}E=UTT1QUBKPbZ!J$mLynh;QH^Zhnm!VNRSkF|&#tVL?SP7$ z*I>+hP^DaDNO;f{m`pD&{@>9}XhQl-={l>c&q3in2s%Avek}{)#Rn>=VkP%~IDT0_wCLy^r+2m(pJU?(?Be~|luH=&jVRBKYi)R8A2u{n{nSpy4qwYUJl&f0!rXjY)FI4bW5R(rDixX0Gx`qZW@k{-*(HbM;v*? zBOm@qajbZkKwu}vK%8Ty@rJC2OhgsM^J)Ojv2DzcfAkaAw)^bA?{GNo9NRoC0)jD( zAwxtyTPN1=B|yZGA^Nv}{nu}Q_uKd1cmL_9oxbY9)%)$g?+!cc_@f{G@C)ajW1D9F zg865jdAc18q-7>)j5+bd_dnz5&)9a`c`td|mEPk!LR2QK=`|NY-rzB(Ll z7A{(J^wBQ@K(GKB(^zAK3|SGtL99TCSZHR;=DqgV^Jl;K)rxz(FYxL@NKu> z`o*))x%19DW=6BezwC937B6sUbN$mJ1$r_ z|H><_{PLGCV3J*T-u=iUj|9L3D?mP^PC}Fc!b}8fVEhKbLi%~S?J2&J)l1+80f>F6 z6RK2yR6rbRivJ^3Y|8ryqyWTR+4Q~ACd*TGqLN6K9R)nGHcr@ll1Ivj2PWwbDv??> zSU@6(D!dQ)Sc}C7MEr3q!p;dh@rE(8Sc^P+N)?2iJXyNsqh8|RlYp%e+m-C9!Ps6= z`anywt<7Xt$teUV%P5JmB4XYvcuRcNg>w5lR^y59fKao{(7k=Q6Lf>V9p<+*X%kno%}Hi@TvsNm+}9oa&Lt61&lM@|;BOZv`7dfiTyz zsTYPJfXO+qFoC>^3lkHk(u8?a%omxUwqPA#>zZ>tA0l0k0m- zL#g(kZ%vu%b#114II;JT`lRiL4y=)y%b7PqeK6Ip#cw5NRrFImoA6OnTGCl){CI(= z>ZngF#l_uRbWbvcdxS-14tj;qn{e4tU}|pq=vS%J4uR*SBlS^R_X;}hLsq<CJnHMQnT(o4?`wy}xEkFpF!=C!ovp;|KTi^0F=h`)^SO4@UKc!#( zqJf!ZHUh`I-^2Gk`|NX8tXS>~mSzN4nVvWAOXr{e{u564*5#L5V_EpS-~IMCF1^$a ztTl$n%*@Unam3R@Sv$Ir~No|>Mz=z8^req~(vv>)p%YI(3JJwH@YqD z#MI=Td+c%Q8K(n=+1bW2<2A><>JNYT{kJav)^8uW|2Mz+&7f%v?2H=?26oxf<)@u~ z>cS<91!9pGorFM6*ueNbUn2gHI75;ObtJZ_=w7o}$rnmtBxVY{5$4=P{)+c|*sAYm zzSwIJ=?>?7T>$dcbAx~7t2bwRKrvMsV7A@}p?uZc@D=bVZKHtfECdu9JGp#8EE%$7 ziBfv10O^QLg^a+~*-V4?{Ipz}BVv~3x>ybeAkMLnX#&Fvz@u3b5*y6lLDTeMA`izg z8-RtK6JsrbMPPgc3qcMsI{}2rHYAh|-tjo{(L$dfY>cVosQ_@TkY!tx(d`2&ydf;! z)__33%;G@Cng%2$_@d&)hJiSC?3h^w!-ljuTQfxXwA>Q=Ae~`|H3kqOn}jxe@__J; zJMFM?#~p~s1ob5l2nifSoHNvjcRz)NLv|he1+vBuHJ^tUma!63dOO;&kT5%jwPcOW zkazh<^sQnoQWYqzPpL_B;fY4y(s+r5u*lbaiABq^fKJfZl19s3Lq_G&V!=S4}GG>r0ag#>!PWS&#@rRYg^EYr#nA+@Iy zCBnTXHY-4fbw%MqjYp44O=L2}I$-Ag8=YI;jIGxwQtxS0(Gi@>Heo7;D5GGKQV>*wPIF7eC6wx$G(5#~h{jF-X%p%>DRg`nk{Uz3 zpI8MejMkH9H%d*^6F}}#NILI?;wUQS_W)-K`1=5cw>pFU`vc3p0%@mOxKOXM_WYXr zT5tOZ0|PQ$6%!`vJx$=0jHGm_YCF-})&Nw>G^JV<_ozaKQZgR3($Hu`46p-P^5q@% z)-Cacevl0`mbjG*D^@If*v>mGT(BUX4$5QC2$9wi*k;k9g~PGo zjw@G+5X4s*QlWNXW18DY|JY-XnLjS?Gfv~e=JXhIf_}NoWz3hl@ zU+|@K@4Ns0^&2+2Ru(T>@T7yDeB5!z?Y#3&;)JM31|SHm-@M_gLK!CZHEI>@{v9tV zKvd|I+V)E=QoyyK#=nc@g?QSK;XP*BxDIdb&58XqtkLGG**~J!7@gn zLy=(=4zj~GQI9Y)EMNvh?e92Y6V{Ej7Zfld?0npTU|-WfQ>bVxy@z<5exe`s299VV}l$3 zx6BslT(H8%^JfD#rU9{O45iA1p>$j#KMU2Y|5>`vL!1d zka%P~0EmNl^$^l;l*1GfmB<>fko5;7G5}!$gDgPA#UXS;#X^Z<`*I0a+gs6tEwRwY z(g8hQd6`fX$bqbSK#@<-v*K3(i$$Bt7%RSkKu|iDqD)A8d6L1QtiUdvC^qU`&o_HB zZuHlF`9^6F8U&rT*Abw>U@|ZW9;5&w!X}uS)Uwh3p zfBDf>S3b0Q&C*4Sk2vD#d+ojN`1lwzhs5D>adEB~G9xGv712_-3}-MWyhb*!k*LH+ zZrNw(m3d6*4N-C}_xg92@3N5Ov{Q?!+Yw(9=D-8He$ytyJRBPz4u^mv*h1QR(q&n@ zb}c)$0}>cvH`|Wbu_fEOcK-Z%Q`6IAe72ValfKwyk*Pufrr4EPh@^G1hUTz z>SB`sP>!R{LH!}h()CXxT1v$uMP#@Nkd~ammPrhpkU`ilFGN&r@<{JR+E+6w8r_2O zt6HfNB)z1PyTXPf{ZjA+YD^g2ey@|5@Ej)v!H^AIBmqDP9?FeNoP(TVMrD+t?9cZ^ z+JEXIfwEtWQY!2A^|9mniNfbE@lmbSlaIA4iVcr9`IXd)7MyWfh4Su*j==N87Y#%y zr^dgbI5ytppm0&{?H{*pyoq*UE$hlovrLtW*rM`@%@o}GkA9-)i=-g%r+U}OtgV*bX1bV5 z^F-w(9kve9e;+|1K&uByPr;iyRL*19&`HK$wIwoJsG5e1P*wzqFZHW2@in~05DT^< zjbSkYvRv(fqU5YX@2xWeG1giU`M?P$obZ7Uvb5G%A~9x=@x%g4Ngk&e7egf8^_AAS z?YCd~wzs|&z|8FIhV|=2WMXo1Vq(%5g5P3h4Fp6cfaCQi$hAyXo_5&Np8C|oX1C0& zTfc5*)6C+fivcq^JwbqgeeeiTIA+9J0`RCuAMo2>|BA%G0>sAVtzG`(k$20jH{E^j zeUCoi(K~Fvl0~d-0*w*DS^<`=SbEtvz5$RJz_IbWBx0tqfXIj;vv}#kV_)^kmmYKM z?966>tZl}|hk&qi##%@q2p`}Q$f1WHcIe@UwXK`kvIXGb*u-Ga0ALoMFh4LPBCmhL z8(#Oi-M$TV_XF8q*Ah<6~nD;7xcVEFc)biI6eRd+xK3eAcr@?Pz9pW~><-46U_| zF(l5xnktRf%ldTws6gNVw#3AcLJjolkT5X+r&RGu1y@P@Az6jWg)gu5I<`;8kj!uh z0_~bS{he1UO&G7|tOhO6O*UQAOG#j`^4sbaHLt7uqF=TojTGqMv@D*xQBkNeAQl2P zK1o)HMJSwbDZ(N#4@Rh7&+X*LQ1lszym*t4m)&>lw+28!B7eE=FQZvmvUtJD9d@)v z?z-#VU;OfCH{W#gnzieeFJFGplmF>}0}c>>BsKXsa6*{~i!t`@yYIc`nm=53-Sx9G zqt=bK+jhIhJ@zrX?z%@a7(jyeMr3ci`KE^+e25(%aNuLcnt|VZ;aACp`4>O`<)$rL zmM>qr@4owk3=x|cblkXU%b$M#2QiqQp1=RTdlRWV7j4`!6Va-N9=iLUdj_`Ib+_H@ zpt>(s>f$3O82OJwa}#BM;%$j$!kp8LLb$t8E)eb>T;^SPD1_S@%q z&v{PMH0`LhgQm2tL)|hW`r%bS`uR_PeE)q9E?vHCmz^IrHa0lw*+-3!PXsl{Ameiq z>6Tk>yY-e^n(^_+KKhZ9)6)<@9E{nxVe`#5-RQX8W!K&2&zmnyS6p?)kFNUh>NRVo zrpEW*Z~wy&KYZEpb|1ZyQ*9zD$!yO5a0`t8j|$T$P*S73Z! z{kcgJ53!>tn8ISKIrrT2{`==a4Ip>S>7cYMAyWaJj=N`#U#2BQ_ z!jw^0c7Q-lJt6(bgyo&M{9VBr%*A5Hlg3ijoCrFFLLGpY zJiBc9vTc@cbHp>B^_t^eF&GXM$yT`QA+bOO#zMpl?U;}JIf-ixN=wdVG8bd5^m|k$ zlyMs2Qmn6CAD5h!mGo9?tJ|Eb?A zSA!OS7-EQu*YcP`$f+CsLA6e*yC+JP;gnu|bUhe@vkWpt`+A}6gCA|*Gd38zT1>#!dJGl$N~Ah*_6Mg*3a z89uc@2w){@g057d2_=t|ASeJ%KzaeRHH{tTDTRDI5;&|u2C*io3{N62rMm)bEJPW- zg^=onfa)KS9CM1APG&5hR#KLtYeQ5~c=4VOmB!hkm|ChSFvTO|$`N`@i@)>Hf;1?I z@>Z9j(x)60^6ccl9>DZFEmtHVE5U(R$SA;L1h6XQd`FnDJ3me(Hly1!og zm*M!}_kZ}q*y6?PK-3DzT3r3B-@W*yFEVJRr>B4QtDjF!&kGt7#z^wG1k zqo*By_yu1+AIzaPN3^UxW|`SG%}F2q=y~U!zj)!o-~R5mSO4@UuYbe8Y}&Zd7;6Xi z11ElP@xu9AW@g97hd14P%Lm@~{;RLP+FDw_e&cYgfslxtciwsb^|6obw#ObEJ-;yd zOhRax-}>e^f8+9R5&#xzY-6l2fBMs(IpKs84|(cSh+&LP*5}#hoc;N;K0lnC_`!EB z-(#J@K)+gn9QTx)`0 zO0GglO_{YzKUC|)g3fxs$4hY)9^^zuHnhZ~mV-odB~XN8lePJz;&-o?y+ z%$6x~+Cs*9SoBCc&2)>(=E~d^wKISyo5Upf;Ma4RLVzQL{$n&56wSV15n4k6uw!9j zCL7QBlmtgLER~)aB#{UKGh1fg_kk0>{H5~-<74xtr}o)*pT-RDz5A{Q*RI*TZrz*T z`liun^um9Bfpe{;L0+!uqD{?Lg#u8>P0lDpko-}JsEJoLXl^DUQw4>>-@M-_rhI9i z*ZZ5DZAl@jT!biD_Z0gmCeVkC1b`E=)V92NX3K^R8(PN@2cru52teeu^VIY-kr^9| zJ2x7e7&g?*jAlkNGj?F_yyK4b>o@%Al#kqV_uoEv!igia1KUs>H$uvTgo#ZaYbIlB zz%1tc^Uwd|pZ@s7CqDi;&wYNBb3u0iCDt-N{W{nj>-*IU5|eu>`=9)r#AhffqpZ@> zt?-*nz_d6}10oO^mX-)a3@0$!zmX6fF2T%%m5q(qVI{A6#|HIG#Hc4l9o^EtN4izC zT2iEXw(2m$n*$)GXs2kQAbK4SQU8Vc)z*SSI6z<+lcZEN?k+mAR6=wU{O*w)e$Zek zHVNF3B%AocJ#l;CZ4{cvXF!kg5MM+D4v0W+6$~2tR6p)@s@Mp|u`c|P(q4Zp8MpA2? zX;(z%XQv2@b%{6Q*&ob6Qs0NR%WFW@z#yf->FrPuPQoU#QC$j<$|6$gM*AS>HbqtY z@sBDcq(8c_zM3c1T#g5U046oL8KwkV=!~RK!jgus?<4w2Em{DYL$Ghs>tHmZb=fDQ_T#pC;lu2?Xq%BH1@z}tD4Ko`tVuDK<!q0gX<*2odT&CS9tQ=cP6v?uH4s52I7=Y1aU&4isAb{YMLDJ*aRSzagvdmO zVG$?dYfZwCZ9@8*ZbSf(Sir=ZApU3wibG4$AFv2p*iD-@|L%{!7vS)xJq?D0lu}3_ zg;iDKb7P7JqFYD=7z0DX9QM)+`9v^dHLH<$sEEiIOV$Tj8DcCMYY~q#i;{rJ8e^Jd zHBvY^M2HMAjb^ui;+`dD7GYseui|`WM?{d{1mZW?Si|BFm%FWB@6&v3NCaRI30VUX zmQdXXAo7Y(Yo&lxKqL!6YT!>4Hc7o8Ot8<}sdZ$$pV#T)boh`nkrY&uVhph&gA%y{ z?Z@~t@zQ%%v$jq;0T#y>1{*5gZBwUDSr2w`3ieaUE zR|>fD3%++sTAqZw)iMxrJQBz3^Ix(Z99+d@He_%DtE+{k;G~6~O7k;_r__Xnpn;j5 zKRvy0F$6il<^1+K2F0g~a%I#Oa_XF?y=t(CL(6%iQvl@ks zF=w86)(1a$A~7Z>rWY+U~y!nflE;;JRqd>%| z>QR{PWXTGEhV10naK$#;{P2qJzv@-TZP~JUtRWF0;k6H~2AQ$paP_J+$Gqa@Kl$lT z#wW%dW6{EeQxo%s!{Nl#)E|HU$LBu(1wa1DkBv3d3NZ<2BrM>zZC~-SV=npH*Ox9` zx_HsTrOTI0PfkuxO;1ivKJ?&&uYA=pU%B8b##rZC7Gef~G1H7sjyFuq766g;bTVw3 ziShC6S8TUx)!O4;^{Ov^;oQYbm+iaXzWeXHF9~n6eB05?%rUQc`CWJ3GaL@%#Iqsi zSVq#m=Re-}rE|~Q(vHRl!^!E%`4iJqW8?Ftr)Nj)e}C#TZ-2)-g@vpU=F+^2mU5+h zOH(8!LwH(IdRrM%rCtW&P4RM*E&HXE^tKe8V_0Qv7=^=RTazbDHm90gQ?dv`7e)f9Sx>rsf*wp~2fqOn&|9vM#==m7Pm33ZveRyuRzgp>kEJ?~|r)6n&xIOXe z^Bn#Kz4mu=ooR^+>y4-8YGgfr3+=W=&f&2n`~Um`c!VckJYCr<&tPJy9OhDk07czY)ZqA{Xp+1m*s&29@C8E#ODXIn=1(Q7LgW8nRR4ARawD|A0i3tVThoaizdU=6s&A#!{q5cu$%wqd zES{ms@FK9VAs?g*@BDg+`6Hx*n};ewlRup<_r6bPiX|AtkWr&6jzwHl8ELI^R?;4{ zRB38Dj}s_<{{&6Y^NAwBB$*}1pTNvu24!;AdEzp5WZhd*XmhbTxmDg(U7g3-F^dnT ztR*E&cSR7=VWXUrRdY~VF6rAJO0&5rEs=8EqACndZDB0qAGzZn&V%K$FsFqEc#xkv zRTR}Ns<#f4t+u`gmuffQW&Vp+8(p@Va8pOqZhttG3{Q};J#{o;&c2mUyD&+iZXZ|9U{xHvr{nNLjDj6X-SBk7m!qQFHsO<2x5ne153Yr>^L7u!& zY8Fs2I_>yNbz+?GR>OLWO)f1cf;fk1mkU6g$PvlN?QgHe>JF$K*13=^7-GU>yp&nt zQSx5GJ>=-B5jyGIxDH5*mJxSms_3(%)my4%}o(RQuFa`sLZJ5Dez z2Om+HfD0MBTzg~tuV28j-<&Ah6FDb`oS3a}UvOgW=x5|dl^6Ht6t~jVqh8^^3W_qa z1MZl;zs+|_hk^PRwu*^9VdXNeFSrqxP(}mvs~;&f{O&O`V1g7REe(3q;^otBES%gz z3)mYPkXVwAs4n9`_GEMRN=N=x(bD=>^7vMIYUJvZxJjcLz1Ucn7a#OkIaIV0u`!D+ zFL9Ax4GIQ~28>}m(+=W23M z7aBsssx%GQvyZ3fIvgJzrLuPRqVeNzbRDO9!L_^(!K+G~UD;f^4XznHTmhuL=0y-d zynoshdYwMzzo;v~DQ)yw<=<#}cyGkQ!s5Sdm`&-r+mB>wJyJjX*s0HXIip17voF*i z9~5ZGF1zm0yKya>JaRQou*M*{8R z^^<(Jz=PRO6M6yg%MbM{T5Jv5dC~uy;6v{}V}!R9GMUib7LaDW_s;rGU4lIZUKhV! zc5DUc>)BsF9loCZrTO;psaK=HdVASC`|Yn)75UBdjoyPhe_@t4g{9c^Ncgkr!P@-V z;O6z^cgn>W%J(1@F?T0T6L4RBDo|*s7UU7)Lw}f=v?a!bmCT~on>7; zCM_XHSXwomBa6?OqCVT)2OSw?f-*gAr0C%r^yN3 z7Pn!5Yyf)7vJ=`bl_w_BXKA%?Jf6X!$-0XGcYx=BZG8&6gaF}Xi z2t0r?4$#1`;_RM{_&&d)#Q+huWYUNZSyGv-^=kFF25lssCu^M=CM6~IWm|LcbI{~^ z8OoN@D(jpGj1d)M1YNEIy|Zp)W#ybL=h&fB^Y~FdEdjPkkxLsKMh{Co=52ndc)s(z z`LFm$b>AcijoLTt3 z3qHJ*+KcK3;cqPpXjA%~=7yH5tmR{2#)oYqwtxOf~GG45#m zn#i@C^(oovwwHVfC6diFo+$4tGH_jB!8gP5I{6gMd1wlVU z>(a_;EW{kBa~0loGye@$i4F#AV82Qf+WRO5_3wrt)!8#qlyf%}JOy^35wk?kZbI;k z^FzZ#4u3qaP;`Hd;u1HN!baDeQ(un1V~8nfr(9;!=bBqmW5XoGlwrSeUWPbQA)8y> zfq591934Ve#ltJ75ZumNYOxevJ8=Og>vS%Q>zN{;HdE&xLh*gjhK<7tPz8X^I!tc= za8L9wSUntkyp5bnLv?BnjfNLL?1Pj}{7`OeFy_QU>R!FVup^pO2V98rm{&_moE71) zwL1}|bZEs!nE5%QzBARPeTm1`gr+>p!Y((p^HjNl45<*`V_<7-{oB^V1<;N7J_2shmVEU^ zOFYbm{{>&VZNPzXdjSl*88}x_HjPFE7o;g-rpsC8#)`41({>Fy^yr4gy6JXFfW$BD6OY%c8#g(VK$-@P|Bj`XWem`UI8*d~PfOYTeo>|OecffxeodkQT1^~7iCw=P zSW5Z=&4GMC0J)eN&)UttSH0`T)JRFOhHYBk?rn7ubhDpKucoQ(yUV}n)q|v01AJ!0 zPfrs!tzH9Y8t|?BH^pJp^DSV64a^w#;e;wFSuj#f=9Tc_kwoahZ*-g;=l%@NH1~e5 z&sjIV6rdNydW-jdSO?#cdd0SCwOJoKFTNh%j8?%z5|9-yr=@+o_t5}beUqrCn-n?E z`EtG1byR*E(E7v6S@Y)0=F0`x_sTni+osavKzs9*8eNoApr%0~BE2N9hyuNHLO8~Q z`_&6-RZ_SO`>u>oQ+NV^r;P>U=kuu@#S^RdSo8TFHWOrXoLGO=B>u^{LYJ&8S4cAF z??ROxfRM3E*J7d9Eo2b8uEmdr#0yumYJ#y$IEA@q+wXGj4IZDb58Pg}lJ^;ZJQ@O; za7pMJ5#0yabI2*~4IXwPnJeZa`uw~MjiqXVV#ZZF(Axz6{AY)Heef<9UoUVznwR&Ug`+o zBd4PHt)PALbTZ?`L5O{63|A~(sRC5CX_*)4!2F=V& z<-3Z?W;yxEiHUH(G@L3rrTN4?(BQ}qD`d{T4a9M6j&G47yj)-hFoS%_TOzT!gx z8)1mrQi+$&GIhu!R2U}A#=D!Iyb|pGYw2y? zDf|?e0+YAXa)f@U^PlAXrV+%ZJ+GXAo5E#(n%ErrpzQob$@ACS6v2La z%kqhxS+9=4{CFlI^6(o1nV-w1O{{uO2OLDQltZbDZ;bMf$t^N5#gSjAQJKsNxqcoqHfBf>*G7PCB|RqZ_AfE}CaIuO z!w)$=0@d`Y1{#g$wMO!N8%;erD(3ax&KF2khL$eC37%~M>>H>1_43Ou^YJ%uHINcI zHzpf12)8IUM<`nC>(bpHS zZBVsH8V-#?fr>@NIW@R;b~d#1_y%4F@1%gv`mpqQ@F&>#361^4_fGZS_^@Sp_67dN zM8_`nrlVl}W+{=BkPv*#LnC#bQ&d()0==wXf-aoxj==QgEZxnZH=Ei9Q?uK0y{9th zhgDEj=ok*xFKu;I=bc;mN8r+s_(A$S1s5xLQt~dfITANbGgCu6)J>D7gsy5r$2QB( z4!9k9;e=idVIy%2DT=r4TLyul^78FcU_Z&#{}^r)@D%6ViJ2J}RT=m=T)1m<+g`-R zWZy+30_HcG5}b0QsA(<6X@^O{he1HwIJA0y1-L~Qd2pmU4Q{nz&e~_Z?TAtqt;$?9MA{HE~0;m$5j+G55-6n;KI{bHh@YSl6ozyx1Y#+yESvI z?;y)#PE$)+#2MJnakUT$3V7nsa8@=bY>rMcBYYB7vCJJY)aEKp_`WpSJisFAJdCL9 z_lHT>OaaC0P`3I;7o%JUgB8-abGo_fo{?U?LaWKBHA1bE1j5S7xQsD_8?fkpfO{`L zj{Kd$>c!1o{WriQ&_C%lFzdSRY`%jSG!FdcW;Vy&zV})3+iPx0*4+(>dbSXKx0#vQ za|84HF*=*YQAHfGNV*;b914a=~zAQ`FQ{zvdY(Knv&(RW|iZ;`S8$u4x}w8 zM8?LSLiow>jI6lk@9xIXe69lRyiZrH7AuJej+wRF9IMw|pN*KFN3L z`+lhG)Z4SRkhZ^C?R8(S|5k_Bnc8DCFIlfZDU1rKK#o6WgfIZR_*Hpmrh=}f;4NMN z2%!MYKr1b#X0r$5z;|#`o+H{q1nWW5s_n-s9_R`T95*u$RJufEEN1WF(Hzfz*Ukc4 zUF0*d-mklhdamo6wr{65rsY-b$8C$5uPf8>?@aCI?`?~n9@ZwW&!E?RkkGZzo8Cu~ zYo}AJfGb)_rP%M|qLjD2sGJIo)}8fB!G7tcwkjbYJ+t9>J1)=vd`u(w@d)<1>IJ>6 z+i?pt?2qcd&-BE)J>r1g&SNJZr|V2dHvzc%y8Gb?xD)KXr~^K1T~4cwzXsfht-z*h zbxcY~@-eIv5)WDvNyJPNwi~&e;rg{L0G_SCR)Hr0;z25-F340m1nXRn6|Njj?W z`qw^QeQeV?H`|zf8{FMbs^ZPl7oZ80 zudggUqD`AWApO0gM4MiElSZAB7tfWXrtcd!yr4dq`67B2_#^Ubfiq7rV7XN_O%LrKZF zK1sU68!m4nE5k|QT=5OZ^w@uw!pA}oP3s~W*8P1QN#2*siAHV}h}%5lH2W}|jhP;v zPA=Tm6de*9T{&aDM4-8y(N!jd%O^6U6xDfA6YyDv;ugq^r66&6^pO)ZT#9kz`m$QRZywL6u9XTpVB|3Xc^~E3SEr zdS%faAD6{(mpOI73K_JNu^GPgM;*^BrXLydbUV30vN$pQ> zsx_#FUKJ|J(%eBNF5C{|+&TIari>{vH(`F=ygo6TFlUrpdl~LfRRv;*Zk0Z3+Mujb zH2g``Aqk>uak112equy3D-jq2V>;#Q;^+)ifwLMwoVHZJM-L2FNJH%I+iPL z4{&AL5s#r%b)1as#t2k3HJw}sK6AMbVN6#(?U{@=rJP@jE#cSZkk zC8=1RAM3HU3z1qj5}J}w=~e+tM2LFmLD`9wefyc*w5n``I2Q%p%-sCrc~LvGX~R2| z7?pp|p8lTzv?BS%{fok~aqK$DeaWDX^Svs&6FYd#bJDi`;s;&h(&ooDco#|H)bP#j zMLG8cX zLIo7{8awIac&2rq*EsZ6pTl<& z+nosmQsdXCwO7DVMFh4WhBJ)XZesgacygjrG2> zloYaYbcD>M_%}x9;^p<~T&{WR%)G2XmpB(81)A}-(XycEcJ zy88}!L7uf>#3hFt}dw&m4 zw%_5-FLMR(Cpzy;nP0~DL99677fM9H0tWU5(@QWxRoXYv|IzI+F+`xh_ zXN}+uyN_zuh2G_U8QfE3-FCBa&c*lR*GT5)>ti7bJpI!ATtfl3CwjT(aXa7LnR9|( z-_HBX>X+ukOHJ>|5uDL*!&HPaY>^=+xf9$&l|1x$4~4lh%uVoX5#HDQ2RqlqI%ck<@} z>yK;rdZyn>*PLwR@m0WHMWv{|jnCo&<4uO#AzNIj*0^0D!SY<`bVnvvJU<5i63PCE zVW4O-Rr9*eyEn#xip6KkYT;g3Ymv0?PniB8?h8usrzaFe6nfKRh!(f*$JD~D_jF$L zLFmeTbYK2{J=h-8Wo(oBas;Pa71Yvz z1aUFsYu9TVYG%TAFQa(WFAm{Q4IPtZNfK`uHweTypQv|JDu)ldk!xqgD`$-6F>c^# zF~oz-eyenM3ruqu{p@E83;O0AuNs2cb-R+OVwfZH9a42Lq@I@!J1s%lvT0DR-fw=&rdqghAnje@lb)!xIXB}< z(w)OXC#?D64VM=JL}C1_DT7cqI~4P&Y)HyE>torfQDqDBbE0j8*;`S7$b>FTVJoZ(+wqYxluDtI+L9^#pITOAR>Q?gLzo(`-?_O9(RRHP_lioK$t|n(Qm-Ceum44LV zw4B$V!SXm(ujBp{NHXa1=lYy%%HAHIm$Umn%^gLH)gA&}#|Ie@oT_##+%KV24V^X&q(Ek)WgIlu<80?5V+>l;g_oY?8 zQ+(#KUTt6{m`Z{j95>V+TzujyzTJ3Io1H~30?54*j$5J3ik5~xDr`tus{q~L!yUNyS%2NXjsHysI zHz}u!c31t&w9+=F7NOR{W%)nG78d@W>TTPO{|pZY3kjT#MKX6B<;yU?4Y+o7x?Sfl zr!D_4!QIphLAGwOC!ke~uep$kOgg7CkiCp;YvF21HoJUXRj80rDCeu8sz#UNJOIG{!=&kQ z;i+OLGK2$r3cw(%TR&F&wx72GcJ{G9$Lrvw+jjkr0RkbOw+ii>mWrlT-Y7= zfG0uynvTqsF<9;EyEGHT4~6l&K{@JbIjo7^%tY|FF|n~wj1i=;dC9C`Db~Mqf6{eU z?PJJ!&fhuuOgN4YSlb)##oe~?4!mQH*32nuzMd+(_*jL-py7}&g$B7WM;!Gjpx|`6 zHWRP^rH1G0&L^NfNb4xc=TL|DHCQE}37%HqHtxy~129e%rj%|0@LDA%IE z>h6VqX$W^zNG?a&CWkT9i6VN^eNK)09&W7-5vPZ(|DZNQ*WI}>HL1*j+1om_m>P(uPfo&71C3F(kSAE;?0*)=S2WGw3F?5QB{^5 zxHxuqc6P@>z>t}qo~jksNPMjxQKmkUic~4)w{JR$88fYt}RhLv33dPz7vy^c zY|_YOWeDkwT3X-8fjHEyh#sfLl_D0$JN4sBS)N92iz(>FwOxlca;LV6CwYd}n>V{I zdO}eJA2D#^8%1f`jX#k&^HIza-@>!BXAXX`r$_$vT`~J0R15EwuEvx6t&isY@NqZC zcXiX27}@OOZQM?eqw#1PPH4wc-ut8nj`V+OQ|z55%bSOWx=L%T???OQ$7{ze@-%>} zl?f$v2*NR(2MkWvmu{=tAEzL>*7uOpi#E@D+xAP#N`Z&vL7(eeeI4&ZU3Go;al=p& z*tjy5>p(O?AQ_{}%bqH5Gb9O?g-MRqZr1U6vV(bE+l}%3coFIzV3{3tU7wG8+6oo? zy}1I%)V?=koc-Rg@++lVMZG6+nHe>^0aaG^&OF2+x~6N z$15}7-sbMwzV|$9#M6X0N{fhIZn4~bd_1c5c^W-$+LZHG9aZ<)qa^iSV9!B_&v`$~ z92B^y&1ca;fpY>Nkq7y~kzhc_z4W^DeDfjgCh@#{4;mEse?9c^?h4ZGa2q*?w9A$z z@F&?xd{O1BHAo0UCbBwRUhbJ1nFkJEFX^j=?qVX+z~mgXcKuGP4*Q(*qNW)*^>uf!_zi8X7`b&BnHQV)D3$!R| z|8=f+MZp;e8URGCte1Kx*Cihuzs`q^T_Ck~DWi9jz?gB!)OwWCZ~V5#%#%R|4$( zKLp4OKSsFy%8KZ?OhR2~L)_&8=bAt529!dd<2sg8O(b5X`u1)Bji#*{?fsXBhA+420~ij?Pn`V%h!_VbyCdpxlOBf4TyZrPB?v2WE(_NYHxGQj#=tc= z7u^*VlAow=KwqgV9QgHfzlV8D4cM;||D?^6s-c7Lf=smd={a&XB90RenvUd1WzuH! zS-*FCH_wWg;sQm8Mi-M3W{B~hI#?uWS0)LMV{~OiTD!_dCV%X1lLaa!>QPv?M>n|B zi$OXL7K?Ue!Nzcn@qpvnip$ALpFWooKW6(KOpoF@bVpk9d2Oq4VLHea9IfC$(2bBu zh(pX_>xIzTIIhJMgnu#;@ztp;+;RH3*Kl^&CB6J(BQsM!UL4{56Wjz6M_s>3nFs$2 z=LmB2VQAA(Ftn9q#^+IOs5G)fcTu328-V+ew0OOKi!!RVsoNB~`MG>17+U-=5 zf;b{%`m^ZQ>zGp?rU=$kdNLEWM@#Okz@_<297e6 z3RH$hW+2*p>IJk2B-&*j<-Zg^Ot?|nXnic-BPt@wj)}CjY03HqI#p93d$UOYQVeAE zK+E(Qor`90N1|7(dG$s+^+Eq8u=lNp+0CZ22NBVjNkc6h zmp{k|&cWuPPOep5w_%bbhCtsc#t;hTgU}&d6%n$gZI({+zudg>&CUYHrfv^=D{1D+sr<}5w5GI;KQ894qx|q>CUpl2iBe)z%BF& z7;Xm_-1g!n%W#a!#62SZe!I8q-0(Dqs|V)Y9M@HEdDwvg2{eJ%DQ&yXd%%+RI$!I6X1}h#umM61Qh!^eR|yXDbsUJb1MOb&pVy6k{hR&6I(I=UVCFU({L1Wg-S9Kx z;&q?d$9;@deiq+9qc{>@qt0mgRPUD0$Y)-@QCoe^w0u0P4wi_MScD^8EfH;pszktZfI(u-;7`ReL3n^gC5ctb~4%Va- zIt<+r&TlPS8UOwmlQAf*e?@Cg;L^txR0hiq&92nC2R%^JxS;jYKk4lfdae%nOI2Ys z+w;$#} zp=Tq6X6k6uSynV(Q`TXS& zf1W2EtNohr`6U8JCCi%K__2RaT$GyIiLh6?IU?1xfy$S#s7=r8NTsBH+r5-V*$Jxc z#M-tBrFv#EM8U$McsNn*2&omF!i3Q4t5XEwt>)x4i)7w{`0d7??nRRI*P%irc|Jjl z2mkbsXEJ2ck*$J|PSU#6ZQC!Fqi=GBbU&<}f(Yb)y)urDneUDbzGyYAcD#+r8h=XY zd!3S7WBPM(Axc!3O(?Qp@JTcnL!jgq#XP&bGCWz!eC znvy;or9_w6=6vD-e@2c$mLAoTM3BSpEcy@yXN<`&jfm|2gyq=csR=LY0ceG^pC##f zUTL2+q(;?UlGAOgpu!0|{uYRNP2qf*&ur0YDVDYt;lo37cSS;`Z}s{fkYofZ*r>2W zk&WK_3c;d!m>F==}#^XKEM@hn26WIE>!-K%N`s73#t@0snUVf`yKHP+SdK4ZmA>gRj zy!EXw!S#Z4G&GYYR8zeKz7|8Zq%4e|J-8*@oHsH?G=%{Mr=PqL-~5Tb3zHTJi=NEn zlyI+iPC8c>9jOK~5|K52wFQOQml{`AW8EZa!~KMxW&n2#<>0xK?z66x(dqk8Sf#VV zj9)+-1YzU&41Z;3iy~tYhjFml%h-uBc%NfV7I*hj^$h9 zqW*OTefCp@IpDcmoOAAUe2Nf7b^qiS@snwU$jhgs=`W6Y8Lo<=Z(+c{=+FW+)R+H6s&BT={|KZmjy}5%5te=@x3^3d)7hhzN>2ORJTYdS)sJX$xQ7mZv1iJO&uT2n zuffs^0g);xIjG|7;!rmzeJsB+r)a`Z+yJ1&gXY0?dnJht8I2;wUgf-4iDd7Lx}7; zfiOIh0t>S4QqU9hB5)ZosalBZVes}$?{iCJR%NPz7V6i_$5Z*s%=RJ} zupYlKAZj>7IsEU}WAXf0feX3MT_mD0821MMpR)1tI-8F5Mh=tRWFb&3Ir4`iZh0Fy zw{73$T0}Ul-@whxs0g{@nmtuL)OQ;`yHhK{F|C^Vy8*;*`j&>Wn%8;x*dzwf=d?~93j5(5PB*E zEPc>2zA=U>DI~IHuz%x@QcQRxYV$7xkNJ`?Vq&74)O00^S@w|DsvaDVw`?5kw38aj zSbJzr6NVlZX8bGwY^IDMttLXQskI$=5xr=nvhMB&l}fE{iEdd~SLmMvU%9qs&ULg_7k3Dh}dh_M}#;ZA7z>v~&(Gj8nj4$U}pJ70VddFJ5hhO)4{@IB%w9ZqeZ ze&1^WiZ>~T(`z?Pk)L#P;?KryMrT1vXm+;rpt$B5Y#SxXD&?t>h>$aDHMlHmD8HPXZRDSWot0LyaZXOz0+YnvmH<6AR|YMW$vv6=n!Bd*R} zn%g*UwQmx+;?0(pLWv)LRYkjq%GyQGaruv}G6XU~yTt#<*R6a4&ss1bzJh=LJ*?`c z{xHw5dL>SgcHT>FZ}jXYuFJ9?NLI^{4V9`OPuF2lWfhiUnDc|#s*xEVPjuR(Mc-BA zIq_2o>&7P&4Q7rsa>>i=DTx)IuQ6ISaai4AyA>Q_5|>h5??<|I)V-m;kYgC;R}Vl~ zF8A$&;w$N}NZl3Ed~)ZBIsMnf^Zh-~>~`MZlMRNhUnf=HZG}V8q9+l5+Im4ur!BgmB2lDwxqyLl82?yzItDUUK4CQLZla@_muqO#G2}oT; zw360SGF(u$1lB}$5+9cE^fz&oiW3_%-(qbkjWdTY*#>vMEYzt&fKEi0rnE}=wtA+ zH$5)06y#5g;0VlkOrn-PI$QbFum?#GK^mNRZ5w=IV)E{Vz)E&)|FO+OEcUpt&iy~y zW$_~u3!{ISap37Ib!x4zcY-sTt%-?Gh3-=eo>fV2b!@Q`>I=!46h%fer>RfG)+~2E z!-!Yid;e1|fC%Yb(Xwjf8Y_y%bp40h*yiyW1m@*(nzRi$B^Fzc{2@{U0SN&iEhemz zS7VkgOoM0PGnWU33}Z-^Dmpi~w4HOpl{Tkud&V(H&P#t^8(ZkHw*?xv)3P@_o`DU- zJoBW`H4M$`=y0_jTcZ>N2CJo|Twm_yrMBuWw*cQL4>%)_sNy{spN$ON@Onplkk}I- zRguuBz5hPv+ zAEd)A2(jR=z#!qK>e<<{oIY@gUiHxk83La@Ef>$H%w1=7c%UP3RZ}jzmFK@gy5n1e z-yR&Wj0>D?Le(zX%L$2+y zRtNxTtj*6+Ow;uLMyL9@R~6KCH*=3B=r*2HO+ZYPk(rs9owcopM)w0zyn3_TMu4~R z|LT%Dg~rD1uKqY|pe^ZbV+h#hN=Oc_HMNg2gS=R{*BlPBQmSD`7gUh z^)DZZARIMGwd*h4*87%P8eL|Kqe+4I+XKJB=KbjcmW7$wDWD1cKF_HZ0CzaqJ)Kq# ze%nozVQMq!3AkQCjXwT(o{=G0X>e%Ha(#+z2D$eWk9G*iG0=r+ia>`b2KgZM{&*pD@_+fOi zraIos**Ry456K!T(uTvLnc-bJowgRw!*5f=)LI4bU?3p#LT;(-T#%RrYhiBXev(GL zc`cM-B|mL%brKOnWafE2vi-ZKvFOExft6cme(f!p;GaFO-;Ep$4~J~iL=^9_P7M4< zNZM3{vjmB)`O;SF@;@IT;-vRD+{B^o6 zW9IV&7WP4Hr?GURm&Z5qQq@I)8e5jsbFgHmim62FWOOTZY5f-=n0PVWcFTWp9k8 zd1CM{5~9}V_@alyK%D`V(UNIgg^pRKHmlhT`zg6qXW4L_we9`FLfM)|Qn-N zLs*W@FEkW+nZL=nIgg80R*>nft-+596h^63+Vb=YvfG9+SH z83J5LJq*5@4z*&X6*(tt*;@ItObRn+p?1?mrt`xx4d`I6$9}5ZgM!Jk+{q}{2rD)x z@Of60f_c-~yu3ht`Z z=Gtt25Y!Mb_;_nom$o7P_yy2+`Jw#`MJFz`6Gd4{}6i0PO19 zwmHlK+$9~5;r@uKQ+<6OPW$+f2-D9H*0ay5HkVY?)@SyiWY;2SOiL=^Y0GU4=Z}0P{7z;BTw<9%hWN9ziX{`evsc)< z6j{oaWcEnZP3&Drhz@-!kRgpKSqE5%X0;oCwO7t+3;C{Cn!i3uUV1Eg#sFgVm;{H# zuRex9*yz`u?2+i3Mm%X96OF&kLV6{%wW;BI@cGW-M9~EIrZ)9_o~+~r-G}q3{%`39 zZrY6wgB~cnP`6d$X3(MTW!GKZXsDADRN80#8l(9U)m0nt7SL6x-R#mJgy?@rdo~*fL{UF6C_5; zV`5ZTOia`mpdZ0N4t136?7I;Du?SJ{Y+EKce(B@B1gY{$f?_dJ6~d>0n#yA?>P=lbymgp>yW zizQ+$ZuimA(c_YaO(?g%@9ZB&ZS1liOr_rljF;vDx1moLp$+~vv4_pK^db)>5FY9o zsu`6mF#WA|BI3s`m5|Ud3>9sj{3mdRfpz=%sIhs65yO77(_#+)g~E35k2wyLP|d34 zg|fWuYAEH-?38j?Nz(*0X}}ahKlY?#{?~0A=*dVCM)C6DmKD%9Q;RN@&l%w>CYHe> zf&XUwKLy2zmFoFMM>nVvIJEDItafQg9i@nQG9A^I@!giT*>A}C{mC8iW8IuF#J96# zH1DYU4FTiX%05BVSH+7xsuIr} z9LEex+}~#kJS=z^Ugv+ru9!5X^VUcPUNU@-Qg%lM!6bCp&pg63#Hl!URTvqT^6nR>RG>xNF@5Yp0mU>_se96sP7&w3!PwB zQf~(nmmqlW$dRd)&}HbU)|MhG>I>8TS*E(bwlav(M+p9W%u63}qZl8~oV%SFm6)WA zVe0JWPY`49(~USZ2X+h5Irp2N*_>2G36cAZ7e^k>WZ zpiAK|5#RgLn+f5nmCnk4>yE)LZ^eqE+fXR}v^`=fq4knrC<#Mk`Atm(pz-n+t31L> zEpPco?rhQ`%f4=8wEPgIvxLl)URVh`y2m;)gRqgN0a3uEKJN+^=1A`FCX@V+hm0FFna{N`kTmJk2 zKjzXGQiWcVu!`ievI*Y9vn-co zQ;;{9=s21d;%ez=>Be*v0P4vZdw{Do`D+iMa99T*n0(SmRvxD^fPEk$F%juY-=L5n zFDDE&4F6%|%F-y0|Bs-R|FIaWhu^@wjZ(4e7X~#V;Z3$#>kXFm8tcv}SpY^BDh%+n zE*rj_SN})RSq8PShEW(O?(R-;x8m+nJV0@$#ogWADO#X7!J)Xj7K%f0cef&eyLTqP zm@u2oWOu*syyrZp``{$huXX zNHQLr6s{UsyvOyOYVbC8j(Ds(ThFq$UqPYuALECp7|EY(+x+6Fa5&M(W>CKvqSCTJ zqZGeRuNC`D2zz1P44B{~dLs~Jsk+}`UFcowt=F_AFsYNKYX%Dyiv`^_bcq(Z{_?qo z67SrQ|5i@at9O0xE=9feM-^1IKg9oOH3Af)nDV0CQu)^$_l&mr~oTRXe3 zT3G4w>ht#|>+J~m><0XTpRAZ7QmAzCu$h?>eb;tXye@91_-`ix)C-`K^a!0C6^ZjS zT23$<`OKayc&e~v`i(n}i0o!f^WP;&0qPpebMB$ATvgoNa}d|EB$P1Zc*O5s$@poa ziLXlkeG6FNKQ_7sb_YO0eb1Ul-d-+khqyR{qbJV_0*1L0p0^N0p$ckPIZ=tk%gU^q z?bf*n(MQ9sQVN2hDFNiRugUpso@;-X?Zt6?!s{x~6lALsaJ~aLROslfn(YKmj>=*c z|4DDF1iBx7hC}tFNAqoF(1zn2`x{cBAVli0(rM}8;oxR5AFKt1hXNv6EN0m$^yJO! zN`~cxX1hoCX@0 zzfsU6;)qQkLYHS`U*%>Kje6+|L_|l{pUu=Zwx*w=wL{NMtMQnnl||X-{B$tCBQJ5} zj3;LZ#(n(!gm}=Xgd>)8p`2nN%2kP*ePm$hM>43^{Rx? z5vljnU{{}N`;|ycFr{J2T+K5oc;Rle<1KSA6X!oa$$TB-D-3!rsr;D1us{T>7sZN- zX9Yo$wG46d$T1%BDk@wytcoI1=Brk$xYyEjcFaUbr&_-L{br#W8(oH&s#P5JO&_#a zr?^0j|BYj&VQI`Et~&KFUb%1QKGnn@iFazaQJWP>7{b7N!uF0U@@*|r)%+`}_;@mN zDSP>fEb80Lov|HX4a^~n0%S4IYuLey7&BytKCMN!fvR{MXN`fF>NuQQki##(K_M#N z>d+d$HcIP*y)@mRfZU(unVL&(O59MHY#W}u4(7)<3tR%MwgokK0q0%;R z&T7|d#S8;vQc5Rxhb{{p9Wz;m_F$jYgSZp~f<^;vX%KD&|T2Ht>zi&rKl4^K_LX1CC6I+1$*Hc@0S zDys3YUJ_kWh{PRx?d?;%=xjGr=c6VGjh)BpyHcD0_s-*cbYB;_U3CPTv`gH z|DmhnuRozd!WHcMG_0%f`3#mA3>xBjhaauGy#<(|mI;f>S0)I1%5Xl-%Un1Oe99DN zg2kth9Ekokvx+bO>T88f=e$8XcE`!yX*kS)R~H0jh7aX6JP^)k9OUoR8=PWco0$wsz zxgJ(EPd!Nwm7Rs%-O9AzA^=TIJDSUXiep$9FttDL{oCg>ink6Jr5(KnauWO(0nY4R zGKRfRRP>1tROwRp+ny_3h|yOg82=+M*0!E$8%%F>I89O(XQkj^iI*XeLGGxJ$VVK*NOQtzcyk zNaV4{sMh5X1R@$p_nkX^^yxC{Ik}fSHUfb_Jv#S3rQkSD3uRF9OM)+Gp>l0l!CZNv z5*)Bl$+VlVlWwZx4thH9=>mg&CVz@`jrUyK`*i2!ae{{YH*I>Xm4_nYIJ*muK_E+? zbWR{SylpfD97(hOWj?VL>{B{Y3ibiU9fP`^7RlxFX6b`!jttsOdAWLZ17JYWc}>Ad z5PPe3^qO0$;iJO z-~RKwg2y{(XW*AhepLs7cXgF^J3Ltk!k&5AchnPkZYH9Dv3wvYdZZk=_u#*yFmR0G z!s#V25x6&TdOYbMU^QsQu<|ooY*p zlh$wl=snjx9UblNK0Er%`EEXT1HM#Kvp(3gMSCxCN@6#yjI;IgmINaK^Qg4U^fZ>R zC|!w&AGVG!WF9;g+Oae_tMY$pB`m>&d|?rsC(Qb6tabC`qB4Sv_z~f zKB;gDVLg!U`;fkU4jlLR1~6c=8#k?w1Mbjj zy*8J_AD(O0`62`=tQHZ@NNJ`}=l9ICDB?tRsJI6AX)7E!I!=u_grXG-V4bH_%^@m8 zX3pR!e-lbVRCSk3nY=FeeKmf)8EL$VLbb}~pJF)jwtySH7zT7Y|BNoCsBs@cJ!|yH z9#%_Xj_FC7{`q&O7*%$Yz4ed>URzxPMTsOEH&ls)QfVFaQPEJ*Kkpjkj|)SfzjzAA zA1KXDe~T7sf2p-;{)P2xKK3d8mj#Sk#HY6JxMm?M$y!!~3?O2mv6YM|Oo^zpQtiy{ zx$yZ@XHKmK#I@)Tj38O2#|$BB(YB#5t7${%&CL8*m*-m_ZhbgsTSJ1ctE#_FIYWla zq8`#3|Af5${_CJk3bGdy@ctQv6i)ty;UF5?LM%nKE^R~RQuD`t0Z)JAP2Z5@Ns}`Z zGvjkPRF#EeAIXA}>M*wBQnH^ZGtqTIK^+)MG`$*pE<4IMG~Yud>) zg3)u9KYi+Zo5H3*FS5l%?XVV)T)~FU%9OWp73)YKZUOFYddLE4;I-1lI%N#JS}ab{ z%JEGHsfc+QB++cb#`WrUskVOFn-Eq5Z(U|5C=E zV$}zq{DzVB!-n=@%hZR6CYHrdjK{WT(??m1+eY86cWpR>gGkv#Y~qxpDP?3F))k}n zMz!7hk9U%@CBORA^N#UlTtcTH7WZs=yquk(a(=NLdyK$YHZ)&@l{aS~-clvvM})F| z8pfofF!frg;?rR8QMS7-3R|zB=<8B`3L~H>ZS+<2d-&XT`<1tb7p^t^TQ7uvz~ly> zcsbXnh^e@0BR#9Z+cK^!7=(;oZ-E(ZNlS51K&zd@=}F!J|CuK2=FYq1zVOjz?k*U?x%YB|trt9N8s`-mzp4 z9OLVLA!~jp1Kj9m_0s{fIQdn@5F@y)jhCg)y?ypCznrcQK9l6%0fIfN0b;@C=?DHB zb-5bAn`&isAXkjcm@xM^TtiGZV6NDt^^ltR`%(EG?Wb*w0JVExHSBbwTFIz+jML4a6O*ry z4Y|OZpA9)y_Ys}F_DQ(m7%}Fw!PrtPAv+b5(AGpuXFIVWknL28iWEtCD(ZAox@IOA zPs#$dhU=ATO1)sy1}4;ICgnZ+Z=@!<#dJOADxDwV{de@`R)8_KhAuN$TDZ;RW|+j0 z(3r!rngdjj4HYCKt$x`scfrlA51e%8?UcwNXQFR^MOnA+%4`X`+L?PR9mzO7uXz)T z2arsoxLuYr_P$RCe3glZ?q z@jvwBqHTopdd&%{Kqp?eKBq+`Cr{nuRTe}P12~UAU?fO+ojPoN7pkO9o9aOOLvt=m=NLhY!!H{g|a` z=~)TH2_;(3nq^GOEDWGki-2JloSIgiV#RXAzMnW+tuTY@ z;P33Q0tv)y6Dy%+F#Bbw!uO2H;rUjBpLTXD1PV>8lK*aOxJJ{YE}^6cUL}!fC&uyG zr31>&K9kYyWA5+W&5ptnt0Z_2=lIB)q9QWMj!df0|6ILD?@Y%Q>iiZSBI;ieC3bQb z;k||5kx7Jmi(|W3bZ07hTdd~d&76t>_4B7ZR~B697+i^|tKR|5S7p5kq`LEjXN(5# zuj;lw3tk)0k;6r;0eJ(}tn?o*RJAF3vePj>xyWw)Z0Y->(9{%+-A;PUDcA`0anvfH z#U&|?6pna4JCywGYK&Hi+{q(PRfRrl4 z|5}Q0+E$s4>NJlzFxR#m`gTA_D~8;2le$G5W4I!1^sSkuRKXnAyS~*##F6uR)hsJB zSI{_Suo2Q*DTe5)lU1`u4%d@73Be%n-##FjVMbj166-|qx(2tgo5b$-54Ha5rvP^1`O?wv z7Pz7TmyWP=59FceWLzxoX|C~;XloleI#4BY9gN}E8-}DQQOkF;o#=N2s(oFejs4yU zh)^9zuPBLv2S?#3We(lP-)sH$->s|<4&WOB$K>rU#Vvn07YXvmLA+E>XY&}Tpm8l~ zv&aE@(Q9B(`xu+ieYOwGssR?DcbG2Zem^7sDU};w`^=SA%aJ?(GbexfO1}^lHIE5o zX1#7}**gk#;sbX{Haj1(dph6HYEK_uTGl;Q0i4K>p3MM~oERC=oBBlUE=7^eOr0GK zY@e8*pJ~6Edp#RQ*K;fO2~eQT!ZRoD0Na7+y$FyTr!(zz?ZJdrlolvlAnCQgy*Vbu{8wxJ>cE=(B{!UTuQ|B>`FAQJRwpb>wC5pzVmzNqx^5pT zR*1ST!Mt>kU~O8`t&BQHSZ<=~pncL^DK}?jH4-Y$r1FEWy+Ta=| z?@C$|)U=onSvwScs84(-2UFqY@IKZEytR$EF8FR%l#%-1&5fNG?=fI%6@Uc^C(-Qf zeMBxmrCgZhcu+cT7Z_$k90T5XqmJmFZ2Vx-HbhQWdtH;<(5WmESSSo3ryhXzRrSU7 z5@;~2P7JskkhWpXl-PRw@%#p;oAL39QVR$pP2!*NO%N-2iyMjeth6F@gMm$Jle6-)P< zl^?SgDz~t-A*aI?^-pA1M_aN)L#%MnC|*2g^!F?bk0s(yHQM@Cs#W=~Pu4!Mvhpt; zPW+Q;s%p}$zwR+`(&1>oD|Z<6V@}?tM?LX<b6S@ojsUaQfQY>;)}V!z&DLr$W^w{(p7c437J`+in~W!p6xPHr zf$lLFZMZHAw}oI1Br^EiBOEZw*d-~CnVK7BB4f`q6R${^j`x$ zP}8uv3hPya1PKXIaqhB+1tq^Dp{7u2G!u!rxPn=VB6FGX_7(jvgV zhYtOvKPf*tfAO6nqK@BZQJ6{T8Y)8@<&m<_CZ)aSGGAW7^l#6Xzou#*bCx))arRJG zXeSbzqDsz~Azc>uV5%XW#boDq^b-Y`z)8r7o~ZBc?hg1Y9~y=3@U|^*9qM(9m%!04 zz{}HUad`%ySDck1J;GQ^wK__-7!7aj^J?8m+C@BwW?5*-zPdY8i%obj2QQbN(wa%i7v zB>Ew|_Nl2z7`2zthXQCUp)O0}LEwIvpc-9H1+Hc>`n3lPQ^!$^oeDWFbp1yF)Zb!s zw6hsE=~R5&=gBGMd;saueM@%f#6|~&94uMIV%%J{vfy0Ptvvt|ho#0W#aOnYrU|IZbo z;IMe}T1d};Jl`Pe>93yNADr|R!l8)0w@s_4BrGwd=a@&716wXt|9u5^z*yhYVDWSV z$Z^1YDbJQL=aXX=VLl=1AwH{~-{1ED=e~Y8uuW8zuK6V3TW@rA9Zai2h(t+;cAL1n z(+5sW;jwm*Y2x?e3#7W)eL1V#CTL`1u{PB;JcNTCbp+I=paU#O74XW$9eMm69g zw|o>(T&P05098>BF8k(poe0=6eVXJAPRks;+;z1Ix}C)AV5N@uVI6Fqm`f*z>e<`{ zqP;$igE1Y!Aq>)!fJ5XN_F)ibVS*j_2zK~T(!i0aWn=jPl;1NJEfJgqGV@T^S5})a zV63RuYn-m%{_`8j03VOqthX#&(@X;zr;3Y2-S#!YU0sH?iA=cl+pTn<)^b}FVpVel z=O9g~^|$kOcc9(kVa2zWo(!_Lo9I6U%wNdn1wyF8_B7+PaV+0{_cEh3iUTVYtZ9)q z@3QwJ1R#1J@ZhTAwW4Hv6K5^ry1lmt+(3Q%WHOArw&4JfWXreH@1A)#Q-GUn5-ozp zU-ZiK<^8VA8Ukrv-S9v0RT0@Y+(j9VY<_zKiq?NS`r87!Rh#SmiIL@2(Tq6t;?8xV z?MD+Pj% zNxn;Ko)2HF#ekoq&$wn@e*~0)S6{f8!0jZ^!}SgFd_S136tKIn%kU~=$e}d^8k#>% z{MRa#;UOmxq&op>0(x0C{B4`ttRu;yeVtzDS0I>L*l_F6arZ(4C3-EE z&;L3qMWCXBHFvjI4andmKy@=$vq|6No$@l7au6PfOV)I>#P%_a&W1^eQci&r6f?J( z*5_330;M^+1_y)HgsFYtBK029;q6aIW=U5P6rCB7k z!CRH6ocO~azV7>-%QuoapEcRe4e<*o_2>M`q7s&f%UrH9+6u{k+5q@12l z<{EL-VjNBET{_i*nx5mbs{Q#{@f*ilfD(+FOt|2DsvCaof>oE2qVdGPQ6W|DF>Ffc zC>696lM9|u3(VExt43T%eUq@qWc5fpG9yZBB4Wik(s-^C88XKoHv(L-TqN@9HpIgI zqd#@Q^pCcbe1C2uxTnE%WTNi0bHb33HUe(wa;3>>0$0qfk7?58OzCiL-?Tkl*1<7R ztE)SilH}0K!*{xgzG_hHjuKd(e?hgt?%9bBBxf_wmvXq8?Pkjse~Hw~)PFEEeS(RE9W;2fbu1hpDh{-IC*Qqsu`1^!Ec zmJqgo9zK!fnEY0<22a>c$X49imM6wOgDQCE7m8L^hd^ovidc;u$8V65%J-VnUwl+3qL=Ed2krAtNg%dtfDJD5d>NR6`TY}_`hULsbd=gt7Evz>Yc z4s&lW9lhoNSf05g$lbxCSxk@BxM6QM|FuVs?7IA~o_js^MHr1a?qZ$yU2-CD)pH-h z&yA4!Pwwr7_~?>oN{s25a>^@qxCZBBH-7xe!i;-}X(+mx{^B-T}=8>+X1N;>v z3mXv+gECBy&t|ZE86P3)HN2G|GE1xv$Un87o#qZ4!jDz?HJf!)O!0}x%wj;=>2*|2 zl!uekvcw9Vp$aOiy(a(aAN||iS$^k3Q|ros<-gBNNeaoggLKA0|B9jfO^3a@q*^+SUb}xkDp#i|wGs=;5c^#X< zNZXhtQI!+)Agk3!(!_p2FMtWgqv?7Z5q;Pe(%JN0NY}AnZ@&kC%gfec5CD0OUu*on zl}mO9-f+_GIZ3DQ+SzAsTGSqnS^)aM!i`^^`S|Q~0|C#Dk>B;u|JEFT+eHI_EH4UZ zt%hzhw0s+GnzfrB;m2P0PO&ymk=$MxlViYz5CHH z@Eou)G5Dhq;e+8*$Jb%LZs)zC#5F)6 z0?<{CzbB`>N~lj{)PL&0addg#o)zT%_)%@ksQW7fweqX|`PrnK<>)qZMa)TF$K~61 z0DdWT`O^Ep)u&A4JoE5}*ACi}@%y2eam!bmn9uJx?+|B>)R;Q(*0HMZNtT!ZB-s7b z_$>xVJ(lL*%on|#l3fx`p=GcD{C@xgiIV@)Kg^0j=6U9dF7R4+9RSb-#0*cK+onaf ztqCB_-49HbOv`0A*Hjj7H1oVa~T~`ZJ`|*%D|%d{Wdq&XyBCG&$Pp8qyh3 zmAR;Q2oiqPz(WWFgoe9X;7{Bw_{N2C?+nyIGbAk5iwgY zX{|nGI#BN$tJ#phKNf3jz-x~o+5SYbhsjs9AsE=T^eXyhQuz(`ikyrXRg5hJ@ zv@WqV&sC^rc~|zbWmcht6?r_@h-K^**W?w=OjT(^{<`Z>n(1 zzUa6%b2Q#3-<6r`gN|jt?c8y(-wy4sV(&-lrh8AUa?Y@*3g{pQno)jG*cNj6i^C9=edT{+&2CZYdG=8%^U;iEnxQ!wCw_?NVA-1uf zHxqSmQ35Zfyl9ttLq^6o!(^dyLJ4yoW@=7P$q9oBpk~Z$y(CFtYUHKre}{PvW5<$5 z(s4NuxrfgCiMj)W8g|Hi36ma3B#7x#-n2L~Ar!E9esK)+4QHxHTFk=60*^z<$~><5 zCjw;PmG7)1mj?cq0C?|y@LvcG02BfmIlx93;2Oy#fu3B3Nj(2Ma|)kB#!Eu<$XI+< z>Jsph>qWLvt%k{?h)37WxR{en7kKIPaZEKoXPSM4z@49zPkB^Y@s9Fqc9}IH<~VVL#qe_ z$U?E}Fkc`!*es;u=>65a`T^J@y!KZx5(sN#Azu+GAUy{Ih$@jwUy1^hVOc7Z8fn%6 zz-@+xNz}u>-*xG|w7PkdZ~eMQuis*~0dQ_9-djghSu#zy3i~hO&Z4}emGKY}gzet{ z4=X;SVQl!_etxX!ez~H-prFvNGuwB$uLp+(Su@ae&BI|ix{!K$I%oY(EhAt$>ds}e z^0tsnVPKg~j^ZjOWcPn7* z$2E(4+CJWV|Nq8z?&#OCbP9a8*}!*q=R*SoP$zWQe7B?7{ea5mva1(0nKPi|s|<2^ zs4Dt&|G4h|2((eNxBuHQss(7yomVC7{>LC4L*6!%{w6hjqKYsyBqS_y$iI=iKwuxY z=0APmd+{_%gMpCNdNYeLC<_G4ogM&~?=`@f9I?)8d+P(HKptdKBg4Z+4>y7SyEz+( z){$JW-`DYpyhM6qE}Bo-@?YoaH{HjDD0Evc8UUQ8%UH>-`7Q!LE7a+ENUwd{e2=zO0-<+W4jf79TEz_B@vcF9f*8WaptX0tDWnx>A zPZSf>NBr{P=Uvc3J|S5oO5L>1kf3=PG^Q?*_)yhHyH2Crd~lL$o}^wg&!sl0T&evB zhF$HokCfG&SmExY@S8SM)}71KMzTgKBxt^aj5r70k3wjbc1iX>=xnln=UKk7*>_LX zZHfoiSMukT(^ zhCgCJ?(mClQy#%Omi12^uNbx10q;BzyWLoCMj=P0)!cuocU=NmC3jDOC;!B*Wg>TS z@S5-cXmzpsz5P-Rc-!rMoWi-@nw^X59X~q8l=|WK)!OT$n6{%( zY3X&*slKr%qNDs!2%E9Ree@+p3V^u~}-gM{U4v!P4gU&tB5)&SYT4{10`?d43M zp7lV6-Fw?<>g_6y0{GQ$vxR>{T>QH8;AbvTUp&9Q_SH?@inh9Qw_xr} zE6)8%qW#nZC6w6@Z(J^VxUJHzw~aZ5#fAzt{`Y>M#+A49B=9uHSZGH*vF20)bbkxI zFpwRO5j>`?w;SOK0tFLuwY`-gCue_dvX^GuUL2f;M=rU}SQR5#0%Gm=K4t#fzW|M& z#`mJ_P~h;*&c#JTI&+0=Cm{(Pg%ZZHTR@%RJW(15+R zz07$O)~_coiV9b-liT;Ls2Rl-n*j?e8u3Z14OZN+o#H-H9(MLhnN`&jLu?42twe9R z{&JCHErCBsVM^%n&@o^xN2mJl6tcYg?IIA4cigb86*0bgB@n(0!@+0&!a^AZs^cs# z30N~H?|FE0&oJ~EOAxw*t>pMD!ktrq@9FYniyA#Xx%fr>336H6`Tpjs1IR=9{tsW8 zT)cb4PNwDQX*poo*yk3Hk4b8K0<2CKqr)`;VA7g%B$<}GkJVqjEJ6})(EfLB#FK^% zl;g9rMLj6yR22Laq%nOOA8*~U#cJ*rz%H}-?s0kps{FrGb|^Kr!psv!mRqnF9K|KbT75H9dq;Yy0F9&+N)b-fg+ylh8c z>bPiLZ77)-9v(pm?VAJ|YBqs#* zM9aL;-VBs|{2(Ozq1TEC`|FkUN5*QY>$!Viz%b|ZU&nlZw$>xb9dBXiC%Z$TFM^e< zcf)}NNOqcp-#dyVTYWSG$6^j@5AMl4%l#ytocW?X;8GsiBMxsL@js8t5(V*MAl@93 zIleQ7(&H2*7gS!kTZDdbh$_DfmpPSn?}Nv5p}cC+Ak^+q+Ap?N+cDt#<|MIDcP;$# zYgL71-y{ZgnkPI#V(<32JK8zqR-7x5q>%qt)x%v$=r{b^nc&Te_5ya=r`!)kSmjI6 zhYmgiq@Rq#+|OFa=%Iy!m?jG&-qdKUV`?=Es?N9z87jcwe!)%e)ON_`RM-%j$w$0$ zKV&b-Z*e-}%AyF86@jIRBx9lsOtta-+qcTWyeS9S_V z6OwGfGhAYx8PmKO%$VfE{z+q^U!!ug6)6p)9EI?0cMXh!oTlHTR-&&I)Pv4@V>vi~ z-z$ZO-y_^6jk)%RDX8T5recl{j~GNtR-x!%mP6w-Mx5Oj3;5o@>1)GDgQSs$Gx^!- ziq!GoCN^N~!XSbLLRRsvUzE8!>{m?WcnMis%DE>}rswuu&gGx_R0=-g?g{S} zkeM|4!7zpE&w^CFlR>({R8R&)=93X<7^vrGM!px1QyJa=1f~TX?EFZBn(!6v{J>^- z|Kjb@H_RH;=pQ8l(A#HJ+0#3ja&zm3Ytq8DiQ z@^IEuTJUSdbo5342;dSGCGz(r5>&_~!oy0Bj=uhYzV>d4A=K*|ATzJ`iE7B5uF8;) z2sTPmZe;jz-8%4$?5Qzk9=HtwFUqL$kSJ5-CKHMDEV8LdD-A7>qum;z`IdC0>jIN> z*ypCxsg8^G+nU6{HJk#>a=l}aNMpeb!V{dtgo1GI55@%&vSTHTB2q4K_PT*M5RB3+t_mrt^Eh`nqDc$QoSVDI#B zb{fLC#kq1ylJ!1HGV0_TVkejX9x2Id4M}~16Sh9j3n~AO*&pXiN79_}#2R*7bunl% z7Am&$<-2w8nvF#1qI#Y%OmD$V!QnSSIGf^;RpNh!@b|`{!OfPc1qPB z4+F~f6j+Y1oKJ4nMAI@XE_)M=)f+<=gJ5Y>EcDc=weT||%6$-$(dsQW zwb!v99yef84W_O_^PTHe;BKk014S+4nP@O0TV1hbt8AzG7yCYdGZ%xbK(}_v$?~krG#!4vL-q@FV9{n%d9{%>ovrhXRG;Vm03(0TIeoYHwGeJM2oiS&VjI~T2 zrDk-h@74P-qoy%oK%@TUYXvbaZ)9Y&5BBBfN?bOc0t07O`Oo@=vq+(%WJ=rnUxisb z_UP%;VTIY>*(3ir{Im#sTSEn58d$;6cW15X`e9`9glf<8VcKubm(xuwiF`dJk$^5c zjQIe8wCNW%R=rBDs&K4(Vjg@zON$m z@=v@4@XokE5GpjPwx@1_5AX1~A({v%h%3K^KphO)bnBHaIzz=dKS7#X`8%FBBm2n+ zja0NcX|ibK`2?0)8o6a`a4FL}{UBBs-F6_HDPr%F%B3bj_O+q7&Jvf#7@X^lj3M+0 z5zd((X~3jsoni$H2a<_&eZcyMV!tb@ME)n^DNT6H_nn`K`b~iD`HIIplFa^5` zIl2MNYvICQI-HGh%W|*W)h(&egnycgD^iAG4PDS(I|$YIwHklY0))zmDwLJtsEb7D zlv6o0A{(tyFgKXLr51{|T>TJJ-3G2IH_aauA{2-|jA&AVdAi$T3eeIfTXo7&z{7>1 z#lua*r4TxR8S!hTcY?d85Nb)mP^ls`TW90P!{n|v?WJX1%!PPsp;&!v;}8z7BXsiC zOJ$Z|lmD#MDu0Opqk|{0un0pPRc9J_^WD5-CUJi`Sg#_yO#{Sr7Ozi-sU4o^^PkM8UUqn_Sg=AfHy2hO&+gjUpCr}PG}Z#qS`%1{ z=E9(})i{G}9j;y8HkF1Ofg$f7xC}9H&nn@y*X=hQN#mSnSu8t#%~!JJvWa!Z*Lhr!tc){4t}>J zMm?+K9hdb>dAmh822UV!vy5PDMX+Q9)zpazttnh8&T}#KPQ0&rNPlZM!u^JncGEC> zFjLeZn2U(FU-Dwv@EYM~(7FeYdT$UO81@6=a+vEYDP44k>7ZtdkpB{EPVbLLB@TEs zUAl(=###$PIpr$&x@09xrdG|m75-^CT{ZfoB&~6%!Dw1_Oro-n!C$D@0=qGZmPC_r zIxbAG^7W&lC}E4H20c3d*3vF6}#n~ z-PS6sID{G-TDi%S6I@R0L^qQfp~hB>ugv7~LJ0MPyW8(6J%tRD{M+nn;b`L*Hi5Jq zuvSrrv|37|LmjcrV^WkT(xzC;){kTSF9*Am!Gts{e=@N*C2VR{dH8?5(C^4>FU_j# zN@_Zeb4Gxodyy#5qS3nOaBoHl z+(y4Eb(^?a7^T6u{isY82*)qaL7Dtlp^sjtG9P9VWk$OO(oAxC-8hV8P?p;BDv?pP z;WVaQu`;wbFdT)Uq_<#&Uvu79rom-PvokI*3olLAU{u;heiZ-vy& zcE(4{eUO3J>1BAfuJZ<}v_CcZP3{42Fu$^E7dk%z16x zQTLBaXo=fYF&sLSbHrt*#5irFpNjN?1v@~`Y;1XyqpsS(}I$e z<%%hXU^T)|JFNFxlQ*}Hl1`b97(-@`(7~wCq~SzdSuUp%#PH|ZC$F>88Y%-K$<8%4 zsf{c*hR*xpxhTWcyU9MOl-wyu>8AIwT8MXB*_3Jny<_}(Qw#EExGL`LE}kUl&%-%%wNuGAxRm(H&q< z8S6__;_glt9DZH@+J&+Cf`$ZUE-Jkds zBCqCc5ZYqPt^fC#voJr(T#?^il6pcgiW&>0E*1iXHUHze1haheBRU91JZ5jWes>Yws9b`p>BMx$xr5go?U>sVhK6o3$;* z+`C6WK6h>yVWmU!tMZVA;cHhbOL}2JKyCJVyL+)%bHHxIs$+-$>D@1Ijb7W$Ixxfm znj7&?=-5-TFfnhj(zvw%OP*N*`~0~haP^K`9C2v7cioV?2#wFNvBuDjiQcCfuft7 z0$#PHPXKGt*gV3v^J!)|1mI=rYnKr2K;?ObY%%gw(zoei4l^U&AEL&*aN&})g|a*q zwjn1x<^<@cIJHh$6_nr%(~3g{ni5u#2ei&Ny2h~b-ubGP6qW#n5}RNf6{~vej&*=LT9dvD`TkgW4 z0;0|GzFm((p;(TXMd6&ICi}vdYwCU6Y%ZU#(uysMP&P!rt%QQ(rwcP0Gn{b-|6o44 z$m2-z$NsMZDF8U|x30k;eUO3Km*?2+7>7}QmR8sEE^Lzm+HBiZ1nrV59X3a6%>H{{ zTthZ3V|?g!M2hb2q;m>W-8n87xD;7s8~*JUQY|HaYcercl=J#RL{8bKplia1VL}y^61n5}O`*X4!nhM?r0={Tlrbp~0`Ra+!QsN~O6SU5%L=-@k_V=amy$puuJ3(7Rz zte-&+HYq@Xru!`ZPP@oGx*+&%5~XGFTCRb}oKc#%?tQk}5c;hJH8if0tgm&WUd+?uE=~5lTUit@#WpMdok> z@`OQg#EE+2*CDd5ktLwrl?=BcIc}33wmywFaWy@?YFClM4jq+e6dBhdx%pWmJ}nA_ z{9O*+#*_9BcTwtOQu#yoI>|C?xAh`>t64OAoVHAJ(eNDsZjVpCbC`0J>Cm84Q$-JR z_7K@b-rGpRPDk~^GQ#7(hq<5!(aXKR}XG{@W$(J8VsgI zV3;kD3~M4MQk4v;xQ$+3;ZueRDt2Ln#zIwvL)Z-5HzLX;!=bW^m{ul;yMbD<3|3Y6 zC1ZlyT_DPUvUdr2$P&Sdqfw`m!uyih0n}xN%;MEqP!oJs4`vSWNaVJL5kuWkyUJu# z)u_}HV`II3Z_C!LVnq}N5Z3`BHx?6MD{u}k7r&wG_ToDqkMry}Z;qE%E-kNH*VJgy zvtdz1Z9$|aoL;U(AZ1k%qa+CDfishfK(f}wFu69Bm>^0OtR-eZRn8kO8oX&QU-+T;hZ~q$*>t6>rYKBeBKGq z{kMNTd50ZW`4EE~&8dh3ZZ57jmkk3!PLIZ+^vClr{=%XxStUrP>TC8X!-;10}4(}^YUZFHjAgWoRaEXVpSeYXskyrpo z784emFME<*jy^*8zu!No0W|85wac3eKYhZ8B02&n9V@}JDW-x4iFZn{NzP~BPe?PzQD5c{1{K!&e;={J4MaJ0M!;yN5~9-gkeA` zVHJ$Rx_o3t*|x@v*R>gBIc+5<=cTM1{>9+@)MjYo8dO1w+kpataL8AL5&^|ZLt{pw zdbW)n#zqd+<@7 zgfTMf%2!yIdH zPJ$w!qX2k=Ij2sQ3wN3WtynN|?RD%qY3ef#K$NJ{ESUOHsuvwqd6dt$LWX#!g5-p< z6P86>Mh&1w^Qhe%uZxHI-#E4ij09F{ONL@p3HBvBk8_b@Q?n;YS;-g4yZJRWel+hJ z)#n3G=m${RBHCEaF1#^m$XrC}g;#zOxtRUL7<0%(_%x6sOBT>z8wH1pJyZv9CXmb-}09KyzJ6n-*^Ao2iD#{Jv(FTy6X3pLXt7}oRY(YKk9e@z6r@(%xN2J)A`rQJIADQ-nMK6moH&P%ONt1!BBbu< zR%VJPuq#Lb1Bml^SWV#~5N`>Qi;Phy8<)tCSOm;UqL!JhC{SN{<)7BvchB)h9lhVa z`)r+_o|_vIsi=}a!qsrtP$bZ;TQ@TW5vnZeonyuTWc&pBU?^49FRrr5@4y1GIJ-=vaRRTCsC=G)G8UnL_9aQwK5|U6Qh%plZPI5_^OpF zcG-DXVj9+ip6Q`|QTA`9_|C)T8?m__(F@;kymHptUPmvaT8nRVyw4uQxbw6;SN1p4 zM~cb_Q7|X-!2QklDRhWAD#d$7%m|C7j?BHao;6x17)dL0LvT-pi9w{s`xjLKhFBPm zz!iXVo(DkVF(N)3GKj!{+=%c&;Q)^@#6(`h%k??;+oc>MZy0b(iwjIHpiPh?5}98d zVX?|j$weOL66M_I(zJ~yZ446SFnepF1k;vvs z8c+vgmr%`{fdRI}JUTvNEtpMXK(0G}s&ffm$~!LPXF_20zp{vs1f>G;vb}W4b(B?E z`g%$eTK#NifodW^MG$hXbEl4bm9QB{6N4OEV=qA*2u_fSfraF{drikH6ljo|8iy?>`XU_Sw}tVlN8ZW4yLeAvR?%&q3l7^u<*5%!YI~fT1H4vwYws-$_}+h-HKw-qD?}B zIVIkgRi2CEtSD#e+GTe$k_!+?0-!ZG@-gwo4WD9eLFeSm{H8gAWJI6nxd2QS?B-pd z#g?C}Y}@pUnBC1GiVUJ&9Y}ILp%RB|(BY*b=p!u;e(;Mpxt#b$d$?hiGSecTuT*P; zCARoyH6lw7-N}Li^R9GFQDiZhIu#yglw2T62ztm~CCc=Bm($Wk ztW97lR#7Iia>c3>UvQ!)7`Kj_uPkM((Bo~1maaB%hM$ouS&+}R9+tneDawa4ALd5; zw6qNJ8PqmqWKmYlgCL5jjbDjw+PdY~XCAj@%hsnq>lx2}<}+IWD=Nr|VIFGh=34Qx zNdpKa-Cyz1LRn;)TT@jkX)uQn^6qFN!ocUUZ~~V*(`TGkMA8pVH!7A6OF5w#VzqD} zeIrtfW+zO~e-)a^JViod9cJl#--QL@I91J}0ao5E2B72#8K{aD3&~iD&?c7;6ysOf zqe>LHQz)IsM(4{^CD$uKRhZ2FKIS?C`7|Hd6crGN{SgvC$Pib~Im4c*3B1jy&D?F7 z+|QZ1?*)bJR-lGIu9dhpa}@aAWs6l*6hsOP$plXvT~gAi$pyl+1&Sblmp4*!o>C#6 z4=+3QsBX?4N`zV?vAKL&UaM?1b*M8q(o1b)msf8^?&g;eyf+pcSda4c2 zNuzh#obj*@*#M67myo(W>PbnC8eM}^wfJz>W-M67!39zw07S;Bwdze_GVZ7WLYhep zY$@-)$Fv4p${`hA6_IBdvKBLxCyH>Aws2g;HQV@oY1L?DGf3#cCSwU0y=UfY_|Z)$hPtWCbY6xk7p6h>{DkHs>$=ywQv( zW4rQA?rA(8A4wBp2iX)=OxJA-m{euvL~Nz%4#O||84m~7(95XGwHcH|29v0alro(+ zYbzU3fLHvTiYMVvzD)pYj-mKI9|@8o*Bo>9IM<0?@zNmIV&iEda|Pg!^(u{US1w}= zaVbTWl>K^&vIQF@az3C2FC(BN+tErf<$HjU6UM@*)H=V21s@v*rejB|oQC-MDqc<5jjf|3b=_JhJ56!?Uo z>NnwZTpen)wkS1pOhc79VBByeWm^dl@`a#KUeiwGhm>TlWb5|&U>_8Q0- zOqXQQwS{f$XO661?+;LqwKyPh9C*=>R<*fUj6L;J!VTdW?cRt(<*9A$K>;qhFUL1G zRf_D$>G*aYCC&*+O3T4b5Vb(&mdzacL=2~>5zq6zUmhUGi<42;a0L*-ivkz+!V&P9 z2HT~ga$YDBU*=T~*i$fsa){wX$AE@fw9%Lc_^ot}=XqttB>1zZviFV#!zQ4}`5HVk zq{z}VKLFUBCg~ErsXs8Q0s53Fv|!pn+v|)?PzAMvF%;w#0C<(ak2=!^wJ{<7#J-H5 zIGBkh-4(tbMes;x!GQ@VW$kIAHM%l{a!s9J-C+t;Hj$HC99xWw3a^T^8iBJoHk!%5 z6wd8xF4lplXrgr_Ku(T9acIm=LDd2MqN$y^Srr`g0W|!nIiC*1pzeSPLYqG%$)<>K-x2+|OYSBC2|-&wvxwE*f~=7)G1LM<-7{ z>s~nK86OCwIU1=?OXzNV3|=PiT-6?CnXAA#p2EIRCz6Ulf>Mxyv&_9kkVG0#wi7Zf zlQ}am6EvP09iIs=q%bX-fJ)DDAE+Na0H5zb6X0F7SuUNZJNVD5SSq6{%|@QUollsX z?dbgV;!KmdmW6~BRp&r;-i9m&y-XJgmPAy3 zg|NfS@(8e}5^!-U=Glbigt;PE%pUUs38sY=@3W_DcnJ)F>E+Cd2w^JnbXb)1T$f@n z^u$BLS?n=N9U&01d(ojG5JMLl_EA3IG)X0xT(D(uAb9Xcnk^|X9O0yK+Nr_@{3y085CEXO6YkjB}gj+XbJ~sr>=RA z0z&f?qtMD& zsHE?fTb3yDl}MPL?{jjJ2Nody2v+iwm>6z=WeD&rBy>)!>ACBX#;RB|3GOw#eC*l3 z!Ij~;lf%_)yHKX6x7N(zc}`I6D7dKOL;%rk0v>G%kOk3^ClIIIg+Wt# zTMRj4g|6j7NpSZas)GBs41n^6Zie^aJtMNpMELQm^hgviSnL`P7D}2muItp&D)n0+FiJpdLVEty)r1mtaz<@Tf(2L|7rydU8PKMq9L3 z5(f-!l5Bn0i$vFy7S?t#s7$f`y|c-AzQr(ib!Cs8d?rKJg{E) zRklW-{90Cmf#WxfPux zS$%_&ZRm|e6TH@`wusQ#{3rn&jRQtD91uwINls`SXv(2ZNg>->UL?S|GvX9_N}>2W z|1L@#_d76V#Qdfj7>#49se9_}`Y${`7c{I&nPi zpmO(|ymscaGZ1hbW`5^GI* z)*!JQ^U~u?c0^MuDH@?QXY6GhH?R(h4>)m%#KIc~_vMl=>yFcU3rg~((yV&dZ_!~V zA)}OV4B9i%AOsX3N*(fEp{y4Kg+!_4n~1oNW>ZyBMM!2AP?ik&WWCH0uYu}oG(=i70c!7;U^5b}wo!-x=>i^hi>dX+ov z%S%B@TJThl#1s_oX8BkQfLaH0rz-}|Px%y(mfs@>R$}r5GEC5ro7#UYo`E&<$WW}M z;PRn~bfXB<9~hA2g(8m)ND%b>=xtI$9z^Loix?sqRTK?w)Dl#A|H7zR+e`ptVL%C$ znsUn7#u=R9n6djAMwUBR+)Gh$ej*3Rz}EvL*wbsQNwfOlMMxSPMc%5}%53Oi6e2mt zf|uJ_&*C&hoYJ6XW+Vj17Ce4wYJ&Y}Qw&7TxZ)I0fUPT}>WvbwDP(9R>EFoY(=2({ z0ueD8Rc2Tr0+_rAqf}Lb)&GyO_l~#iCeDVR(OP?-a(i*P?j2V!*aSmx!G;h_OF~O{ zLx(^hZwLv2U^*dhXbA}&LJd9GrWhLtkkAbnj7_uYHel@Qa(g>x@1^W}X?1MiLLnLkc#g;|Oy33dUt9A-6JnSzM>A;1Q5{3$d6oa~D&I>1&qh zQc?0B2~pgFJPR3O60=lrelruzOr4xIe@Is$MSHZK2=DR*U&2JC#%2# z$vaY+0E7U)Q3KFYPylk1tW3gE(LsDlJ!D4I3kS#zh@8pqU;GFiDL%BJ#IaMBz zvAIYPK`a+>5Pep&L_v2c$QoTniX|bQD?*K^OB`9d!J481u}NjPiyS(1sf$vSjLEzN zvDM0SW0(sr$q$*w<-$4=%C$@~r3wxNiiEv!vons;*3 z$g*KPUttcqh2x-g!OSOLTOd%Mt*G?2sQZ7@uZb=Yn<$*Hl z_ZUazwGBuE{VX_HnzC!bRhL`xqP}ddQ*ujt%`~>r zAu9~A7LBUJ{g_vx>oZ}9vn zYUShH(bTFU!@f$6u)?CgOV*wIN`YJZZbbDd!Gf%LM&ZS3NQ5cpbLeXlFEQ>BBL*wT z*4c8!r<)wrE6Y^4;GC41KSAB0s#R7_6sQ>hI;Bq9Lxzk2`7D;tvIWM6fdC1l7mA0d zOsBlOBMP5#E))ZiNnBYFB#6S0$fyx?i#di(7F(syiw9fI?Ex53bRk1~a)h9sQ{qaK zTh2v5(nheLsPpV8Odg;HB|Bar&*xGUWiaDl69%9tL&qHck;T~B=IrDJ!vaE%339=J z+$EIuH!ecJfFchIu1Ps&xGgy(MaDQH5H;#`6t9m6peD44K&QTLCsM&$Fl7NSj=7G} zios`Oq2M9`hDf9#DFBLGBD;j_M}?S2b7~)}$<*^r}X2IeTg` zv9ff8%wK_Q`Ng6X<@68;W@}^tT}fL3x-tKGuxcMk?K5T+DB_yNGqFH}_$01gs5hi# z#LSW+_6nu8<))ne%of|f#smYDQxq&dLvSF!Bu)z3O39TPIZqd73d%!;1~Z43ZiNhj z`Qb>)FLuIVTS*{U#({t)P>7-@EPDe-5uMT_qLc!?)MEqbxXJ<=6ydVhnE_4o+fG-h zwFxFm5hx85fJ*vjCT40=0YjZkyhvIcrIoNn4TUuY>^mTKOlX*iB9k24SDLTXh>ECC zmf=JvA>Sl?+*vy+lPeicdl(_bR{CS525Hb1Y!7RCxQ&Xr$c->8{Uzy1g8B)z&S1(R z3(ZuDvBuZ-rZeICqv)@j<7Cm?VtvKPWVDq8DW^9%dYyLQ%iR%U!PH_9N~TQ?A*5(Y zCPth_GtpKw*mBP`3Pt2ID_nY$RR-d+E`&=1rJ360a#1+m<6rr$_*QyI3?R9V&{x@N zl`T)_Thch1guq&Er1Wea3`)uC>J(J{3xNHG*_E6mBuFx*lP$61Y3#bmlp*37B*859Ch;4XqXnYb?DdsGQ=Mz5rg zG{&1Nj{=YS5S-{IT0n(I<*zkui8`+09Tsmn>vg&y15fyN*-25Yy7^#O2v9JRYGv|n;P_u9++rwnTGrX6HLt) zjE`8PM2e>TU-bMT>1@^tg;qT@b>I_9+4Xg!Lj||UKQvgVw}MJ_)o5E{sYRx>xVoNZ z?*sDTJc_5)OchCO16ksRHuov&ARs~2^Ga)O4Vj2qsicrB{bo-Ou+7#t21Bd>1}0mb zoM)*}w97qC##vIcBQDVEJ(=jnrZS{wc z$W-bQrc!2e68=D-EE6d(pA9|}^{bwwz$|_s7yhKl z7WKIl2uqX7_+Qd-sepuqKP8KlC7}{;lb02t&T|okiqrXNyAnv8lFIEczx(|aGEx{n zgDu(YT4JqAO}VL){qy?GOuDLET5D)Uy!4xnMQk~x$9B1j&}ST!B_@bUqM`+wTpjGYfXow;8Iy`Ba}=fkCC5qv zfi%Kg!Xyxg%?~76r?wfONnjg;rMWFpzhyvBYy$!o<9s)suPar-MmBmi3p7d-dF1D*w}v zV8C#r)S(Px!B;U`sYhtQtuCBNFDuRjV}fLSZPu8gv_UEoQIhf)G3}qtIlEVK#X>33 zeaf&>HC3V~np{(GwKosKig+dH$11R##F#m9XhIv>X4De1#5QsV8H!R8RfzyX`-yYU z7r{#7e-?Z;dO>a?Qjw`#AwUxyQOb9AC*NaMK1(X7-T;6qsio92Yyr)!e1J{Pn9>kf zT1-U9ANCof&kYq@T zqB?UfHLCd)K}|Z$9Ab(k8{$c3Hu68&rz$n(((Cy)16}rV!KI2v(to{n4>p*+&6M#Y znT*VQD-HZgn3Id&NRpnGP6T%LAurZ1q|1D(;U()c(W6G5OLX$9HJZ0MH9W0;a5^NQ zmSZO-;A~z8*Bqi$o2S(Fem$$5?o-LmF_3KRfnj_~97wtQtc)=;)FM~qm*99(5PMH{ z@iPQ-t<~%ZDYRsTm6&DSJGFeF%pa+v=3-aob}Z?%RxJ|)$;dkad1940rk!n-m->(n ztqb}L+TVQ3Ov_nyFvg&iUj&p4vB~-xhUf^nJq4brlC6<~*IhAz`WX`^-3E$#^`?X(8T(r20f z23T?fNbt*!NQ~f;h#y#+o9AFn4nx{2QfKfLy|Y+B80I)igC|h%~aO$sWr;E3Xb3y(=07XAP;HDdu=xpQpH?FgodshUV%V~N2ZaYU&O|F zQv{$|J`;FRwl5lQ_mdO^FITc?n#(OooaOYRY-^HJ)+Ck0mdmnCC_h)UJ?lD4dldzQ z9e^YoRd&JtuyfJ9HkGDvb&F(@Qp@Tk=Cb|6Jt7jft;ies)0fHd!-G-bLn*Y>CNsX2 zsmt<~dPL*7`Xvp+hgv>N4FPD$mMl+k>>>fL zd)=GPJ@35x-~RzW{mFG9gcx&N#YR`M6BjdW-SU)xZ+-il_c{B#^Uu4_KfV0_G0sQ+FoC)YShM0Vi$ZVD-ur@KJ zf=8B~BTWZoO(&HQn^mupf}m#3@W5Oe2C?$k;D=)}HH8ZUaY6F`=w*X5=uk{o9M@Fs(k;^}4k%iKli z0m^}<%oON`8*Y5#o8I)1k6f}mnM962r<(+u^em>53LiC*hk=~Cr_bfwNJT`m=E^og z;4_CrD%(;1>YS&}UP8pgv@O=(KH>fHGVNX|KD z7-E;=mg$x8T8W7fMMMzq-o5W_Z+^?mUi#7-e(`ev5fQ8m&Rv_HFF)8DY~@NU94d~W zlk(aQjq4F%_`A^QPr*y|IT97?DhvT%wD(Jl%g{l=_H)3X7l z78N5i%1&kpnzAHElizD28&ziz$+?mQWrXEb^=gXpGnGQU(%VnI zQV!Nl?atePB)V9jN|pqtL_wygc^Ac2n0YV@li9gUE7Q}m++vi{A&^GDNmydTJ%yhz zqMx=6*22W~qjUs#bx0(UmKllD*46z zgKnXlc`K`$GcItF78G#N|*Q@k;oKC%K9u% zWoPcHWg$~e)PX}_im~ga#M}V{>KJY5FGke8zona4B{wNX9&whfT+6Ps#z(E4AK_ax zo?Hra3RjhWhMXhYLDrBIDJqStOqZ2&S-lZl?Rl5$+<>Ifk(vPP+Oh4YKlw=rO^giy zmPM#$OI8uMyf++&5dnx3T>q0FuUN72)-AUa0E&!;5tt6%~iQ=d1 zfm*sDF-A$VuDm+es>MABGfXcm*QyC5Js1Ek_^J5jN@K2Bm3bQgpeaxn)4ZqXa@M1a zhm6nw2o3TXM5&M%iIQ^}IV~I}9YL7xOJ(Ne@x}Q}f78Y{!Fwm>M=0&e;t>N8I_BN` z_AHFY>S2pQDaGCLgo` zMAkDQ9Nfzp>BbMq_94G$^dwhla^f@f>_|vu$uTHI$fi#vF?W7OJL15IUD|?yxKRt3 zJ=Oe2?4&X=Su$2O8d?SCvR6;~xHd+wpg4qz&xO@eUoahKj%!!rpe|PSuhM*K8VscN z%9?F!IC_$7u6J?@ELr(+vXJ+XPGJUBPhXle(lm?_$Q*i4<+zH{uR0r;jaUjp%6@9< zl^STs0+aBXU{ueROZLaW7cv!PF%SF=kOiMqNyHfpN>7vERc8LU&l-qp)kvC1iT%MyWvOcSp%8TR{l(JHo z=r@#dMJd;;@KniQl-={bnT7PM=WHfglSc#qT@VeU(6j+9nDYkc+>g>$Lz-Mt@g@Na zTIn;CKjO>L2tnx)QwW!@wuo}w{jhZi3R;Rp%54ZbtDljm>^LUWDqwCu66~mFq|}+D zLaJ}A8=LD*b`J$#ch1WHA&sU`BLa%)Me+k-6SL3^h!d2m?;*?y+q zA!Jk(Q=0c2Buc!3o-}7VRpp$FF_Cg|zXYudy-~Ws2&55FG4;|=od`Dbr`FqHO{qiP zb~rE))3l7zSr{$(8Ch>gJYpLSvwSU0<)l}3YXo~P6PqU5USW+}%TvWAmp2?sa^|Q7 z5fp(8R+NV%p?nxb)PUNiX__XqP17_WklWJRw$+2RbVRxmMPBQdaxaleM=~Vk6dj1k zN~O7dWom*gWEWS+5k!eYmaTcdfk19H!X^eF;}qNS6t@d=P5Uc=uURGU58TjsU}a6; zGLdbr!A&amP+jUoX2C;6jNyezrO-af{y`&@`QNA%XHcyM?de`jQ{f)Asp!{$w?KV! zR6bGim^GL?;O>c}AtKHGmYHP&QkFn+W|D1OaL|eoT=L77FRF(yRP1RV1z`k9OQKHjdvQJvQA&q_nOabPI#T6^p ztX;Qq#R>o+)bmY70n&RErwm~8t+#a3<$ZhiiSLnf0-_w zg(uz%NFi|p)0d0q?`Aq4P<^WJ?t0_9w( z;G=!%FM+6@&4pIcN4ESvmv+e)o-R+G{`9Bb`IJ-t?cZL94jnT`3WN~ofVCS}tz5Y{ zzqq`2U!qe_W*GcewhWi@Q%VdK);MOCp~WCGO$)ei(Dq9a50Q`;X={45*?z9 z(#01-9%O=;#cS`4(+oe^E;Z^sM!i>sTrwTzAUY&{Rpp@cG&XEpfBc>9bl71>%&%Ah zARRVMgvJlYNjXrZ8A?mcVHcv1$s>&wzR8(WF%Os^22YdMQw&kNOf!rSl6?qWjB|5s z0#>7|8i*27RR*<|q8r^7YB(oZ(QkM1(bUL3Z!SR4#-9 zOnwW;euLyvA3xdr4`{%=OePP-vgK!GRNWC9)Zg4iw)ZM+B&xcAA+DRY*J>w$TOrd) zx8&!*l;lG7+6X&wz-kI)Vpt1cK<2ttMe+oZ^h_zzIuSPa$4}6gkIQRt0>M;j2g|mS zy#cwrOD@pHrnk%#0hL=iM?w0$`D+N$;HTWHj;=;2de{V63sHes)lD<-%@<@ch6+y$ zeWffJu_kweHGZyH^Ar#{@-#;9G+{abrclwNU0{2}G{lO^U?*3+k$&-=ncCs|%JRg8 zTBY$S?Di#8a-OfGX$3RaRWKU%IqC1A4zY4VfJ@}?6zD~x14=0yB-R()gZq;OVML~L zNE|KcgW_60yno3<1-6M`Q&09wnR1Y#Cp$(43T^#w`z6Ca>+)=kuqba8J)Q8DNClzh z4V71u*Aj?j8bIqFzv5Qlt2#TO4?XjUfX;Hh^tq}-vMwLy%E9{a}ODtfee@kytb{9P) zkY|-Oz-%5?%uDiV(m;^gZo_PbWhe$x2K2tO$iF6YKB0a_zgn2GMLGB~<_XnDnK1Y| z=?d^!esZOXzE2E?d!PJ-Q5~gM1G`C8k`qtEwgGtq4X=^Ny9uX$aRQnp-x8INMvmHT z(hF(|dw5=YFHl5C=jImKVKih`#}F`TMzLFxjV4)7mKF7@h1ft&xy(Iw`sZthQ65S} zFl2Wr^$dG0vz3=hwK5Vf%`113YRBeOP=GVPg-{Ma>|&SZ>pAnCJ8IdDwg#fP7Hm~q9Y-2>_VV#f9t9ne({Uj@3?(= zGF=>viJ2qNL?9oEtqWJxzfxvo3@SfNo*SX>Cs?Ni#zO;;Gmm=23i;9Q3T&ntiqOey zaXFB?vb8D&oHqz%K=V4Ru&A99oy{U7r$Y|mk5KO9t*3DY&iX8o>oZZx;EYw3S(w(Z zp=V@rCv-p~2|3VsXc73}SV)v!2$7St#5e^2O{W?1nW{7}X~r<^JucEiF%%0YoN3q#Sn}(4v%Ymbdqg=@35zLI|z5UtsEG zFXc}j{ULS;4QT|az>=gw10e1qBQg`WP1|)bG?WhqB?8A7Q}SP9O?lqhA*Qsv;*u~3 zJk6$~?<`3R^Pq?jyH4=B%I`yrF$4xT;ONfKs6G)0+%Y3|P1B?W;i=|893xh(T=}`r zT(Pt?9WRWL>H!1Pb<-y3EE`3RM93#gRAw!c9g|Q-Fi~Lcs0jp0)9?n0Wz>_@Kjzc} zy8&(zI+H3`moqP- z)w*E(Z529lzsI&+SlS&UovFzTtVgsi zj%w|5p71r{oSqU4^oMona))!Wo+{2+-g5UTm9pI^kycYi1|fENGYRfu@**HToq@5u z$rcx5YCH!^Q`Ui)CIJ&#sMWIqo2k~doCcVM4**F-Ex$(+iY;7;T&ATI!BXG!cb^^l zh+6ibog5eQqRmok7#3&CWAj8ES0A9N2!7sUip1Sc<9nUTaWYX#F@i^Wfd-m1@F_OC zR^8M|O7)=lsV}d?=00z99XU%*yk?&hr5Q?{dKe`$06TEapq3 zMxnKc{RAPN5!Equ0Z}(i5eBlU|N{h#bzxu zYpv5Y7DH7QVid0?sf+Qd^Da7(K-FAEqA4xT2zh;T=%yV5h};A+95>=D*C-M*jyUXy zr#|H=M8w3AnF15i!J`?Mxl4=87$EML0yvqs2x>A0WEJNcM$^U*A_A~+3*~zXmaJK~ zX633?2W&imV~kxVkF+qU4hfx#Nq6HP7fRL^llp^J%7%U^St1xlAfSy3*3yc>)Ld@J z*qCGufn&YJx+Wj;fjrw6BZXk3GLtWs)%)9I&50Ik<8~#^Q8$oG-;f%@VF#jc$|eI4 zp)B{6oKrOb`{S>LP}PL2a!kk}2XS7jAXi#bV)~mRp=f~?1evnGMNRG?po?8dWlG~HpZ*h?zzBqn0cx5i#u&TU zw23yP15}|y4F+>ZNaW=V=j2^Pjv)k4Bgkv#kep#+BJMg6LSs+Z$h37`Y?=^)pfH8V zOtRv^iBk^GQbQ@>m_l+RGN}}}W1?m>w>X;1n+wI5n$x(!h%68xaAZccS|=GArT}Uh zNg!`?zW~&G!E}VQs^{^G2FUt8B9f3NKryn+2PA)%jK!>+jr0lZrK#3UfeT1tuo5x7;Vd=n~EtM6COnbUMLVB~SA=}Xg3Y;u8YiHyDnCe10s zFGq$)^l~dTDg7|Byvi)o9`1LbPyXm3uBR`L?F#BWz`*h;24H;D#9TxBU~gBvB|#wN1OYK7o06slh~qR$>ms?$77NZM%3ZERs90GX z3DYx<)uiTl*h#8lt4Y+dO(WN?RMmi(sbhsgdaXwTnqH>t^#SYk2vBH*)W$N6UPQ>u zS^7k=%Dwqp$CqfwB5>|x!9Ye8ANH*;Y&A&gqj9~qOC7^eRjPjUjcz56S?UQGN(E)W zbOs45rJsYTMJ4EC1;7cEJYm8kB_WPL%z;BSukFZ(+gC|}HycJ!Ac;!I_5;PCBoR1m zMOI`DV;G;8z#P>jFw|RujKOh+zH~2OKto>CAjEH(X7n9x*lF+%QaJK9Q~|Mz9MZa( z0G^hSZQ;2TLMHJhh&U<=7V!+qoNUNMI!psnNz!R$yEaYyu%ey61QG)&2t-zuWCB4% z)Q4Sc#a`G=+(O#wF)Ldj9gmp}Urb~CS0{}&b<;)GYxgNhCkbawN#&#V%i&CLa#lJB zQiPX7#}KbNQC;zjgh^SY>nr7#=$SY>ZWh3(9~IiA=Zx?ej->RV{CIEzNSak+0%BGN z2jZ7PZA2jIm;eN78gx?zhqRzl#w@Co(!c5i8Nr9>f(jT(;~EO*ln^;Kfg;Byv;>~S zuAvZu425F{ZgYe|85{D(43lX`+%@ee$Iyr=$SLw1Ie@2A4xu4JgDx@w%pC}C=OJ}5gJU=45Zcf%C~q&%Od-VVR5QSN0S<@BWO>ity-nMOCQY|Rl=Lu(v4z4$ zlF1AeFlDQCJH4J;y|ewS)+N!U!p(@xA(*jFky=e#G={<89_o)B&UMM3<4m9o=h#xG zl4AT``9;1h&V*(#G?exz5sicvks*@dc7YLETp1BEH233{8c1hxpzvBKbX}4-t?@*) zDP$&i2*hY2(1IIK2w>`xEb1YiR7Rm0+l)`o8ZY*WXyZ;)d3KcYW^nT@znL4)@7%R> z)ta@xzU7w908T-%zBk|e>zi*r_Nb%Qu3Hzu(=HN1jNRPaIL7Hue)9A0fB*Z`#S>3G z>4f7?Xxo+{D47Hw9T?qYa>ETbY}>JI$JXr&D_0(O%y9=Cv;pAAOnLjzY;@CJFezAb z^KWkMI$pPK_2S~nUAwmb?8iS_TAs$ZeB5y-Y}l|NA~rdon}YX1jMFau@)y6{v3+M3 zr%l@&dH4~lSFdhI?Q}A2+je<*vSrJbHneNjt{sgUCW?_mLwk1b-hAt=lgae3!wy|s zT+CbIQrNX~=gpgMUAbc6paTw~HpT69DkCf0t+#ECv0Jxx9W|q0{`9BUe*e2m`<5R0 z$VW6Gp<~lDVaK-ZKmGa78Vb}l>({P3c+;jfG+l~fEBl#2xZ#EyZo2vAeY^KGqvoIk z4m{+L!&a|Z710GWARq+p;tziCz1@5E+~v-v&5!5O&~7@J+68#jRQlb`-{ z$Bv!*mX=npTygC2$1N@{`n`q-h#=~w-Ay;$v~}xk`zF)9yLWHgu;IiLPa35ypZY!k zM}SNMn!9JrT&{<-l#am>QQU5s1%VjDB7c%#+qdFb6?L#|C!S1y7$7P34pk*~tYRTg zwFCxllk3KyvJa0>5jMWCjsQGwjMov%c*DlN`XpAcUOs)$vF5+(vg#vdMUgl)jufdR z2d{qHnst;#32lBbD%hDEVA8iP2nVWX07(=nN%A!ek zYsbY|*jz+CJhZfMMZNK9U9SyzxAH|N`Jnz?dS4?xsa;;6`yU-4n!ry@vZ+@e(j8?% zWi3z5^2%~UO-Dro0G%~=tuH+$*~e)Hk()pqIVNNY;8-Sp>X3DCDr*=D{i%seb*rJS zzq8QFh#D}84(hB-c|zZa#z}Gf^rcAkxp%C#7U1c_sPLFf>}&Q4xBlvz;QgbL!6T%k zqRQ%mbW<2Y1_KAG?B$aV4F^r9046I3WW1hU(L-y-oNi{nf{d2w7=w{^9W(Pj17W7PR1zH9gRnr`#dml9&3c01eC!++f?jKVTomO zNP!Q@M%5CCbUK>07&X?xe_5^C&+%5J)36_>PLo#fNPjWDV7 zC-rmEP*zVt^D26KI}HH2TxR=>T_@!3SD_)Q3W6Uoq=rYkQEwqdAT)4_K&*RMXYM11 zkRxotY?5BQK*|%bsHeYNtS2R-<)U-w43Q}`IrSLmy12Boch~McA@I7@>zYwJLg<#e zrfrNH#|WY8V%K%!xjAr*%%f2=nZ{i^w~X7l@%%VYK!c7EjK`KYc<#6fgwTeBF<|4b zawMSZnsx+WX=!QCo;{;cyRa}HnwEfRoU|At?XF5m`tmtJfj~^uG?;Wtm~z*}E-tQI z>>|45$!OGo0y9tIgqLHp(5_pzj))iL=edjBbhwFbX4-8F3+8@+l+%jkreR ztWW}V8m1Y*h@8Y^Vh$1j2gsxjCRwY-iHd%lw;BOv0={vkAa*2BIzF5uQKM2+`Il+D zByAZ&fI_2VfW>T!XEbz23s-$l-+L;NdfCojD(@>lzgL6eT+zj1O6+^3fO;vUVNH6g zqlk2fHUZoO)B&9~nCH-G)NS6%h(9lLjQlWEg7>({M&;*2G=Kn^vt}1H$cFxBS5c_uIL1=Rg1R z|9kYGJsOA&1%Tf7{`Wus`4=_K=(Vr?w?F&SM=^8kVi+~ge$I10cIhQYA9vj6Kl}N` zFvl>lLk>)F=Z@VM{^5nU-*LykzUDPoUHz?hz3V-ZxoyLPAN-J2t5(F=EqC2}-}UY{ zyzvb;-*O8@4xwGQZq4uC`|N-Ir+;3%e$BM&n$TpG1ik)^Z+!JDUb)mwCd*3!qgAU` z9XFl_ppcJJE#KVSI5X{VhUC(}UmtDAm#?z#85+ZlKJ zulIlCB`<&JyWjIpL}KRo#rZoOf2Y5H-gEDB?{m=BaBI%}VERzN1x|G6*0j^i=18ml)Erc`KCGuwt ztn5_VBgfl_%&h(@tlAh=Zx0Tr^E|gC67h%Y!taz8RHr%$=?yeetaWfocLu^xovyo+aUc+2f--H<&BywvU zIn}x1==zx=?ad&=6atwQ9%YY!9NckGD&-WH&tbEFwC|d*|Gr;+KtE6((*UW*X2SXE>C~88Q2o{bcL63MyO4n`{SyTb+*3Z+*Liqwpd>zPfqrd(2WMl zSzHAzoHQ**9lg{-0S=pUU?n>0>n0ryh4(Pzmg@8?0r{Nzlr2w0j1VbDUV=G_u0RJ9 z{9b2LuAf)TZdVYPgkn;a{G^D$NN0E#1`^T`i_COgP>IXY?U>h&8YJO7)th*eSr@?^ zIRx6fZ{LUi>q8e`{LwA9-@1425`}Qo5l3t~^pI!&{ofvS#LEzW4(lc;7F7^~<^OiWLhBn+`wh<^TB7!w)^2L10E;Af%wf4}bWBzy80^oObbX zkN@*0KJkg@BHE1o9Mh&G^wqC^?Vay<$FFa?Y3GjZ3-gNvI_j8XUh>kH9CpYiCKv69 z06GFqCmmmM$)z9u@P{Xp>6Sb0Sh;%j9b4`=>mFyl>J|TQ#mbccB6oqBpZw^jkNNY* zZrHG4*Y4fx)@|6cy!ZYWUKl5nJ$v`gFD!iV3;)9nR2WOANuTJbi|ny3C@yj_U;{>r z>=uF9x6fuok0{L0knvWPw+@O3{v^N&C5CG1a*qaZI(VEz;DXF*O)4u|s>?omnLmNK zZtajXnV@KjxmM#`4Fe%Ly3PeH}&9@JH$b)XU;TJdm=9Ybv<&6g( zxN-gZ+qY~z{cd+*X6Dc|fr;8t^TfwL=?6c)?mp+7ch7s>q-|ODLzkc1?8*cc;HP?Rs-~aVrw%l>s zD_-%>UF;f`HJC{p2_XuA7FYX`5zwI{Ev*f8Hl9|M==vs}DYS)24$D-oA7DkFLM|s;jPg=tKYH zlb3yLVR6NQ>kl~dj59y?KcD-~)z|#lqaQt;#L%EYvt!%#b?Y{CvHRxNzwz)#JPe@F zhB%2kx9@D)@dN+x!o|h8=`@C>(QeD9c{a4PytHQRy8nFd`@a31tJkmJc+i0du3o!( zaej;#o6x-EMK6BKf4pU3Zt)NA_khsQ=38$0(T{&}`4v~(eDf`rTzWAPICe~d82|Ck zx4-HYubf|4IQGz^Pd()>JGSrm{`bCj#~rsn>+ha*%yGw^dB$C*%hS<#w7fJq=-@+d zyY<%WX*B@A9gRnG%S)4ge&zpr>zm(n$l-^bakn$~?%Vg>Yp(s_b=N)l2~T+Md){~N zbADfyC`SI9XFdC}D?TwlS~%^rJ0E!Pfw$ap%TKTW@&EkK7oYmHr@#Nb?`fMhuhB!% zPh#D_96s4l)Is&O*n%|ZYw`qXIg-OEmY;`7hPZ4AWx>V&Wi*=BW;Y?Q6FZglb*`>e z_M(8rb!QMowx+L|PI2Rf0y>9A))gE;mDV<;y!JmOE_rIdZ6H)}PHB7gP>a@kPis zMYti0$n&%P;V=V~w^>XX^uz$Q*-6t?t+_Kb3wJ1oJU4+QY~($!%ur3WHHq_9;HnXY zN~1QxgmG+Z>-TyN6nU0qQDxa*CJAbuLQhXbfnzb_+1s+a^GXa#N1VMVQ?UV2rz^|g zL(OE~Ri^|IlAc+$u;T`~TM%U|(OsI%T@+}q<%qKfuS9|ZJi~4W^a=AtkX-__nE=Sn&`Ecax$Jy5NZ-c@r_FNn?$^Fp9)9&thVhdj;Y--PqnV# z#E|2aN=RFbnDQi9C$Yo`V8&+v+I-fRQU#)?Cb5)C(+m?*hnQX028^5XqQIzZcj5Om zl?c1<3`Uy%&U3mb!Prty%)gS{6Erh~oxf-BP}Dk&t4)eaFjm$~_i;cGd#bXsEdmD!;f&>$Tc5-1<(lp(luPHkQ6ptTr6eMEg-#Vs;W ztf0nle2xmS%8L?um58=Q;8K+`!1R}(uyg#iToYxp%A-9mz*zVmASdlgTgn8H&Y~oi z4vp7x$_`g&N;)xMH5UF&H6jcNfQVicFw7Z5P8+O)Wl_~>iz1-3r?ApwfjI^`ezG1@ zo9at5ah9~o#L54&N*M9etmtFpffBwfu{n?|Zand#; zq;u99fC2>&^U4(~|MNZXx#*(jkLTLRA@J7m!szEW-f-@@=f2>DFM9mr9?Km9WnKbU znk@b3CqF_6TeoZjsAJi_iX(vObn^0-zv4gN^RA|C0NS^_OdMCNSoMn=Z}`erzVz7t z^O)zp;2*e~wrN`w5Mo4VcJ18#r;mQj&wg~>B+|Y;yCb-5oAqnfeEz@x`##_J`o$ml z$Pq^!IbH6?|@KnT>_{F|F%1LC!;|^!nD(#Q%wkAAi-8Ogg#d5{I32!Wcs8y{Eq9z$XnmO=#C5G zClm}Jf&()s1Q0b~NKRs@&g`z3_VeN{ZBa}FMx;pT$nAy#fXJb7?9*@QAK7Dz00f)g zt$1skXKVKIy0^ge%2&K%c`|wQpFa8<-}vVLdF-FR{N*p1F7y2S9GDvlv5Rv}d&eEO z@7lHF1MhqPdFS05XrJ~MPkr&rUUu<^Kk}R3-1L<%f91Y^aKAV~2pouB{mNI}@Qa@x zbM#Sfed}9JIrUU#o-B7S`^T4F{E>@4^q~(v_`whT{d=7i5eYOQ8_Vi~w=Knl;er}GM<|7~eua~^^B|rPwk6-hee|gc1U(}46^Upi?bD#U~>wk3J z^72yK&IO9g`zBX>>Qfvs9*yp}3nbL})r2s z{p;R%%{AY7|9jv2_$NGmI*o0E+i&0Uudja1+`{~Y_rL$kUjFjMg}IJ#)30xO++!a{ z;5WSfb?MAt{wEKA_^V&@suc^1 zpytz`zT&z6aMA9ayI%6LmwxK=VS9{p}h#h(9@TV`{mwc)*z^2JcR%rfLQP9_X@1f{?TS|0##=>UoX zJV6U6!_D-t7%<~`!7xuRtN-FrGka?AHuq%!Bu@_wG`*I=HjPZWjZ=vJ*f`2^XKcczc5HS06NnA~2gWRQ~|HmPf+ zA04|*XH{NvRYf`luXnNjBRN0B9MQ$J3v@ckkV&5*a|CZuoy6T>{`AEw0%JAlY8AvBeT7H{%Z6r@5IEk`q7$Hg;iyvzAx>`R( z4kxTnL_i6)Mi?cAZLvPg%8vTO<*~#wQ9tTwD==X3Aw@e9DJjaw zEYGtVEaWH%aUjy*0W;E`GKMxbpq8UZAVS(XSJm30QJ2nW z4_SmrM%zrtM_x!M8jh_njxSpSDskETkF-YlZq$XG=y3hb>$rU3;NGf1NH2LXmzS;l zkoH{ZRI!iAr-+d`Zy}hx0v|Gq@ZE!~WF}as{p&1sVzTl{b&pCo7l3ZQVwOq<}9iZiRoM4x%vrDdh*VlJ2$Rh zKi7`$dDgwoJMTVsJ^jub)~;*k#w%B^{QKuV?>kpt+cu+aIt7Q+L0#+u)2fxLKmPHL zzvx9TIri9N?taEu_r2h}v(G+z)!H@l# zftn=d(|~{}BZ9l`InRCmyWjElx%s)ZYu288;)##=enKIg4mTv%9KoL^Y{_cy=p zl1nab8sbPXc}-2Tv~SO&9{FcKxaQhbYuB_yce(SO|NPN^cFM`8H0>BfTeoff<3IW1 zn}7YA@!U8u=A=8FeCFNHoEx=G)9|!A;?Tp7Ir`Y6jy(F5Q%;$0#~{Pk#HW&z!E!pB z8F^+DGyq%cmkW8zLTe9z8A6GSF(+ck%0n;uQYP6iFp6nP1`#*8ue;dAm`7?236RLc zrQY(3vMz>%DV$=cMY|~lylX)e8o>pUNnn5sfRZKFfo8?RkR1n$xFz^ra6ot1vM*~U zAm?1UAivTZ;=N_lBdJ)B#L%47At4dw7{J|>8%91jEi5SsC51YpV?0^(#Ef!%v{UG)4HoPYj#%oMvWwC#&u_`*XD+ca)Q zS6p#L_D2buZ@c5-i!TAk$36ZDr=D`!^73>#nT$rw^ZwzYHLF&2!23V&UZzMLbC-Ke zCWDz6dv@*HwQKj{iiMAV^rLImuIpkKV|V!BM?C9U&)Ttb`_j_hU3+(d0(UWX-Iu@c z1wwPTyPf&ezj#X9jFzWyI+_0IqaStN1^3~I%PzZY%eJimoqom{&1n3ypZ@&Uzxs6u zL=J>3^+l-Dq=IEFH#zUeH@<#Vnl@RQEWPE8Z<$UfkA2MldC)^H3<%RHw-g@#_{W}pm%DY#%kOySJNNC~ zO$gK>drva8qkd=+DngE7W&unRS5~Ap>DUN~dlD6aH&SYakjNW$@eK3TQd_RadjUK{ zsmn)K)@sdpibkB#(ma!lBF`1iOz-C?g$OqmZGy$P<#l5U51RlkPck1 z0_RnD_NRX@d9IXpYy_-zm5vf`suJ?5P)&6R{d?sr0XaNTNEcYkr3an(u3yg2siUa> zyZ$O8(#&GH6_W6o*Lyta@n0XLy6M!HOp<@CTG+e-Qt!7??5Z;Jg^a&UP^ij}q^OUL zAt$@k__8bfD%>GJSBiMAQ%ptG>e9mBZ9PryuLgN!$V}o2A{)0*;-PCF%tx&la-}{0hRH3qz#{;NTrK>PtQ`p!D8}prXjQl)V6Kg1PS3u@3Ja`CV7;K zZHwSp!Hz(4eQ2sd8>>Aq%NVf014!&!lAZz6GI+v9w4~%>45ToOUFhkd!jxB#8MeWH zjH!f*otAF_weGiKgF*0-no>EL-!thUXEJ(U*gv{IAQ~z!{f*j>grd$l7%g$*ntZ z{_FkkeCNB~``-6n`jJadIr-#{cy3|kKmPM8cJJObiLskxv%X?#-PCAa=1VCt8 z5IUZQCVb;tS6%jrk1woVdD!8Hf9&HQ{lw*$z3z3deaGA1dGV!}TzKJyJ9chA=)gl> z^NQE(TUt)(M`;bio8R)*8*cc;>b0x7$nX8Ydq4JxkG<+uul(fYpZv_{KJ%zQebjUk zw{6}2x6gjoWU>^Q4m<47OFn+-e|`AF>(?K!edn&V>(^a&`6oa1nJX^;^yQab{)y1G z6zkb)BgX0IGfC4KRC+??5)S%oDkr`t?e~IMrKJ51r3}(|E0aQ&6hOo=<_Qe-<5}#f zMBdrTT>?Ebd?5qN70Ik)H(NbhQS<*q59pUufA1AWMXhh=qZ|J z3&}GSbKFt`qINU_^4{=71l^CfSALm^WGU3!;IcNMpXtREnlNtLwd>YTyGb{l=6o>f zh`}9b)Dm#m;fFoq5f4LTFd{|fZZtPO{)9X2+_k%%n*)J4h7f-Ki=S-Sa{H!34tw~Y z{7FZc8;{20IcmbnRV(iE2lrc?TloI>f3R=ggxZFhn7En<>cEkyZ82F|I{w(>7FMk2 zI&PXa4Z2S``K0;zc?K`-nSjuaMtk<|yYd@XG2)Y-{3K8qjpyd(M&nTfgbV-h!Nk0M z`;P0r_d@`OA92_*#~!nF`;Kd_y*6?E%U}BPwjDdpzwZU7pMKir+iv~g53fTYP`K=q zS1e7Y=Us5#K?fZWnL}&B_W-v9qPA(NX_ofwz0*l2j7H1M}7e43# z)P_B~_TG5&O{vRo-F(}xZ~D#J_3Iw;kcSXa+qUDmmYNVkc*;{AzjtZhuYY;N&Ru($ zK#dLi%T^)~tx#Mla+Qm;Qy+cf~%=*waBjv%cFm z>MdmRNHo3CU+a+{F8ibaF~pFzOie4B(?9C8d9J1o&OKumDoP6gaVfwMlxj7JBd+m3>{n|+cC!+18@Mx zE*`S!;8(x;pLXurdCk?|x#^~x-t(?^J@c8*)ScZH=H~$7F2>39t?zipamOCpF?ZdB zz(*c&#Jm3U9S``!2ezZ;`XBt@^2@Jy$U`64h6PX_DpS*7+Qk?EqgOI$9d`Jq97pmnFLvFn;9Pyh!8V=|57cDyjR0z^$q4cZu)LTm#Oc$|(xZwSDb|MyF1nnMoR^tsP} ze*5AT;* zHUz%w>8ArB=wbw6b3{xV+l)q|<>lq$kGm6qwgJgr0^7E1?Utsi*RHE@xbcl|dIKiY zFlv}18tRsp2@^RZUcANF0ob=^?_JM09YES?ARQ(@KR17`v+nWfPk;7Tzqo;8Y)8%Q zcigtTw6tpV%ImMce)G+@?Ap6$Jl8HSPsi=(7eD{`hPCU_aMyK&5Mxqb<8slk*!B+j zU|sA&6o}G4W(E6xl(gqb_cfJ4Bny#bH5D1nF|U}3LA^T!9KD+5yNAj2Yj8m{p?==I zGz1~`g6e7t5ma%5;!U{pnFxfwpH|$hUR@rOTn*X(3FblfdU4!yOeqC`>hX^jn zgVFCO<6rb2Eo<;h`#7cY%LK+?FV<|(muK|a3}ZVaJ5q6y_FSr$;8Fk$N_R;7DWTZ*g8NPO1ioB*Q>2x+vNgUV^ms4Q(NVzVEx z=m7-=y5BuoD}T@L$aUsnwfEP1a1h*!Jn)2}t_Ni5b7|bC7Ez~GgG(WMBB=x0LP|X_ zvU{ZgZdU+En+ICZ!;9Vsp(LXW@j^C08!CKemHQ(k-_s3F*)9^M+GUhCDbxk^E1yNq zY!z|iTkoe<5?b${Ku(A_&7aDqDPl>jKIkXrh=>CRwQ)mn%9{RKF7}TB{pV`H+Ry9O zkklGyG(0WpPF!IIVn`V@5mCY=wt6n0KeM`lL3d{DOe$w0v?1CRW&~-Vqk12W#UBu7R~p*`~6#Qy`7owcfb3cdfF+I=`?N4LIKlhw=lQ( zzz06?o$q|d&A(Z?{PN2m`-I1%iwtle%8!MPV}r&9{k>!j=;4gt5`P`=ElS@F6fmSO zR;3L^StY8W%fR~vIg@%ffeX~ zU;m?LJmasrI0d-tV%i91adBm6XntW~I_3HKkTdjz)7`q?1oRv1!J@6bMa& z2y|T+(>g)fh41QXzjON?w;z1q!TGy2srC#E3>to0xQQGF@KTu6gyVUPCQ0^JMQ5@}5sTKR>^B&(gN- z+W{=?S=zk$*70a=Jf4T~-I6=RkweoU21ZOrQE&_#(B_HTBw7?ZKJdVU7v>j%tc3xg zZ#te#JG2z1F%pHQZJU-R)3|-hwu28o zm?<5ymB~p>FK)|#`l*Z&%Jv13W7kb1I&w2_s&(XziE0YT$Um`6*c=_j2;_@A`3mn$#Ny`o%wCoZ3FW_G?FnLk6NNc^5Gh ze*yr3I#3hAF)eywCZGd_!VwXx+3_!{jlI?Yx`(BcbvFQaw0o_gB7&9RI$q7-(Xhz* zOa#$5*H=|{Skcc8_iXhpTc`CN9T;e))jtK(Y+V&D4EcT3W2wRI^wUMAjdbVj#K_mX z|Bvrj0+|_7Lmv6O1zT{Xiz;G$>G>^Fh$ir$^~l0S9Z#3;Og-XlMxZb1%mC;DVv zP?U{YO2s7~IcZmEOew%Hp{lyi_!%wkKbS?!U+oz+e<|vit@vS{iqPEplN~R@C3UG2OEbNyv%okTAiQzV|J>yg@U!)yd$s~s2ze-XS z<#PJXf()F1(@;>oVtN8vB@eWEpvCUG@BAKOxr(z0`f#y?+_U>@-#BtiPg^=eq>R4prex$V5GXf}ZAP}b=mE`>N!cb1r;~>}3 zDt<~(uZg|TH&y*W(y{?eL~VsxUU8KSqD$s`SXy5C@6Uc_G&h>=<8AI*$60|wq}YTe^=b&rz+eB>GtN8r z+;!{L9enV?V4y+M1t4-qj1arn76C9@ITXaUx#LBj+{bzb3I#osD_zOe8@;ae!ctB! z%=48+{07z0I%|;q^}5J}kXP~&+kKOh%@TVkOL==mo6+HnkDcZkQt4qFv+XGjnAx~mJFT7CVGufOTn zH!Uoz`1#L&diOK#KAs;Rvgxo58`oWZ)i=9I{N8teuxA`dn-qpZ^!@eyytD$uzqQ2@7#ESV;s-T?Oootv}gI( zH~s49qmBfyb=%hE$#h|EesO*d03xUSDUQkG2^1)%?X&`>la7Iaz?}gGVgeQy7Z+D7 zAa6pL=F}rMVf&8lM3_$FbQ(wFHZ`uFX;&u z6}PVtV2}G!ai|vB9{21E>|C{_|`vr{4v7(Nx&x z1{lXaz@GmjFP6&8V6C_`=(EuV+iY3+goIg>hh|c5;O6iAaRY=Zk$a%%!S%vPK%B-9 z00b~6ye6Q6?UE)T^&_i>%(MOW0ZES#0E}6Oys-17F-scz)ut=StPhAzk&@IJnT?gP zSIYQI%f6y85X9-Y<$)Rdeicqm2B|EOr~I#kqv{DAlV4Y##g5b$E?*g1e>K#e-8-W2 z`~Ot$dk2tyYkQ5n3B5AiZJ)CfEdxSTs~l#FoXb=w4-WTN{z{~lWX4FN_c7iK6{<@_ z*#k&GjDFItYDAv6E~93+JBAobcz=yQXJA~Ri9sf0#nmvC06mGMYEfFQK~0PucO5{?BnRQv zr(AMji==fF+)j_kSya{|H?VF@7Red9j=%jDS|1?7r9q@3L-m&7nw5(ReJhUk$0jBx zhNAUqB=J*8D56q9hR8)?l4}>aU*+lj;4#@Z>c7R281Qsd6!!CRcIQl|K1s2 z{_>SeyZ3J2zGL0`jg-#L;7EjN;52d$ptOqYEiJ8CwQ907-Ta%IV~oUzUA*z8UytX;%X_AW9dQ^K;Jjv6OiEn4Zv8pu zo`Yms5JPCX*fkU=Fk%dOkduU>sIM^=zYyfn8*Bi+QTS)I>d%4B2Fi<34vuu zo&SUsM`WUgiI%6!$cy^Z;G01K%;})H)YgL!IGC7s@7{C&Klp?5&O1k%#VSpy_-X8@ z!=_CK-ubjszxahOPA1bEe{tR3J$ueR_w2d(xwdKVcE*{X|NQ57?%MUOZ(qg4XWiqT z^NWjMPWe~X03;VX1O$qa+QfvW0VpQuTfJh{+}!*fTW-Jb0S`F-gkwGM=bj{r%<=HU z4?XOVO*h}N`IcKZA9>V~%v0u;Qdl&ECap4ULYz*S!rXX_7&&&ihl!9*2_o9QbNll0 z5@;2rETh2S07kdGyu7q@*x`q@?FhiAq1f@R-8&!kh)1kgwE}5>`z8P!vjAjAErdL$ zB>HLxJ95;wo87Vf$g+ug2o&;;_6Y!celh^a@r;JcS-67p(3FpE8q%bGaM4{4sY7d} zj2$+`#T3dgM$Gs@dNi>-KIA09O$%x~p|s0HU`o?U+KZH+n(SfOu)DWJw#NTH?mN!W z0B2lxN}tM*iE<1HZGO@%kaYy43&e2wKSoOO-AaB~->f0ooOe&rR<)lwfpYNt$oc;`m`+!as6;iw~BXjC` z137ouCh(IKruEi4(Nua}E2d*<>5FQnMqtmh%WLk;g7l`@0m3`-aE%mLV$$?JU*s&Q z^8)BJuZX#QUY*QJZHKvI-tS|F@lVS}Mhp~NJwT-Vre5sAJW2V82b;9u8B&u1Ms#ZG zl}H7sT$K9Ni7Ti7ni}OnXPt~juq*`Y3174!C4Xyw94H@#(TiX%T7K2?;mRYhG9?kB z++eu~Pax};j3iBy^8}NCI{kHxvPC;mav*I$Wy}?KeJEC5K&Eo7f!^Wlw&QBOE3fKx z=X{Xl%ccT~-=UA2w?jq*iHP;HQU?DHFi9k%OeGHtC#98UN(7321TSngJw{{9zx$ED z{-=t4v#Uhzh$aLe?WK~=B;mFV z8#f-%O(wgh%QxM;`KTj~O6zVK3P7OP2z7xGLA>#RjdM-AcIC=9zUeJ{cJH7NrjZeu z5du198qbXu7gz4vw|9Q!V&Xgzn#cs2Ynnq3IRuo>fK?<1A;g#t&H)%rXgH>uA>C%> zA_4VWDf_OQ{Yl*udyKA18t!g+H;55ZpdVPuRF_abvu#JZ-ZY2_t(hqXHx*}9){~kX zN8?xVP$j+Q`H|^weLP?GF{uibEwP!DdYIeyv)zXv`>BR(z2L2({Z<%novu7l%!!L3 zd&=diUl2-ViH&O}~ zsA&M)z1#5<;&-uea>{c+>Qfx=zzf3w{P#<{9@CFmYR;b zwjG^+pZk3AOJDlnhd%V1n{HZMSb5T&PHdYNz=aQZ(5FB1xetH%Ltp;Nmjku;JnNnf zQAF&o%*=+D0!JPNiUe>z<2*T|2ONCBn$@dr+PwK|-?;LaqmP_)aeh3Gu|o(U&~!3s zn>Ov%Ge5tuVdI8h{pzM$Hs6BeyESP@7?$@gef!&2opSQ2tJkkd6?Sn-Af_Oreg+UC zGtp$<@~xY1+qiBcn3-b=qAe{ieg6m7jTRQpyU%?n5Hk)uc+<*-g~=p-^V{D%=bZDo zn*f2*e(eE-5Cd~W6IyUYAmS9D^8w*9I$VihkZ7A6$H7!QiTr{% z_-TnqCb4*8u*FN;$^@C`S0T5shrQ7JmJgd}%uXEjr#kOhA1O5vmp27`D}y+&9+*Hn z24!Ck@SItiqg?px1|RInvk>O!O4hm zkIgf>s+7m&H*H=M8+b*Wc=+cdB}oF^Q;RNvL`c zs5CUcBgyT&?IW?_9;@XobB-qHp!hUX?qQxm0J_XmI+*(fr>Kw4%R z2B3~1E`Q>{ej#uWMKV@%{bv1esw4W4n357z29n}CbTf+%@*E3M2t-LfWyi1qYDwm* zxX7f`Y;?P4qlP{`Nh{(vYy?~zQxPTHHHZZkg@mxI_(5w*xw*`}63BhiHvV?pRO9LH ziTe=>+j{-)?F=Az#nonL{;qr5aAbyC^4mVKlq@J^W#2Z-*aVm8R1PHK(xrebUNQYl z6|g1PjOHm3I4b>ZUg11DTV$>75H9Q{86|fhP#|guX+oXBiD>fVSR!i!Bsfs@V_zVY zHKH|xGl90n`{}rfJZoHu&~fA@w4-J^op#fXAV(ZZWsxH&tXsb>a-=|`Hm$B=02DzD z+EHklCT72=2y0*huwmmyrZ{Tbb!*o^!|@?RaA?x(JW@acz%OsSp#x33=^>jooqOK- z=bUry`RAQ?{srgV_kwfIJMV(?&O7(_fB)=z-s_$hTyXxqfB&9cj6}>#yY}p5YB-{4 z8vtn-W?CFW(}X63rfHfc^`qbw5pma0+3!J_#TJYDYR5)m&Gq2@v>Fn6{i5F(dPr_U z)xJXZOk;XHmY)OeM#lD##E20BcQPv$VO@e0uAO$D&Ml&;E!d1Ds)8F${4bTL&(EEj? zAdWcyg7XeI;GiAbxBc%IzeoY;Ot{cA%hToO{=@UmI_n;9`;WI!6PP(BTunzWabyNZ zaLA)}A|mdPa)6WbMjQe$I)unE9(>S2=bm$RH;vbR_j}XnG&Ie05<}aLn)a=4earnX zyzt%cerN2Gqt*bp>s{}a@-ed$ZzyY`xc4?6hX_dYvz9e^{=xLezXOD?|j_FK0u zF0MHB&Zi=$vX$P=vXP=tk%)*JijxTlF|uabZCtnUxD$_Wi7&t6Q%z__qfxSzA<(to zzxI)jdgSZg@P-}Rw?*cFaQG2Nblko9&2OD7O{i(6aXO6=z^h;Tnuk5=kq`Q#hu(PO zjT9OVL?LvM8_M{eNSZPSVBhlIZ(em30y^R@b`c#l;ri=;c-{3sT(fHRnRhvz0RkUz zzyYh*teH+HmwoJ$F?P(LQ6K^ZdiJxP{qToB{Q1v&e%Ey=$^?M(Ky=9Iazd2IVbx&j z5~DzoQ{os$$3v&N4Drgdkx$AIO8HgDwns_Kk2o;ZX_P8X#aUG>`IRj!EfjsUEKf`&Hg@_*Ty9=@T`$6t&cl z%JE$@u)jc&D>w!2C1U*+Q!*g6wkq3K!&BL0xd7DiTz)esCTxrhPFtZQJ3gy++Xqn5 zVP|W8mo{R?-5K)#+o|clSKl=6kQY@|ac8775#GG-vTO#c;i0YoU_qb0b2Jsh@;hvL zVIo|Pp@R(QcbctWxI+f64w#t%XiGnf%v)pWz@MD=W3)mNdIl_FFg7r8+*e$u#sqWU zAQ6j>aK?}bZWt*Ig@HJof*`4~vcPYUK|R({!M!^Bxc{j6;sMV)oHlKv-`xcxOY2B~ zQX~#&n`U8Q9#e#|3|v#9K`Mcf4q7JSz|D9(icBDM5hGxEI%z}GEl-#CEw5Nuj0NTy zpstH;2u%pxQa5Vn*Q{CzN;}6Rb^tFU=AA=w#$?2JJP)33zGd@!-}|5Uyysb6M4KpS z3RB9?i7}1AqOdFRGQ5vTP0;5d{#DT%obdt`^reny7 zP|wMk)qMk^S>7A$b^{=C#mqnVAlSe`mgE6h0rCPb5^PU##}F83x=08J5nXZpN(}+b zRjKMC4@tGvs&dsg-0@+EaoT)qLo4S*tFm^=eywNQ>+*wXVp;)FZk7cTKE;v%yTSoT z8AFkg2I6@Lrl4O|9$TmNcjQhMK+T*AxnBTK%0L;9N2783qaXix&)z+Y^Ya}u1#mVM(nmb}VWZKQfvdmut=GT)^|x%kZS$?SHErOSLs+Msc9*ql*Y4S~XV zZhj$g_mE8o9em(Hx7~3^oGzbs+Nm4XZJ18FFw*WTaGQ5T3P5P6qse3nAcPbu;V#Ce zY3_Ia{jdD;*S`JDZ(e%o#~=EzhcXd&yluzU7e4RBU;WBgw%)P*@lSX{AOhl3p8Vv` zeCE?XzV1gK{pd#@{-}osv_!OL-`@Ye{J-bNb9;8}+O+9V22-SfmWVlW=2gsV+hgq3 ztXcD~|MD*ndB}s-uU!uUcX9i+Z7+W5OZV>Cd&22=+IYYQo=&I0{KCS69{k{UyyG2L zeCpHZU2wsJ9{50X9GdonA9(-!KJ+2(x^?T;jmM+NF`xlC0nJdIx1qCx!6IYjPY^+6 zP#_LzUnlkoc65N|?fe+qz!fSU#UcE97|+32=Ec1tc#i(XS*>owD%Xu+-ubA90f zhSDB-o5JKl8+90RvC2QQ_*B>8Fs_tRSJ3y9OU!~~ET_l7TVpb#RfDwUdW8l>?6e`h zdpq+tt-fPPRjkdFX`5??M3`oKw7r;8fAxe5OnAVryMv+PRh6q;ECtCfkJWjzws6Y@ zJCfrbJ=U=3#|fONe89+3?|E0SwVC#ARx@o+DyCw1S*?<$897CLz!XB$X2sWtAlLLc zx7mMWyH_D!j@I@|BJ}jMU{oVd330kh%3CwZ#?%e=&-Q>30Ze6#2 ztpOwg&@|0-GQIL^Uu);*sKGQc2;G!0PUf;fpe{}UV(vfy(OGBR{bL`$B!uSXTYiHO zy6N7?ZD0^WS~nL7ZD=Ob$*64+z+G$z>ke2SLr0+v4S^7e8x;LjppLrdA^{CCqnmb1 zlWEs2cipsUMi8+zgCF*tT{Lsne)9Pxct1->8BkXOBG^}d$Z&=84ZjLv=Rgzhm zt_##QOc6*sKIW?|dF{5rGAL8ZdiGsDan^ROH1xA4`;|6l=g8xJX?KMQ`gJD6nL^80 zlu92mM`Nif!cg(KVFKbPO9C}1x`5QRNdg+St-M;&|IxLx@9 z&wln7fAN&V4?E)7&wkeW^&3Kyjy|VR)3j{}A=zY5q^7}&`GpaM)oa#+5E@FEaL>Ky zIahr8iaTz<{c(?b!bvCI>6oLB-hAukPhS41_9f?sC_=KIYFK`_}(> z+e`lO#aDg%TW8+=%o~1j!{U;D;azxLH%-*WT(iiLlC>B|;ZE=EQJ2JrmnKku6F zUihBXU33u;B1K66f>Rn!LF~R+5jm8u zjEn{d&8Q;|Ap{yW)vBqb8jmb3fl(qqt0&qy#%%uUVyb zQp_>OEVX7JQ<+y64KH-J&6pK7s2iu`)}1+P4AdJoIDzuAmdNnj6$v)w`{R=a+tg$9 zeuf-muMKKgZ**2}yK;-r8QEhQ1BA-irNSHrC&Pi1*PejBtoP=WQ)Xtg>kKY7(RbfM znFz7Aw;uAF4(uJNmN$k@!c`jW;>ttNQvnYEOC!?Tx%vGd22$|H$V0BLI(%MPsoalx zKt#Ev{C2(~OY2~(owd>{5(g=pY-oKbuv?m9uIr4z@CG7G>ioVrhg! zM4fvztrS`_Jw2n_cZox80~O|)XPHAU5}FdmXZXQ0d~WLbxHf2$rACy6n@9*8V?;X3 zxs%*@8~k_e9i+pmuicopFPx}*&Xxls3>5&g7cVFV&K!D}Xh{up1NEBxOu$Y<)JSN@ zl0$|;w_&rd^j4jdf5{WWdGB<03Z9HCLS2BjnFUSlRJFA+W#+&)PBBee;^-Bivh84K zZx)!yuY2^5{RhphP&Bl%uTG(;=DBGtsz$;6P{2%Jkgib!1f9e%F-ro#G%)_Hta()j z4Ve0&y@7^bhxUfwOdA>pFtLPzPXcS2#>xC>?)1Cdv+@yDI8xN-%U zyDm0un*o+=*e6*lHr-USF5ei=l-q9_t1rXI2Qlo%KWzOtT@M{8-d%C(WJg?{bgp92xwy@FamRo07A8ailITAmVCqR>mjqu4iCL+ zT8auB7<}P{4|wChzjiuV`s`;vH|-{md;DWJ9&iAFJMOq+X?f4yrG2TFiBbj}7`*wm z&CAQvZCmdEBd-Nw-mred2R`uLXZ_9J{qToByzYlT2u%n?O=wOz@x=GM=UsE-aqPO# zG^NuMCK8CkbTV0r!hiehzrAhqEuXmj@^`=I zUGIL^dphdI?Rd@V)h~Y0iyr-FkBSsS6BxYpj;&koxV>ARPA1DDYzU)v+D*?q#D0i z@WBrTq8Ph{g~d&q4u0)xUwho~$HlH|Q>XMDVev=m0V3+Bf*?uK`+#cR6ZY+%COE5Q zO|)Jfj3@Q1ttJ!b>V(jL!Qw{V0eT<@T62aR4p;bW2S$-=s5Ha_HlCF6Hszce|4CBm95cuq?J-oGh3Vv(1;dZ(m|FkPz>v?~83>_>3A7#+gY$Cu3ULkJNgm_? zl8N)4Gh6wU^=J0n*ub;Zlh(m=ekavGe|!1;-B^2OW~lZ-!$ufz>@d(u@+nO{V}kyj zjBGM*>>_sZCb{Ru>PU!21ErKAKFle{FqvcK*dY*^;f155hZQj`5O!jfjKqxOo#BrP zU@?bgey%c`o{+(gftAzrQzu(oP&X}<*6|IAs!*@s)U#z*--;oIGr?TYOgalgGc_We z>Y&>NnFPT~z70p~frkXmW++_QEqCyN{i@1-eJ%!)h;ivc&uQ(8%FX~JDPaZx^O&hm zM2~XmZfT*Vt+>#&=*l?28AB3&#@?~GguDpK(eDSwr1VABN!9^Kt_YGZC3Chi1U4`# zY)JE(eTcU2RW%NodJAwlsF?+blgk{5nh=?ZLD8;4cB)+#@t8tQ)G~KknJ^t%rCSkH zk?(D00bo1(@A=kW(*jk{xdjk zk~SJCOnhLGAX5@azbIGKkxXs0V->QfR)y107-IyGL9)`aFXAOE>JT!d6nb_eNX_wf zd1U|yVaD7YDFyYNiho76hnnTyl`_-mISh`>vUI2j5(C0*uT$E`u2L?sQd6fO5DkcX z{aEg%JRk*X0}oV%4}A#eA~T1k31|J@JwEf_pPiqdyYk9!Jm^6W?z%1nO2^K`7@MZK zRfqsHaXT81mY0{;9(dsAKKuDSFWNJ|xX3XQ0U@OB{-4kN z&o6)dn=US&a^fjR9(gQe$6e|oVgQF2rvRv-)aeHvaA4bx7UveO{OZ@Hu?qyE28a>bElnniO>2_nj0nVf3aQ6nC!u0L?9;<$ zl2C%SW>1ZQ3e1ZZJKf_UhZBZg0+-Qm#2pxd}!*S&<5tXX3e@cz3EL~`Px^$^u@34+`0Xr0}tAC$U*0v zd)}sl58=pd(B+*3;P3zL@6Np2nQK`i5fxw*nr_5pZ)kJU-;6OZ@BS>0}t46)R9L%=s^!!T(NQzyHVOP z4S6KwrMzfMUx4h8fFq~@Q;gtgM8{~6UB|2sMJ%X190+L{aU%oAt}MT`#z!y1shVJLxxI+hHR!3kf$Cq z2dsfB4K-pUNi}7MlMFy$64i*Yiy~meflRklq*K3}!f;y$%9#Dh(W2`eoebk`kO=Cy3Se(JouXH}6)Ap}%eyhfN9FvkJPv-x?)Cd z3=RwX2;;O$$eWRE_d9=#7HjAcI`q$zX*odwu}<@6c?EGRUk$a@V9laXO88BjltouEAQ4GdHN8u}bFv(&froSsvh=TdS!?AR0@{$c{b( z7|gsu$Ye^Wz@-f~IX! zT1`rv2my2L_~y-x$%f)FVYwS zA$FYCEyQjb+A(+20}eXq=%bFl@fSD#^k+Z&zu zZu!k`4m{`}a6IMY(*S@%({k6v#fACUbxjDP(VW<0r$*^JrCuri!qD>DDBHx>6G5nZ z!-8!|q8`8{(LfY8BWb&vnbma#`xP8B%adYM1-Md0Q8XIGEh@-2XtmPFtO$GEglb*9 z!g)V_RSyQ?W{x!pk<>Ng0v^5@gFku;VYQ`wmML-MN#a~-9j??|Z@dT^E~j=2w($zl30e!^CvLi6`8NkJoX5eim1(xYt?t<`T7<#Gndzrh+ZVVO3M2D?W=3cS$>s*B z({_HzdMHg!m}PfP(97zX^m7q-C_RC5^|=5Ky91GG-$bolgX*Qr{Kt;y1ac*=Zlkc) z=DYVf;lHp824%{$nsgmQ9}w5Q5Us@%aoI*yo+8mw;{2%E3qr_St>;HW?gr0NRnk~F zvX;m`mt+LO_RkE@oBU0n+L(dM?WDi*5@}6bO0x3kDV8}D^NGqWy)ISPhmyJWn4e{m z($MLr%FTPaAS%}&|GNewjZ$Mysv!XlR!+q%C`8lzI1^$_D`$x*=IL<51O?L}`FG8d zUGj*Wym9@!_eXLaMJsYYX6~>O-|JfUF$&{v%5|w)6ox=V%#kFsfu#u~tU-nmCVj|c zULlKj#t6=nRa|_I1SaXX$RQJwQ7(d$Bqk7Y;&D+Dp?_ARbCHIAZ722ayF&V9)etf8 z7_n}>3@5`1crm>aln!%bk4kX5L;BNILW5tW)>?jQDJ!j3u@V?${~QyT8b)+y5s(oP z)9j=t9#2dM0_u6{jDyHYRADG|C3=+BV9W9NmrPSi@CM6DO^76@^`W@mdk4Q zM0lNku(VBDn(dy{tEPOgUyB^ZBJ?VLh6>mFw(8OiZ0eEgY?+duH(lxpNmo)XE4V1` zOrk4;V4icJDqzWxL7)h3B6G}#`iLWwVa~C?M`zYgu^=JV^m#Pb<6Da&c7<=!x$;nw zH}Q@|>SDkBMT54; zXVme&-FuHe_V|ZC;*V1~G3DWQO&7T%KJ?H-p7#&WedC+nxO3;uG{tep?YBSoxzF3a zeM=j#YW2eT_c=cqv6N7Sj;KkyStPR4KnSBz`=lp4;g;KOUcYg}D_;G|FMj#UY0ni3 z?b688`n7eYjg9AnpIun|d2xjCFp6E8{i1WJkJ6k`{=E>QB~x?CKK6@a*_hSq5pW0$v> z$k%g59Y@4&%80R?aLZ{CJ#m+)=(=t?nM}J$4u6QD$u!4E-E^u}fjOedH_&xm7iB!` z;oGS}3bV(2_!j}pzN1qZ6aXT+m>!4#*U=vUluvf&j=Ri67Ugq;pLAwgOo8AOee1ez zG#>BXw>J{S>68gw$J}+3>126%DoJ+vM77M#w5ww5y6J>KG3JBV8k_MX4P|wpO1q4* z6yBCs3C!vqQAl~1#OX+Rd7jZz48vm}o2Vk|Y~({24nYkg#@5B6ASO*m;BJsZQXF8O z7}9hyjZ0o4s|qOHCd5p!r<=ovbUS+~Z80sYiDARQ47-p_!anGgKV^dpR_{pLWGUzs zku;S^C-Q)Npp3Y zLv6#kPM?eks2`x-)4s8#Il?ERI>nvk>;z4O$JQU;Oril?NTyiRoNw8+L_WOs^uBKu@I$(vM^Eb zk`1yNz05E56+|zYbzOP7BI|Jps~64jv)RrsFI5Bu2Y=mIg;Gp;h6xQZh|v&5a9W#< z3Sa>e?t9f&|DD8)81hWNSiu{bJmJDldzsJ^QS(M90>=Y<@58;(zM?)*)px4`nV~xx zI)U$jj@@|Am}B2G^X3pvI^=~dRbieDCzbka`3!Z!LnAYO?!J%(BQdZ#lS0_(M@ldt zo2#Hp{3SvEixA+15U=y@0Y z^v6H_;+MWSZpRl~@CS!%+O%%{y1jdse*V*+aG>SoC5m|e2i`ZHn+HH4v>gLj?v}tf z{Ln+6@T4a`^(jw%{p;R%=|?U(@~ERIG~fExH+SsVxn}K}ox66u?%!XxcFpQ8#wMg0 z?LaLx6ey}|2?Cn7jf{sr^ugb`_S$#8^IfY}uYTH7o_5-u?{egkhwa$C=bCSQd+*ZH zs2wdY?fKV#{nvHt)&j8!p=riEjrY6YzJL9HpZV6ezIA?K;m;oX*b|ODVg0(bJ9liq z`R1GV?Ag;rUYuWe&U2otTmBNb38VARJNLTp|KOla2mSe{tJ^_Ks5 z+lm#7vORDS-9)F|>uEr{1$v4YYA(O5|IHaN$<-%>sQJBqa@%T$hhYF_&#C@uh5^DF zHsB%1Noi|~R5Jt4nn^*0A|~+zD+U0%;cIhLEC0{NRMq)3h9qMn6d9|!htEe~ z!IQ|6z6#DgQ+OS?mtgJuMB=0`Rh0&wdzLJQ|q8&)95~E)1BsHn7 z-rH74LPJ0+ZySCE-)3!^<6to}uFW;Zm!Bc!Nzu%1&{vxDB%0E*>L(=;D!85|48ph> z5#u+%xv61B+X84B0L>`3!&nj7K{Soyh#G_jYR;V!m5yK++UzoWEOj1EV&2d)CaFh2 zq;yE4nIiigKIAkO08yogp5e8fhOt(hhgy*k>_Ac;Fuozf`z1ZwEf`xRL8Y8JvyHvP z>TO&k|LdSb5y^1gPIlW$4Apf+V<4rE%nQP<>_E-j9H+txDZ4ILOAo&_<&Q;i4adO50&PR;QJ6XM@<#}0+T^KqXO!N^kr-n0z zAq5ZmvSyA1&71C~kbj}v=(KIFX_Iy!1LA+=66);A+7pzRhLtB$RC8?f?JeUV1`zAL zxXFJhbPJ1ya~|b|ke7LpX_I=B6^>R3n?)0i@)(2~L_@NSt>oA+z7B<=)(p?b;9Ka46}@cLy}BFX&R{*`Arp|%(U;$`c>1v+cKG#N5w0ViqfM zsyZ_wxFO=$5raZZzJzdY$ix{iw58fdttlyrQd|pVNClm)p46POwRcaNlm9~;P)-{( zVwwN3Ndiei-~BEwARe1-Sy7hA1)%tQk;? zW>A^yj!vmjkpZR4bozjz0P||MD+~9(HJA zQUp@mXv>yud-v>Kns(=%cflV$^p8IJv5)?2@7^t2w(s7zYuvWuQM+&V-hX(`b06@4 zKg^geA#vs|c1*!8O-gx-T|{`n3!Z<+mMx$7#3usbs&9V%%CC3hW)zttx|J(dz5Wev zI_s>nx^B`mqui*5i0IjW_qV^e@y3sR^wPzJ6+ivSb9g1{K9Ezl0F$&W-|lnT#9yNMkB*wN@MH%JA?>? zE~fqOx|9qOGCA_thjYG z`Dz^dD4l8RH@g4nKVX|c_P3FTT83ERdbq+G4*T%oyrOl0 z-KARzfS+~p{bbux4a`U$6Qdq{mm2@s2zqIjs%s6j4B4JA+hw*vZI1|f1zN(r)Zk!s zM@Y3IT~DkOmdF&i83-BGAHY1oHcXi+xizRhJ>kz^bsK~noe9Wmk%*m48t$t)Q*z*` zq;x z^k?aognvm=k6`X%44pbYU|7RbF~VN5T1x#jU&2X!lhErCLteQOJi@ZcY11mHFYu-L z{R&(P@l3N}ey~~cLFptDq&Xp@LB5AwrmTp84-}s=C^{HA>=^+(^mkZAn-zG&$E? zCB=%OVWaEnv@wObW=t>}o=C?gEzt!SZtlWxE@YkL#Fr!wMemEWFjKVV*fv@#R!huc z5Zx-2y7Ka2p(Zt70{iBsLtOP9atBj`Krtq}9ST$WC}g-`OEp-QzGxV4K=+HFkm)a& z?=kT+Kr}7)ub3^lo**O-j!Rx^sZQd{T&{Df-3bnm7S!f`D7n@mSIJnGg;tE=9AnN! z`QK3Ll>zn@x1P_?W1r3iOJE}N7Ep#%aza|8??DmK+Vu7MIcKkn^wfA-Bt#8LekTNP zDS^CDnP8v-@MPHG2%ANXrQ$qiZH2(`EwQ(r|LcisI_n2S2!zO;EbXBVo{9AyVJdh9 zkR&u-B*Qoc-q-;}7~RF*$L7QfAGk7Ta;@qTBBFfW8ilTl>(;ON&;NYai(dGGQ%^dz zX~u|g#o~%nPdW7!uYAR)Kl7vm+28(E0Z{|KlJ1*pr{~WRA>{10lw=OoX`uBT}T;CBicRq&;N=h1b6JU*7iC zH(qeTeGfeFpbhIbEG(=z>7)}M`j9{V)TclFhktng7`rBnw3%rb9h&f_*T3%NFaO6o zpL!Zc%#G*PtXn%jo`3!ep7)KfU-^IsJb=3x(vBpVZ}He;j=t>UA3OELlYr2KcGc>& z4|?!Jno&zJ0+AC0bLo-F-zjP(eaNARCg(m$7fMhF#fy}gbWAK(vbc|4>x=83h6m0q=nd8oE#W0 zArAJN5@4%Lzk5VjX&Q2thMqLPx$czzKObKr8~-FC9hPzA(MNs$e?EKhB_AHojmlhE zHdwPNwf*IuDOSuFH7X4^%0QVICIG>D3=DJxfE(rz)BfbdpvYb(IP_c)M%3W7AuE*i z#>SR$K{}&*wFPq5SQbmE>Usm~I3hA?RNFuinb!zhh7A<6Y8JK36B;lLcCb?{XOsc5 zXbb@+cgi_2hD1w$HOv^$`kGDsyVAZ~c+@#hjzlpX18+mn>DfA$UnZ;)ln1k0g*s5e za>}#$=3FF5%9fU%098Ow(%NmtkfYzN(yKYABGmJW2&iJ$?kOr)jOnUl-2(N_XDj6> z#oGVD_MXC?wwT458<(x3P&KtKvBE28PDsh}W*FSde^RlK6c0+$ z-9$<|n@tgkn(XXGP&&gXkmHg;j6Uq<@UG9wLGF4g{1tkvoVzL@t$_v~*{XT@iPCS5 z9+~9fo?LmZ^qWvkFINW(YANnA0Mf&2k}eDhy2}wsY853t#3d{-;*14^B`;!zI=D}m z`GDFF5bD)<1KBZkRY}mOcpVN6$qbYQhIDQ$Kj6w98Yr7qhTciZ=|VY@NxC^DYIr#{ zRQHm_sCoi9g*Z(YQckcH_T=_Z(X%1P} zKoKV22J*J0P^Gh%51Xb`Vhji=#X9HHu&5}sfWp!Y$aQ|aMN!ND{wFc8&etvPhRnIr z25qv=h#K5U9pes7uLv+~^jK6fI)Zsg1-NuABu_|x4}G$n=`X7ZYBD_7RZyv)GQNx? zm{S%J^wo=e7pPo0gmZ6NlIyEJB~=vA&(Tqj2wRFZ5&3(xAxT=ZJ-3bpdMt)llSTM;Cvwjf)oG5+I_hdc18oby~2Ll)A7 zk}>DpB$JBiEk!^K-Do^VL=82Z%|gbNSWrZjRu_kR$Cdl+F7~~w@uVy*N%0FYK5^JM zUCww|K9sikg&S<%b8nTZj5yh{-DSB-uv>qWdJ`vA)`BUphuywJE@B7+B zX7jOf>G?9N0Ir|Y8^*CnvJw)#Aw;ZQy_&tZAu0TWsXnIs;?d^Im4DC!AIZa$<9#ZJ zso+KvG9;vYS4w%WrL213Bjpe4BfJUbGE*p>7Q28LM~azIKRAFv zY5inbB%Yd5IlCe%#&0wyqZt9PbdhpK8Bo;7^pUQzXHc0mQPxt8*F9o}m{WcYMRROk zq|6=m+FSLNroYM>9Dq@_oiS42T`Xtcg@itGSk4ujHF#)E#pa4`gDvTA)ihDwd_L~N>}h7sUWGLe4x+v~XbV zy0YVl#HKQnVN4hSYP)S<#+xxh1XKv|IMM@(y!CDnP=I+u=gFtt)AhVv9N}T39JV&1_I?JVAf4YBp1yS zFmUVd)CDu^6l;EYkgl-a)CBj8MWh~P+wzq;Y6ePcQ$K}ZA@3&@I|>wI*NkY>!J9T6yorH0jc7SgAeJ-h869^Gnr75=+<|%2jsZ{% zXgGCF01yKOj?-yq+VTAS#`*aT2W$j5GBL-dZ0_NDApp$8+%-+uxM9P_4I9%lU6f5< z2;eMVl#UjQVD3T_jyUY_#0%~^YO+lsD<}py6eO)SnN)oJ$8`fa+|$m@cS<^94f|a6 zH>ZXtWYpqxi$Bh;sN;mH-yzSN+KgxzyFQFd6|e^DjooD=jso`{kW76*qf~ zUc;A!+!TR}91hiq`eJTGf6Wtd%2f{4>vhG^>iKk zKs8U~ZmM()=nxwFobQfGnq^gFR+<_M?DA{lZ+oG2ila=Zd@l>_xv{LPHLJo+`^9CV z1jud_E*FWdgpgot z;bKNBD;F^j{8dEKUw3GQloCs_xf7*9AwkK^?|o+E%CY@xJp!*2#>ZtbdZu3OYX%vn z`Hx2kPGONARqS6k$XkwgvdalX^!>wvn8jF_0tvbtLLXM+(ubvj)zrJ1x|0Yp^wnix zfsxK?WR4Vde|QA5M!NLl0A$rC^#7jCFx$v0%8y|8GTm9Xu7CVGG=$6 znftKmlyOb~z)h$E5np+CXj~lE*jSQjcZrTbQJYmKq4T3Sk{i`mP%Rx zD`U(E3z?N&7dUA>F%h~5bmo}TA_BHrO7LY)P%5lR4b9W7Cf~&ku6oEVawRfpJlEP* zWW}x5aw&1FeDL=(wOp4c>rAS0h>%a2Q%dVR8!&WoiGZ9RRoD#x6ez_^Rv& zb!m$4Vx?cb8VjXCC!{KFxIQWDk;eE-NsEX%RQzFeDKu=69*t`2GQ(88v{D;eCW;~w zj>z0!RUfO`+MYH4YuQYMh?EUTaAPcG6qy&Tb7L0I8=A!!RlZHI4;2xv!ODE1R_3Y@ zZu?g??WJAiwqfDJ*kiAmc=mOoNWjyRpPbes zx^5k1n)R}_Q}!>SQUb#Siow+>KCtH|n7RW6gD0ly8KzLS(8!Ik#K+oA)(5NUSkvsf zz2;W$+3E+w&fg>xr%IkT1V}(i>3pMx@+ssd%h8}q`E404aq_BF3?7z-dICo0p33Br znRpgw(gT17uyx+V;xrZQb6l$*Oh3tn9-JiAlou}@k=(H>*6t8|c@oEV!o?+BGi$V& z+U--Gm@`A-`f`#Q>aTl|8Op%XC;Fzpw|vGCXD$%Hl9NzLv`j?$={}7|Ruz=tb5%;8 zT;)J+wgzA+H&iweu;s}Pn5mDoc49_a6=^o25nV2Z!DQPq5D?7>5^na~V6YC-XHVMX#xvGU7I4mmkw&&a%L-7?GP0r_^> zfAe+j!9$Pm-o>gXxwgf%Q<9a*#J?y+iBH+dX?x0r<#m*$^LjDQwi1N@MiTRi39fOt z44?fcrn8k@Uz9&XuaK7q>l9SJUz5(CY1H+sghhJ9)Lv$6Lu|?}1VRZTHXIPPZQb^Q z7rkh@w0z~2U!Pl;Ti&;Hw=?gWo?rx`$Z1%{q!|Qhi|{}V6VEVsFmkE{hPJJ;1ju}G zQk#xK3S}vbW)mdI6%1j$mvxsw?nomw>1_Mg0IKhEL%Org1W1nAkeLlSRcrc;>^RbO zG09s1rr-dLzY~X^-liS_WabPYXo!VLP|;Etpf3CQ>qEBob49oI~yeXva=obKJ!@PIWbjLe~dksS5El2M`lZFkvrL5SdB zh8J0nl*P6*Dl%`bB_T+aXMZ@Qn4}pwW};wuX96O^rlMbcKET|sT_*7)D?hFNXf|@v zs)|Dv)q2IFKT=QrXO*Q3GpW;?Ko%NivXAqBwYju`Uxw{p zc8#qk;d{JrEg1Yz%41L^P-*a-w$o4b4xq5_JLr=6>)rq+lF>>?Dutz!tG~ko0~9>2 z+e+?o`X$;tl>26TtIyMc!cpcCa=whp16&%SDUFKY04Bwj3U#g=FN+QpdIFdKk}j>l zK)5mg4#vR`pO^vxz} zl=tM7o|M#SN?tZ)q`+d@DY}G#UU8i5bqTQx*Gh$nbpe6F)5-Mm%Rc$vpa1OEZCeTS zl9#>o#1rqtvC9W@NyrTL#0Lg(03s2^o{&)Ww@=|P@nm1g3K9!aQ~i)+jIu!;lmym{ z-&!QeX>Iz1Lr3m)Ox-RXMuqZxloG9)DLNRU<$J=tuFDDR`5fvRC73+RxVZJwlq%93hx<2?*dx-i$?FUgwTF~}Fq@f=2xor|hqJe&+SOs7Ce;zJ{-oYDb(7GAZR zh$eg$Hb=RhA&h;aYv^Uq0c})yG#}^DXRa8Dq<*@mcXWkFImvVorGo>Y*|_?EcA}%O z1beizd>kb4+S^e1qK(KW4Fq9L)e7G_veyBWZM(^dvpMS1Ra`*TJ1oU2dsVC$Oa6{p zWlifCXsf+g7h5Zf(i63z%-Lz}_c4Q`<9DIb`HRs;lEw6O9a8`WM1Z5`UEz93hUw*0 z`|kvCVf}p#pIaR0qp}NUL1D$wR2&%FUmzl5X;oaQ@5u;^u*}+4HIQV`l1hcK=~{E~ zAgOe_A&S_h@X4!UA$!)^utEyU^jo401t2lJGB#BykK9YS0+9FkmNNR;aF*C)ajiZV zgGjani{3HkZj-pixwR%2qzWP!jP{gxj`W}3k5yEm@bk+8ak&`MtBE*f0MQ<4<})+; zIY2#acHJ*^4`Fw|*);r|lb=BipYfyjQ$a`@ZTO#l%BrP)om~xT zPs>#mU;+k@4KVb~`Vc_ujkfuw*gYgLssuACwoeVdZb4ZL55o$8>&ZOA?2Ci6BNf$? zdv8$l-%u3FHr|SoeD9??4t@q;0|UgE4)YYT|81=B3_Fm%76*s|n2BTdubm|?wvznv zRA=Yh+zVXUxyR#RDSTHoKe=kh2}Cc?TJm6**CkQMTj`xfq}!N7JoQ zaJJ0|A(_|IuDNGr{fem$a22`R<+t@S>^oGZPo#l0$>n*<^U0KUt1(2&+@C(a|4lMI zfm~g&^Eh7pO>X`GB>GFlGdDyU#FyRzaqm#-pUQHO001M~yO1guQ1Vnc{Ypxg=LBP3 z)er~-*4^3?E-}Eiqv}x-pilrRYvf9muE`Y~CWk7wn4BA)8il-e)$l>2vX?Q#0QvRB z@ZSlZwfWeOj55?~Tz;yE{J?ArslL#<_3Pg7#y6aN;>myYjAvZ=jjuoEv5z4%Nn~@< zOp;`qphl&HP=~=$)LYn8wWx48mp3r>7i@1)mW*3n@qk^HZv(UBgALQKQM;Bx2+U;R(($1rb|u)5C2%5HYNSEpTe>?U$ zIDiZ@u32am7s9pP0y2g{jf%JA^d_(g!dde$AVUO>ko<%W++__7;202MN>XiNBGSIj zVznvXDM#0)W#xGiW5`}7T3l|DCT^*Tb@IY}Miy(4)Bj3XM5WT&P%eqg=3QS=PyHdC zWdO+XAwYc>=ShnjPe9;c-z}fPMQK$t^Q+O((<`G-bOJMlN(_8vl#|e~9=X*D=`Ic! z{p#`jE2Et;co}r7$a-eXK)Q!k>FqtMy-UGB>P=(h96l zZk8#Prc@PE@83b~u-9kZj-nOt9jQzU{W}@oSOUjJUQIQ<{ih7Y(l1q>bgHUnPBH~n z%!j?Ap8OC%GLa|zf9nLO@>5Ju<@lJp&aYsxaHx_GqaDa<9rA#4J=2xa{ig1rhLzp3N^jSt*(wsv zgX?Wv`yESk^?(9uUgu!)FZ14XrJD3qwyq3>08GV32-Qks`s+6uuV^g(eXsisQ-w%} zoP&+EDRnd?i~Zc*x)#E4ujFp%cbukp*b;m*bf&M)8bn_Zdt@<)xI>lo~@a)2KZS*$)!VjO2ED!^1pV2MIP$0R4PFe zdGmh9K6}-dEmh?m-AWF$hYH!O+;YM!{Zfma+bYAnf>`1aN~^Wa%6HD=P1T5s3q9Pe zo8Y;rD;bK1Ucka{7j4kmylV_)VnGN2jL13hJPm2dY_U-&bK*N7hBGA7uC8#f&NTyi zZx1aotkZJs+Axl8Cjy%%R*2Ud`K^>AK0r7CpPeo|HRKPrS?#X_I012T&)MeH@Au$u zChO~uv#u~bIRuy{m)52x6YMfg_foX$-lfVR)rFDIKA2l8Xiof4x@N$%K39q^M>KlN z%6-$0CNvQsLYM4i4pUG%wJBpb(%Ea;`ktAvt5pW1xKD#a8I_@GJ-jxTP-J6>2lfq7 z0E>tN?M`&b=J;kwsNZUqP&i+IH()OC*0jw7A9&#(-2V?oZHr{+(n_|YB< zdVr47ZCOo@wG~o|6=Ldb`RjiUAuJngCM+I! zf}52LRK2T31oLyI$CeM1;{mZ#QplsZA-F2on5*8s*+dvgvIT(4OO;ooU!A)tLs6Ne z26Wg?wo$pxlH=$0UlodkKT<)y;nE#gQ`F0az_NWEl@g@K`ioYQAw~as#Vac@^=Hsj zXpytf%Lx_x8v7PSI*DDORwfvjvB<^#&O+%t?1As@ZK|^G(gU3TFsM$82qu9G$@Vdz zhZCl!{1VdqiHW`@xqV%m`Y}YMSXPImzt)Jka(G62yto)F+Yc5d!cgQ}TULK+Q-w@w zU9T&?Cbh2F(^=guSs!*!PvZSlY2Z3hObu%8*}b+h{hU1|FJJ?eu>VS>ky7F851Bvg zN)siSA=u?bkuRh2j3V)@ZVl(n;!IfFrA>--dOe<@FP<8n+0r z$do&hke5Wy?iYQJ4ROT=t0oz`G;&C`(Xv@^k+&ePx*|&0rDvb)0=VkK?u$Vr)9l%@ zr*xI)wKW5u-b`DmqBO;rRN~<^8pa9+TV7?2XDy8_K6KT)?g^zYlNFg0ZZzNyj4tg7 z4FO{r)CKOZ#Hv8r+7aIYmWFh7$dO=@^^QfvyJ&U|&8uZykf~k&r63ovY=U zfNB){92&D1(v9a}a43K@6{y!O1F@SSe}?-lVe{S7VSd9k%%}jVy-#->S`)OTl+iu_ z{~v9CAG~e19Ry)(?dyJ?_q-`CpM@Zx!#Y%$-R;JTNEJ31&NW!l;_;8IFc7@ z=y);n11W@YE(@5`iBLJa2sQ2?$uOkjE2`POB_#`{c{k&{8yOlciQ0i8XT+jd2A-** zy3Yr(k}xxh@e7{Mlxle6)u9Y_vm{^Zs$YVWp3bMjbhpUK{2tdX@N2DSsbB#DflVx} zKg*LD6l7>OVYBE3fnN{o3lrf`b1qy%Si)`jbM{Kg@LV7@R+N`}jl^Q5DsEkpA=ueT z@UsM@m!;&>qS>B^I;nh6c%tiAkzQE(OOWznp=>|h(X95g8okRCB1Xu$U9dAR!K4cy z`??H@=@=?^(1TEh%uXWT%`4De(}+j)iBxo26&R}JbFE`WOEu*W3PRz*s+G$D~cscAf!%$a=nT6+u9#bpr&cnM&l^kj5&t;;{`uo7PTx2&sxhYp=@8 zD6-cR#2DZc`%hYD$uJ23&U4N=>9`%QU(p1_14#V_jSkV^URDiL{~TB=C!?9)(Z*=CjSA?f_!|A{Mb<_I#sa9IEZ9(lPt^n zD3Mz=y1r79a)FAMMNGFv(UkR^>ZG>4P>sq&mpW?pP!zNXuy``fI59KAPY_6z%a{-t z6^4))^{^eu(HP{lCklo6d&tiGHdM5p6HW@b5kP%oJuU_BH@Tt`t5Wz^mb$E-mTC{q_U%=Jy<O_`xNVnYup~tOn1j-EE9Wx69Dcs&j}y;@H@BHuYn_O$IyeR zJ*S+ZNJ8yb;agz>f1^uh$_!&!j4s%r&3mme>6p+%k~ zI#+O%j2#adiK@NgJE_QGzu19zr7K<`s{YsffMJP@%9m*1)S(PAddbl;(JmUrQe`7u z#Pf(xOxjmU!?UoC!9wjD?2A&?TY<=Zp`5>r=;jen7q*bd{iWjAO>fNnl#abru7VPA-#7ki}Q`9G(bv@mg$G1}j@Q0lF;X zK{qaSt|rpU2qDXf0x4oXlWnbD5nL8h3+-qRMQ~b$GndXwtu}gy+3hFb(dL6u;EQ;W zm}GV9mXH7jg$>Z~N6OoX@Eia&KN^&RqCEZ>yAt2`tK-&il#a1i0Of9B8~>;-4IP06 zwMRNjNNfLYJ7gdO^qA{e7a-*HZKe~ew(tNdAY^BAl`8f`#msTK>{V&5R!>;i(*Bdm z1PlisNOp-P5#UKUNv5tkU6-oK!OoK@o$s4S|r>g4%SB> z*)jykE8%%PCAV|hYL9K}o#{E7v94Pn!-y*^uIPMkIMU_N8~0&I5nd;rJjeB|;-FJV z&Xv0sP{cEi5T+24D^Mf^Q>Zh9x{A|KWgHZ_CJImMm*qAuAeo&$B`6TZjx$4&46Uz) zlE%c0>JO4j3)*QSQ5{j&dF{dWuoD7tgbGXZI4b_qK$CH`k~X`!yR0C~$rpVn@GcBQ ze>qC6#3JgJ4Z0|h#8oG&JcWV+!S#YAzDf4X0FaF*1A9g}kV)JcQZ^E&Sd+ZG17n9S zjILxuQ|2iADX^!Im_)Ou`Rdi}{^rg7JVj=h9VNFO%gh`}PL7C!*%Zx!@pL#^@e*DS zB$B2G03))ns*b^!806S99z+1JuzeS<0SPn=a)1NdwEzIwz`MWy<{0DCpZ@gy{zg`1bWx0( zn5h>8Q|uO_r!0&$FUC?1Fd;M(F&Ui%C;CINH)2cbv)MZN(dKV@9?~li#1ZS6fe0E- zcdD9-(0Qki6NnJ;j_3V6&-3G-_;_wb57L-H!2GCcg1}U&ZEPkaa8BNOLP}zt_=p*h zbwW$JiW7F6FxGQJpxVe+S*>yxP6|T79jXUF=4BPwEGG3@84#C}Fr8CA(o$u7!b~pw zUFDU%k8~LFWQn3!PFV=z3-T%#JH{je=8rlfW*YLjk>?6BG$9%xZINa*?5$*>8k^Ur zh%UnjnJ$pqP#MlC>PbeP00=+xnNLrmcR%#*aT~ML9kFCDI0S{9b#8E<_#90n+q_2N zMcNELtV6^_FS6byZ6iCWZWfL#NM&)0)xXOm108g9?3=a8Z&1|~N9U>vMm#mc>TVqe zmsh<6wtR`EBffR@DJ9)M8UbF4ASO8gz$-Rp#Ukjcj)__jHHGlPI}&XQUaL#AUFQ5C8}4=cJ!iiI-^fe`_D$`JX5(t{IjS(-ov zQ%6j-<5UcSvQ#XT9O%6A(oM@k3EEJPtpNG*Mk%ZF6$ z2noYpGXnAcE0Po}+cGh$aYLBVyNaRUkXeR>)YmAmK@u#;0Jw%STQ1vzm>qgWROlg0 zAb@!S0O6QCsHe2!C)sq&%y=?-B_MX8r(vQ~l@+@}$=#Zx9+pEJB3`-D zv+yXw-@yW1up>b~%4%<3a+$ukO&0Ndcx3xbv*D3-omOUyf`Ee@g_@VGN?~^Ou~~db zk{pzC@Fva`8mkn*<|14aIr;^7sI3`9mFNVpV`wI*{cvX7B-B3$fG2;V381mk0;01- zFqP*!MPL|KDWxAIGud{9T;)7OUIE1}hV~{*0-Qu|-n^knuV242U=VR|<6-Lr6JYT9 zHNDuK2Ju3I(i6$JIXEUEiXCWtp6HE~%X~*sBtRgRQck6%$vv6~i`SzHq43u#pj4Md zaYa>51R#7jS#((ClmD4|Mdt)Kn9&K|fA50{@QIIqoI3@C9^c*i#cRka-6op17nW{j z5oT&LQY452Gaw6=v>T3s-=TYuQEv(Im6RsAtzR3rN}Z`y&E;jW8Qjl=JxrFln6b4k zGfaXPw5lEEB%=V&C+p*@9z}6m(DJTIhLW<6L}I^%Kk8pa2MV#G%0-=Ggz8Wi_L75p zgt7=kn^yR1BzGno5}iykBs6SC5o9`#@QF`;@_xQ~@BPo5=ZOH| zzSoI=9E2fy!8C~zo>mNk3(J6Vor;5owmuqBfL0eFE<u<2op z7Z{jS%IQ_N@`?{I`4I8b5PCE;FXnk3d`iQf`V%S9gu9=XikpaT5;=olX;5uja|Abs zO)XN?vX%Al{6*J} zqKt6O%(ByMU*!g3nJYPw&7a`{GRv0Q15BUH#Ep3{=K)zR3zV=9xi-UkOs`r~8z5yR zk-UV!ER4}?p_mU44q44PC!IucT1E^cbe|5{`E~siO?``olXto>TDk$q+<9MF539Jk zs;Ex;Ls2LecV)pO$^E-CUXng#vqzW?P133mr6jhMkdjP*I4%@Jql0A+VitqHHjxeIAd#~O3OcoWQ~s-~!n*s)O4I~yk|Q1#6eGQbj%Vui=OmHHeX&pn5GR7pI1m6~ z5=_LwjDZvg%y~>ZYfbTQ3@b$DxImzCtO$sO;8T}PPy|)%z>5M>N|9F87t273Ws^!5 z;?bpvoP9;4J9wDL$#Z)I(11POz(mY~2?I*pt$}cansEU_4w9(60yX_iFPMJ=DE`eL zM9`QZXduSggS1StMlF7KKe4r+h(_>|vdCwl4dl+*2D=sJ4GQ|%U-o66_j#ZH=6?Ur{@*_WKtLw}AQ4TyB}_y(`K$=h{I8VB zcxugvi-SnLh_*f`M2ZU1o+1K_xH+g?ssft-n401<-nkV4Q5QUPOGkJ;tXI?UNMFeA z7>0D)3``p;>9N=|yud0<5;#m7a5_Y7z?n_7L6DMhcx&r!2cmx*LuG?(q~(|}75*3$ zO;J$DNenl+3kL@Q4qX#;&=P;K1*^p~pCtF(DCoj%W7-l3@?>Ft zh#dswA$cT1tg<+$l2jbRwm@Vj>qC@kLq({Q48VYK@Td@;D#*w9Szq)8_cw2T`r|*N z0>CzN;?jifeGBIFvEvdKVNp|)&jl3`dM_J#Z`n`Fy@@GQtnva;)=3Ad6>Uasu+#ve zm^CS1M{|JPoTI(cpQ>~7R9k`8{tW?Kr*SR?Od@&vrE%MHlPqD1kL>;=*;YMZbAnak zlK$U_S%H-`HPf5w)r_+Hw+ls%QA|X_%tSyCrwf51lf1JYM!5&o9I!8jXfZ$Cx|sm* z(?9*w_w)S9FaOG8+yDr0EXRy$(usi8KPh6-6oW#90$kApg8N}VN|S5zq{}w8ZL;Sd z1UPsUQBORQ`D_5_4G<9O8AjqV^m?ol;$l(RTMgTqP?jN3k>nWHx=9Pm`(U&OWbhVX z=$n#(R|o)MnRBwfX2OV+hzelETiMt1?5pl$@qoB|NFallcBaRMFOHh*cJ@)->-e$S zlx`acvAm+yB;O=6I!nb#(Ap-3+`uBZFy{u|a4~ZzaiMzcVXC)h&8UUi9GEh82}5~7 zv&ioh-ovFb=N=T09dIX;*z;g68)FQd)*%w#G~+%5TL@m^jIzo{*~mZar~|l!1*nAL z(pYqcc=3nnd0;|4)6yV52<-Sa;VFJF=FhL0kNjmS9|>6cLZM#{%7|-A!$-z#BGLsf zK){IF^oY&deY(uFek|M{&=+amHVWNq2gt?;*^L3&haxdcQBAIlZbB)w9DrVJ zxHLavg+F62DLqmrfIu~7tkGCI7zUUGrnQ@q>buGWP!EF0I!$uLioA@D*cQ&HxbkP$ zc#7T(R4#8%wvgMkm4`G*p1A&#MZ7_g`8u?#-KEH-z}ii>Z`0lgAOMbmc)y=t{6$~% zb-&_Q-0yGx^S}1j-@JK)$BjjVo`Z6~GV?AFKC-F0!QPxzM~EArswVwKlz;r2LQQF! zqMr6l2VBTw2o40ltrrXPtDd!g_4Ja_c^)>`^y)jGM=qxc7&^&P&=)zPbB>9|MKuSG zGs7Ur(M4=Pr+Dn(uMW0uq!oEv0k9TB4^(ByyOBUJMusFp8X&EI;eik=!tWwqRnw^? z3-U=>GUmm3JMjGvKKOtA=#Pxs@il+P-|_0zZQ`VI8YQ^jV}u)d3jn+k@J8xsl|{=J zPUY8Ce(vy)=t9sT9=>eCRWmLB5QR4~Kl%B4>!N)Uz@j?UCq%@9ove^x{H;IttH&7M z^F7~liuasqPDHZZQjMUbT0+S+?(=&~CcOfgp%rx?gM^YaFbrDlRLmy@C+LdI6gZ

2k5)ozh79lPM6R*u0 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

(>2`E~9;CS`=L-+H|xBT9J{Coe*_afo1 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

l;P`jJ_ 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

3jP(_biw&mdV^Q-U&`n_O)!QeBS<=%Mt*r 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

bA?}i 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 FV1jC`Y%u@; literal 0 HcmV?d00001 diff --git a/courses/foundation/web-architecture-101/assignment/component.txt b/courses/foundation/web-architecture-101/assignment/component.txt new file mode 100644 index 000000000..90f9f620e --- /dev/null +++ b/courses/foundation/web-architecture-101/assignment/component.txt @@ -0,0 +1,43 @@ +1. Where is the recipe data stored? + ->The recipe data is stored in a Database. + Examples of databases you could use: + SQL + The database keeps: + Recipe title. + Ingredients. + +2. How does the frontend communicate with the backend? + ->The frontend (UI) communicates with the backend using HTTP requests over an API. +Examples: + GET /recipes → fetch all recipes + GET /recipes/:id → fetch a single recipe + POST /recipes → add a recipe + PUT /recipes/:id → update a recipe + DELETE /recipes/:id → delete a recipe +Communication flow: +Frontend → Backend → Database → Backend → Frontend +The backend processes the request, interacts with the database, and returns a response (data or success message). + +3. What happens when a user adds a new recipe? + -Here is the step-by-step flow: + -User Action + -The user fills in recipe details (title, ingredients, instructions). + -They click "Add Recipe". +Frontend + -The frontend collects the recipe data. + -It sends an HTTP POST request to the backend: +POST /recipes with the recipe JSON data. +Backend-> + -The backend receives the POST request. + -It validates the recipe data. + It creates a new recipe object. + It saves the recipe to the database. +Database + The database stores the recipe. + It returns the newly created recipe record to the backend. +Backend → Frontend + The backend sends a response: + 201 Created + recipe data +Frontend-> +The UI updates to show the new recipe. +A success message is displayed. \ No newline at end of file diff --git a/courses/foundation/web-architecture-101/assignment/edit_recipe.png b/courses/foundation/web-architecture-101/assignment/edit_recipe.png new file mode 100644 index 0000000000000000000000000000000000000000..bf73393fc6e2e1d42d027ee0d4a69ae0c28319e4 GIT binary patch literal 23405 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 literal 0 HcmV?d00001 diff --git a/courses/foundation/web-architecture-101/assignment/explanation.txt b/courses/foundation/web-architecture-101/assignment/explanation.txt new file mode 100644 index 000000000..e366c0c54 --- /dev/null +++ b/courses/foundation/web-architecture-101/assignment/explanation.txt @@ -0,0 +1,39 @@ +//ADDING THE RECIPE + +User → Frontend → Backend → Database +User clicks "Add Recipe" button +Frontend opens a form; user fills title, ingredients, instructions +Frontend does client-side validation +Frontend sends POST /recipes with recipe JSON +Backend receives POST /recipes +Backend validates server-side +Backend inserts recipe into Database (INSERT) +Database returns created recipe id / record +Backend responds 201 Created with created recipe JSON +Frontend receives success response and shows the new recipe (updates UI) + +//VIEWING THE RECIPE + +User → Frontend → Backend → Database +User clicks a recipe from list or enters URL /recipes/123 +Frontend sends GET /recipes/123 +Backend receives GET /recipes/123 +Backend queries Database (SELECT \* FROM recipes WHERE id=123) +Database returns recipe data +Backend responds 200 OK with recipe JSON +Frontend renders recipe details to the user + +//UPDATING THE RECIPES + +User → Frontend → Backend → Database +User clicks "Edit" on recipe 123 +Frontend loads existing recipe into an edit form (GET /recipes/123 or from local state) +User updates fields and clicks "Save" +Frontend does client-side validation +Frontend sends PUT /recipes/123 with updated recipe JSON +Backend receives PUT /recipes/123 +Backend validates server-side +Backend updates Database (UPDATE recipes SET ... WHERE id=123) +Database returns success / updated record +Backend responds 200 OK with updated recipe JSON +Frontend receives response and updates the UI diff --git a/courses/foundation/web-architecture-101/assignment/view_recipe.png b/courses/foundation/web-architecture-101/assignment/view_recipe.png new file mode 100644 index 0000000000000000000000000000000000000000..78ac8d42177c77b6c36ded69ebf5992c7fbd9fef GIT binary patch literal 20135 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 literal 0 HcmV?d00001 From 12c79dc7b1b0f8d021db3a84cb2f801be4f3222e Mon Sep 17 00:00:00 2001 From: Jyoti Date: Wed, 17 Dec 2025 14:01:43 +0100 Subject: [PATCH 07/40] Ignore system files --- courses/foundation/databases/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 courses/foundation/databases/.gitignore diff --git a/courses/foundation/databases/.gitignore b/courses/foundation/databases/.gitignore new file mode 100644 index 000000000..e43b0f988 --- /dev/null +++ b/courses/foundation/databases/.gitignore @@ -0,0 +1 @@ +.DS_Store From 472b559b7c56fc5e8278b41ba58aa502e436b463 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Wed, 17 Dec 2025 14:02:33 +0100 Subject: [PATCH 08/40] Submit database assignment --- courses/foundation/databases/Assignment.sql | 29 +++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 courses/foundation/databases/Assignment.sql diff --git a/courses/foundation/databases/Assignment.sql b/courses/foundation/databases/Assignment.sql new file mode 100644 index 000000000..5c59638ba --- /dev/null +++ b/courses/foundation/databases/Assignment.sql @@ -0,0 +1,29 @@ +-- 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 count(*) FROM task WHERE due_date IS NULL; + +-- Find all the tasks that are marked as done. +SELECT id, title FROM task WHERE status_id = 3; + +-- Find all the tasks that are not marked as done. +SELECT id, title FROM task WHERE status_id != 3; + +-- 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, status.name FROM task JOIN status ON task.status_id = status.id; + +-- Get the name of each status, along with a count of how many tasks have that status. +SELECT status.id, status.name, COUNT(task.id) FROM status LEFT JOIN task ON status.id = task.status_id GROUP BY status.id; + +-- Get the names of all statuses, sorted by the status with most tasks first. +SELECT status.id, status.name, COUNT(task.id) AS task_count FROM status LEFT JOIN task ON status.id = task.status_id GROUP BY status.id ORDER BY task_count DESC; \ No newline at end of file From d4f72eaebb3998cfb85230a0b11eb24c20c88d66 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Fri, 19 Dec 2025 09:58:49 +0100 Subject: [PATCH 09/40] Add complete Intro to Backend assignment --- courses/foundation/intro-to-backend/README.md | 20 +++++ courses/foundation/intro-to-backend/index.js | 82 +++++++++++++++++++ .../foundation/intro-to-backend/postman.txt | 16 ++++ 3 files changed, 118 insertions(+) create mode 100644 courses/foundation/intro-to-backend/index.js create mode 100644 courses/foundation/intro-to-backend/postman.txt diff --git a/courses/foundation/intro-to-backend/README.md b/courses/foundation/intro-to-backend/README.md index e69de29bb..fa7c6b6b5 100644 --- a/courses/foundation/intro-to-backend/README.md +++ b/courses/foundation/intro-to-backend/README.md @@ -0,0 +1,20 @@ +//Dog API Postman Collection : +"https://switjyoti26-237736.postman.co/workspace/Jyoti's-Workspace~f2cdb586-5ee9-4f1c-889c-586d551401b0/collection/50885645-39d33494-eabf-4072-a516-3db9edba9a68?action=share&source=collection_link&creator=50885645" + +## Assignment: Extend Webserver + +### Routes + +- `/` + Returns an HTML page that displays the total number of users. + +- `/user-count` + Returns the total number of users in the database as JSON. + +- `/users` + Returns all users from the database as JSON. + +### Description + +The home route (`/`) serves an HTML page that fetches data from the `/user-count` +endpoint using JavaScript. The result is displayed in a styled layout in the browser. diff --git a/courses/foundation/intro-to-backend/index.js b/courses/foundation/intro-to-backend/index.js new file mode 100644 index 000000000..eddfb1a7f --- /dev/null +++ b/courses/foundation/intro-to-backend/index.js @@ -0,0 +1,82 @@ +import express from "express"; +import knex from "knex"; + +const app = express(); + +// Knex setup +const db = knex({ + client: "sqlite3", + connection: { + filename: "./database.sqlite3", + }, + useNullAsDefault: true, +}); + +/** + * HOME ROUTE (HTML) + */ +app.get("/", (req, res) => { + res.send(` + + + + User Count + + + +

Total Users

+
Loading...
+ + + + + `); +}); + +/** + * GET ALL USERS + */ +app.get("/users", async (req, res) => { + const users = await db("users").select("*"); + res.json(users); +}); + +/** + * USER COUNT + */ +app.get("/user-count", async (req, res) => { + const result = await db("users").count("id as count"); + res.json(result[0]); +}); + +app.listen(3000, () => { + console.log("Server running on http://localhost:3000"); +}); diff --git a/courses/foundation/intro-to-backend/postman.txt b/courses/foundation/intro-to-backend/postman.txt new file mode 100644 index 000000000..3a5a061ef --- /dev/null +++ b/courses/foundation/intro-to-backend/postman.txt @@ -0,0 +1,16 @@ + +Request Name Method URL Description +Get 5 random dogs GET https://dog.ceo/api/breeds/image/random/5 + //Fetch 5 random dog images from any breed + +List all breeds GET https://dog.ceo/api/breeds/list/all + //Returns a list of all dog breeds and sub-breeds + +3 Beagle images GET https://dog.ceo/api/breed/beagle/images/random/3 + //Fetch 3 random images of Beagles + +Poodle sub-breeds GET https://dog.ceo/api/breed/poodle/list + //List all sub-breeds of poodles (miniature, standard, toy) + +Toy poodle images GET https://dog.ceo/api/breed/poodle/toy/images + Get all images of the toy poodle sub-breed From 4864a861f4b78f7a747a954041b408eb1af6d044 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Fri, 19 Dec 2025 16:31:04 +0100 Subject: [PATCH 10/40] Fix: implement full CRUD and extend home route with styled HTML dashboard --- courses/foundation/intro-to-backend/index.js | 65 +++++++++++++++++++- 1 file changed, 63 insertions(+), 2 deletions(-) diff --git a/courses/foundation/intro-to-backend/index.js b/courses/foundation/intro-to-backend/index.js index eddfb1a7f..d26e3519a 100644 --- a/courses/foundation/intro-to-backend/index.js +++ b/courses/foundation/intro-to-backend/index.js @@ -2,6 +2,7 @@ import express from "express"; import knex from "knex"; const app = express(); +app.use(express.json()); // REQUIRED for POST & PUT // Knex setup const db = knex({ @@ -62,19 +63,79 @@ app.get("/", (req, res) => { }); /** - * GET ALL USERS + * LIST USERS (READ ALL) */ app.get("/users", async (req, res) => { const users = await db("users").select("*"); res.json(users); }); +/** + * FETCH ONE USER (READ ONE) + */ +app.get("/users/:id", async (req, res) => { + const user = await db("users").where({ id: req.params.id }).first(); + + if (!user) { + return res.status(404).json({ error: "User not found" }); + } + + res.json(user); +}); + +/** + * CREATE USER + */ +app.post("/users", async (req, res) => { + const { name, email } = req.body; + + if (!name || !email) { + return res.status(400).json({ error: "Name and email are required" }); + } + + const [id] = await db("users").insert({ name, email }); + const user = await db("users").where({ id }).first(); + + res.status(201).json(user); +}); + +/** + * UPDATE USER + */ +app.put("/users/:id", async (req, res) => { + const { name, email } = req.body; + + const updated = await db("users") + .where({ id: req.params.id }) + .update({ name, email }); + + if (!updated) { + return res.status(404).json({ error: "User not found" }); + } + + const user = await db("users").where({ id: req.params.id }).first(); + res.json(user); +}); + +/** + * DELETE USER + */ +app.delete("/users/:id", async (req, res) => { + const deleted = await db("users").where({ id: req.params.id }).del(); + + if (!deleted) { + return res.status(404).json({ error: "User not found" }); + } + + res.status(204).send(); +}); + /** * USER COUNT */ app.get("/user-count", async (req, res) => { const result = await db("users").count("id as count"); - res.json(result[0]); + res.json({ count: Number(result[0].count) }); }); app.listen(3000, () => { From e680928b03a64643f4ab50f05faa2c0c58f3cf31 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Sat, 20 Dec 2025 21:59:23 +0100 Subject: [PATCH 11/40] Add Intro to JavaScript Week 1 assignment --- .../week1/homework/smartease.js | 98 +++++++++++++++++++ .../intro-to-javascript/week1/index.html | 10 ++ .../intro-to-javascript/week1/pizza.js | 17 ++++ 3 files changed, 125 insertions(+) create mode 100644 courses/foundation/intro-to-javascript/week1/homework/smartease.js create mode 100644 courses/foundation/intro-to-javascript/week1/index.html create mode 100644 courses/foundation/intro-to-javascript/week1/pizza.js diff --git a/courses/foundation/intro-to-javascript/week1/homework/smartease.js b/courses/foundation/intro-to-javascript/week1/homework/smartease.js new file mode 100644 index 000000000..1f32bbaf1 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week1/homework/smartease.js @@ -0,0 +1,98 @@ +const yearOfBirth = 1999; +const yearFuture = 2050; +const age = (birth, future) => { + console.log(`You will be ${future - birth} years old in ${future}`); +}; +age(yearOfBirth, yearFuture); +//dog age calculator +const dogYearOfBirth = 2010; +const dogYearFuture = 2025; +const shouldShowResultInDogYears = true; +const dogYear = (birth, future, isDogYears) => { + let dogAge = future - birth; + console.log( + `Your dog will be ${ + isDogYears ? dogAge * 7 : dogAge + } dog years old in ${future}` + ); +}; +dogYear(dogYearOfBirth, dogYearFuture, shouldShowResultInDogYears); +//house price calculator + +const widthPeter = 8; +const depthPeter = 10; +const heightPeter = 10; +const gardenPeter = 100; +const actualPricePeter = 2500000; + +const volumePeter = widthPeter * depthPeter * heightPeter; +const housePricePeter = volumePeter * 2.5 * 1000 + gardenPeter * 300; + +if (housePricePeter < actualPricePeter) { + console.log( + "Peter is paying too much. His calculated price is " + housePricePeter + "." + ); +} else { + console.log( + "Peter is paying too little. His calculated price is " + + housePricePeter + + "." + ); +} + +// Julia's house +const widthJulia = 5; +const depthJulia = 11; +const heightJulia = 8; +const gardenJulia = 70; +const actualPriceJulia = 1000000; + +const volumeJulia = widthJulia * depthJulia * heightJulia; +const housePriceJulia = volumeJulia * 2.5 * 1000 + gardenJulia * 300; + +if (housePriceJulia < actualPriceJulia) { + console.log( + "Julia is paying too much. Her calculated price is " + housePriceJulia + "." + ); +} else { + console.log( + "Julia is paying too little. Her calculated price is " + + housePriceJulia + + "." + ); +} + +// 🚀 4. Ez Namey (Startup Name Generator) + +const firstWords = [ + "Easy", + "Awesome", + "Tech", + "Smart", + "Next", + "Quick", + "Blue", + "Creative", + "Bright", + "Happy", +]; +const secondWords = [ + "Solutions", + "Systems", + "Corporation", + "Designs", + "Hub", + "Works", + "Concepts", + "Labs", + "Group", + "Innovations", +]; + +const randomNumber = Math.floor(Math.random() * 10); +const startupName = firstWords[randomNumber] + " " + secondWords[randomNumber]; +const nameLength = startupName.length; + +console.log( + 'The startup: "' + startupName + '" contains ' + nameLength + " characters." +); diff --git a/courses/foundation/intro-to-javascript/week1/index.html b/courses/foundation/intro-to-javascript/week1/index.html new file mode 100644 index 000000000..305c525a9 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week1/index.html @@ -0,0 +1,10 @@ + + + + + + Pizza Exercise + + + + diff --git a/courses/foundation/intro-to-javascript/week1/pizza.js b/courses/foundation/intro-to-javascript/week1/pizza.js new file mode 100644 index 000000000..cdd16b6a2 --- /dev/null +++ b/courses/foundation/intro-to-javascript/week1/pizza.js @@ -0,0 +1,17 @@ +const pizzaPrice = 89; +console.log( + `New pizza order: ${favouritePizza}. The price of the pizza is: ${pizzaPrice}` +); +//Part2 +const pizzaAmount = 2; +const isTakeaway = true; +const totalPrice = (name, price, amount, takeaway) => { + const orderPrice = price * amount; + let finalPrice = takeaway ? orderPrice + orderPrice * 0.2 : orderPrice; + console.log( + `New pizza order (takeaway: ${takeaway}): ${pizzaAmount} ${ + pizzaAmount > 1 ? name + "s" : name + }. Total cost for the order is: ${finalPrice}` + ); +}; +totalPrice(favouritePizza, pizzaPrice, pizzaAmount, isTakeaway); From 7f77c72143f95cbf43df32daf7732147fd58241c Mon Sep 17 00:00:00 2001 From: Jyoti Date: Mon, 5 Jan 2026 19:21:15 +0100 Subject: [PATCH 12/40] Submit frontend assignment --- .../intro-to-frontend/HYFBay/index.html | 2 +- .../intro-to-frontend/HYFBay/main.js | 19 +++- .../HogwartsHouseGenerator/index.html | 20 ++++ .../HogwartsHouseGenerator/script.js | 24 +++++ .../HogwartsHouseGenerator/style.css | 28 ++++++ .../classroom/classroom/dogfan.html | 96 +++++++++++++++++++ .../classroom/classroom/event.html | 28 ++++++ .../classroom/classroom/event.js | 21 ++++ .../classroom/classroom/ex.html | 29 ++++++ .../classroom/classroom/ex2.html | 4 + .../classroom/classroom/ex2.js | 10 ++ .../classroom/classroom/favdish.html | 15 +++ .../classroom/classroom/favdish.js | 17 ++++ .../classroom/classroom/insert.html | 12 +++ .../classroom/classroom/insert.js | 17 ++++ .../classroom/classroom/podcast.html | 15 +++ .../classroom/classroom/podcast.js | 47 +++++++++ .../classroom/classroom/space.html | 13 +++ .../classroom/classroom/space.js | 27 ++++++ 19 files changed, 439 insertions(+), 5 deletions(-) create mode 100644 courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html create mode 100644 courses/foundation/intro-to-frontend/HogwartsHouseGenerator/script.js create mode 100644 courses/foundation/intro-to-frontend/HogwartsHouseGenerator/style.css create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/dogfan.html create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/event.html create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/event.js create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/ex.html create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/ex2.html create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/ex2.js create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/favdish.html create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/favdish.js create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/insert.html create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/insert.js create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/podcast.html create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/podcast.js create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/space.html create mode 100644 courses/foundation/intro-to-frontend/classroom/classroom/space.js diff --git a/courses/foundation/intro-to-frontend/HYFBay/index.html b/courses/foundation/intro-to-frontend/HYFBay/index.html index 07f60fe48..8cdcb8590 100644 --- a/courses/foundation/intro-to-frontend/HYFBay/index.html +++ b/courses/foundation/intro-to-frontend/HYFBay/index.html @@ -8,7 +8,7 @@ /> -
+
    diff --git a/courses/foundation/intro-to-frontend/HYFBay/main.js b/courses/foundation/intro-to-frontend/HYFBay/main.js index 00111ae11..223309f21 100644 --- a/courses/foundation/intro-to-frontend/HYFBay/main.js +++ b/courses/foundation/intro-to-frontend/HYFBay/main.js @@ -3,9 +3,20 @@ console.log("Script loaded"); const products = getAvailableProducts(); console.log(products); -// This should create the ul and the li's with the individual products details function renderProducts(products) { - // your code goes here -} + const ul = document.querySelector("ul"); + ul.innerHTML = ""; + + products.forEach((product) => { + const li = document.createElement("li"); -renderProducts(products); + li.innerHTML = ` + ${product.name}
    + Price: ${product.price}
    + Rating: ${product.rating} + `; + + ul.appendChild(li); + }); +} +renderProducts(products); diff --git a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html new file mode 100644 index 000000000..fa45eb7a5 --- /dev/null +++ b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html @@ -0,0 +1,20 @@ + + + + + Hogwarts House Generator + + + +

    Hogwarts House Generator 🧙‍♂️

    + + +

    + + + +

    + + + + diff --git a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/script.js b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/script.js new file mode 100644 index 000000000..9ee1610b2 --- /dev/null +++ b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/script.js @@ -0,0 +1,24 @@ +const houses = ["Gryffindor", "Hufflepuff", "Ravenclaw", "Slytherin"]; + +const nameInput = document.getElementById("nameInput"); +const sortButton = document.getElementById("sortButton"); +const tryAgainButton = document.getElementById("tryAgainButton"); +const result = document.getElementById("result"); + +function getRandomHouse() { + const randomIndex = Math.floor(Math.random() * houses.length); + return houses[randomIndex]; +} + +function assignHouse() { + const name = nameInput.value.trim(); + if (name === "") { + result.textContent = "⚠️ Please enter your name first!"; + return; + } + const house = getRandomHouse(); + result.textContent = `${name} belongs in ${house}!`; +} + +sortButton.addEventListener("click", assignHouse); +tryAgainButton.addEventListener("click", assignHouse); diff --git a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/style.css b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/style.css new file mode 100644 index 000000000..e2fc2fafb --- /dev/null +++ b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/style.css @@ -0,0 +1,28 @@ +body { + font-family: Arial, sans-serif; + text-align: center; + padding-top: 50px; + background-color: #f5f5f5; +} + +input { + padding: 10px; + font-size: 16px; +} + +button { + padding: 10px 15px; + margin: 5px; + font-size: 16px; + cursor: pointer; +} + +#result { + margin-top: 20px; + font-size: 20px; + font-weight: bold; +} +#error { + color: red; + margin-top: 10px; +} diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/dogfan.html b/courses/foundation/intro-to-frontend/classroom/classroom/dogfan.html new file mode 100644 index 000000000..11a9f41a2 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/dogfan.html @@ -0,0 +1,96 @@ + + + + + + Dog Fan Website + + + +

    🐶 Dog Fan Website 🐶

    + +

    Random Dog Image (updates every 2 sec)

    + Random Dog +
    + +

    Choose a Breed

    + + + Breed Dog +
    + + + + diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/event.html b/courses/foundation/intro-to-frontend/classroom/classroom/event.html new file mode 100644 index 000000000..6a4adae08 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/event.html @@ -0,0 +1,28 @@ + + + + + Dark/Light Mode Toggle + + + +

    Dark / Light Mode Example

    + + + + + diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/event.js b/courses/foundation/intro-to-frontend/classroom/classroom/event.js new file mode 100644 index 000000000..a65d02155 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/event.js @@ -0,0 +1,21 @@ +const button = document.getElementById("toggleBtn"); + +// Keep track of current mode: false = light, true = dark +let isDarkMode = false; + +button.addEventListener("click", function () { + // Toggle mode + if (isDarkMode) { + // Switch to light mode + document.body.style.backgroundColor = "white"; + document.body.style.color = "black"; + button.textContent = "Switch to Dark Mode"; // optional + isDarkMode = false; + } else { + // Switch to dark mode + document.body.style.backgroundColor = "black"; + document.body.style.color = "white"; + button.textContent = "Switch to Light Mode"; // optional + isDarkMode = true; + } +}); diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/ex.html b/courses/foundation/intro-to-frontend/classroom/classroom/ex.html new file mode 100644 index 000000000..dd212d7b2 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/ex.html @@ -0,0 +1,29 @@ + + + + + textContent vs innerHTML + + +

    textContent vs innerHTML

    + +

    Result

    + + + + + + + diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/ex2.html b/courses/foundation/intro-to-frontend/classroom/classroom/ex2.html new file mode 100644 index 000000000..f335986c8 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/ex2.html @@ -0,0 +1,4 @@ +

    Create Element

    + +
    + diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/ex2.js b/courses/foundation/intro-to-frontend/classroom/classroom/ex2.js new file mode 100644 index 000000000..878dbef83 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/ex2.js @@ -0,0 +1,10 @@ +const createBtn = document.getElementById("createBtn"); +const createContainer = document.getElementById("createContainer"); +createBtn.addEventListener("click", () => { + // Create element + const newParagraph = document.createElement("p"); + // Add text + newParagraph.textContent = "This element was created with JavaScript"; + newParagraph.style.color = "red"; + createContainer.appendChild(newParagraph); +}); diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/favdish.html b/courses/foundation/intro-to-frontend/classroom/classroom/favdish.html new file mode 100644 index 000000000..441e4de3b --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/favdish.html @@ -0,0 +1,15 @@ + + + + + Favourite Dishes + + +

    My Favourite Dishes

    + + +
      + + + + diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/favdish.js b/courses/foundation/intro-to-frontend/classroom/classroom/favdish.js new file mode 100644 index 000000000..2a5f6fa7e --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/favdish.js @@ -0,0 +1,17 @@ +// 1. Create an array of favourite dishes +const favDish = ["Pizza", "Pasta", "Burger", "Sushi"]; + +// 2. Select the ul from the DOM +const ul = document.getElementById("dishesList"); + +// 3. Loop through the array +for (let i = 0; i < favDish.length; i++) { + // 4. Create an li element + const li = document.createElement("li"); + + // 5. Set the text of the li + li.textContent = favDish[i]; + + // 6. Add the li to the ul + ul.appendChild(li); +} diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/insert.html b/courses/foundation/intro-to-frontend/classroom/classroom/insert.html new file mode 100644 index 000000000..95a16aa65 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/insert.html @@ -0,0 +1,12 @@ + + + + + Append Image Function + + +

      Append Image Example

      + + + + diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/insert.js b/courses/foundation/intro-to-frontend/classroom/classroom/insert.js new file mode 100644 index 000000000..32a9d5fb6 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/insert.js @@ -0,0 +1,17 @@ +// Function to create and append an image +function appendImage(imageUrl, elementToAppendImageTo) { + // 1. Create an img element + const img = document.createElement("img"); + + // 2. Set the src attribute to the imageUrl parameter + img.src = imageUrl; + + // 3. Optional: set width so it looks nice + img.style.width = "300px"; + + // 4. Append the img to the element passed in + elementToAppendImageTo.appendChild(img); +} + +// Example usage: append an image to the body +appendImage("https://picsum.photos/536/354", document.querySelector("body")); diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/podcast.html b/courses/foundation/intro-to-frontend/classroom/classroom/podcast.html new file mode 100644 index 000000000..f87daf6d5 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/podcast.html @@ -0,0 +1,15 @@ + + + + + Podcasts + + +

      Podcasts

      + + +
        + + + + diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/podcast.js b/courses/foundation/intro-to-frontend/classroom/classroom/podcast.js new file mode 100644 index 000000000..0080ea6c4 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/podcast.js @@ -0,0 +1,47 @@ +// Podcast data +const podcasts = [ + { + name: "The mystery of Johan Klausen Varbourg", + imageUrl: "https://picsum.photos/536/354", + }, + { + name: "Tips about dogs with small legs", + imageUrl: "https://picsum.photos/536/354", + }, + { + name: "You, me, we and us", + imageUrl: "https://picsum.photos/536/354", + }, + { + name: "Breakfast news - Dinner edition", + }, +]; + +// 1. Select the ul +const ul = document.getElementById("podcastList"); + +// 2. Loop through the podcasts +for (let i = 0; i < podcasts.length; i++) { + const podcast = podcasts[i]; + + // 3. Create li + const li = document.createElement("li"); + + // 4. Create h1 + const h1 = document.createElement("h1"); + h1.innerHTML = podcast.name; + + // 5. Append h1 to li + li.appendChild(h1); + + // 6. Add image ONLY if imageUrl exists + if (podcast.imageUrl) { + const img = document.createElement("img"); + img.src = podcast.imageUrl; + img.style.width = "200px"; // just for nicer display + li.appendChild(img); + } + + // 7. Append li to ul + ul.appendChild(li); +} diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/space.html b/courses/foundation/intro-to-frontend/classroom/classroom/space.html new file mode 100644 index 000000000..ce0549c40 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/space.html @@ -0,0 +1,13 @@ + + + + + Astronauts in Space + + +

        Current Astronauts in Space

        +

        + + + + diff --git a/courses/foundation/intro-to-frontend/classroom/classroom/space.js b/courses/foundation/intro-to-frontend/classroom/classroom/space.js new file mode 100644 index 000000000..9ed0ea993 --- /dev/null +++ b/courses/foundation/intro-to-frontend/classroom/classroom/space.js @@ -0,0 +1,27 @@ +// Select the paragraph where we will show the astronauts +const p = document.getElementById("astronauts"); + +// Fetch data from the API +fetch("http://api.open-notify.org/astros.json") + .then((response) => response.json()) + .then((data) => { + // Number of astronauts + const number = data.number; + + // Names of astronauts + const names = data.people.map((person) => person.name); + + // Build the text + let text = `There are ${number} astronauts in space, they are:\n`; + + names.forEach((name) => { + text += name + "\n"; + }); + + // Add the text to the paragraph + p.textContent = text; + }) + .catch((error) => { + p.textContent = "Failed to fetch astronaut data."; + console.error(error); + }); From ce3c629b08b506b1a6508b9aac4077b1f5e3a471 Mon Sep 17 00:00:00 2001 From: JyotiHYF Date: Sat, 10 Jan 2026 20:43:58 +0100 Subject: [PATCH 13/40] update main.js --- courses/foundation/intro-to-frontend/HYFBay/main.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/courses/foundation/intro-to-frontend/HYFBay/main.js b/courses/foundation/intro-to-frontend/HYFBay/main.js index 223309f21..6e047b4a9 100644 --- a/courses/foundation/intro-to-frontend/HYFBay/main.js +++ b/courses/foundation/intro-to-frontend/HYFBay/main.js @@ -1,11 +1,9 @@ console.log("Script loaded"); const products = getAvailableProducts(); -console.log(products); function renderProducts(products) { - const ul = document.querySelector("ul"); - ul.innerHTML = ""; + const productsList = document.querySelector("#products-list"); products.forEach((product) => { const li = document.createElement("li"); @@ -16,7 +14,10 @@ function renderProducts(products) { Rating: ${product.rating} `; - ul.appendChild(li); + productsList.appendChild(li); }); } + renderProducts(products); + + From 59d0f447c472e5b9e855f288f96019800ab12f95 Mon Sep 17 00:00:00 2001 From: JyotiHYF Date: Sat, 10 Jan 2026 20:46:21 +0100 Subject: [PATCH 14/40] Add id to products list in index.html --- courses/foundation/intro-to-frontend/HYFBay/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/courses/foundation/intro-to-frontend/HYFBay/index.html b/courses/foundation/intro-to-frontend/HYFBay/index.html index 8cdcb8590..6492d4df4 100644 --- a/courses/foundation/intro-to-frontend/HYFBay/index.html +++ b/courses/foundation/intro-to-frontend/HYFBay/index.html @@ -8,7 +8,8 @@ /> -
          +
            +
            From cd066789a0bf2312b08be9388e47d9ef21d7eaf3 Mon Sep 17 00:00:00 2001 From: JyotiHYF Date: Sat, 10 Jan 2026 20:49:55 +0100 Subject: [PATCH 15/40] Add viewport meta tag and update input structure --- .../HogwartsHouseGenerator/index.html | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html index fa45eb7a5..146a21824 100644 --- a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html +++ b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html @@ -2,18 +2,23 @@ + Hogwarts House Generator

            Hogwarts House Generator 🧙‍♂️

            - -

            - - + -

            + + +
              From 79b242103e09013da64ab4219bc09ac17095b38f Mon Sep 17 00:00:00 2001 From: JyotiHYF Date: Sat, 10 Jan 2026 20:55:06 +0100 Subject: [PATCH 16/40] Refactor name validation and remove tryAgainButton Updated the name validation to check for empty input. Removed unused tryAgainButton event listener. --- .../intro-to-frontend/HogwartsHouseGenerator/script.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/script.js b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/script.js index 9ee1610b2..a9c3b459a 100644 --- a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/script.js +++ b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/script.js @@ -2,7 +2,6 @@ const houses = ["Gryffindor", "Hufflepuff", "Ravenclaw", "Slytherin"]; const nameInput = document.getElementById("nameInput"); const sortButton = document.getElementById("sortButton"); -const tryAgainButton = document.getElementById("tryAgainButton"); const result = document.getElementById("result"); function getRandomHouse() { @@ -12,13 +11,16 @@ function getRandomHouse() { function assignHouse() { const name = nameInput.value.trim(); - if (name === "") { + if (!name) { result.textContent = "⚠️ Please enter your name first!"; return; } + const house = getRandomHouse(); result.textContent = `${name} belongs in ${house}!`; + + // Change button text to "Try again" after first use + sortButton.textContent = "Try again"; } sortButton.addEventListener("click", assignHouse); -tryAgainButton.addEventListener("click", assignHouse); From ba20507680aea932d3a97860c6418e8fb13db8f3 Mon Sep 17 00:00:00 2001 From: JyotiHYF Date: Sat, 10 Jan 2026 20:59:45 +0100 Subject: [PATCH 17/40] Refactor CSS class names for consistency --- .../HogwartsHouseGenerator/style.css | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/style.css b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/style.css index e2fc2fafb..0e47e30ef 100644 --- a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/style.css +++ b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/style.css @@ -1,28 +1,38 @@ -body { + +.page-body { font-family: Arial, sans-serif; text-align: center; padding-top: 50px; background-color: #f5f5f5; } +.title { + margin-bottom: 20px; +} -input { + +.input { padding: 10px; font-size: 16px; + margin-bottom: 16px; } -button { + +.btn { padding: 10px 15px; margin: 5px; font-size: 16px; cursor: pointer; } -#result { + +.result { margin-top: 20px; font-size: 20px; font-weight: bold; } -#error { + + +.error { color: red; margin-top: 10px; } From 19bc2cd2be3cd5cf85fa5f71933a453e6e20944c Mon Sep 17 00:00:00 2001 From: JyotiHYF Date: Sat, 10 Jan 2026 21:20:26 +0100 Subject: [PATCH 18/40] Enhance HTML structure and classes for styling --- .../HogwartsHouseGenerator/index.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html index 146a21824..9b753f1b9 100644 --- a/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html +++ b/courses/foundation/intro-to-frontend/HogwartsHouseGenerator/index.html @@ -6,19 +6,21 @@ Hogwarts House Generator - -

              Hogwarts House Generator 🧙‍♂️

              + +

              Hogwarts House Generator 🧙‍♂️

              - + -
                +
                From 963ae5130aa841dc86fcf77828bc599739633f18 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 15 Jan 2026 12:13:50 +0100 Subject: [PATCH 19/40] Add Intro to Agile assignment with Trello backlog --- .../foundation/intro-to-agile/assignment.md | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 courses/foundation/intro-to-agile/assignment.md diff --git a/courses/foundation/intro-to-agile/assignment.md b/courses/foundation/intro-to-agile/assignment.md new file mode 100644 index 000000000..8705198e1 --- /dev/null +++ b/courses/foundation/intro-to-agile/assignment.md @@ -0,0 +1,30 @@ +https://trello.com/b/WkYXkTY3/bake-a-chocolate-cake +Backlog + +### Now + +1. Choose a cake recipe +2. Check ingredients at home +3. Make a shopping list +4. Buy missing ingredients + +### Next + +5. Preheat oven to 180°C +6. Prepare and grease the cake pan +7. Measure dry ingredients +8. Mix dry ingredients +9. Measure wet ingredients +10. Mix wet ingredients +11. Combine wet and dry mixtures +12. Pour batter into pan +13. Bake cake (25–30 mins) + +### Later + +14. Remove cake from oven +15. Let cake cool +16. Prepare frosting +17. Frost cake +18. Decorate cake +19. Clean up From d1880af15019d6c9aea0c435cf6fd36723c73fcd Mon Sep 17 00:00:00 2001 From: Jyoti Date: Tue, 10 Mar 2026 22:39:44 +0100 Subject: [PATCH 20/40] Add doubling numbers --- .../advanced-javascript/week1/doubling_numbers/script.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week1/doubling_numbers/script.js diff --git a/courses/frontend/advanced-javascript/week1/doubling_numbers/script.js b/courses/frontend/advanced-javascript/week1/doubling_numbers/script.js new file mode 100644 index 000000000..1c14f40b1 --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/doubling_numbers/script.js @@ -0,0 +1,5 @@ +const numbers = [1, 2, 3, 4]; + +const newNumbers = numbers.filter((num) => num % 2 !== 0).map((num) => num * 2); + +console.log("The doubled numbers are", newNumbers); From 0f79379a4bd59f93cf52fa497864eb5c3b99c488 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Wed, 11 Mar 2026 21:32:58 +0100 Subject: [PATCH 21/40] Add short titles function --- .../week1/movies/script.js | 44592 ++++++++++++++++ 1 file changed, 44592 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week1/movies/script.js 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..ac9f9c539 --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -0,0 +1,44592 @@ +const movies = [ + { title: "'71", year: 2014, rating: 7.2, votes: 41702, running_times: 5940 }, + { + title: "'A' gai wak", + year: 1983, + rating: 7.4, + votes: 11942, + running_times: 6300, + }, + { + 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, + }, +]; +const SHORT_LENGTH = 6; +const shortTitleMovies = movies.filter( + (movie) => movie.title.length < SHORT_LENGTH, +); +document.getElementById("short").innerText = shortTitleMovies + .map((m) => m.title) + .join(", "); From cb0f0cb0aaf0a55f27f095b9815d887ed9967bb3 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Wed, 11 Mar 2026 21:39:20 +0100 Subject: [PATCH 22/40] Add long titles function --- courses/frontend/advanced-javascript/week1/movies/script.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js index ac9f9c539..330390d92 100644 --- a/courses/frontend/advanced-javascript/week1/movies/script.js +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -44590,3 +44590,6 @@ const shortTitleMovies = movies.filter( document.getElementById("short").innerText = shortTitleMovies .map((m) => m.title) .join(", "); + +const longTitles = movies.map((m) => m.title).filter((t) => t.length > 20); +document.getElementById("long").innerText = longTitles.join(", "); From e203b77545fb0c82702cd5c000ea473036b980dd Mon Sep 17 00:00:00 2001 From: Jyoti Date: Wed, 11 Mar 2026 23:45:16 +0100 Subject: [PATCH 23/40] Add index.html --- .../week1/movies/index.html | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week1/movies/index.html diff --git a/courses/frontend/advanced-javascript/week1/movies/index.html b/courses/frontend/advanced-javascript/week1/movies/index.html new file mode 100644 index 000000000..07063883b --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/movies/index.html @@ -0,0 +1,27 @@ + + + + + 🎬 Movie Explorer Dashboard + + + +

                🎬 Movie Explorer

                + +
                + + + + + + + + + +
                + +
                + + + + From 1bc0e10f99af3f2296ee957722ac8addbdcfae09 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Wed, 11 Mar 2026 23:45:50 +0100 Subject: [PATCH 24/40] Add style.css --- .../week1/movies/style.css | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week1/movies/style.css diff --git a/courses/frontend/advanced-javascript/week1/movies/style.css b/courses/frontend/advanced-javascript/week1/movies/style.css new file mode 100644 index 000000000..7a6e3be02 --- /dev/null +++ b/courses/frontend/advanced-javascript/week1/movies/style.css @@ -0,0 +1,61 @@ +body { + font-family: Arial, sans-serif; + background: #121212; + color: white; + text-align: center; + padding: 20px; +} + +h1 { + margin-bottom: 20px; +} + +.buttons { + margin-bottom: 20px; +} + +button { + margin: 4px; + padding: 6px 12px; + border: none; + border-radius: 4px; + background: #e50914; + color: white; + cursor: pointer; +} + +button:hover { + background: #b20710; +} + +.results { + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: 10px; + margin-top: 20px; +} + +.card { + background: #1e1e1e; + padding: 10px; + border-radius: 8px; + width: 200px; + text-align: center; + font-size: 14px; +} + +.good { + color: #4caf50; + font-weight: bold; +} + +.average { + color: #ffd700; + font-weight: bold; +} + +.bad { + color: #ff6347; + font-weight: bold; +} From 1d8be06d9451dc1bfdfc7cdb252b19cee626c327 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 12 Mar 2026 00:07:27 +0100 Subject: [PATCH 25/40] Add Setup constants, taggedMovies array, and helper functions and update short and long function --- .../week1/movies/script.js | 90162 ++++++++-------- 1 file changed, 45568 insertions(+), 44594 deletions(-) diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js index 330390d92..2d93ad0d0 100644 --- a/courses/frontend/advanced-javascript/week1/movies/script.js +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -1,44595 +1,45569 @@ -const movies = [ - { title: "'71", year: 2014, rating: 7.2, votes: 41702, running_times: 5940 }, - { - title: "'A' gai wak", - year: 1983, - rating: 7.4, - votes: 11942, - running_times: 6300, - }, - { - 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, - }, -]; -const SHORT_LENGTH = 6; -const shortTitleMovies = movies.filter( - (movie) => movie.title.length < SHORT_LENGTH, -); -document.getElementById("short").innerText = shortTitleMovies - .map((m) => m.title) - .join(", "); +document.addEventListener("DOMContentLoaded", () => { + const movies = [ + { + title: "'71", + year: 2014, + rating: 7.2, + votes: 41702, + running_times: 5940, + }, + { + title: "'A' gai wak", + year: 1983, + rating: 7.4, + votes: 11942, + running_times: 6300, + }, + { + 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, + }, + ]; + const SHORT_LENGTH = 6; + const keywords = ["surfer", "alien", "benjamin"]; -const longTitles = movies.map((m) => m.title).filter((t) => t.length > 20); -document.getElementById("long").innerText = longTitles.join(", "); + const taggedMovies = movies.map((m) => { + const tag = m.rating >= 7 ? "Good" : m.rating >= 4 ? "Average" : "Bad"; + return { ...m, tag }; + }); + + const resultsDiv = document.getElementById("results"); + + const showCards = (arr) => { + resultsDiv.innerHTML = arr + .map( + (m) => + `
                +
                ${m.title}
                +
                Year: ${m.year}
                +
                Rating: ${m.rating}
                +
                ${m.tag}
                +
                `, + ) + .join(""); + }; + + const showText = (text) => { + resultsDiv.innerHTML = `
                ${text}
                `; + }; + + // 1. Short Titles + document.getElementById("shortBtn").addEventListener("click", () => { + const result = taggedMovies.filter((m) => m.title.length < SHORT_LENGTH); + showCards(result); + }); + + // 2. Long Titles + document.getElementById("longBtn").addEventListener("click", () => { + const result = taggedMovies.filter((m) => m.title.length > 20); + showCards(result); + }); +}); From 74c59935303b9ab1f18317d9f8c137991d12f548 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 12 Mar 2026 00:15:48 +0100 Subject: [PATCH 26/40] Add showEightiesCount function --- .../frontend/advanced-javascript/week1/movies/script.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js index 2d93ad0d0..1e39378ae 100644 --- a/courses/frontend/advanced-javascript/week1/movies/script.js +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -45566,4 +45566,11 @@ document.addEventListener("DOMContentLoaded", () => { const result = taggedMovies.filter((m) => m.title.length > 20); showCards(result); }); + // 3. 1980s Movies Count + document.getElementById("eightiesBtn").addEventListener("click", () => { + const count = taggedMovies.filter( + (m) => m.year >= 1980 && m.year <= 1989, + ).length; + showText(`1980s Movies Count: ${count}`); + }); }); From 53c6393a028a99883d2265b791028cef4576ac7f Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 12 Mar 2026 00:17:34 +0100 Subject: [PATCH 27/40] Add taggedmovies function --- courses/frontend/advanced-javascript/week1/movies/script.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js index 1e39378ae..097dce9e7 100644 --- a/courses/frontend/advanced-javascript/week1/movies/script.js +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -45573,4 +45573,7 @@ document.addEventListener("DOMContentLoaded", () => { ).length; showText(`1980s Movies Count: ${count}`); }); + document.getElementById("tagBtn").addEventListener("click", () => { + showCards(taggedMovies); + }); }); From 1c27e14a858e3b1564d635747d55d9a6776777c6 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 12 Mar 2026 00:23:42 +0100 Subject: [PATCH 28/40] keyword count function --- .../advanced-javascript/week1/movies/script.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js index 097dce9e7..523cc6d5f 100644 --- a/courses/frontend/advanced-javascript/week1/movies/script.js +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -45576,4 +45576,18 @@ document.addEventListener("DOMContentLoaded", () => { document.getElementById("tagBtn").addEventListener("click", () => { showCards(taggedMovies); }); + document.getElementById("ratingsBtn").addEventListener("click", () => { + const result = taggedMovies.filter((m) => m.rating > 6); + showCards(result); + }); + document.getElementById("keywordBtn").addEventListener("click", () => { + let count = 0; + taggedMovies.forEach((m) => { + const title = m.title.toLowerCase(); + keywords.forEach((k) => { + if (title.includes(k)) count++; + }); + }); + showText("Keyword Count: ${count}"); + }); }); From b3ed84d1a4ca16e8577d35fe1caae5a4002e584b Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 12 Mar 2026 00:25:54 +0100 Subject: [PATCH 29/40] add duplicate word title function --- .../frontend/advanced-javascript/week1/movies/script.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js index 523cc6d5f..aca8990c7 100644 --- a/courses/frontend/advanced-javascript/week1/movies/script.js +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -45590,4 +45590,11 @@ document.addEventListener("DOMContentLoaded", () => { }); showText("Keyword Count: ${count}"); }); + document.getElementById("dupWordBtn").addEventListener("click", () => { + const result = taggedMovies.filter((m) => { + const words = m.title.toLowerCase().split(/\W+/); + return words.some((w) => words.indexOf(w) !== words.lastIndexOf(w)); + }); + showCards(result); + }); }); From b36a2651f92269f71cc5e30716676c8b962daaf7 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 12 Mar 2026 00:27:25 +0100 Subject: [PATCH 30/40] added average rating function --- courses/frontend/advanced-javascript/week1/movies/script.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js index aca8990c7..afeac6b63 100644 --- a/courses/frontend/advanced-javascript/week1/movies/script.js +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -45597,4 +45597,10 @@ document.addEventListener("DOMContentLoaded", () => { }); showCards(result); }); + document.getElementById("avgRatingBtn").addEventListener("click", () => { + const avg = ( + taggedMovies.reduce((sum, m) => sum + m.rating, 0) / taggedMovies.length + ).toFixed(2); + showText("Average Rating: ${avg}"); + }); }); From cbc6b4dfa88cdb87793f4628f869dac4a5ecb1ee Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 12 Mar 2026 00:29:21 +0100 Subject: [PATCH 31/40] added ratingcount function --- .../advanced-javascript/week1/movies/script.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/courses/frontend/advanced-javascript/week1/movies/script.js b/courses/frontend/advanced-javascript/week1/movies/script.js index afeac6b63..106d5750c 100644 --- a/courses/frontend/advanced-javascript/week1/movies/script.js +++ b/courses/frontend/advanced-javascript/week1/movies/script.js @@ -45603,4 +45603,18 @@ document.addEventListener("DOMContentLoaded", () => { ).toFixed(2); showText("Average Rating: ${avg}"); }); + document.getElementById("ratingCountBtn").addEventListener("click", () => { + const counts = taggedMovies.reduce( + (acc, m) => { + if (m.rating >= 7) acc.good++; + else if (m.rating >= 4) acc.average++; + else acc.bad++; + return acc; + }, + { good: 0, average: 0, bad: 0 }, + ); + showText( + "Rating Counts: Good=${counts.good}, Average=${counts.average}, Bad=${counts.bad}, ); }", + ); + }); }); From 4733d145f7967756db843b3197ef9593ce61a5ca Mon Sep 17 00:00:00 2001 From: Jyoti Date: Mon, 16 Mar 2026 13:45:10 +0100 Subject: [PATCH 32/40] Add task1: log text after 2.5 seconds --- .../advanced-javascript/week2/assignment/functions.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week2/assignment/functions.js diff --git a/courses/frontend/advanced-javascript/week2/assignment/functions.js b/courses/frontend/advanced-javascript/week2/assignment/functions.js new file mode 100644 index 000000000..f592a090f --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/assignment/functions.js @@ -0,0 +1,4 @@ +//Log text after 2.5 seconds +setTimeout(function () { + console.log("Called after 2.5 seconds"); +}, 2500); From 341c82312438696145191f66ec34e6b4c5c77cfe Mon Sep 17 00:00:00 2001 From: Jyoti Date: Mon, 16 Mar 2026 13:49:32 +0100 Subject: [PATCH 33/40] Create logAfterDelay function with delay parameter --- .../advanced-javascript/week2/assignment/functions.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/courses/frontend/advanced-javascript/week2/assignment/functions.js b/courses/frontend/advanced-javascript/week2/assignment/functions.js index f592a090f..c9acab15c 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/functions.js +++ b/courses/frontend/advanced-javascript/week2/assignment/functions.js @@ -2,3 +2,14 @@ setTimeout(function () { console.log("Called after 2.5 seconds"); }, 2500); + +//Function with delay and string +function logAfterDelay(delay, stringToLog) { + setTimeout(function () { + console.log(stringToLog); + }, delay * 1000); +} + +// Calling the function +logAfterDelay(2, "Hello after 2 seconds"); +logAfterDelay(4, "Hello after 4 seconds"); From 250afc9421538a4ebb00b05080a2768f0048da4f Mon Sep 17 00:00:00 2001 From: Jyoti Date: Mon, 16 Mar 2026 13:54:51 +0100 Subject: [PATCH 34/40] Add index.html and button that logs text after 5 seconds --- .../week2/assignment/functions.js | 6 ++++++ .../week2/assignment/index.html | 14 ++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week2/assignment/index.html diff --git a/courses/frontend/advanced-javascript/week2/assignment/functions.js b/courses/frontend/advanced-javascript/week2/assignment/functions.js index c9acab15c..92ce61f6a 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/functions.js +++ b/courses/frontend/advanced-javascript/week2/assignment/functions.js @@ -13,3 +13,9 @@ function logAfterDelay(delay, stringToLog) { // Calling the function logAfterDelay(2, "Hello after 2 seconds"); logAfterDelay(4, "Hello after 4 seconds"); + +// Adding event listener to the button + +document.getElementById("delayBtn").addEventListener("click", function () { + logAfterDelay(5, "Called after 5 seconds"); +}); diff --git a/courses/frontend/advanced-javascript/week2/assignment/index.html b/courses/frontend/advanced-javascript/week2/assignment/index.html new file mode 100644 index 000000000..da76d4280 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/assignment/index.html @@ -0,0 +1,14 @@ + + + + + + + FUNCTIONS + + + + + + + From e89abee02088ac87a46f747423ba90f486f85b21 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Mon, 16 Mar 2026 13:57:44 +0100 Subject: [PATCH 35/40] Add function that logs earth and sun --- .../week2/assignment/functions.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/courses/frontend/advanced-javascript/week2/assignment/functions.js b/courses/frontend/advanced-javascript/week2/assignment/functions.js index 92ce61f6a..732a47c66 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/functions.js +++ b/courses/frontend/advanced-javascript/week2/assignment/functions.js @@ -19,3 +19,20 @@ logAfterDelay(4, "Hello after 4 seconds"); document.getElementById("delayBtn").addEventListener("click", function () { logAfterDelay(5, "Called after 5 seconds"); }); + +// Function that logs Earth and Saturn +const logEarth = function () { + console.log("Earth"); +}; + +const logSaturn = function () { + console.log("Saturn"); +}; + +function logPlanet(planetLogFunction) { + planetLogFunction(); +} + +// Call the function +logPlanet(logEarth); +logPlanet(logSaturn); From 4c744f8325ce7141980a4d2307d73ddb9b47d0a1 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Wed, 18 Mar 2026 18:23:18 +0100 Subject: [PATCH 36/40] Add task5: log user location on button click --- .../week2/assignment/functions.js | 11 +++++- .../week2/assignment/index.html | 1 + .../week2/classroom/index.html | 24 +++++++++++++ .../week2/classroom/task2.html | 20 +++++++++++ .../week2/classroom/task3.html | 17 ++++++++++ .../week2/classroom/task4.html | 19 +++++++++++ .../week2/classroom/task5.html | 34 +++++++++++++++++++ 7 files changed, 125 insertions(+), 1 deletion(-) create mode 100644 courses/frontend/advanced-javascript/week2/classroom/index.html create mode 100644 courses/frontend/advanced-javascript/week2/classroom/task2.html create mode 100644 courses/frontend/advanced-javascript/week2/classroom/task3.html create mode 100644 courses/frontend/advanced-javascript/week2/classroom/task4.html create mode 100644 courses/frontend/advanced-javascript/week2/classroom/task5.html diff --git a/courses/frontend/advanced-javascript/week2/assignment/functions.js b/courses/frontend/advanced-javascript/week2/assignment/functions.js index 732a47c66..98c115a1e 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/functions.js +++ b/courses/frontend/advanced-javascript/week2/assignment/functions.js @@ -10,7 +10,7 @@ function logAfterDelay(delay, stringToLog) { }, delay * 1000); } -// Calling the function +// Calling the functiona logAfterDelay(2, "Hello after 2 seconds"); logAfterDelay(4, "Hello after 4 seconds"); @@ -36,3 +36,12 @@ function logPlanet(planetLogFunction) { // Call the function logPlanet(logEarth); logPlanet(logSaturn); + +// Geolocation + +document.getElementById("locationBtn").addEventListener("click", () => { + navigator.geolocation.getCurrentPosition((position) => { + console.log("Latitude:", position.coords.latitude); + console.log("Longitude:", position.coords.longitude); + }); +}); diff --git a/courses/frontend/advanced-javascript/week2/assignment/index.html b/courses/frontend/advanced-javascript/week2/assignment/index.html index da76d4280..6ffd78bca 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/index.html +++ b/courses/frontend/advanced-javascript/week2/assignment/index.html @@ -8,6 +8,7 @@ + diff --git a/courses/frontend/advanced-javascript/week2/classroom/index.html b/courses/frontend/advanced-javascript/week2/classroom/index.html new file mode 100644 index 000000000..8c3b2226d --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/classroom/index.html @@ -0,0 +1,24 @@ + + + + Button Counter + + + + + +

                + + + + diff --git a/courses/frontend/advanced-javascript/week2/classroom/task2.html b/courses/frontend/advanced-javascript/week2/classroom/task2.html new file mode 100644 index 000000000..99dd1ab11 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/classroom/task2.html @@ -0,0 +1,20 @@ + + + + Task2 + + +

                Delayed Button Click

                + +

                + + + diff --git a/courses/frontend/advanced-javascript/week2/classroom/task3.html b/courses/frontend/advanced-javascript/week2/classroom/task3.html new file mode 100644 index 000000000..aece96bd6 --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/classroom/task3.html @@ -0,0 +1,17 @@ + + + + + DOM Loaded Example + + +

                Hello World!

                +

                + This is a simple example of using the DOMContentLoaded event. +

                + + + diff --git a/courses/frontend/advanced-javascript/week2/classroom/task4.html b/courses/frontend/advanced-javascript/week2/classroom/task4.html new file mode 100644 index 000000000..1a740114e --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/classroom/task4.html @@ -0,0 +1,19 @@ + + + + + Button Counter + + +

                Move your mouse to see its position.

                +

                + + + + diff --git a/courses/frontend/advanced-javascript/week2/classroom/task5.html b/courses/frontend/advanced-javascript/week2/classroom/task5.html new file mode 100644 index 000000000..c6de6c0ce --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/classroom/task5.html @@ -0,0 +1,34 @@ + + + + Mouse Tracker + + +

                Move your mouse around!

                +

                + Average mouse position will be displayed here after 30 seconds. +

                + + + From f2a499394660b4d4ad17f9018cc1acaf9e03678f Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 19 Mar 2026 18:50:33 +0100 Subject: [PATCH 37/40] Implement runAfterDelay with input, double click detection, and jokeCreator callbacks --- .../week2/assignment/functions.js | 44 +++++++++++++++++++ .../week2/assignment/index.html | 7 ++- 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/courses/frontend/advanced-javascript/week2/assignment/functions.js b/courses/frontend/advanced-javascript/week2/assignment/functions.js index 98c115a1e..c97bfb778 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/functions.js +++ b/courses/frontend/advanced-javascript/week2/assignment/functions.js @@ -45,3 +45,47 @@ document.getElementById("locationBtn").addEventListener("click", () => { console.log("Longitude:", position.coords.longitude); }); }); +// Open Google Maps with the current location +document.getElementById("locationBtn").onclick = function () { + navigator.geolocation.getCurrentPosition(function (pos) { + const lat = pos.coords.latitude; + const lng = pos.coords.longitude; + + window.open(`https://www.google.com/maps?q=${lat},${lng}`); + }); +}; +// Function to run a callback after a delay +const runAfterDelay = (delay, callback) => setTimeout(callback, delay * 1000); + +document.getElementById("btn").onclick = () => { + const delay = document.getElementById("delayInput").value; + + runAfterDelay(delay, () => { + document.getElementById("output").textContent = "Done!"; + }); +}; +// Double click event listener +let lastClick = 0; +document.addEventListener("click", () => { + if (Date.now() - lastClick < 500) { + document.getElementById("msg").textContent = "double click!"; + } + lastClick = Date.now(); +}); +// Joke creator function +const jokeCreator = (shouldTellFunnyJoke, logFunnyJoke, logBadJoke) => + shouldTellFunnyJoke ? logFunnyJoke() : logBadJoke(); + +const logFunnyJoke = () => { + document.getElementById("joke").textContent = + "Why don’t programmers like nature? Too many bugs 😂"; +}; + +const logBadJoke = () => { + document.getElementById("joke").textContent = + "I told my computer a joke… it didn’t laugh 😐"; +}; + +// Example calls +jokeCreator(true, logFunnyJoke, logBadJoke); +jokeCreator(false, logFunnyJoke, logBadJoke); diff --git a/courses/frontend/advanced-javascript/week2/assignment/index.html b/courses/frontend/advanced-javascript/week2/assignment/index.html index 6ffd78bca..4dccab833 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/index.html +++ b/courses/frontend/advanced-javascript/week2/assignment/index.html @@ -9,7 +9,12 @@ - + +
                + + +
                +
                From 0a4616050e1d709d7a893aa88d89e4ff78d2ffdb Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 19 Mar 2026 18:58:15 +0100 Subject: [PATCH 38/40] Add examples of functions in arrays, variables, and objects --- .../week2/assignment/functions.js | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/courses/frontend/advanced-javascript/week2/assignment/functions.js b/courses/frontend/advanced-javascript/week2/assignment/functions.js index c97bfb778..7b1745eec 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/functions.js +++ b/courses/frontend/advanced-javascript/week2/assignment/functions.js @@ -89,3 +89,36 @@ const logBadJoke = () => { // Example calls jokeCreator(true, logFunnyJoke, logBadJoke); jokeCreator(false, logFunnyJoke, logBadJoke); + +// 3.1 Array with functions +const functionsArray = [ + () => console.log("Function 1"), + () => console.log("Function 2"), + () => console.log("Function 3"), +]; + +functionsArray.forEach((fn) => fn()); + +// 3.2 Function declaration vs function expression + +// function declaration +function sayHello() { + console.log("Hello from declaration"); +} + +// function expression using const +const sayHi = () => { + console.log("Hello from const function"); +}; + +// call both +sayHello(); +sayHi(); + +// 3.3 Function inside an object +const myObject = { + logMessage: () => console.log("Hello from object function"), +}; + +// call function +myObject.logMessage(); From 66461a3210e89b6d4c2b3bb02f4de6216bb088f0 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 19 Mar 2026 22:00:32 +0100 Subject: [PATCH 39/40] Fix JS outputs and add necessary HTML elements for proper displays --- .../week2/assignment/functions.js | 40 +++++++++---------- .../week2/assignment/index.html | 17 ++++++-- 2 files changed, 33 insertions(+), 24 deletions(-) diff --git a/courses/frontend/advanced-javascript/week2/assignment/functions.js b/courses/frontend/advanced-javascript/week2/assignment/functions.js index 7b1745eec..ed7d24f50 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/functions.js +++ b/courses/frontend/advanced-javascript/week2/assignment/functions.js @@ -10,7 +10,7 @@ function logAfterDelay(delay, stringToLog) { }, delay * 1000); } -// Calling the functiona +// Calling the function logAfterDelay(2, "Hello after 2 seconds"); logAfterDelay(4, "Hello after 4 seconds"); @@ -21,14 +21,13 @@ document.getElementById("delayBtn").addEventListener("click", function () { }); // Function that logs Earth and Saturn -const logEarth = function () { - console.log("Earth"); +const logEarth = () => { + document.getElementById("planets").textContent = "Earth"; }; -const logSaturn = function () { - console.log("Saturn"); +const logSaturn = () => { + document.getElementById("planets").textContent = "Saturn"; }; - function logPlanet(planetLogFunction) { planetLogFunction(); } @@ -58,19 +57,15 @@ document.getElementById("locationBtn").onclick = function () { const runAfterDelay = (delay, callback) => setTimeout(callback, delay * 1000); document.getElementById("btn").onclick = () => { - const delay = document.getElementById("delayInput").value; - + const delay = parseFloat(document.getElementById("delayInput").value); runAfterDelay(delay, () => { - document.getElementById("output").textContent = "Done!"; + document.getElementById("output").textContent = + `Done after ${delay} seconds!`; }); }; // Double click event listener -let lastClick = 0; -document.addEventListener("click", () => { - if (Date.now() - lastClick < 500) { - document.getElementById("msg").textContent = "double click!"; - } - lastClick = Date.now(); +document.addEventListener("dblclick", () => { + document.getElementById("msg").textContent = "double click!"; }); // Joke creator function const jokeCreator = (shouldTellFunnyJoke, logFunnyJoke, logBadJoke) => @@ -85,16 +80,19 @@ const logBadJoke = () => { document.getElementById("joke").textContent = "I told my computer a joke… it didn’t laugh 😐"; }; +document.getElementById("funnyJokeBtn").addEventListener("click", () => { + jokeCreator(true, logFunnyJoke, logBadJoke); +}); -// Example calls -jokeCreator(true, logFunnyJoke, logBadJoke); -jokeCreator(false, logFunnyJoke, logBadJoke); +document.getElementById("badJokeBtn").addEventListener("click", () => { + jokeCreator(false, logFunnyJoke, logBadJoke); +}); // 3.1 Array with functions const functionsArray = [ - () => console.log("Function 1"), - () => console.log("Function 2"), - () => console.log("Function 3"), + () => (document.getElementById("arrayFuncs").textContent += "Function 1, "), + () => (document.getElementById("arrayFuncs").textContent += "Function 2, "), + () => (document.getElementById("arrayFuncs").textContent += "Function 3"), ]; functionsArray.forEach((fn) => fn()); diff --git a/courses/frontend/advanced-javascript/week2/assignment/index.html b/courses/frontend/advanced-javascript/week2/assignment/index.html index 4dccab833..4f92d4aa0 100644 --- a/courses/frontend/advanced-javascript/week2/assignment/index.html +++ b/courses/frontend/advanced-javascript/week2/assignment/index.html @@ -9,12 +9,23 @@ - - +
                +
                - +
                +
                + +
                +
                +
                + From 8cd3b56e3deba7d7863a73b9b4095a3b20bdea41 Mon Sep 17 00:00:00 2001 From: Jyoti Date: Thu, 19 Mar 2026 22:04:19 +0100 Subject: [PATCH 40/40] add Fastest Presser game with html ,css and js --- .../advanced-javascript/week2/game/index.html | 34 +++++ .../advanced-javascript/week2/game/script.js | 123 ++++++++++++++++++ .../advanced-javascript/week2/game/style.css | 117 +++++++++++++++++ 3 files changed, 274 insertions(+) create mode 100644 courses/frontend/advanced-javascript/week2/game/index.html create mode 100644 courses/frontend/advanced-javascript/week2/game/script.js create mode 100644 courses/frontend/advanced-javascript/week2/game/style.css diff --git a/courses/frontend/advanced-javascript/week2/game/index.html b/courses/frontend/advanced-javascript/week2/game/index.html new file mode 100644 index 000000000..5f2dfebae --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/game/index.html @@ -0,0 +1,34 @@ + + + + + Fastest Presser + + + +
                +

                Fastest Presser

                +
                + + + +
                +

                +

                +
                + +
                +
                +
                Press S
                +
                0
                +
                +
                +
                Press L
                +
                0
                +
                +
                + + + + + diff --git a/courses/frontend/advanced-javascript/week2/game/script.js b/courses/frontend/advanced-javascript/week2/game/script.js new file mode 100644 index 000000000..4b816c24b --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/game/script.js @@ -0,0 +1,123 @@ +const startBtn = document.getElementById("startBtn"); +const timeInput = document.getElementById("timeInput"); +const message = document.getElementById("message"); +const countdownDisplay = document.getElementById("countdown"); +const sCountDisplay = document.getElementById("sCount"); +const lCountDisplay = document.getElementById("lCount"); + +let sCount = 0; +let lCount = 0; +let gameActive = false; +let countdownInterval; + +// Animate counter +function updateCounter(element, value) { + element.textContent = value; + element.classList.add("increment"); + setTimeout(() => element.classList.remove("increment"), 200); +} + +// Reset game state +function resetGame() { + sCount = 0; + lCount = 0; + sCountDisplay.textContent = 0; + lCountDisplay.textContent = 0; + message.textContent = ""; + countdownDisplay.textContent = ""; + document.body.style.backgroundColor = "#f0f0f0"; +} + +// Confetti shooting from top +function startConfetti() { + const duration = 3 * 1000; + const animationEnd = Date.now() + duration; + const colors = ["#FF6B6B", "#4ECDC4", "#FFD700"]; + + const interval = setInterval(() => { + const timeLeft = animationEnd - Date.now(); + if (timeLeft <= 0) { + clearInterval(interval); + return; + } + confetti({ + startVelocity: 30, + spread: 360, + ticks: 60, + origin: { x: Math.random(), y: 0 }, + colors: colors, + }); + }, 250); +} + +// End game logic +function endGame() { + gameActive = false; + clearInterval(countdownInterval); + countdownDisplay.textContent = ""; + + if (sCount === 0 && lCount === 0) { + message.textContent = "No one pressed a key! 😅"; + message.className = ""; + return; + } + + if (sCount > lCount) { + message.textContent = "Time's up! Player S wins! 🎉"; + message.className = "win"; + startConfetti(); + } else if (lCount > sCount) { + message.textContent = "Time's up! Player L wins! 🎉"; + message.className = "win"; + startConfetti(); + } else { + message.textContent = "Time's up! It's a tie! 🤝"; + message.className = "tie"; + startConfetti(); + } + + document.body.style.backgroundColor = "#f0f0f0"; +} + +// Start game button +startBtn.addEventListener("click", () => { + const time = parseInt(timeInput.value); + if (!time || time <= 0) { + alert("Enter a valid time in seconds!"); + return; + } + + resetGame(); + gameActive = true; + message.textContent = "Game started! Go!"; + + let remaining = time; + countdownDisplay.textContent = `Time left: ${remaining}s`; + + countdownInterval = setInterval(() => { + remaining--; + countdownDisplay.textContent = `Time left: ${remaining}s`; + }, 1000); + + setTimeout(() => endGame(), time * 1000); +}); + +// Key press handling +document.addEventListener("keydown", (e) => { + if (!gameActive) return; + const key = e.key.toLowerCase(); + + if (key === "s") { + sCount++; + updateCounter(sCountDisplay, sCount); + document.body.classList.add("flash-s"); + setTimeout(() => document.body.classList.remove("flash-s"), 150); + } + + if (key === "l") { + lCount++; + updateCounter(lCountDisplay, lCount); + document.body.classList.add("flash-l"); + setTimeout(() => document.body.classList.remove("flash-l"), 150); + } +}); diff --git a/courses/frontend/advanced-javascript/week2/game/style.css b/courses/frontend/advanced-javascript/week2/game/style.css new file mode 100644 index 000000000..be2fae98e --- /dev/null +++ b/courses/frontend/advanced-javascript/week2/game/style.css @@ -0,0 +1,117 @@ +body { + margin: 0; + font-family: Arial, sans-serif; + background: #f0f0f0; + text-align: center; +} + +.header { + padding: 20px; + background: linear-gradient(to right, #fff, #f0f0f0); + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); +} + +h1 { + margin: 0; + font-size: 3rem; + color: #333; + text-shadow: 2px 2px 5px #aaa; +} +.controls { + margin: 15px 0; +} + +input, +button { + font-size: 1.2rem; + padding: 8px 12px; + border-radius: 6px; + border: 1px solid #ccc; +} + +button { + margin-left: 10px; + cursor: pointer; + background: #2ecc71; + color: #fff; + border: none; + font-weight: bold; + transition: transform 0.2s; +} + +button:hover { + transform: scale(1.05); +} + +.game-container { + display: flex; + margin: 20px; + height: 300px; +} + +.player { + flex: 1; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin: 0 10px; + border-radius: 15px; + color: #fff; + cursor: pointer; + transition: filter 0.2s; +} + +.player:hover { + filter: brightness(1.1); +} + +.s-player { + background: linear-gradient(to bottom right, #ff6b6b, #ff8787); +} +.l-player { + background: linear-gradient(to bottom right, #4ecdc4, #48b5b5); +} + +.label { + font-size: 2rem; + margin-bottom: 10px; + text-shadow: 1px 1px 2px #333; +} + +.counter-box { + width: 120px; + height: 120px; + line-height: 120px; + font-size: 3rem; + border-radius: 15px; + background: rgba(255, 255, 255, 0.2); + font-weight: bold; + text-shadow: 2px 2px 4px #222; + transition: + transform 0.2s, + background 0.2s; +} + +.counter-box.increment { + transform: scale(1.4); + background: rgba(255, 255, 255, 0.5); +} + +/* Flash body background on key press */ +.flash-s { + background-color: rgba(255, 107, 107, 0.3); +} +.flash-l { + background-color: rgba(78, 205, 196, 0.3); +} + +/* Winner styles */ +.win { + color: #2ecc71; + font-weight: bold; +} +.tie { + color: #f39c12; + font-weight: bold; +}

                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