-
Notifications
You must be signed in to change notification settings - Fork 6
/
Movie Rating Model.json
1 lines (1 loc) · 452 KB
/
Movie Rating Model.json
1
{"paragraphs":[{"title":"Importing functions and standard files","text":"%pyspark\n\nimport os\nfrom pyspark.sql.functions import explode,col,desc,asc, split","dateUpdated":"2018-05-02T06:17:28+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[]},"apps":[],"jobName":"paragraph_1525239781834_-1667852628","id":"20180425-232722_1986691420","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"focus":true,"$$hashKey":"object:101","user":"anonymous","dateFinished":"2018-05-02T06:17:28+0000","dateStarted":"2018-05-02T06:17:28+0000"},{"title":"Reading 2 datasets for ratings and movies","text":"%pyspark\n\nbasic = spark.read.csv(\"/shared/users/avi/desktop/test/title.basics.tsv\",sep=\"\\t\")\nrating = spark.read.csv(\"/shared/users/avi/desktop/test/title.ratings.tsv\",sep=\"\\t\")","dateUpdated":"2018-05-02T06:17:29+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[]},"apps":[],"jobName":"paragraph_1525239781835_-1668237377","id":"20180425-232731_1618218922","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:102","user":"anonymous","dateFinished":"2018-05-02T06:17:30+0000","dateStarted":"2018-05-02T06:17:29+0000"},{"title":"Filtering movies for 2000 - 2017","text":"%pyspark\n\nfilterColumn = basic.select('_c0', '_c1', '_c2', '_c5','_c7','_c8').withColumnRenamed('_c0','tconst').withColumnRenamed('_c1', 'titletype').withColumnRenamed('_c2','title').withColumnRenamed('_c5','year').withColumnRenamed('_c7','runtime').withColumnRenamed('_c8','genre')\n\nfilterMovie = filterColumn.filter(\"titletype = 'movie'\").filter(\"year > '1999'\").filter(\"year < '2018'\").select('tconst','title','year','runtime','genre').orderBy(desc('year'))\n\nfilterRating = rating.select('_c0', '_c1', '_c2').withColumnRenamed('_c0','tconst').withColumnRenamed('_c1', 'avgRating').withColumnRenamed('_c2','votes')\n\noutput = filterMovie.join(filterRating, on=\"tconst\").filter(\"votes > 10000\").orderBy(desc('year'),desc('avgRating'))","dateUpdated":"2018-05-02T06:17:31+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[]},"apps":[],"jobName":"paragraph_1525239781835_-1668237377","id":"20180425-232736_955310554","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:103","user":"anonymous","dateFinished":"2018-05-02T06:17:31+0000","dateStarted":"2018-05-02T06:17:31+0000"},{"title":"Reading dataset for director and writer","text":"%pyspark\n\nnameBasic = spark.read.csv(\"/shared/users/avi/desktop/test/name.basics.tsv\",sep=\"\\t\")\ncrew = spark.read.csv(\"/shared/users/avi/desktop/test/title.crew.tsv\",sep=\"\\t\")\n\nnameBasicColumnRename = nameBasic.select('_c0', '_c1').withColumnRenamed('_c0','writer').withColumnRenamed('_c1', 'writeName')\nnameColumnRename = crew.select('_c0', '_c2').withColumnRenamed('_c0','tconst').withColumnRenamed('_c2', 'writer')","dateUpdated":"2018-05-02T06:17:33+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[]},"apps":[],"jobName":"paragraph_1525239781836_-1670161121","id":"20180425-232751_1229749110","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:104","user":"anonymous","dateFinished":"2018-05-02T06:17:33+0000","dateStarted":"2018-05-02T06:17:33+0000"},{"title":"Combining two datasets adn exploding multiple writers to multiple rows","text":"%pyspark\n\nwriterJoin = nameColumnRename.join(output, on='tconst')\nwriterExplode = writerJoin.withColumn(\"writer\", explode(split(col(\"writer\"), \",\"))).select(\"tconst\",\"writer\",\"title\",\"year\",\"avgRating\",\"votes\",'runtime','genre')\n\ntable1 = writerExplode.toDF(\"tconst\",\"writer\",\"title\",\"year\",\"avgRating\",\"votes\",'runtime','genre')\nz.show(table1)","dateUpdated":"2018-05-02T06:17:35+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"tconst\twriter\ttitle\tyear\tavgRating\tvotes\truntime\tgenre\ntt0121766\tnm0000184\tStar Wars: Episode III - Revenge of the Sith\t2005\t7.6\t599275\t140\tAction,Adventure,Fantasy\ntt0133240\tnm0829044\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\ntt0133240\tnm0166256\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\ntt0133240\tnm0615780\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\ntt0133240\tnm0972395\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\ntt0133240\tnm0254645\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\ntt0133240\tnm0744429\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\ntt0204946\tnm0070566\tBring It On\t2000\t6.0\t76927\t98\tComedy,Romance,Sport\ntt0241025\tnm0269040\tVanity Fair\t2004\t6.2\t18540\t141\tDrama\ntt0241025\tnm0803967\tVanity Fair\t2004\t6.2\t18540\t141\tDrama\ntt0241025\tnm0271501\tVanity Fair\t2004\t6.2\t18540\t141\tDrama\ntt0241025\tnm0856842\tVanity Fair\t2004\t6.2\t18540\t141\tDrama\ntt0244000\tnm0853095\tAmerican Outlaws\t2001\t6.0\t12824\t94\tAction,Western\ntt0244000\tnm0736966\tAmerican Outlaws\t2001\t6.0\t12824\t94\tAction,Western\ntt0363988\tnm0000175\tSecret Window\t2004\t6.6\t161768\t96\tDrama,Mystery,Thriller\ntt0363988\tnm0462895\tSecret Window\t2004\t6.6\t161768\t96\tDrama,Mystery,Thriller\ntt0383028\tnm0442109\tSynecdoche, New York\t2008\t7.5\t66418\t124\tComedy,Drama\ntt0449010\tnm0118224\tEragon\t2006\t5.1\t114207\t104\tAction,Adventure,Family\ntt0449010\tnm1845777\tEragon\t2006\t5.1\t114207\t104\tAction,Adventure,Family\ntt0455362\tnm0176256\tThe Breed\t2006\t5.1\t11088\t91\tComedy,Horror,Thriller\ntt0455362\tnm0941810\tThe Breed\t2006\t5.1\t11088\t91\tComedy,Horror,Thriller\ntt0463854\tnm0423626\t28 Weeks Later\t2007\t7.0\t231584\t100\tDrama,Horror,Sci-Fi\ntt0463854\tnm0294379\t28 Weeks Later\t2007\t7.0\t231584\t100\tDrama,Horror,Sci-Fi\ntt0463854\tnm0492038\t28 Weeks Later\t2007\t7.0\t231584\t100\tDrama,Horror,Sci-Fi\ntt0463854\tnm0647449\t28 Weeks Later\t2007\t7.0\t231584\t100\tDrama,Horror,Sci-Fi\ntt0464049\tnm0003141\tThe History Boys\t2006\t6.9\t18867\t109\tComedy,Drama,Romance\ntt0475723\tnm1618246\tShinobi: Heart Under Blade\t2005\t7.0\t11456\t107\tAction,Drama,Fantasy\ntt0475723\tnm0945212\tShinobi: Heart Under Blade\t2005\t7.0\t11456\t107\tAction,Drama,Fantasy\ntt0810922\tnm0066851\tTake Me Home Tonight\t2011\t6.3\t46839\t97\tComedy,Drama,Romance\ntt0810922\tnm0276882\tTake Me Home Tonight\t2011\t6.3\t46839\t97\tComedy,Drama,Romance\ntt0810922\tnm0333410\tTake Me Home Tonight\t2011\t6.3\t46839\t97\tComedy,Drama,Romance\ntt0810922\tnm2281415\tTake Me Home Tonight\t2011\t6.3\t46839\t97\tComedy,Drama,Romance\ntt0844286\tnm0426059\tThe Brothers Bloom\t2008\t6.8\t44768\t114\tAdventure,Comedy,Drama\ntt0964185\tnm4119594\tTetro\t2009\t6.9\t11255\t127\tDrama\ntt0964185\tnm0000338\tTetro\t2009\t6.9\t11255\t127\tDrama\ntt1031969\tnm0285379\tThe Rocker\t2008\t6.2\t34350\t102\tComedy,Music\ntt1031969\tnm0938645\tThe Rocker\t2008\t6.2\t34350\t102\tComedy,Music\ntt1031969\tnm1582368\tThe Rocker\t2008\t6.2\t34350\t102\tComedy,Music\ntt1280558\tnm3109770\tA Wednesday\t2008\t8.2\t61878\t104\tCrime,Drama,Mystery\ntt1386588\tnm0570912\tThe Other Guys\t2010\t6.7\t210028\t107\tAction,Comedy,Crime\ntt1386588\tnm0376260\tThe Other Guys\t2010\t6.7\t210028\t107\tAction,Comedy,Crime\ntt1499658\tnm0002864\tHorrible Bosses\t2011\t6.9\t383054\t98\tComedy,Crime\ntt1499658\tnm0197855\tHorrible Bosses\t2011\t6.9\t383054\t98\tComedy,Crime\ntt1499658\tnm0326246\tHorrible Bosses\t2011\t6.9\t383054\t98\tComedy,Crime\ntt1529572\tnm1358354\tTrust\t2010\t6.9\t37687\t106\tCrime,Drama,Thriller\ntt1529572\tnm0275284\tTrust\t2010\t6.9\t37687\t106\tCrime,Drama,Thriller\ntt1637706\tnm0673400\tOur Idiot Brother\t2011\t6.4\t78747\t90\tComedy,Drama\ntt1637706\tnm3077617\tOur Idiot Brother\t2011\t6.4\t78747\t90\tComedy,Drama\ntt1637706\tnm0772005\tOur Idiot Brother\t2011\t6.4\t78747\t90\tComedy,Drama\ntt1640548\tnm0255278\tRampart\t2011\t5.8\t21290\t108\tCrime,Drama\ntt1640548\tnm0610219\tRampart\t2011\t5.8\t21290\t108\tCrime,Drama\ntt1847731\tnm1780037\tTomboy\t2011\t7.4\t14656\t82\tDrama\ntt2802144\tnm0963359\tKingsman: The Secret Service\t2014\t7.7\t503432\t129\tAction,Adventure,Comedy\ntt2802144\tnm0891216\tKingsman: The Secret Service\t2014\t7.7\t503432\t129\tAction,Adventure,Comedy\ntt2802144\tnm2092839\tKingsman: The Secret Service\t2014\t7.7\t503432\t129\tAction,Adventure,Comedy\ntt2802144\tnm1733301\tKingsman: The Secret Service\t2014\t7.7\t503432\t129\tAction,Adventure,Comedy\ntt2980210\tnm1101630\tA Hologram for the King\t2016\t6.1\t31887\t98\tComedy,Drama,Romance\ntt2980210\tnm0878756\tA Hologram for the King\t2016\t6.1\t31887\t98\tComedy,Drama,Romance\ntt3531824\tnm0789366\tNerve\t2016\t6.6\t90202\t96\tAction,Adventure,Crime\ntt3531824\tnm6290393\tNerve\t2016\t6.6\t90202\t96\tAction,Adventure,Crime\ntt3808342\tnm1841577\tSon of Saul\t2015\t7.5\t35155\t107\tDrama,War\ntt3808342\tnm6600340\tSon of Saul\t2015\t7.5\t35155\t107\tDrama,War\ntt5657846\tnm1890845\tDaddy's Home 2\t2017\t6.0\t30025\t100\tComedy\ntt5657846\tnm1898234\tDaddy's Home 2\t2017\t6.0\t30025\t100\tComedy\ntt5657846\tnm0122602\tDaddy's Home 2\t2017\t6.0\t30025\t100\tComedy\ntt0134084\tnm0932078\tScream 3\t2000\t5.5\t108192\t116\tHorror,Mystery\ntt0134084\tnm0472567\tScream 3\t2000\t5.5\t108192\t116\tHorror,Mystery\ntt0160184\tnm0842697\tEye See You\t2002\t5.3\t21245\t96\tCrime,Horror,Mystery\ntt0160184\tnm0109587\tEye See You\t2002\t5.3\t21245\t96\tCrime,Horror,Mystery\ntt0265087\tnm0702912\tBlack Knight\t2001\t4.8\t33810\t95\tAdventure,Comedy,Fantasy\ntt0265087\tnm0310087\tBlack Knight\t2001\t4.8\t33810\t95\tAdventure,Comedy,Fantasy\ntt0265087\tnm0841532\tBlack Knight\t2001\t4.8\t33810\t95\tAdventure,Comedy,Fantasy\ntt0283084\tnm0044810\tTuck Everlasting\t2002\t6.7\t19350\t90\tDrama,Family,Fantasy\ntt0283084\tnm0509340\tTuck Everlasting\t2002\t6.7\t19350\t90\tDrama,Family,Fantasy\ntt0283084\tnm0366337\tTuck Everlasting\t2002\t6.7\t19350\t90\tDrama,Family,Fantasy\ntt0287467\tnm0000264\tTalk to Her\t2002\t8.0\t93598\t112\tDrama,Mystery,Romance\ntt0292542\tnm0002728\tSon of the Bride\t2001\t7.9\t12963\t123\tComedy,Drama\ntt0292542\tnm0144909\tSon of the Bride\t2001\t7.9\t12963\t123\tComedy,Drama\ntt0304711\tnm0001338\tThe Order\t2003\t5.2\t15840\t102\tHorror,Mystery,Thriller\ntt0361596\tnm0601619\tFahrenheit 9/11\t2004\t7.5\t119093\t122\tDocumentary,Drama,War\ntt0367959\tnm0365383\tHannibal Rising\t2007\t6.2\t93941\t121\tCrime,Drama,Horror\ntt0386741\tnm0478799\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\ntt0386741\tnm1141181\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\ntt0386741\tnm0441301\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\ntt0386741\tnm0693898\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\ntt0386741\tnm0713412\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\ntt0454987\tnm0304830\tLet's Go to Prison\t2006\t6.0\t21220\t84\tComedy,Crime\ntt0454987\tnm0502073\tLet's Go to Prison\t2006\t6.0\t21220\t84\tComedy,Crime\ntt0454987\tnm0417794\tLet's Go to Prison\t2006\t6.0\t21220\t84\tComedy,Crime\ntt0454987\tnm1896832\tLet's Go to Prison\t2006\t6.0\t21220\t84\tComedy,Crime\ntt0475276\tnm0339030\tUnited 93\t2006\t7.6\t89370\t111\tDrama,History,Thriller\ntt0478970\tnm0942367\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\ntt0478970\tnm0180428\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\ntt0478970\tnm0570912\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\ntt0478970\tnm0748620\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\ntt0478970\tnm0498278\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\ntt0478970\tnm1293367\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\ntt0478970\tnm0456158\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\ntt0865554\tnm0254735\tThe Informers\t2008\t5.0\t14976\t98\tCrime,Drama,Thriller\ntt0865554\tnm1906430\tThe Informers\t2008\t5.0\t14976\t98\tCrime,Drama,Thriller\ntt0875113\tnm3299329\t99 francs\t2007\t7.3\t16914\t100\tComedy,Drama\ntt0875113\tnm3298144\t99 francs\t2007\t7.3\t16914\t100\tComedy,Drama\ntt0875113\tnm0468007\t99 francs\t2007\t7.3\t16914\t100\tComedy,Drama\ntt0875113\tnm0067166\t99 francs\t2007\t7.3\t16914\t100\tComedy,Drama\ntt0999913\tnm0527109\tStraw Dogs\t2011\t5.8\t29450\t110\tAction,Drama,Thriller\ntt0999913\tnm0329051\tStraw Dogs\t2011\t5.8\t29450\t110\tAction,Drama,Thriller\ntt0999913\tnm0001603\tStraw Dogs\t2011\t5.8\t29450\t110\tAction,Drama,Thriller\ntt0999913\tnm0930684\tStraw Dogs\t2011\t5.8\t29450\t110\tAction,Drama,Thriller\ntt1032825\tnm0740400\tLove and Other Impossible Pursuits\t2009\t6.4\t16901\t102\tDrama\ntt1032825\tnm2307279\tLove and Other Impossible Pursuits\t2009\t6.4\t16901\t102\tDrama\ntt1068680\tnm0831557\tYes Man\t2008\t6.8\t296418\t104\tComedy,Romance\ntt1068680\tnm0666871\tYes Man\t2008\t6.8\t296418\t104\tComedy,Romance\ntt1068680\tnm2361949\tYes Man\t2008\t6.8\t296418\t104\tComedy,Romance\ntt1068680\tnm0991245\tYes Man\t2008\t6.8\t296418\t104\tComedy,Romance\ntt1331307\tnm0000850\tDread\t2009\t5.7\t10894\t108\tDrama,Horror,Thriller\ntt1331307\tnm1304669\tDread\t2009\t5.7\t10894\t108\tDrama,Horror,Thriller\ntt1334260\tnm0410958\tNever Let Me Go\t2010\t7.2\t123991\t103\tDrama,Romance,Sci-Fi\ntt1334260\tnm0307497\tNever Let Me Go\t2010\t7.2\t123991\t103\tDrama,Romance,Sci-Fi\ntt1945084\tnm1365569\tEverly\t2014\t5.1\t14822\t92\tAction,Thriller\ntt1945084\tnm1362570\tEverly\t2014\t5.1\t14822\t92\tAction,Thriller\ntt2216240\tnm2105585\tA Hijacking\t2012\t7.2\t14117\t103\tDrama,Thriller\ntt3063516\tnm0424216\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\ntt3063516\tnm0005069\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\ntt3063516\tnm0871860\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\ntt3063516\tnm0046943\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\ntt3063516\tnm0806416\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\ntt3832914\tnm1731937\tWar Room\t2015\t6.4\t10793\t120\tDrama\ntt3832914\tnm1726854\tWar Room\t2015\t6.4\t10793\t120\tDrama\ntt0233469\tnm0740462\tCollateral Damage\t2002\t5.5\t66017\t108\tAction,Drama,Thriller\ntt0233469\tnm0341656\tCollateral Damage\t2002\t5.5\t66017\t108\tAction,Drama,Thriller\ntt0233469\tnm0341735\tCollateral Damage\t2002\t5.5\t66017\t108\tAction,Drama,Thriller\ntt0237572\tnm0246959\tThe Pledge\t2001\t6.8\t47024\t124\tCrime,Drama,Mystery\ntt0237572\tnm0472100\tThe Pledge\t2001\t6.8\t47024\t124\tCrime,Drama,Mystery\ntt0237572\tnm1400959\tThe Pledge\t2001\t6.8\t47024\t124\tCrime,Drama,Mystery\ntt0289635\tnm0873257\tYoung Adam\t2003\t6.5\t12249\t98\tCrime,Drama\ntt0289635\tnm0533284\tYoung Adam\t2003\t6.5\t12249\t98\tCrime,Drama\ntt0356150\tnm0073688\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\ntt0356150\tnm0541635\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\ntt0356150\tnm0769840\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\ntt0365737\tnm0300866\tSyriana\t2005\t6.9\t116854\t128\tDrama,Thriller\ntt0365737\tnm1373849\tSyriana\t2005\t6.9\t116854\t128\tDrama,Thriller\ntt0375912\tnm1129753\tLayer Cake\t2004\t7.4\t145572\t105\tCrime,Drama,Thriller\ntt0414982\tnm0604688\tFinal Destination 3\t2006\t5.8\t113958\t93\tFantasy,Horror,Mystery\ntt0414982\tnm0939128\tFinal Destination 3\t2006\t5.8\t113958\t93\tFantasy,Horror,Mystery\ntt0414982\tnm0714695\tFinal Destination 3\t2006\t5.8\t113958\t93\tFantasy,Horror,Mystery\ntt0420509\tnm0081433\tThe Aura\t2005\t7.2\t11862\t134\tCrime,Drama,Thriller\ntt0420509\tnm3381175\tThe Aura\t2005\t7.2\t11862\t134\tCrime,Drama,Thriller\ntt0450405\tnm0919369\tCirque du Freak: The Vampire's Assistant\t2009\t5.9\t38554\t109\tAction,Adventure,Fantasy\ntt0450405\tnm0001338\tCirque du Freak: The Vampire's Assistant\t2009\t5.9\t38554\t109\tAction,Adventure,Fantasy\ntt0450405\tnm1752231\tCirque du Freak: The Vampire's Assistant\t2009\t5.9\t38554\t109\tAction,Adventure,Fantasy\ntt0472399\tnm0921013\tThe Mechanic\t2011\t6.6\t135004\t93\tAction,Crime,Thriller\ntt0472399\tnm0137573\tThe Mechanic\t2011\t6.6\t135004\t93\tAction,Crime,Thriller\ntt0842926\tnm0158966\tThe Kids Are All Right\t2010\t7.0\t117463\t106\tComedy,Drama,Romance\ntt0842926\tnm0089742\tThe Kids Are All Right\t2010\t7.0\t117463\t106\tComedy,Drama,Romance\ntt1083452\tnm2306331\tEddie the Eagle\t2016\t7.4\t67064\t106\tBiography,Comedy,Drama\ntt1083452\tnm2035069\tEddie the Eagle\t2016\t7.4\t67064\t106\tBiography,Comedy,Drama\ntt1092633\tnm2228267\tThe Goods: Live Hard, Sell Hard\t2009\t5.8\t18768\t89\tComedy\ntt1092633\tnm2228305\tThe Goods: Live Hard, Sell Hard\t2009\t5.8\t18768\t89\tComedy\ntt1229340\tnm0002071\tAnchorman 2: The Legend Continues\t2013\t6.3\t146756\t119\tComedy\ntt1229340\tnm0570912\tAnchorman 2: The Legend Continues\t2013\t6.3\t146756\t119\tComedy\ntt1345836\tnm0634300\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\ntt1345836\tnm0634240\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\ntt1345836\tnm0333060\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\ntt1345836\tnm0004170\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\ntt1453405\tnm0768959\tMonsters University\t2013\t7.3\t269981\t104\tAdventure,Animation,Comedy\ntt1453405\tnm0314870\tMonsters University\t2013\t7.3\t269981\t104\tAdventure,Animation,Comedy\ntt1453405\tnm0047916\tMonsters University\t2013\t7.3\t269981\t104\tAdventure,Animation,Comedy\ntt1453405\tnm2937122\tMonsters University\t2013\t7.3\t269981\t104\tAdventure,Animation,Comedy\ntt1560747\tnm0000759\tThe Master\t2012\t7.1\t121445\t138\tDrama\ntt1592281\tnm0001631\tTake This Waltz\t2011\t6.6\t24728\t116\tComedy,Drama\ntt2120120\tnm0379056\tPixels\t2015\t5.6\t110881\t105\tAction,Comedy,Fantasy\ntt2120120\tnm0000251\tPixels\t2015\t5.6\t110881\t105\tAction,Comedy,Fantasy\ntt2120120\tnm1268896\tPixels\t2015\t5.6\t110881\t105\tAction,Comedy,Fantasy\ntt2299842\tnm1104118\tPieta\t2012\t7.2\t10658\t104\tCrime,Drama\ntt0134847\tnm0923646\tPitch Black\t2000\t7.1\t207146\t109\tHorror,Sci-Fi\ntt0134847\tnm0003117\tPitch Black\t2000\t7.1\t207146\t109\tHorror,Sci-Fi\ntt0134847\tnm0878638\tPitch Black\t2000\t7.1\t207146\t109\tHorror,Sci-Fi\ntt0166813\tnm0299301\tSpirit: Stallion of the Cimarron\t2002\t7.1\t52802\t83\tAdventure,Animation,Family\ntt0166813\tnm0524710\tSpirit: Stallion of the Cimarron\t2002\t7.1\t52802\t83\tAdventure,Animation,Family\ntt0293662\tnm0000108\tThe Transporter\t2002\t6.8\t258706\t92\tAction,Crime,Thriller\ntt0293662\tnm0436543\tThe Transporter\t2002\t6.8\t258706\t92\tAction,Crime,Thriller\ntt0311519\tnm0442454\tThe Man Without a Past\t2002\t7.7\t19448\t97\tComedy,Drama,Romance\ntt0383010\tnm0148808\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\ntt0383010\tnm0268370\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\ntt0383010\tnm0268380\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\ntt0395119\tnm0702416\tAlatriste\t2006\t6.1\t11091\t145\tAdventure,Drama,History\ntt0395119\tnm0246503\tAlatriste\t2006\t6.1\t11091\t145\tAdventure,Drama,History\ntt0395119\tnm4814439\tAlatriste\t2006\t6.1\t11091\t145\tAdventure,Drama,History\ntt0401792\tnm0588340\tSin City\t2005\t8.0\t698590\t124\tCrime,Thriller\ntt0423409\tnm1038177\tTristram Shandy: A Cock and Bull Story\t2005\t6.8\t11705\t94\tComedy\ntt0423409\tnm0101639\tTristram Shandy: A Cock and Bull Story\t2005\t6.8\t11705\t94\tComedy\ntt0451079\tnm0666791\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\ntt0451079\tnm0202425\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\ntt0451079\tnm0317450\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\ntt0465624\tnm0668309\tMy Super Ex-Girlfriend\t2006\t5.1\t57276\t96\tComedy,Romance,Sci-Fi\ntt0466893\tnm0518836\tMargaret\t2011\t6.5\t14143\t150\tDrama\ntt0485601\tnm1119079\tThe Secret of Kells\t2009\t7.7\t26516\t71\tAdventure,Animation,Family\ntt0485601\tnm0957105\tThe Secret of Kells\t2009\t7.7\t26516\t71\tAdventure,Animation,Family\ntt0775440\tnm0000175\tCell\t2016\t4.3\t19628\t98\tAction,Drama,Horror\ntt0775440\tnm2085654\tCell\t2016\t4.3\t19628\t98\tAction,Drama,Horror\ntt0787523\tnm0050332\tTowelhead\t2007\t7.0\t10826\t124\tDrama\ntt0787523\tnm1396563\tTowelhead\t2007\t7.0\t10826\t124\tDrama\ntt1229238\tnm0312367\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\ntt1229238\tnm0032227\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\ntt1229238\tnm0625858\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\ntt1229238\tnm0001873\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\ntt1229238\tnm0462895\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\ntt1291465\tnm0422552\tRaajneeti\t2010\t7.1\t13974\t163\tCrime,Drama\ntt1291465\tnm0707304\tRaajneeti\t2010\t7.1\t13974\t163\tCrime,Drama\ntt1291465\tnm0759785\tRaajneeti\t2010\t7.1\t13974\t163\tCrime,Drama\ntt1308729\tnm0131947\tBullet to the Head\t2012\t5.7\t42931\t92\tAction,Thriller\ntt1308729\tnm1989798\tBullet to the Head\t2012\t5.7\t42931\t92\tAction,Thriller\ntt1308729\tnm5631325\tBullet to the Head\t2012\t5.7\t42931\t92\tAction,Thriller\ntt1321860\tnm3189831\tThe Beaver\t2011\t6.7\t43617\t91\tDrama\ntt1481572\tnm1102140\tHappythankyoumoreplease\t2010\t6.8\t27751\t100\tComedy,Drama,Romance\ntt1623205\tnm0438449\tOz the Great and Powerful\t2013\t6.3\t186796\t130\tAdventure,Comedy,Drama\ntt1623205\tnm1865755\tOz the Great and Powerful\t2013\t6.3\t186796\t130\tAdventure,Comedy,Drama\ntt1623205\tnm0000875\tOz the Great and Powerful\t2013\t6.3\t186796\t130\tAdventure,Comedy,Drama\ntt1784575\tnm0236729\tThe Parade\t2011\t7.3\t10237\t115\tComedy,Drama\ntt1964418\tnm0511541\tTomorrowland\t2015\t6.5\t152934\t130\tAction,Adventure,Family\ntt1964418\tnm0083348\tTomorrowland\t2015\t6.5\t152934\t130\tAction,Adventure,Family\ntt1964418\tnm2701804\tTomorrowland\t2015\t6.5\t152934\t130\tAction,Adventure,Family\ntt1964624\tnm1974226\tIn the House\t2012\t7.4\t25812\t105\tComedy,Drama,Mystery\ntt1964624\tnm0654830\tIn the House\t2012\t7.4\t25812\t105\tComedy,Drama,Mystery\ntt2194499\tnm0193485\tAbout Time\t2013\t7.8\t239566\t123\tComedy,Drama,Fantasy\ntt2283362\tnm0378144\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\ntt2283362\tnm0852430\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\ntt2283362\tnm0833164\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\ntt2283362\tnm0571344\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\ntt2283362\tnm1273099\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\ntt2283362\tnm0003298\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\ntt2283362\tnm0684374\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\ntt2283362\tnm0885575\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\ntt2465146\tnm0029125\tAnd So It Goes\t2014\t5.8\t10788\t94\tComedy,Drama,Romance\ntt2488496\tnm0001410\tStar Wars: The Force Awakens\t2015\t8.0\t735972\t136\tAction,Adventure,Fantasy\ntt2488496\tnm0009190\tStar Wars: The Force Awakens\t2015\t8.0\t735972\t136\tAction,Adventure,Fantasy\ntt2488496\tnm1578335\tStar Wars: The Force Awakens\t2015\t8.0\t735972\t136\tAction,Adventure,Fantasy\ntt2488496\tnm0000184\tStar Wars: The Force Awakens\t2015\t8.0\t735972\t136\tAction,Adventure,Fantasy\ntt2639344\tnm0755158\tLove Is Strange\t2014\t6.7\t11014\t94\tDrama,Romance\ntt2639344\tnm0951592\tLove Is Strange\t2014\t6.7\t11014\t94\tDrama,Romance\ntt3783958\tnm3227090\tLa La Land\t2016\t8.1\t367801\t128\tComedy,Drama,Music\ntt0227445\tnm0852196\tThe Score\t2001\t6.8\t109071\t124\tCrime,Drama,Thriller\ntt0227445\tnm0758002\tThe Score\t2001\t6.8\t109071\t124\tCrime,Drama,Thriller\ntt0227445\tnm0229644\tThe Score\t2001\t6.8\t109071\t124\tCrime,Drama,Thriller\ntt0227445\tnm0809899\tThe Score\t2001\t6.8\t109071\t124\tCrime,Drama,Thriller\ntt0275230\tnm0436784\tBlood: The Last Vampire\t2000\t6.7\t10903\t48\tAction,Animation,Horror\ntt0275230\tnm1056267\tBlood: The Last Vampire\t2000\t6.7\t10903\t48\tAction,Animation,Horror\ntt0279781\tnm0419072\tSorority Boys\t2002\t5.4\t12729\t93\tComedy\ntt0279781\tnm0177637\tSorority Boys\t2002\t5.4\t12729\t93\tComedy\ntt0295178\tnm0000196\tAustin Powers in Goldmember\t2002\t6.2\t175877\t94\tAction,Adventure,Comedy\ntt0295178\tnm0567112\tAustin Powers in Goldmember\t2002\t6.2\t175877\t94\tAction,Adventure,Comedy\ntt0306434\tnm1164191\tAankhen\t2002\t7.6\t10053\t165\tComedy,Crime,Drama\ntt0306434\tnm0438089\tAankhen\t2002\t7.6\t10053\t165\tComedy,Crime,Drama\ntt0306434\tnm1150959\tAankhen\t2002\t7.6\t10053\t165\tComedy,Crime,Drama\ntt0314353\tnm0489620\tTears of the Sun\t2003\t6.6\t101746\t121\tAction,Drama,Thriller\ntt0314353\tnm0162752\tTears of the Sun\t2003\t6.6\t101746\t121\tAction,Drama,Thriller\ntt0397078\tnm0454783\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\ntt0397078\tnm0364423\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\ntt0397078\tnm0077080\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\ntt0397078\tnm0085933\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\ntt0397078\tnm0007079\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\ntt0430308\tnm1010540\tGet Rich or Die Tryin'\t2005\t5.2\t39654\t117\tBiography,Crime,Drama\ntt0438097\tnm0310087\tIce Age: The Meltdown\t2006\t6.8\t219139\t91\tAction,Adventure,Animation\ntt0438097\tnm0841532\tIce Age: The Meltdown\t2006\t6.8\t219139\t91\tAction,Adventure,Animation\ntt0438097\tnm2186362\tIce Age: The Meltdown\t2006\t6.8\t219139\t91\tAction,Adventure,Animation\ntt0466839\tnm0002132\tI Could Never Be Your Woman\t2007\t6.0\t15521\t97\tComedy,Drama,Romance\ntt0832266\tnm0111845\tDefinitely, Maybe\t2008\t7.2\t139257\t112\tComedy,Drama,Romance\ntt0860906\tnm0030417\tEvangelion: 2.0 You Can (Not) Advance\t2009\t8.0\t12776\t112\tAction,Animation,Drama\ntt0945513\tnm1618286\tSource Code\t2011\t7.5\t428577\t93\tMystery,Romance,Sci-Fi\ntt1051907\tnm0877078\tFor Love and Honor\t2007\t7.9\t15438\t140\tAction,Crime,Drama\ntt1213012\tnm0219270\tAlpha and Omega\t2010\t5.3\t11906\t90\tAdventure,Animation,Comedy\ntt1213012\tnm1558946\tAlpha and Omega\t2010\t5.3\t11906\t90\tAdventure,Animation,Comedy\ntt1658837\tnm1052791\tThe Tall Man\t2012\t5.9\t34310\t106\tCrime,Drama,Horror\ntt1853739\tnm1440023\tYou're Next\t2011\t6.5\t73813\t95\tHorror,Thriller\ntt1937390\tnm0001885\tNymphomaniac: Vol. I\t2013\t7.0\t98354\t117\tDrama\ntt1979319\tnm0914941\tRurouni Kenshin: Origins\t2012\t7.6\t17098\t134\tAction,Drama,History\ntt1979319\tnm2789483\tRurouni Kenshin: Origins\t2012\t7.6\t17098\t134\tAction,Drama,History\ntt1979319\tnm3311094\tRurouni Kenshin: Origins\t2012\t7.6\t17098\t134\tAction,Drama,History\ntt2099556\tnm0188722\tAntiviral\t2012\t5.7\t10504\t108\tHorror,Sci-Fi,Thriller\ntt2170439\tnm1890845\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\ntt2170439\tnm1898234\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\ntt2170439\tnm0326246\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\ntt2170439\tnm0197855\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\ntt2170439\tnm0002864\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\ntt2378281\tnm0753820\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\ntt2378281\tnm3898016\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\ntt2378281\tnm0220240\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\ntt2378281\tnm1405206\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\ntt2378281\tnm0735869\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\ntt2378281\tnm4252090\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\ntt2378281\tnm2077283\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\ntt2832470\tnm2482088\tDead Snow 2: Red vs. Dead\t2014\t6.9\t19083\t100\tAction,Comedy,Horror\ntt2832470\tnm0388473\tDead Snow 2: Red vs. Dead\t2014\t6.9\t19083\t100\tAction,Comedy,Horror\ntt2832470\tnm2552337\tDead Snow 2: Red vs. Dead\t2014\t6.9\t19083\t100\tAction,Comedy,Horror\ntt3095734\tnm2081046\tMonster Trucks\t2016\t5.7\t11488\t104\tAction,Adventure,Comedy\ntt3095734\tnm2816668\tMonster Trucks\t2016\t5.7\t11488\t104\tAction,Adventure,Comedy\ntt3095734\tnm0008743\tMonster Trucks\t2016\t5.7\t11488\t104\tAction,Adventure,Comedy\ntt3095734\tnm0074184\tMonster Trucks\t2016\t5.7\t11488\t104\tAction,Adventure,Comedy\ntt3321300\tnm3122514\tMI-5\t2015\t6.2\t16993\t104\tAction,Drama,Thriller\ntt3321300\tnm3123004\tMI-5\t2015\t6.2\t16993\t104\tAction,Drama,Thriller\ntt3321300\tnm0938727\tMI-5\t2015\t6.2\t16993\t104\tAction,Drama,Thriller\ntt3801314\tnm1436693\tKaththi\t2014\t8.0\t13945\t166\tAction,Drama\ntt0120679\tnm0380419\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\ntt0120679\tnm0797397\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\ntt0120679\tnm1187860\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\ntt0120679\tnm0622695\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\ntt0120679\tnm0858482\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\ntt0162222\tnm0115310\tCast Away\t2000\t7.8\t445063\t143\tAdventure,Drama,Romance\ntt0164184\tnm0002007\tThe Sum of All Fears\t2002\t6.4\t92873\t124\tAction,Drama,Thriller\ntt0164184\tnm0001921\tThe Sum of All Fears\t2002\t6.4\t92873\t124\tAction,Drama,Thriller\ntt0164184\tnm0002417\tThe Sum of All Fears\t2002\t6.4\t92873\t124\tAction,Drama,Thriller\ntt0242527\tnm0123434\tThe Hole\t2001\t6.2\t41155\t102\tDrama,Mystery,Thriller\ntt0242527\tnm0181185\tThe Hole\t2001\t6.2\t41155\t102\tDrama,Mystery,Thriller\ntt0242527\tnm0409675\tThe Hole\t2001\t6.2\t41155\t102\tDrama,Mystery,Thriller\ntt0251114\tnm0441896\tHart's War\t2002\t6.3\t46850\t125\tDrama,War\ntt0251114\tnm0712753\tHart's War\t2002\t6.3\t46850\t125\tDrama,War\ntt0251114\tnm0313623\tHart's War\t2002\t6.3\t46850\t125\tDrama,War\ntt0252503\tnm0000519\tHeist\t2001\t6.5\t29900\t109\tAction,Crime,Drama\ntt0267626\tnm0637491\tK-19: The Widowmaker\t2002\t6.7\t53278\t138\tDrama,History,Thriller\ntt0267626\tnm0477370\tK-19: The Widowmaker\t2002\t6.7\t53278\t138\tDrama,History,Thriller\ntt0338564\tnm0538320\tInfernal Affairs\t2002\t8.1\t106993\t101\tCrime,Drama,Mystery\ntt0338564\tnm0159039\tInfernal Affairs\t2002\t8.1\t106993\t101\tCrime,Drama,Mystery\ntt0343818\tnm0899113\tI, Robot\t2004\t7.1\t438005\t115\tAction,Crime,Drama\ntt0343818\tnm0326040\tI, Robot\t2004\t7.1\t438005\t115\tAction,Crime,Drama\ntt0343818\tnm0001920\tI, Robot\t2004\t7.1\t438005\t115\tAction,Crime,Drama\ntt0402022\tnm0006534\tÆon Flux\t2005\t5.5\t116336\t93\tAction,Sci-Fi,Thriller\ntt0402022\tnm0542062\tÆon Flux\t2005\t5.5\t116336\t93\tAction,Sci-Fi,Thriller\ntt0402022\tnm0161285\tÆon Flux\t2005\t5.5\t116336\t93\tAction,Sci-Fi,Thriller\ntt0408777\tnm1602472\tThe Edukators\t2004\t7.5\t28846\t127\tDrama,Romance\ntt0408777\tnm0918326\tThe Edukators\t2004\t7.5\t28846\t127\tDrama,Romance\ntt0436078\t\\N\tThe Aristocrats\t2005\t6.4\t15430\t89\tComedy,Documentary\ntt0443706\tnm0888743\tZodiac\t2007\t7.7\t360284\t157\tCrime,Drama,History\ntt0443706\tnm1172196\tZodiac\t2007\t7.7\t360284\t157\tCrime,Drama,History\ntt0465430\tnm1440314\tThe Cottage\t2008\t6.1\t10824\t92\tComedy,Crime,Horror\ntt0804497\tnm1349818\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\ntt0804497\tnm0281396\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\ntt0804497\tnm2272408\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\ntt0929425\tnm2500207\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\ntt0929425\tnm2828827\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\ntt0929425\tnm0158323\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\ntt0929425\tnm0223924\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\ntt0929425\tnm0308520\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\ntt0929425\tnm0309979\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\ntt0962726\tnm0058302\tHigh School Musical 3: Senior Year\t2008\t4.6\t49448\t112\tComedy,Drama,Family\ntt1029231\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\ntt1029231\tnm0080327\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\ntt1029231\tnm0409790\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\ntt1029231\tnm1011407\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\ntt1029231\tnm2410557\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\ntt1029231\tnm1300956\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\ntt1029231\tnm0073026\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\ntt1029231\tnm8661566\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\ntt1080016\tnm0010004\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\ntt1080016\tnm0073850\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\ntt1080016\tnm3229505\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\ntt1080016\tnm3508936\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\ntt1080016\tnm0718514\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\ntt1093908\tnm0970622\tConfessions of a Shopaholic\t2009\t5.9\t68112\t104\tComedy,Family,Romance\ntt1093908\tnm0278759\tConfessions of a Shopaholic\t2009\t5.9\t68112\t104\tComedy,Family,Romance\ntt1093908\tnm1547852\tConfessions of a Shopaholic\t2009\t5.9\t68112\t104\tComedy,Family,Romance\ntt1093908\tnm1536494\tConfessions of a Shopaholic\t2009\t5.9\t68112\t104\tComedy,Family,Romance\ntt1245112\tnm0049371\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\ntt1245112\tnm1548856\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\ntt1245112\tnm0687042\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\ntt1245112\tnm3306640\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\ntt1322312\tnm3192484\tGoing the Distance\t2010\t6.3\t53195\t102\tComedy,Romance\ntt1588170\tnm0453518\tI Saw the Devil\t2010\t7.8\t85873\t142\tAction,Drama,Horror\ntt1588170\tnm4219902\tI Saw the Devil\t2010\t7.8\t85873\t142\tAction,Drama,Horror\ntt1807950\tnm2898305\tLove Loves Coincidences\t2011\t7.4\t14333\t118\tDrama,Romance\ntt1975249\tnm1720703\t6 Bullets\t2012\t6.1\t12571\t115\tAction,Crime,Drama\ntt1975249\tnm1823479\t6 Bullets\t2012\t6.1\t12571\t115\tAction,Crime,Drama\ntt5308322\tnm1245146\tHappy Death Day\t2017\t6.5\t53178\t96\tHorror,Mystery,Thriller\ntt5862312\tnm3281140\tVeronica\t2017\t6.2\t17793\t105\tDrama,Horror\ntt5862312\tnm0687042\tVeronica\t2017\t6.2\t17793\t105\tDrama,Horror\ntt0220099\tnm0590316\tThe Tigger Movie\t2000\t6.3\t14654\t77\tAnimation,Comedy,Drama\ntt0220099\tnm0349966\tThe Tigger Movie\t2000\t6.3\t14654\t77\tAnimation,Comedy,Drama\ntt0220099\tnm0266255\tThe Tigger Movie\t2000\t6.3\t14654\t77\tAnimation,Comedy,Drama\ntt0252866\tnm0381221\tAmerican Pie 2\t2001\t6.4\t216414\t108\tComedy\ntt0252866\tnm0825738\tAmerican Pie 2\t2001\t6.4\t216414\t108\tComedy\ntt0279331\tnm0255278\tDark Blue\t2002\t6.6\t18595\t118\tCrime,Drama,Thriller\ntt0279331\tnm0043742\tDark Blue\t2002\t6.6\t18595\t118\tCrime,Drama,Thriller\ntt0284837\tnm0056187\tAli G Indahouse\t2002\t6.2\t75099\t85\tComedy,Romance\ntt0284837\tnm0563243\tAli G Indahouse\t2002\t6.2\t75099\t85\tComedy,Romance\ntt0327850\tnm0829739\tThe Rundown\t2003\t6.7\t89248\t104\tAction,Adventure,Comedy\ntt0327850\tnm0888743\tThe Rundown\t2003\t6.7\t89248\t104\tAction,Adventure,Comedy\ntt0338309\tnm0347188\tEvil\t2003\t7.8\t32453\t113\tDrama\ntt0338309\tnm1076710\tEvil\t2003\t7.8\t32453\t113\tDrama\ntt0338309\tnm0405632\tEvil\t2003\t7.8\t32453\t113\tDrama\ntt0338309\tnm0960161\tEvil\t2003\t7.8\t32453\t113\tDrama\ntt0347048\tnm0015359\tHead-On\t2004\t8.0\t44938\t121\tDrama,Romance\ntt0356721\tnm0751102\tI Heart Huckabees\t2004\t6.7\t59247\t107\tComedy\ntt0356721\tnm1337885\tI Heart Huckabees\t2004\t6.7\t59247\t107\tComedy\ntt0364970\tnm1175275\tBabylon A.D.\t2008\t5.6\t87005\t101\tAction,Adventure,Sci-Fi\ntt0364970\tnm0440913\tBabylon A.D.\t2008\t5.6\t87005\t101\tAction,Adventure,Sci-Fi\ntt0364970\tnm0078704\tBabylon A.D.\t2008\t5.6\t87005\t101\tAction,Adventure,Sci-Fi\ntt0364970\tnm1758001\tBabylon A.D.\t2008\t5.6\t87005\t101\tAction,Adventure,Sci-Fi\ntt0437777\tnm0877701\tSomething New\t2006\t6.8\t11301\t99\tComedy,Drama,Romance\ntt0440963\tnm0006904\tThe Bourne Ultimatum\t2007\t8.0\t556859\t115\tAction,Mystery,Thriller\ntt0440963\tnm1994243\tThe Bourne Ultimatum\t2007\t8.0\t556859\t115\tAction,Mystery,Thriller\ntt0440963\tnm1079776\tThe Bourne Ultimatum\t2007\t8.0\t556859\t115\tAction,Mystery,Thriller\ntt0440963\tnm0524924\tThe Bourne Ultimatum\t2007\t8.0\t556859\t115\tAction,Mystery,Thriller\ntt0482546\tnm0540759\tMiss Potter\t2006\t7.0\t25586\t88\tBiography,Drama\ntt0810988\tnm0041864\tThe Nines\t2007\t6.4\t30426\t100\tDrama,Fantasy,Mystery\ntt0892899\tnm2361978\tOutpost\t2008\t5.9\t14884\t90\tAction,Horror,Sci-Fi\ntt0892899\tnm0662404\tOutpost\t2008\t5.9\t14884\t90\tAction,Horror,Sci-Fi\ntt0892899\tnm1530422\tOutpost\t2008\t5.9\t14884\t90\tAction,Horror,Sci-Fi\ntt0993846\tnm1010540\tThe Wolf of Wall Street\t2013\t8.2\t944903\t180\tBiography,Comedy,Crime\ntt0993846\tnm0067789\tThe Wolf of Wall Street\t2013\t8.2\t944903\t180\tBiography,Comedy,Crime\ntt1571249\tnm2574897\tThe Skeleton Twins\t2014\t6.8\t35176\t93\tComedy,Drama,Romance\ntt1571249\tnm2114730\tThe Skeleton Twins\t2014\t6.8\t35176\t93\tComedy,Drama,Romance\ntt2096672\tnm1890845\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\ntt2096672\tnm1898234\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\ntt2096672\tnm0268380\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\ntt2096672\tnm0268370\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\ntt2096672\tnm0947395\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\ntt2096672\tnm0148808\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\ntt2258281\tnm0612816\tBeyond the Hills\t2012\t7.6\t10009\t152\tDrama\ntt2258281\tnm4208990\tBeyond the Hills\t2012\t7.6\t10009\t152\tDrama\ntt2872462\tnm0000876\tMistress America\t2015\t6.7\t20929\t84\tComedy,Drama\ntt2872462\tnm1950086\tMistress America\t2015\t6.7\t20929\t84\tComedy,Drama\ntt0132245\tnm0804847\tDriven\t2001\t4.5\t36362\t116\tAction,Drama,Sport\ntt0132245\tnm0845844\tDriven\t2001\t4.5\t36362\t116\tAction,Drama,Sport\ntt0132245\tnm0000230\tDriven\t2001\t4.5\t36362\t116\tAction,Drama,Sport\ntt0243655\tnm0795290\tWet Hot American Summer\t2001\t6.7\t46941\t97\tComedy,Romance\ntt0243655\tnm0906476\tWet Hot American Summer\t2001\t6.7\t46941\t97\tComedy,Romance\ntt0252444\tnm0969922\tRabbit-Proof Fence\t2002\t7.5\t25045\t94\tAdventure,Biography,Drama\ntt0252444\tnm0647608\tRabbit-Proof Fence\t2002\t7.5\t25045\t94\tAdventure,Biography,Drama\ntt0366627\tnm1789514\tThe Jacket\t2005\t7.1\t100160\t103\tDrama,Fantasy,Horror\ntt0366627\tnm0733692\tThe Jacket\t2005\t7.1\t100160\t103\tDrama,Fantasy,Horror\ntt0366627\tnm1127653\tThe Jacket\t2005\t7.1\t100160\t103\tDrama,Fantasy,Horror\ntt0374536\tnm0001188\tBewitched\t2005\t4.8\t62785\t102\tComedy,Fantasy,Romance\ntt0374536\tnm0258286\tBewitched\t2005\t4.8\t62785\t102\tComedy,Fantasy,Romance\ntt0374536\tnm0757268\tBewitched\t2005\t4.8\t62785\t102\tComedy,Fantasy,Romance\ntt0427312\tnm0001348\tGrizzly Man\t2005\t7.8\t46049\t103\tBiography,Documentary\ntt0445336\tnm0027815\tYou, the Living\t2007\t7.5\t12106\t95\tComedy,Drama,Music\ntt0829297\tnm2326155\tTen Inch Hero\t2007\t7.5\t10961\t102\tComedy,Drama,Romance\ntt1244668\tnm0015359\tSoul Kitchen\t2009\t7.3\t32291\t99\tComedy,Drama\ntt1244668\tnm0100196\tSoul Kitchen\t2009\t7.3\t32291\t99\tComedy,Drama\ntt1307068\tnm1032521\tSeeking a Friend for the End of the World\t2012\t6.7\t97691\t101\tAdventure,Comedy,Drama\ntt1468846\tnm1208603\tGet a Job\t2016\t5.3\t17796\t83\tComedy\ntt1468846\tnm1975882\tGet a Job\t2016\t5.3\t17796\t83\tComedy\ntt1540011\tnm1440023\tBlair Witch\t2016\t5.0\t32695\t89\tHorror,Thriller\ntt1610452\tnm3814301\tBand Baaja Baaraat\t2010\t7.3\t12047\t139\tComedy,Drama,Romance\ntt1610452\tnm1964923\tBand Baaja Baaraat\t2010\t7.3\t12047\t139\tComedy,Drama,Romance\ntt1610452\tnm1834891\tBand Baaja Baaraat\t2010\t7.3\t12047\t139\tComedy,Drama,Romance\ntt1657507\tnm0000108\tColombiana\t2011\t6.4\t83258\t108\tAction,Crime,Drama\ntt1657507\tnm0436543\tColombiana\t2011\t6.4\t83258\t108\tAction,Crime,Drama\ntt1714206\tnm2354099\tThe Spectacular Now\t2013\t7.1\t124312\t95\tComedy,Drama,Romance\ntt1714206\tnm2352210\tThe Spectacular Now\t2013\t7.1\t124312\t95\tComedy,Drama,Romance\ntt1714206\tnm4043665\tThe Spectacular Now\t2013\t7.1\t124312\t95\tComedy,Drama,Romance\ntt2076220\tnm0136021\tHoly Motors\t2012\t7.1\t34471\t115\tDrama,Fantasy\ntt2302755\tnm4950667\tOlympus Has Fallen\t2013\t6.5\t224852\t119\tAction,Drama,Thriller\ntt2302755\tnm4951717\tOlympus Has Fallen\t2013\t6.5\t224852\t119\tAction,Drama,Thriller\ntt2527336\tnm0426059\tStar Wars: The Last Jedi\t2017\t7.3\t366323\t152\tAction,Adventure,Fantasy\ntt2527336\tnm0000184\tStar Wars: The Last Jedi\t2017\t7.3\t366323\t152\tAction,Adventure,Fantasy\ntt2649554\tnm2158772\tMidnight Special\t2016\t6.6\t63184\t112\tDrama,Mystery,Sci-Fi\ntt2674426\tnm4424713\tMe Before You\t2016\t7.4\t143473\t106\tDrama,Romance\ntt3297330\tnm0629272\tGood Kill\t2014\t6.4\t19637\t102\tDrama,Thriller,War\ntt5286444\tnm6319218\tNeerja\t2016\t7.7\t16161\t122\tBiography,Drama,Thriller\ntt5286444\tnm2016161\tNeerja\t2016\t7.7\t16161\t122\tBiography,Drama,Thriller\ntt0253798\tnm0951686\tOut Cold\t2001\t6.3\t15364\t89\tComedy,Sport\ntt0325703\tnm1212988\tLara Croft Tomb Raider: The Cradle of Life\t2003\t5.5\t114835\t117\tAction,Adventure,Fantasy\ntt0325703\tnm0211823\tLara Croft Tomb Raider: The Cradle of Life\t2003\t5.5\t114835\t117\tAction,Adventure,Fantasy\ntt0325703\tnm0366337\tLara Croft Tomb Raider: The Cradle of Life\t2003\t5.5\t114835\t117\tAction,Adventure,Fantasy\ntt0335121\tnm0093560\tGodsend\t2004\t4.8\t23414\t102\tAction,Drama,Fantasy\ntt0371257\tnm1125275\tStay\t2005\t6.9\t67275\t99\tDrama,Mystery,Thriller\ntt0385002\tnm0591994\tGreen Street Hooligans\t2005\t7.5\t128929\t109\tCrime,Drama\ntt0385002\tnm1471990\tGreen Street Hooligans\t2005\t7.5\t128929\t109\tCrime,Drama\ntt0385002\tnm0791285\tGreen Street Hooligans\t2005\t7.5\t128929\t109\tCrime,Drama\ntt0396592\tnm0001070\tFat Albert\t2004\t4.3\t10112\t93\tComedy,Family,Fantasy\ntt0396592\tnm0456063\tFat Albert\t2004\t4.3\t10112\t93\tComedy,Family,Fantasy\ntt0409847\tnm0649460\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\ntt0409847\tnm0476064\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\ntt0409847\tnm0511541\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\ntt0409847\tnm1318843\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\ntt0409847\tnm1319757\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\ntt0409847\tnm0644203\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\ntt0409847\tnm0003321\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\ntt0428803\tnm0415207\tMarch of the Penguins\t2005\t7.6\t51279\t80\tDocumentary,Family\ntt0428803\tnm0275260\tMarch of the Penguins\t2005\t7.6\t51279\t80\tDocumentary,Family\ntt0428803\tnm1471001\tMarch of the Penguins\t2005\t7.6\t51279\t80\tDocumentary,Family\ntt0435623\tnm0955251\tConversations with Other Women\t2005\t7.1\t10886\t84\tComedy,Drama,Romance\ntt0435761\tnm0005124\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\ntt0435761\tnm0004056\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\ntt0435761\tnm0881279\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\ntt0435761\tnm1578335\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\ntt0473360\tnm1449019\tGoal II: Living the Dream\t2007\t5.9\t28442\t115\tDrama,Sport\ntt0473360\tnm1171743\tGoal II: Living the Dream\t2007\t5.9\t28442\t115\tDrama,Sport\ntt0473360\tnm0516384\tGoal II: Living the Dream\t2007\t5.9\t28442\t115\tDrama,Sport\ntt0482088\tnm0759270\tPriceless\t2006\t7.0\t28032\t106\tComedy,Romance\ntt0482088\tnm0333818\tPriceless\t2006\t7.0\t28032\t106\tComedy,Romance\ntt0803061\tnm0850044\tRed Dog\t2011\t7.5\t14541\t92\tBiography,Comedy,Drama\ntt0803061\tnm0207408\tRed Dog\t2011\t7.5\t14541\t92\tBiography,Comedy,Drama\ntt1046173\tnm0064181\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\ntt1046173\tnm0254213\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\ntt1046173\tnm1749087\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\ntt1046173\tnm1290582\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\ntt1046173\tnm0814085\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\ntt1084972\tnm2177665\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\ntt1084972\tnm1879189\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\ntt1084972\tnm1209132\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\ntt1084972\tnm0019507\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\ntt1084972\tnm1236022\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\ntt1084972\tnm0700872\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\ntt1084972\tnm0792767\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\ntt1120985\tnm0161834\tBlue Valentine\t2010\t7.4\t160418\t112\tDrama,Romance\ntt1120985\tnm0193387\tBlue Valentine\t2010\t7.4\t160418\t112\tDrama,Romance\ntt1120985\tnm2337556\tBlue Valentine\t2010\t7.4\t160418\t112\tDrama,Romance\ntt1194263\tnm0699046\tGet Low\t2009\t7.1\t20293\t103\tDrama,Mystery\ntt1194263\tnm2057149\tGet Low\t2009\t7.1\t20293\t103\tDrama,Mystery\ntt1194263\tnm3015337\tGet Low\t2009\t7.1\t20293\t103\tDrama,Mystery\ntt1231586\tnm0339733\tA Good Old Fashioned Orgy\t2011\t6.2\t19210\t95\tComedy,Romance\ntt1231586\tnm0404752\tA Good Old Fashioned Orgy\t2011\t6.2\t19210\t95\tComedy,Romance\ntt1234719\tnm0255296\tRed Dawn\t2012\t5.4\t66951\t93\tAction,Sci-Fi,Thriller\ntt1234719\tnm0664920\tRed Dawn\t2012\t5.4\t66951\t93\tAction,Sci-Fi,Thriller\ntt1234719\tnm0721817\tRed Dawn\t2012\t5.4\t66951\t93\tAction,Sci-Fi,Thriller\ntt1234719\tnm0587518\tRed Dawn\t2012\t5.4\t66951\t93\tAction,Sci-Fi,Thriller\ntt1268799\tnm1376383\tA Very Harold & Kumar 3D Christmas\t2011\t6.3\t59789\t90\tAdventure,Comedy\ntt1268799\tnm1375358\tA Very Harold & Kumar 3D Christmas\t2011\t6.3\t59789\t90\tAdventure,Comedy\ntt1298650\tnm0254645\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\ntt1298650\tnm0744429\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\ntt1298650\tnm0064181\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\ntt1298650\tnm0938684\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\ntt1298650\tnm0694627\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\ntt1483013\tnm2244980\tOblivion\t2013\t7.0\t430477\t124\tAction,Adventure,Mystery\ntt1483013\tnm1578335\tOblivion\t2013\t7.0\t430477\t124\tAction,Adventure,Mystery\ntt1483013\tnm2676052\tOblivion\t2013\t7.0\t430477\t124\tAction,Adventure,Mystery\ntt2096673\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\ntt2096673\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\ntt2096673\tnm0498834\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\ntt2096673\tnm2155757\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\ntt2096673\tnm1578335\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\ntt2096673\tnm2919995\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\ntt2096673\tnm0352778\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\ntt2096673\tnm0688132\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\ntt2265398\tnm1846132\tDrinking Buddies\t2013\t6.1\t51205\t90\tComedy,Drama,Romance\ntt4080728\tnm0391502\tA Man Called Ove\t2015\t7.7\t31817\t116\tComedy,Drama,Romance\ntt4080728\tnm7554519\tA Man Called Ove\t2015\t7.7\t31817\t116\tComedy,Drama,Romance\ntt0133152\tnm0099541\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\ntt0133152\tnm0115310\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\ntt0133152\tnm0465199\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\ntt0133152\tnm0742797\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\ntt0149624\tnm0565092\tAll the Pretty Horses\t2000\t5.8\t12061\t116\tDrama,Romance,Western\ntt0149624\tnm0848217\tAll the Pretty Horses\t2000\t5.8\t12061\t116\tDrama,Romance,Western\ntt0181739\tnm0405190\tOsmosis Jones\t2001\t6.3\t28053\t95\tAction,Adventure,Animation\ntt0317219\tnm0005124\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\ntt0317219\tnm0710020\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\ntt0317219\tnm0460146\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\ntt0317219\tnm1557594\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\ntt0317219\tnm1195697\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\ntt0317219\tnm1198436\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\ntt0317219\tnm0700760\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\ntt0443701\tnm0819487\tThe X Files: I Want to Believe\t2008\t5.9\t83158\t104\tDrama,Horror,Mystery\ntt0443701\tnm0004810\tThe X Files: I Want to Believe\t2008\t5.9\t83158\t104\tDrama,Horror,Mystery\ntt0449059\tnm1578335\tLittle Miss Sunshine\t2006\t7.8\t391289\t101\tComedy,Drama\ntt0981227\tnm1032521\tNick and Norah's Infinite Playlist\t2008\t6.7\t80519\t90\tComedy,Drama,Music\ntt0981227\tnm2578825\tNick and Norah's Infinite Playlist\t2008\t6.7\t80519\t90\tComedy,Drama,Music\ntt0981227\tnm2832819\tNick and Norah's Infinite Playlist\t2008\t6.7\t80519\t90\tComedy,Drama,Music\ntt1018818\tnm2489912\tAssassination of a High School President\t2008\t6.3\t14687\t93\tComedy,Crime,Mystery\ntt1018818\tnm1926674\tAssassination of a High School President\t2008\t6.3\t14687\t93\tComedy,Crime,Mystery\ntt1226271\tnm0604948\tThe Damned United\t2009\t7.6\t36082\t98\tBiography,Drama,Sport\ntt1226271\tnm3030961\tThe Damned United\t2009\t7.6\t36082\t98\tBiography,Drama,Sport\ntt1242545\tnm0491956\tLooking for Eric\t2009\t7.2\t14163\t116\tComedy,Drama,Fantasy\ntt1462667\tnm0001429\tOutrage\t2010\t6.8\t10296\t109\tAction,Crime,Drama\ntt1601913\tnm0138620\tThe Grey\t2011\t6.8\t220000\t117\tAction,Adventure,Drama\ntt1601913\tnm2259451\tThe Grey\t2011\t6.8\t220000\t117\tAction,Adventure,Drama\ntt1674784\tnm2244980\tTrespass\t2011\t5.3\t37707\t91\tCrime,Thriller\ntt1833844\tnm3270827\tBerberian Sound Studio\t2012\t6.2\t11976\t92\tDrama,Horror,Thriller\ntt1912398\tnm0001281\tGod Bless America\t2011\t7.2\t64232\t105\tComedy,Crime\ntt1951264\tnm0064479\tThe Hunger Games: Catching Fire\t2013\t7.5\t550267\t146\tAction,Adventure,Mystery\ntt1951264\tnm1578335\tThe Hunger Games: Catching Fire\t2013\t7.5\t550267\t146\tAction,Adventure,Mystery\ntt1951264\tnm1056741\tThe Hunger Games: Catching Fire\t2013\t7.5\t550267\t146\tAction,Adventure,Mystery\ntt2226597\tnm0328987\tThe Mountain Between Us\t2017\t6.4\t39463\t112\tAction,Adventure,Drama\ntt2226597\tnm4887947\tThe Mountain Between Us\t2017\t6.4\t39463\t112\tAction,Adventure,Drama\ntt2226597\tnm0919363\tThe Mountain Between Us\t2017\t6.4\t39463\t112\tAction,Adventure,Drama\ntt2281159\tnm3146718\tContracted\t2013\t5.3\t12486\t84\tDrama,Horror,Thriller\ntt2293640\tnm0528244\tMinions\t2015\t6.4\t177618\t91\tAction,Adventure,Animation\ntt4679210\tnm4737195\tPremam\t2015\t8.3\t11129\t156\tComedy,Drama,Romance\ntt5052448\tnm1443502\tGet Out\t2017\t7.7\t296485\t104\tHorror,Mystery,Thriller\ntt0200550\tnm0920859\tCoyote Ugly\t2000\t5.6\t97262\t100\tComedy,Drama,Music\ntt0213149\tnm0908824\tPearl Harbor\t2001\t6.1\t280229\t183\tAction,Drama,History\ntt0272207\tnm0138620\tNarc\t2002\t7.2\t35870\t105\tCrime,Drama,Mystery\ntt0277027\tnm0425581\tI Am Sam\t2001\t7.6\t131383\t132\tDrama\ntt0277027\tnm0625458\tI Am Sam\t2001\t7.6\t131383\t132\tDrama\ntt0350258\tnm0000431\tRay\t2004\t7.7\t121528\t152\tBiography,Drama,Music\ntt0350258\tnm1343803\tRay\t2004\t7.7\t121528\t152\tBiography,Drama,Music\ntt0353489\tnm0910550\tGinger Snaps 2: Unleashed\t2004\t6.5\t11203\t94\tHorror,Thriller\ntt0353489\tnm1325872\tGinger Snaps 2: Unleashed\t2004\t6.5\t11203\t94\tHorror,Thriller\ntt0362270\tnm0027572\tThe Life Aquatic with Steve Zissou\t2004\t7.3\t156922\t119\tAdventure,Comedy,Drama\ntt0362270\tnm0000876\tThe Life Aquatic with Steve Zissou\t2004\t7.3\t156922\t119\tAdventure,Comedy,Drama\ntt0397619\tnm1104118\tSamaritan Girl\t2004\t7.2\t12036\t95\tDrama\ntt0425379\tnm0716347\tI'm the Angel of Death: Pusher III\t2005\t7.3\t11431\t90\tCrime,Drama,Thriller\ntt0453556\tnm1083489\tTMNT\t2007\t6.3\t56609\t87\tAction,Adventure,Animation\ntt0453556\tnm0481990\tTMNT\t2007\t6.3\t56609\t87\tAction,Adventure,Animation\ntt0453556\tnm0247653\tTMNT\t2007\t6.3\t56609\t87\tAction,Adventure,Animation\ntt0772193\tnm0104335\tPrimeval\t2007\t4.7\t11810\t93\tAction,Adventure,Crime\ntt0772193\tnm0274905\tPrimeval\t2007\t4.7\t11810\t93\tAction,Adventure,Crime\ntt0785077\tnm0666806\tWho's Your Caddy?\t2007\t2.1\t14139\t93\tComedy,Sport\ntt0785077\tnm0021209\tWho's Your Caddy?\t2007\t2.1\t14139\t93\tComedy,Sport\ntt0785077\tnm0377485\tWho's Your Caddy?\t2007\t2.1\t14139\t93\tComedy,Sport\ntt0881320\tnm2510763\tSanctum\t2011\t5.9\t49840\t108\tAdventure,Drama,Thriller\ntt0881320\tnm1337757\tSanctum\t2011\t5.9\t49840\t108\tAdventure,Drama,Thriller\ntt1153706\tnm0005540\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\ntt1153706\tnm0915465\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\ntt1153706\tnm0005541\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\ntt1153706\tnm0915460\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\ntt1153706\tnm1349040\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\ntt1270761\tnm0868219\tDon't Be Afraid of the Dark\t2010\t5.6\t43276\t99\tFantasy,Horror,Thriller\ntt1270761\tnm0730422\tDon't Be Afraid of the Dark\t2010\t5.6\t43276\t99\tFantasy,Horror,Thriller\ntt1270761\tnm0571111\tDon't Be Afraid of the Dark\t2010\t5.6\t43276\t99\tFantasy,Horror,Thriller\ntt1302011\tnm0008743\tKung Fu Panda 2\t2011\t7.3\t210780\t90\tAction,Adventure,Animation\ntt1302011\tnm0074184\tKung Fu Panda 2\t2011\t7.3\t210780\t90\tAction,Adventure,Animation\ntt1355644\tnm3123612\tPassengers\t2016\t7.0\t270827\t116\tDrama,Sci-Fi,Thriller\ntt1424310\tnm0849282\tChinese Zodiac\t2012\t6.1\t18240\t109\tAction,Adventure\ntt1424310\tnm0867262\tChinese Zodiac\t2012\t6.1\t18240\t109\tAction,Adventure\ntt1424310\tnm0150894\tChinese Zodiac\t2012\t6.1\t18240\t109\tAction,Adventure\ntt1424310\tnm0000329\tChinese Zodiac\t2012\t6.1\t18240\t109\tAction,Adventure\ntt1467304\tnm1519353\tThe Human Centipede (First Sequence)\t2009\t4.4\t64077\t92\tHorror\ntt1559547\tnm0481418\tBeautiful Creatures\t2013\t6.2\t75802\t124\tDrama,Fantasy,Romance\ntt1559547\tnm3721581\tBeautiful Creatures\t2013\t6.2\t75802\t124\tDrama,Fantasy,Romance\ntt1559547\tnm0831130\tBeautiful Creatures\t2013\t6.2\t75802\t124\tDrama,Fantasy,Romance\ntt2167202\tnm3133150\tGetaway\t2013\t4.4\t21258\t90\tAction,Crime,Thriller\ntt2167202\tnm5091462\tGetaway\t2013\t4.4\t21258\t90\tAction,Crime,Thriller\ntt2343793\tnm0353673\tThird Person\t2013\t6.4\t23550\t137\tDrama,Romance\ntt2358925\tnm0175726\tUnfinished Business\t2015\t5.4\t26776\t91\tComedy\ntt2561546\tnm2630745\tThe Town That Dreaded Sundown\t2014\t5.6\t11545\t86\tHorror,Mystery,Thriller\ntt2561546\tnm0808073\tThe Town That Dreaded Sundown\t2014\t5.6\t11545\t86\tHorror,Mystery,Thriller\ntt0263488\tnm0759207\tJeepers Creepers\t2001\t6.1\t98208\t90\tHorror,Mystery\ntt0299930\tnm0000976\tGigli\t2003\t2.4\t43434\t121\tComedy,Crime,Romance\ntt0301727\tnm1607471\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\ntt0301727\tnm1144320\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\ntt0301727\tnm1609149\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\ntt0301727\tnm0674774\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\ntt0301727\tnm0674742\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\ntt0301727\tnm1183476\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\ntt0306841\tnm0418070\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\ntt0306841\tnm0214036\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\ntt0306841\tnm0833828\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\ntt0306841\tnm0591673\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\ntt0322259\tnm0860155\t2 Fast 2 Furious\t2003\t5.9\t217744\t107\tAction,Crime,Thriller\ntt0322259\tnm0104973\t2 Fast 2 Furious\t2003\t5.9\t217744\t107\tAction,Crime,Thriller\ntt0322259\tnm0351929\t2 Fast 2 Furious\t2003\t5.9\t217744\t107\tAction,Crime,Thriller\ntt0388795\tnm0698925\tBrokeback Mountain\t2005\t7.7\t284696\t134\tDrama,Romance\ntt0388795\tnm0573505\tBrokeback Mountain\t2005\t7.7\t284696\t134\tDrama,Romance\ntt0388795\tnm0652223\tBrokeback Mountain\t2005\t7.7\t284696\t134\tDrama,Romance\ntt0409182\tnm0698873\tPoseidon\t2006\t5.6\t88303\t98\tAction,Adventure,Drama\ntt0409182\tnm0302904\tPoseidon\t2006\t5.6\t88303\t98\tAction,Adventure,Drama\ntt0490086\tnm0509288\tBig Stan\t2007\t6.2\t37288\t105\tAction,Comedy\ntt0499375\tnm0711745\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\ntt0499375\tnm1715502\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\ntt0499375\tnm0440604\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\ntt0499375\tnm0837675\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\ntt0499375\tnm0007124\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\ntt0804492\tnm0274559\tThe Hottie & the Nottie\t2008\t1.9\t34514\t91\tComedy,Romance\ntt0844457\tnm1557910\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\ntt0844457\tnm0836715\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\ntt0844457\tnm0377422\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\ntt0844457\tnm1112548\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\ntt0844457\tnm0736447\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\ntt0929632\tnm2819316\tPrecious\t2009\t7.3\t96075\t110\tDrama\ntt0929632\tnm2497119\tPrecious\t2009\t7.3\t96075\t110\tDrama\ntt0970179\tnm0517589\tHugo\t2011\t7.5\t271842\t126\tAdventure,Drama,Family\ntt0970179\tnm2561765\tHugo\t2011\t7.5\t271842\t126\tAdventure,Drama,Family\ntt1172570\tnm0635431\tBronson\t2008\t7.1\t102441\t92\tAction,Biography,Crime\ntt1172570\tnm0716347\tBronson\t2008\t7.1\t102441\t92\tAction,Biography,Crime\ntt1226273\tnm1184258\tEdge of Darkness\t2010\t6.6\t81563\t117\tCrime,Drama,Mystery\ntt1226273\tnm0100597\tEdge of Darkness\t2010\t6.6\t81563\t117\tCrime,Drama,Mystery\ntt1226273\tnm0448392\tEdge of Darkness\t2010\t6.6\t81563\t117\tCrime,Drama,Mystery\ntt1228705\tnm0857620\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\ntt1228705\tnm0498278\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\ntt1228705\tnm1411347\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\ntt1228705\tnm1293367\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\ntt1228705\tnm0456158\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\ntt1302067\tnm0893262\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\ntt1302067\tnm0827985\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\ntt1302067\tnm0178589\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\ntt1302067\tnm0053484\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\ntt1302067\tnm0360253\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\ntt1502712\tnm2916300\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\ntt1502712\tnm1334526\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\ntt1502712\tnm2503633\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\ntt1502712\tnm0498278\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\ntt1502712\tnm0456158\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\ntt1531663\tnm3656297\tEverything Must Go\t2010\t6.4\t44348\t97\tComedy,Drama\ntt1531663\tnm0142577\tEverything Must Go\t2010\t6.4\t44348\t97\tComedy,Drama\ntt1586752\tnm0445669\tMachine Gun Preacher\t2011\t6.8\t57828\t129\tAction,Biography,Crime\ntt1740047\t\\N\tThe Trip\t2010\t7.0\t19399\t112\tComedy,Drama\ntt2125666\t\\N\tThe Queen of Versailles\t2012\t7.1\t11562\t100\tDocumentary\ntt2235108\tnm2798574\tDear White People\t2014\t6.2\t22830\t108\tComedy,Drama,Romance\ntt2404738\tnm0346277\tWitching and Bitching\t2013\t6.4\t11366\t112\tComedy,Drama,Horror\ntt2404738\tnm0407067\tWitching and Bitching\t2013\t6.4\t11366\t112\tComedy,Drama,Horror\ntt2965412\tnm1322753\tComet\t2014\t6.8\t15041\t91\tComedy,Drama,Romance\ntt5074352\tnm6328029\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\ntt5074352\tnm6328031\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\ntt5074352\tnm6328030\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\ntt5074352\tnm8661566\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\ntt5074352\tnm4318159\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\ntt6108090\tnm2378914\tSecret Superstar\t2017\t8.1\t10283\t150\tDrama,Family,Music\ntt0200027\tnm0195838\tRiding in Cars with Boys\t2001\t6.5\t24376\t132\tBiography,Comedy,Drama\ntt0200027\tnm0911750\tRiding in Cars with Boys\t2001\t6.5\t24376\t132\tBiography,Comedy,Drama\ntt0216651\tnm0452837\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\ntt0216651\tnm0159109\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\ntt0216651\tnm2196955\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\ntt0216651\tnm0282027\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\ntt0216651\tnm0410237\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\ntt0218922\tnm0941280\tOriginal Sin\t2001\t6.0\t48527\t116\tDrama,Mystery,Romance\ntt0218922\tnm0188165\tOriginal Sin\t2001\t6.0\t48527\t116\tDrama,Mystery,Romance\ntt0238112\tnm0806256\tCaptain Corelli's Mandolin\t2001\t5.9\t30048\t131\tDrama,Music,Romance\ntt0238112\tnm0207408\tCaptain Corelli's Mandolin\t2001\t5.9\t30048\t131\tDrama,Music,Romance\ntt0240772\tnm0425138\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\ntt0240772\tnm0751207\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\ntt0240772\tnm0113689\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\ntt0240772\tnm0496468\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\ntt0240772\tnm0341372\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\ntt0299172\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm1713427\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0505946\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0448208\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0501729\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0062773\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0475211\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0504670\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0518951\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0524710\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0636236\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0682473\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0683724\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0683737\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm0957798\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm1073250\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0299172\tnm2320658\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\ntt0338337\tnm0001140\tPaycheck\t2003\t6.3\t95270\t119\tAction,Mystery,Sci-Fi\ntt0338337\tnm1212988\tPaycheck\t2003\t6.3\t95270\t119\tAction,Mystery,Sci-Fi\ntt0358456\tnm0598671\tEarthlings\t2005\t8.7\t14985\t95\tDocumentary,Horror\ntt0365847\tnm0867262\tThe Myth\t2005\t6.2\t12723\t122\tAction,Adventure,Comedy\ntt0365847\tnm0910924\tThe Myth\t2005\t6.2\t12723\t122\tAction,Adventure,Comedy\ntt0365847\tnm1934885\tThe Myth\t2005\t6.2\t12723\t122\tAction,Adventure,Comedy\ntt0369735\tnm1390172\tMonster-in-Law\t2005\t5.5\t48828\t101\tComedy,Romance\ntt0467197\tnm2830774\tMax Payne\t2008\t5.4\t114271\t100\tAction,Crime,Drama\ntt0467197\tnm1053843\tMax Payne\t2008\t5.4\t114271\t100\tAction,Crime,Drama\ntt0808279\tnm0359734\tFunny Games\t2007\t6.5\t78766\t111\tCrime,Drama,Horror\ntt1046997\tnm2678286\tMiracle at St. Anna\t2008\t6.0\t16543\t160\tAction,Crime,Drama\ntt1152758\tnm0473936\tDear Zachary: A Letter to a Son About His Father\t2008\t8.6\t26717\t95\tBiography,Crime,Documentary\ntt1174730\tnm0208343\tCity Island\t2009\t7.4\t28659\t104\tComedy,Drama\ntt1179794\tnm2356614\tTiMER\t2009\t6.5\t11409\t99\tComedy,Drama,Fantasy\ntt1187064\tnm1247462\tTriangle\t2009\t6.9\t81354\t99\tFantasy,Mystery,Thriller\ntt1303828\tnm0824220\tDefendor\t2009\t6.8\t33316\t101\tComedy,Crime,Drama\ntt1588173\tnm3772853\tWarm Bodies\t2013\t6.9\t201176\t98\tComedy,Horror,Romance\ntt1588173\tnm1349522\tWarm Bodies\t2013\t6.9\t201176\t98\tComedy,Horror,Romance\ntt1703148\tnm1545955\tThe Hunter\t2011\t6.8\t33493\t102\tAdventure,Drama,Thriller\ntt1703148\tnm0277337\tThe Hunter\t2011\t6.8\t33493\t102\tAdventure,Drama,Thriller\ntt1703148\tnm0626706\tThe Hunter\t2011\t6.8\t33493\t102\tAdventure,Drama,Thriller\ntt1703148\tnm3772967\tThe Hunter\t2011\t6.8\t33493\t102\tAdventure,Drama,Thriller\ntt1969062\tnm0285379\tInfinitely Polar Bear\t2014\t7.0\t13057\t90\tComedy,Drama,Romance\ntt2326612\tnm0000382\tThe Captive\t2014\t5.9\t23345\t112\tCrime,Drama,Mystery\ntt2326612\tnm1449098\tThe Captive\t2014\t5.9\t23345\t112\tCrime,Drama,Mystery\ntt3118452\tnm5278146\tCircle\t2015\t6.0\t24288\t87\tDrama,Horror,Mystery\ntt3118452\tnm5278427\tCircle\t2015\t6.0\t24288\t87\tDrama,Horror,Mystery\ntt3210686\tnm2589005\tSon of God\t2014\t5.7\t16969\t138\tBiography,Drama,History\ntt3210686\tnm0817895\tSon of God\t2014\t5.7\t16969\t138\tBiography,Drama,History\ntt3210686\tnm0841997\tSon of God\t2014\t5.7\t16969\t138\tBiography,Drama,History\ntt3210686\tnm1646081\tSon of God\t2014\t5.7\t16969\t138\tBiography,Drama,History\ntt3564472\tnm1106214\tGirls Trip\t2017\t6.3\t21666\t122\tComedy\ntt3564472\tnm1244069\tGirls Trip\t2017\t6.3\t21666\t122\tComedy\ntt3564472\tnm2002824\tGirls Trip\t2017\t6.3\t21666\t122\tComedy\ntt4935372\tnm2015237\tThe Devil's Candy\t2015\t6.4\t10900\t79\tDrama,Horror,Thriller\ntt5727282\tnm2585445\tBorg vs McEnroe\t2017\t7.0\t11336\t107\tBiography,Drama,Sport\ntt6000478\tnm0319659\tRoman J. Israel, Esq.\t2017\t6.4\t14086\t122\tCrime,Drama\ntt6214928\tnm0000175\t1922\t2017\t6.3\t23633\t102\tCrime,Drama,Mystery\ntt6214928\tnm1991847\t1922\t2017\t6.3\t23633\t102\tCrime,Drama,Mystery\ntt0314331\tnm0193485\tLove Actually\t2003\t7.6\t360549\t135\tComedy,Drama,Romance\ntt0347149\tnm0594503\tHowl's Moving Castle\t2004\t8.2\t258466\t119\tAdventure,Animation,Family\ntt0347149\tnm1168510\tHowl's Moving Castle\t2004\t8.2\t258466\t119\tAdventure,Animation,Family\ntt0367089\tnm0000876\tThe Squid and the Whale\t2005\t7.4\t66949\t81\tComedy,Drama\ntt0388500\tnm0402804\tBeauty Shop\t2005\t5.5\t14596\t105\tComedy\ntt0388500\tnm0486824\tBeauty Shop\t2005\t5.5\t14596\t105\tComedy\ntt0388500\tnm0888491\tBeauty Shop\t2005\t5.5\t14596\t105\tComedy\ntt0457939\tnm0583600\tThe Holiday\t2006\t6.9\t206327\t138\tComedy,Romance\ntt0477051\tnm0000552\tNorbit\t2007\t4.0\t58668\t102\tComedy,Romance\ntt0477051\tnm0614151\tNorbit\t2007\t4.0\t58668\t102\tComedy,Romance\ntt0477051\tnm0771065\tNorbit\t2007\t4.0\t58668\t102\tComedy,Romance\ntt0477051\tnm0740115\tNorbit\t2007\t4.0\t58668\t102\tComedy,Romance\ntt1192628\tnm0517589\tRango\t2011\t7.2\t204403\t107\tAdventure,Animation,Comedy\ntt1192628\tnm0893659\tRango\t2011\t7.2\t204403\t107\tAdventure,Animation,Comedy\ntt1192628\tnm0126096\tRango\t2011\t7.2\t204403\t107\tAdventure,Animation,Comedy\ntt1210166\tnm0001873\tMoneyball\t2011\t7.6\t310248\t133\tBiography,Drama,Sport\ntt1210166\tnm0815070\tMoneyball\t2011\t7.6\t310248\t133\tBiography,Drama,Sport\ntt1210166\tnm3133181\tMoneyball\t2011\t7.6\t310248\t133\tBiography,Drama,Sport\ntt1210166\tnm1034122\tMoneyball\t2011\t7.6\t310248\t133\tBiography,Drama,Sport\ntt1233381\tnm0946324\tThree Monkeys\t2008\t7.4\t16008\t109\tDrama\ntt1233381\tnm1941926\tThree Monkeys\t2008\t7.4\t16008\t109\tDrama\ntt1233381\tnm0149196\tThree Monkeys\t2008\t7.4\t16008\t109\tDrama\ntt1261945\tnm0455078\tSex and the City 2\t2010\t4.4\t65496\t146\tComedy,Drama,Romance\ntt1261945\tnm0124299\tSex and the City 2\t2010\t4.4\t65496\t146\tComedy,Drama,Romance\ntt1261945\tnm0823015\tSex and the City 2\t2010\t4.4\t65496\t146\tComedy,Drama,Romance\ntt1496025\tnm0936482\tUnderworld Awakening\t2012\t6.4\t132817\t88\tAction,Fantasy,Horror\ntt1496025\tnm0387198\tUnderworld Awakening\t2012\t6.4\t132817\t88\tAction,Fantasy,Horror\ntt1496025\tnm0833089\tUnderworld Awakening\t2012\t6.4\t132817\t88\tAction,Fantasy,Horror\ntt1496025\tnm0122335\tUnderworld Awakening\t2012\t6.4\t132817\t88\tAction,Fantasy,Horror\ntt1496025\tnm0340485\tUnderworld Awakening\t2012\t6.4\t132817\t88\tAction,Fantasy,Horror\ntt1496025\tnm0564286\tUnderworld Awakening\t2012\t6.4\t132817\t88\tAction,Fantasy,Horror\ntt1659337\tnm0154716\tThe Perks of Being a Wallflower\t2012\t8.0\t400264\t102\tDrama,Romance\ntt1924429\tnm0013878\tTrance\t2013\t6.9\t101375\t101\tCrime,Drama,Mystery\ntt1924429\tnm0388076\tTrance\t2013\t6.9\t101375\t101\tCrime,Drama,Mystery\ntt2014338\tnm0447863\tSide by Side\t2012\t7.6\t12124\t99\tDocumentary\ntt2179136\tnm0355699\tAmerican Sniper\t2014\t7.3\t376858\t133\tAction,Biography,Drama\ntt2179136\tnm4881574\tAmerican Sniper\t2014\t7.3\t376858\t133\tAction,Biography,Drama\ntt2179136\tnm6984200\tAmerican Sniper\t2014\t7.3\t376858\t133\tAction,Biography,Drama\ntt2179136\tnm7198520\tAmerican Sniper\t2014\t7.3\t376858\t133\tAction,Biography,Drama\ntt2281587\tnm0090386\tMuppets Most Wanted\t2014\t6.4\t27307\t107\tAdventure,Comedy,Crime\ntt2281587\tnm0831557\tMuppets Most Wanted\t2014\t6.4\t27307\t107\tAdventure,Comedy,Crime\ntt2281587\tnm0001345\tMuppets Most Wanted\t2014\t6.4\t27307\t107\tAdventure,Comedy,Crime\ntt2403021\tnm3771227\tThe Green Inferno\t2013\t5.3\t29995\t100\tAdventure,Horror,Thriller\ntt2403021\tnm0744834\tThe Green Inferno\t2013\t5.3\t29995\t100\tAdventure,Horror,Thriller\ntt3874544\tnm0567112\tThe Boss Baby\t2017\t6.3\t77275\t97\tAnimation,Comedy,Family\ntt3874544\tnm2807682\tThe Boss Baby\t2017\t6.3\t77275\t97\tAnimation,Comedy,Family\ntt0258153\tnm0629272\tS1m0ne\t2002\t6.1\t54878\t117\tComedy,Drama,Sci-Fi\ntt0289848\tnm0518836\tAnalyze That\t2002\t5.9\t74994\t96\tComedy,Crime\ntt0289848\tnm0865847\tAnalyze That\t2002\t5.9\t74994\t96\tComedy,Crime\ntt0289848\tnm0826042\tAnalyze That\t2002\t5.9\t74994\t96\tComedy,Crime\ntt0289848\tnm0000601\tAnalyze That\t2002\t5.9\t74994\t96\tComedy,Crime\ntt0314412\tnm0170043\tMy Life Without Me\t2003\t7.6\t22424\t106\tDrama,Romance\ntt0314412\tnm1563090\tMy Life Without Me\t2003\t7.6\t22424\t106\tDrama,Romance\ntt0328880\tnm0614742\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0131661\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0395924\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0070368\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm1943855\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0027459\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm1850798\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm2119461\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0940401\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0258059\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0363125\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0424666\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0636236\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm1561257\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0388113\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm1073183\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0791588\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0683724\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm1973552\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0234837\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm2320658\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm2042425\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm1950901\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm0930261\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0328880\tnm2090115\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\ntt0374900\tnm0381478\tNapoleon Dynamite\t2004\t6.9\t175371\t96\tComedy\ntt0374900\tnm1415801\tNapoleon Dynamite\t2004\t6.9\t175371\t96\tComedy\ntt0375568\tnm0856804\tAstro Boy\t2009\t6.3\t28633\t94\tAction,Animation,Comedy\ntt0375568\tnm0101047\tAstro Boy\t2009\t6.3\t28633\t94\tAction,Animation,Comedy\ntt0375568\tnm0365390\tAstro Boy\t2009\t6.3\t28633\t94\tAction,Animation,Comedy\ntt0382077\tnm1324179\tHide and Seek\t2005\t5.9\t75442\t101\tDrama,Horror,Mystery\ntt0443456\tnm0005237\tBreaking and Entering\t2006\t6.5\t20851\t120\tCrime,Drama,Romance\ntt0795441\tnm1174527\tOorlogswinter\t2008\t7.0\t11137\t103\tDrama,History,War\ntt0795441\tnm0465551\tOorlogswinter\t2008\t7.0\t11137\t103\tDrama,History,War\ntt0795441\tnm1007747\tOorlogswinter\t2008\t7.0\t11137\t103\tDrama,History,War\ntt0795441\tnm1399358\tOorlogswinter\t2008\t7.0\t11137\t103\tDrama,History,War\ntt1014775\tnm0124244\tBeverly Hills Chihuahua\t2008\t3.8\t19278\t91\tAdventure,Comedy,Drama\ntt1014775\tnm1583667\tBeverly Hills Chihuahua\t2008\t3.8\t19278\t91\tAdventure,Comedy,Drama\ntt1054606\tnm0000416\tThe Imaginarium of Doctor Parnassus\t2009\t6.8\t134130\t123\tAdventure,Fantasy,Mystery\ntt1054606\tnm0571650\tThe Imaginarium of Doctor Parnassus\t2009\t6.8\t134130\t123\tAdventure,Fantasy,Mystery\ntt1183276\tnm2071861\tThe Horde\t2009\t5.9\t14058\t90\tAction,Horror\ntt1183276\tnm2278184\tThe Horde\t2009\t5.9\t14058\t90\tAction,Horror\ntt1183276\tnm2959356\tThe Horde\t2009\t5.9\t14058\t90\tAction,Horror\ntt1183276\tnm1119478\tThe Horde\t2009\t5.9\t14058\t90\tAction,Horror\ntt1183276\tnm2425150\tThe Horde\t2009\t5.9\t14058\t90\tAction,Horror\ntt1186370\tnm0355699\tSpread\t2009\t5.9\t34997\t97\tComedy,Drama,Romance\ntt1186370\tnm0464382\tSpread\t2009\t5.9\t34997\t97\tComedy,Drama,Romance\ntt1216496\tnm0094435\tMother\t2009\t7.8\t33722\t129\tAction,Crime,Drama\ntt1216496\tnm2977474\tMother\t2009\t7.8\t33722\t129\tAction,Crime,Drama\ntt1379177\tnm2128335\tThe Disappearance of Alice Creed\t2009\t6.8\t22570\t100\tCrime,Horror,Thriller\ntt1410051\tnm3391039\tRetreat\t2011\t5.8\t10106\t90\tDrama,Thriller\ntt1410051\tnm3393440\tRetreat\t2011\t5.8\t10106\t90\tDrama,Thriller\ntt1428538\tnm2482088\tHansel & Gretel: Witch Hunters\t2013\t6.1\t175058\t88\tAction,Fantasy,Horror\ntt1428538\tnm0342278\tHansel & Gretel: Witch Hunters\t2013\t6.1\t175058\t88\tAction,Fantasy,Horror\ntt1428538\tnm0342303\tHansel & Gretel: Witch Hunters\t2013\t6.1\t175058\t88\tAction,Fantasy,Horror\ntt1625346\tnm1959505\tYoung Adult\t2011\t6.3\t69596\t94\tComedy,Drama\ntt1839596\tnm1665004\tRockstar\t2011\t7.6\t31435\t159\tDrama,Music,Musical\ntt1839596\tnm2813440\tRockstar\t2011\t7.6\t31435\t159\tDrama,Music,Musical\ntt2042568\tnm0001054\tInside Llewyn Davis\t2013\t7.5\t114649\t104\tDrama,Music\ntt2042568\tnm0001053\tInside Llewyn Davis\t2013\t7.5\t114649\t104\tDrama,Music\ntt2234155\tnm0000681\tThe Internship\t2013\t6.3\t172990\t119\tComedy\ntt2234155\tnm2972864\tThe Internship\t2013\t6.3\t172990\t119\tComedy\ntt2582576\tnm2532249\tSand Castle\t2017\t6.3\t11819\t113\tDrama,War\ntt3674140\tnm0000694\tThe Salt of the Earth\t2014\t8.4\t15740\t110\tBiography,Documentary,History\ntt3674140\tnm2081382\tThe Salt of the Earth\t2014\t8.4\t15740\t110\tBiography,Documentary,History\ntt3674140\tnm6514669\tThe Salt of the Earth\t2014\t8.4\t15740\t110\tBiography,Documentary,History\ntt5165344\tnm8254778\tRustom\t2016\t7.1\t17335\t148\tCrime,Drama,Thriller\ntt0120630\tnm0520485\tChicken Run\t2000\t7.0\t155267\t84\tAdventure,Animation,Comedy\ntt0120630\tnm0661910\tChicken Run\t2000\t7.0\t155267\t84\tAdventure,Animation,Comedy\ntt0120630\tnm0456732\tChicken Run\t2000\t7.0\t155267\t84\tAdventure,Animation,Comedy\ntt0120630\tnm0123666\tChicken Run\t2000\t7.0\t155267\t84\tAdventure,Animation,Comedy\ntt0120630\tnm0640976\tChicken Run\t2000\t7.0\t155267\t84\tAdventure,Animation,Comedy\ntt0138749\tnm0744429\tThe Road to El Dorado\t2000\t6.9\t69114\t89\tAdventure,Animation,Comedy\ntt0138749\tnm0254645\tThe Road to El Dorado\t2000\t6.9\t69114\t89\tAdventure,Animation,Comedy\ntt0138749\tnm0456732\tThe Road to El Dorado\t2000\t6.9\t69114\t89\tAdventure,Animation,Comedy\ntt0168786\tnm0279376\tAntwone Fisher\t2002\t7.3\t29069\t120\tBiography,Drama\ntt0238936\tnm0154158\tDevdas\t2002\t7.6\t31506\t185\tDrama,Musical,Romance\ntt0238936\tnm1165501\tDevdas\t2002\t7.6\t31506\t185\tDrama,Musical,Romance\ntt0238936\tnm0080220\tDevdas\t2002\t7.6\t31506\t185\tDrama,Musical,Romance\ntt0273923\tnm0925234\tOrange County\t2002\t6.2\t43673\t82\tComedy,Drama\ntt0278504\tnm0782711\tInsomnia\t2002\t7.2\t242042\t118\tDrama,Mystery,Thriller\ntt0278504\tnm0296154\tInsomnia\t2002\t7.2\t242042\t118\tDrama,Mystery,Thriller\ntt0278504\tnm0804408\tInsomnia\t2002\t7.2\t242042\t118\tDrama,Mystery,Thriller\ntt0298408\tnm0158966\tLaurel Canyon\t2002\t6.4\t14205\t103\tDrama\ntt0340855\tnm0420941\tMonster\t2003\t7.3\t117838\t109\tBiography,Crime,Drama\ntt0406650\tnm1242062\tThe Chumscrubber\t2005\t7.0\t16943\t108\tComedy,Drama\ntt0406650\tnm1160420\tThe Chumscrubber\t2005\t7.0\t16943\t108\tComedy,Drama\ntt0411270\tnm0002191\tThe Beat That My Heart Skipped\t2005\t7.3\t16968\t108\tCrime,Drama,Music\ntt0411270\tnm0070152\tThe Beat That My Heart Skipped\t2005\t7.3\t16968\t108\tCrime,Drama,Music\ntt0411270\tnm0864812\tThe Beat That My Heart Skipped\t2005\t7.3\t16968\t108\tCrime,Drama,Music\ntt0417741\tnm0460141\tHarry Potter and the Half-Blood Prince\t2009\t7.6\t379980\t153\tAdventure,Family,Fantasy\ntt0417741\tnm0746830\tHarry Potter and the Half-Blood Prince\t2009\t7.6\t379980\t153\tAdventure,Family,Fantasy\ntt0464041\tnm1726457\tThe Lazarus Project\t2008\t6.2\t15504\t100\tDrama,Horror,Mystery\ntt0464041\tnm0040148\tThe Lazarus Project\t2008\t6.2\t15504\t100\tDrama,Horror,Mystery\ntt0475944\tnm0136592\tThe Covenant\t2006\t5.3\t42360\t97\tAction,Fantasy,Horror\ntt0758752\tnm1017488\tLove & Other Drugs\t2010\t6.7\t158927\t112\tComedy,Drama,Romance\ntt0758752\tnm0001880\tLove & Other Drugs\t2010\t6.7\t158927\t112\tComedy,Drama,Romance\ntt0758752\tnm0380980\tLove & Other Drugs\t2010\t6.7\t158927\t112\tComedy,Drama,Romance\ntt0758752\tnm2168221\tLove & Other Drugs\t2010\t6.7\t158927\t112\tComedy,Drama,Romance\ntt1012804\tnm0000519\tRedbelt\t2008\t6.8\t19391\t99\tDrama,Sport\ntt1099212\tnm0742279\tTwilight\t2008\t5.2\t374343\t122\tDrama,Fantasy,Romance\ntt1099212\tnm2769412\tTwilight\t2008\t5.2\t374343\t122\tDrama,Fantasy,Romance\ntt1508675\tnm0442454\tLe Havre\t2011\t7.2\t17472\t93\tComedy,Drama\ntt1712261\tnm3208946\tTriple 9\t2016\t6.3\t55635\t115\tAction,Crime,Drama\ntt1878870\tnm2609807\tThe Edge of Seventeen\t2016\t7.4\t70690\t104\tComedy,Drama\ntt2479478\tnm0379056\tThe Ridiculous 6\t2015\t4.8\t34519\t119\tComedy,Western\ntt2479478\tnm0001191\tThe Ridiculous 6\t2015\t4.8\t34519\t119\tComedy,Western\ntt3702652\tnm1266897\tThe Other Side of the Door\t2016\t5.3\t14607\t96\tHorror\ntt3702652\tnm2033094\tThe Other Side of the Door\t2016\t5.3\t14607\t96\tHorror\ntt0274558\tnm1259728\tThe Hours\t2002\t7.6\t111614\t110\tDrama,Romance\ntt0274558\tnm0002376\tThe Hours\t2002\t7.6\t111614\t110\tDrama,Romance\ntt0337579\tnm0114197\tBarbershop 2: Back in Business\t2004\t5.7\t12042\t106\tComedy,Drama\ntt0337579\tnm1119609\tBarbershop 2: Back in Business\t2004\t5.7\t12042\t106\tComedy,Drama\ntt0338096\tnm1568308\tDirty Dancing: Havana Nights\t2004\t6.0\t24112\t86\tDrama,Music,Romance\ntt0338096\tnm0755969\tDirty Dancing: Havana Nights\t2004\t6.0\t24112\t86\tDrama,Music,Romance\ntt0338096\tnm0945026\tDirty Dancing: Havana Nights\t2004\t6.0\t24112\t86\tDrama,Music,Romance\ntt0338096\tnm0002982\tDirty Dancing: Havana Nights\t2004\t6.0\t24112\t86\tDrama,Music,Romance\ntt0338427\tnm0000188\tShopgirl\t2005\t6.4\t22195\t106\tDrama,Romance\ntt0359950\tnm0175726\tThe Secret Life of Walter Mitty\t2013\t7.3\t262426\t114\tAdventure,Comedy,Drama\ntt0359950\tnm0862122\tThe Secret Life of Walter Mitty\t2013\t7.3\t262426\t114\tAdventure,Comedy,Drama\ntt0494834\tnm0054621\tSilk\t2007\t5.9\t10157\t107\tDrama,Romance\ntt0494834\tnm0320660\tSilk\t2007\t5.9\t10157\t107\tDrama,Romance\ntt0494834\tnm2124018\tSilk\t2007\t5.9\t10157\t107\tDrama,Romance\ntt0923752\tnm1164861\tThe King of Kong: A Fistful of Quarters\t2007\t8.1\t32554\t79\tBiography,Documentary,Sport\ntt0923811\tnm0030417\tEvangelion: 1.0 You Are (Not) Alone\t2007\t7.8\t14449\t98\tAction,Animation,Drama\ntt0923811\tnm1371924\tEvangelion: 1.0 You Are (Not) Alone\t2007\t7.8\t14449\t98\tAction,Animation,Drama\ntt1093370\tnm1665004\tJab We Met\t2007\t8.0\t38394\t138\tComedy,Drama,Romance\ntt1408253\tnm0177637\tRide Along\t2014\t6.2\t88392\t99\tAction,Comedy,Crime\ntt1408253\tnm1727621\tRide Along\t2014\t6.2\t88392\t99\tAction,Comedy,Crime\ntt1408253\tnm0006534\tRide Along\t2014\t6.2\t88392\t99\tAction,Comedy,Crime\ntt1408253\tnm0542062\tRide Along\t2014\t6.2\t88392\t99\tAction,Comedy,Crime\ntt1698648\tnm1180348\tGirl Most Likely\t2012\t5.8\t13434\t103\tComedy\ntt1856101\tnm0266684\tBlade Runner 2049\t2017\t8.1\t284099\t164\tDrama,Mystery,Sci-Fi\ntt1856101\tnm0338169\tBlade Runner 2049\t2017\t8.1\t284099\t164\tDrama,Mystery,Sci-Fi\ntt1856101\tnm0001140\tBlade Runner 2049\t2017\t8.1\t284099\t164\tDrama,Mystery,Sci-Fi\ntt1951265\tnm0185976\tThe Hunger Games: Mockingjay - Part 1\t2014\t6.7\t355296\t123\tAction,Adventure,Sci-Fi\ntt1951265\tnm0834960\tThe Hunger Games: Mockingjay - Part 1\t2014\t6.7\t355296\t123\tAction,Adventure,Sci-Fi\ntt1951265\tnm1056741\tThe Hunger Games: Mockingjay - Part 1\t2014\t6.7\t355296\t123\tAction,Adventure,Sci-Fi\ntt1990181\tnm2152369\tBrake\t2012\t6.1\t10681\t92\tThriller\ntt1990181\tnm3347598\tBrake\t2012\t6.1\t10681\t92\tThriller\ntt2023587\tnm0615592\tMama\t2013\t6.2\t151487\t100\tHorror,Thriller\ntt2023587\tnm1953833\tMama\t2013\t6.2\t151487\t100\tHorror,Thriller\ntt2023587\tnm0189232\tMama\t2013\t6.2\t151487\t100\tHorror,Thriller\ntt2375559\tnm4603719\t1 - Nenokkadine\t2014\t8.4\t39165\t170\tAction,Musical,Mystery\ntt2375559\tnm6253319\t1 - Nenokkadine\t2014\t8.4\t39165\t170\tAction,Musical,Mystery\ntt2375559\tnm7184327\t1 - Nenokkadine\t2014\t8.4\t39165\t170\tAction,Musical,Mystery\ntt2375559\tnm7709337\t1 - Nenokkadine\t2014\t8.4\t39165\t170\tAction,Musical,Mystery\ntt2375559\tnm4603688\t1 - Nenokkadine\t2014\t8.4\t39165\t170\tAction,Musical,Mystery\ntt2375559\tnm1335875\t1 - Nenokkadine\t2014\t8.4\t39165\t170\tAction,Musical,Mystery\ntt2375559\tnm6272848\t1 - Nenokkadine\t2014\t8.4\t39165\t170\tAction,Musical,Mystery\ntt2375559\tnm4601184\t1 - Nenokkadine\t2014\t8.4\t39165\t170\tAction,Musical,Mystery\ntt2393845\tnm5062671\tKill Me Three Times\t2014\t5.9\t16879\t90\tComedy,Crime,Thriller\ntt3608930\tnm1488800\tIn a Valley of Violence\t2016\t6.0\t11013\t104\tAction,Crime,Drama\ntt3991412\tnm2542577\tThe 9th Life of Louis Drax\t2016\t6.3\t10354\t108\tMystery,Thriller\ntt3991412\tnm1540404\tThe 9th Life of Louis Drax\t2016\t6.3\t10354\t108\tMystery,Thriller\ntt0208092\tnm0005363\tSnatch\t2000\t8.3\t679457\t104\tComedy,Crime\ntt0211933\tnm1703612\tAwake\t2007\t6.5\t67566\t84\tCrime,Drama,Mystery\ntt0300051\tnm0003620\tJersey Girl\t2004\t6.2\t58287\t102\tComedy,Drama,Romance\ntt0318974\tnm0092018\tThe Alamo\t2004\t6.0\t17922\t137\tDrama,History,War\ntt0318974\tnm0300866\tThe Alamo\t2004\t6.0\t17922\t137\tDrama,History,War\ntt0318974\tnm0359387\tThe Alamo\t2004\t6.0\t17922\t137\tDrama,History,War\ntt0325710\tnm0517589\tThe Last Samurai\t2003\t7.7\t350296\t154\tAction,Drama,History\ntt0325710\tnm0001880\tThe Last Samurai\t2003\t7.7\t350296\t154\tAction,Drama,History\ntt0325710\tnm0380980\tThe Last Samurai\t2003\t7.7\t350296\t154\tAction,Drama,History\ntt0344854\tnm1297771\tArthur and the Invisibles\t2006\t6.0\t28623\t94\tAdventure,Animation,Family\ntt0344854\tnm0000108\tArthur and the Invisibles\t2006\t6.0\t28623\t94\tAdventure,Animation,Family\ntt0344854\tnm0305372\tArthur and the Invisibles\t2006\t6.0\t28623\t94\tAdventure,Animation,Family\ntt0344854\tnm1922214\tArthur and the Invisibles\t2006\t6.0\t28623\t94\tAdventure,Animation,Family\ntt0344854\tnm2461314\tArthur and the Invisibles\t2006\t6.0\t28623\t94\tAdventure,Animation,Family\ntt0344854\tnm2962942\tArthur and the Invisibles\t2006\t6.0\t28623\t94\tAdventure,Animation,Family\ntt0368794\tnm0001331\tI'm Not There.\t2007\t7.0\t51597\t135\tBiography,Drama,Music\ntt0368794\tnm0610219\tI'm Not There.\t2007\t7.0\t51597\t135\tBiography,Drama,Music\ntt0369441\tnm0031976\tFun with Dick and Jane\t2005\t6.1\t120101\t90\tComedy,Crime\ntt0369441\tnm0831557\tFun with Dick and Jane\t2005\t6.1\t120101\t90\tComedy,Crime\ntt0369441\tnm0301416\tFun with Dick and Jane\t2005\t6.1\t120101\t90\tComedy,Crime\ntt0369441\tnm0318429\tFun with Dick and Jane\t2005\t6.1\t120101\t90\tComedy,Crime\n<!--TABLE_COMMENT-->\n<font color=red>Results are limited by 1000.</font>\n"}]},"apps":[],"jobName":"paragraph_1525239781837_-1670545870","id":"20180425-232804_183385417","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:105","user":"anonymous","dateFinished":"2018-05-02T06:18:29+0000","dateStarted":"2018-05-02T06:17:35+0000"},{"title":"Final writers dataset","text":"%pyspark\n\nwriterJoining = writerExplode.join(nameBasicColumnRename, on='writer')\nwriterOutput = writerJoining.select('tconst','title','writeName').withColumnRenamed('title','title1')\n\ntable2 = writerOutput.toDF('tconst','title1','writeName')\nz.show(table2)","dateUpdated":"2018-05-02T06:18:35+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"tconst\ttitle1\twriteName\ntt2091473\tPromised Land\tMatt Damon\ntt0302674\tGerry\tMatt Damon\ntt0462335\tHigh-Rise\tJ.G. Ballard\ntt3352390\tFriend Request\tMatthew Ballen\ntt2176013\tJab Tak Hai Jaan\tDevika Bhagat\ntt1212450\tLawless\tNick Cave\ntt0421238\tThe Proposition\tNick Cave\ntt0350028\tRaising Helen\tPatrick J. Clifton\ntt0230030\tBedazzled\tPeter Cook\ntt2381941\tFocus\tGlenn Ficarra\ntt0408524\tBad News Bears\tGlenn Ficarra\ntt0239395\tCats & Dogs\tGlenn Ficarra\ntt1798603\tBad Santa 2\tGlenn Ficarra\ntt1045772\tI Love You Phillip Morris\tGlenn Ficarra\ntt1287468\tCats & Dogs: The Revenge of Kitty Galore\tGlenn Ficarra\ntt0307987\tBad Santa\tGlenn Ficarra\ntt0416508\tBecoming Jane\tKevin Hood\ntt0265808\tStealing Harvard\tMartin Hynes\ntt1981107\tThe Young and Prodigious T.S. Spivet\tGuillaume Laurant\ntt0344510\tA Very Long Engagement\tGuillaume Laurant\ntt0211915\tAmélie\tGuillaume Laurant\ntt1149361\tMicmacs\tGuillaume Laurant\ntt0452608\tDeath Race\tIb Melchior\ntt1242422\tCell 211\tDaniel Monzón\ntt1638355\tThe Man from U.N.C.L.E.\tDavid C. Wilson\ntt0134983\tSupernova\tDavid C. Wilson\ntt0130623\tDinosaur\tTamara Lusher Stocker\ntt1430612\tBrick Mansions\tBibi Naceri\ntt0414852\tDistrict B13\tBibi Naceri\ntt1167638\t22 Bullets\tFranz-Olivier Giesbert\ntt0285861\tOwning Mahowny\tGary Stephen Ross\ntt0283026\tSwimfan\tPhillip Schneider\ntt1843866\tCaptain America: The Winter Soldier\tSteve Epting\ntt0408777\tThe Edukators\tKatharina Held\ntt4682786\tCollateral Beauty\tAllan Loeb\ntt1336608\tRock of Ages\tAllan Loeb\ntt0478087\t21\tAllan Loeb\ntt1578275\tThe Dilemma\tAllan Loeb\ntt1564367\tJust Go with It\tAllan Loeb\ntt3922818\tThe Space Between Us\tAllan Loeb\ntt0469623\tThings We Lost in the Fire\tAllan Loeb\ntt1027718\tWall Street: Money Never Sleeps\tAllan Loeb\ntt1766094\tSo Undercover\tAllan Loeb\ntt1648179\tHere Comes the Boom\tAllan Loeb\ntt0889573\tThe Switch\tAllan Loeb\ntt1016301\tFermat's Room\tRodrigo Sopeña\ntt1711525\tOffice Christmas Party\tLaura Solon\ntt0328880\tBrother Bear\tKevin Deters\ntt1841642\tDemonic\tMax La Bella\ntt1629757\tChasing Mavericks\tJim Meenaghan\ntt1980986\tHousefull 2\tFarhad Samji\ntt1948150\tSingham\tFarhad Samji\ntt4535650\tDilwale\tFarhad Samji\ntt2112124\tChennai Express\tFarhad Samji\ntt1366365\tThe Cold Light of Day\tJohn Petro\ntt0816436\tBlack Water\tDavid Nerlich\ntt1991245\tChernobyl Diaries\tOren Peli\ntt1778304\tParanormal Activity 3\tOren Peli\ntt1179904\tParanormal Activity\tOren Peli\ntt2473682\tParanormal Activity: The Marked Ones\tOren Peli\ntt2109184\tParanormal Activity 4\tOren Peli\ntt1536044\tParanormal Activity 2\tOren Peli\ntt1519461\tArea 51\tOren Peli\ntt2473510\tParanormal Activity: The Ghost Dimension\tOren Peli\ntt1046163\tMy Best Friend's Girl\tJordan Cahan\ntt0988108\tThe Class\tRoland Laos\ntt4169250\tM.S. Dhoni: The Untold Story\tShyam Maheshwari\ntt1486834\tWhat If\tT.J. Dawe\ntt1398426\tStraight Outta Compton\tJonathan Herman\ntt2179136\tAmerican Sniper\tScott McEwen\ntt0976238\tOld Dogs\tDavid Diamond\ntt0218967\tThe Family Man\tDavid Diamond\ntt0251075\tEvolution\tDavid Diamond\ntt1185416\tWhen in Rome\tDavid Diamond\ntt1564349\tDolphin Tale\tNoam Dromi\ntt0365830\tTenacious D in The Pick of Destiny\tKyle Gass\ntt0369441\tFun with Dick and Jane\tDavid Giler\ntt0281322\tUndisputed\tDavid Giler\ntt0279778\tDivine Secrets of the Ya-Ya Sisterhood\tCallie Khouri\ntt0490086\tBig Stan\tJosh Lieb\ntt0473360\tGoal II: Living the Dream\tTerry Loane\ntt1234719\tRed Dawn\tJohn Milius\ntt0363163\tDownfall\tMelissa Müller\ntt0183659\tPollock\tSteven Naifeh\ntt0308379\tDark Water\tHideo Nakata\ntt0382628\tDark Water\tHideo Nakata\ntt0976051\tThe Reader\tBernhard Schlink\ntt0413267\tShrek the Third\tPeter S. Seaman\ntt0170016\tHow the Grinch Stole Christmas\tPeter S. Seaman\ntt0408985\tLast Holiday\tPeter S. Seaman\ntt0402901\tThe Cave\tMichael Steinberg\ntt1588895\tUncle Boonmee Who Can Recall His Past Lives\tApichatpong Weerasethakul\ntt0338466\tStuck on You\tCharles B. Wessler\ntt1205489\tGran Torino\tNick Schenk\ntt1872194\tThe Judge\tNick Schenk\ntt0425333\tPardon\tFerhan Sensoy\ntt0900387\tSuite Française\tSaul Dibb\ntt0864761\tThe Duchess\tSaul Dibb\ntt1300854\tIron Man 3\tDrew Pearce\ntt2381249\tMission: Impossible - Rogue Nation\tDrew Pearce\ntt0418763\tJarhead\tAnthony Swofford\ntt3960412\tPopstar: Never Stop Never Stopping\tJorma Taccone\ntt1470023\tMacGruber\tJorma Taccone\ntt1935896\tThe ABCs of Death\tKeith Calder\ntt0235679\tPokémon 3: The Movie\tMarc M.\ntt0897361\tI Know Who Killed Me\tJeff Hammond\ntt0963178\tThe International\tEric Warren Singer\ntt3829920\tOnly the Brave\tEric Warren Singer\ntt1800241\tAmerican Hustle\tEric Warren Singer\ntt3874544\tThe Boss Baby\tMarla Frazee\ntt1470023\tMacGruber\tJohn Solomon\ntt2015381\tGuardians of the Galaxy\tSteve Gan\ntt3896198\tGuardians of the Galaxy Vol. 2\tSteve Gan\ntt2072230\tAttack on Titan: Part 1\tTomohiro Machiyama\ntt0453451\tMr. Bean's Holiday\tRowan Atkinson\ntt1937390\tNymphomaniac: Vol. I\tLars von Trier\ntt0870984\tAntichrist\tLars von Trier\ntt1527186\tMelancholia\tLars von Trier\ntt0276919\tDogville\tLars von Trier\ntt0342735\tManderlay\tLars von Trier\ntt0168629\tDancer in the Dark\tLars von Trier\ntt2382009\tNymphomaniac: Vol. II\tLars von Trier\ntt2294629\tFrozen\tHans Christian Andersen\ntt0448075\tThe Night Listener\tTerry Anderson\ntt0247196\tBefore Night Falls\tReynaldo Arenas\ntt2870708\tWish I Was Here\tAdam J. Braff\ntt0288045\tThe Medallion\tGordon Chan\ntt2494280\tStretch\tJerry Corley\ntt2937366\tLittle Evil\tEli Craig\ntt1465522\tTucker and Dale vs Evil\tEli Craig\ntt0200027\tRiding in Cars with Boys\tBeverly D'Onofrio\ntt0433400\tJust Friends\tAdam 'Tex' Davis\ntt2975578\tThe Purge: Anarchy\tJames DeMonaco\ntt4094724\tThe Purge: Election Year\tJames DeMonaco\ntt0398712\tAssault on Precinct 13\tJames DeMonaco\ntt0461703\tSkinwalkers\tJames DeMonaco\ntt2184339\tThe Purge\tJames DeMonaco\ntt0279064\tElling\tAxel Hellstenius\ntt0308379\tDark Water\tTakashige Ichise\ntt0382628\tDark Water\tTakashige Ichise\ntt0319736\tThe Legend of Bhagat Singh\tRanjit Kapoor\ntt0388795\tBrokeback Mountain\tDiana Ossana\ntt0844457\tNorth Face\tBenedikt Roeskau\ntt2119532\tHacksaw Ridge\tRobert Schenkkan\ntt0258068\tThe Quiet American\tRobert Schenkkan\ntt0361925\tWelcome to Mooseport\tTom Schulman\ntt1979319\tRurouni Kenshin: Origins\tNobuhiro Watsuki\ntt1233381\tThree Monkeys\tEbru Ceylan\ntt1827487\tOnce Upon a Time in Anatolia\tEbru Ceylan\ntt2758880\tWinter Sleep\tEbru Ceylan\ntt0401711\tParis, je t'aime\tRain Li\ntt1401143\tRare Exports: A Christmas Tale\tJalmari Helander\ntt2088003\tBig Game\tJalmari Helander\ntt0421073\tStreet Kings\tJamie Moss\ntt1219827\tGhost in the Shell\tJamie Moss\ntt1449283\tWinnie the Pooh\tBrian Kesinger\ntt1220888\tHenry's Crime\tStephen Hamel\ntt1282140\tEasy A\tBert V. Royal\ntt2398241\tSmurfs: The Lost Village\tStacey Harman\ntt0449010\tEragon\tChristopher Paolini\ntt0452624\tThe Good German\tJoseph Kanon\ntt3064298\tMan Up\tTess Morris\ntt2234261\tThe Love Punch\tTess Morris\ntt3401882\tFist Fight\tVan Robichaux\ntt1029120\tHenry Poole Is Here\tAlbert Torres\ntt1069238\tDepartures\tKundô Koyama\ntt1152398\tBeastly\tAlex Flinn\ntt0268380\tIce Age\tMichael J. Wilson\ntt3416828\tIce Age: Collision Course\tMichael J. Wilson\ntt0290095\tThe Tuxedo\tMichael J. Wilson\ntt0307453\tShark Tale\tMichael J. Wilson\ntt0810784\tBright Star\tJane Campion\ntt0199626\tIn the Cut\tJane Campion\ntt1167638\t22 Bullets\tEric Assous\ntt1453405\tMonsters University\tRobert L. Baird\ntt0371606\tChicken Little\tRobert L. Baird\ntt0198781\tMonsters, Inc.\tRobert L. Baird\ntt2245084\tBig Hero 6\tRobert L. Baird\ntt3411444\tFerdinand\tRobert L. Baird\ntt1038686\tLegion\tPeter Schink\ntt0402057\tBeowulf & Grendel\tAndrew Rai Berzins\ntt1067774\tMonte Carlo\tThomas Bezucha\ntt0356680\tThe Family Stone\tThomas Bezucha\ntt0120630\tChicken Run\tMark Burton\ntt0377981\tGnomeo & Juliet\tMark Burton\ntt0351283\tMadagascar\tMark Burton\ntt0312004\tThe Curse of the Were-Rabbit\tMark Burton\ntt2872750\tShaun the Sheep Movie\tMark Burton\ntt0775552\tAliens in the Attic\tMark Burton\ntt0286788\tWhat a Girl Wants\tElizabeth Chandler\ntt0403508\tThe Sisterhood of the Traveling Pants\tElizabeth Chandler\ntt1018785\tThe Sisterhood of the Traveling Pants 2\tElizabeth Chandler\ntt0244970\tSomeone Like You...\tElizabeth Chandler\ntt0241025\tVanity Fair\tJulian Fellowes\ntt0338512\tTwo Brothers\tJulian Fellowes\ntt1243957\tThe Tourist\tJulian Fellowes\ntt0962736\tThe Young Victoria\tJulian Fellowes\ntt0280707\tGosford Park\tJulian Fellowes\ntt1529572\tTrust\tRobert Festinger\ntt0247425\tIn the Bedroom\tRobert Festinger\ntt0252866\tAmerican Pie 2\tAdam Herz\ntt1605630\tAmerican Reunion\tAdam Herz\ntt0328828\tAmerican Wedding\tAdam Herz\ntt0250323\tThe Deep End\tElisabeth Sanxay Holding\ntt0271263\tEight Crazy Nights\tBrad Isaacs\ntt1615160\tThe Foreigner\tStephen Leather\ntt0420251\tThree... Extremes\tPik Wah Lee\ntt0240462\tDr. Dolittle 2\tHugh Lofting\ntt0384806\tThe Amityville Horror\tKathy Lutz\ntt2910904\tThe Dressmaker\tJocelyn Moorhouse\ntt1512685\tJulia's Eyes\tGuillem Morales\ntt0144964\tHighlander: Endgame\tWilliam N. Panzer\ntt0384369\tBefore the Fall\tMaggie Peren\ntt0198781\tMonsters, Inc.\tBob Peterson\ntt3606752\tCars 3\tBob Peterson\ntt0382932\tRatatouille\tBob Peterson\ntt2277860\tFinding Dory\tBob Peterson\ntt0266543\tFinding Nemo\tBob Peterson\ntt1049413\tUp\tBob Peterson\ntt1979388\tThe Good Dinosaur\tBob Peterson\ntt0308379\tDark Water\tKen'ichi Suzuki\ntt0445922\tAcross the Universe\tJulie Taymor\ntt0167260\tThe Lord of the Rings: The Return of the King\tJ.R.R. Tolkien\ntt0903624\tThe Hobbit: An Unexpected Journey\tJ.R.R. Tolkien\ntt2310332\tThe Hobbit: The Battle of the Five Armies\tJ.R.R. Tolkien\ntt1490017\tThe Lego Movie\tJ.R.R. Tolkien\ntt0120737\tThe Lord of the Rings: The Fellowship of the Ring\tJ.R.R. Tolkien\ntt1170358\tThe Hobbit: The Desolation of Smaug\tJ.R.R. Tolkien\ntt0167261\tThe Lord of the Rings: The Two Towers\tJ.R.R. Tolkien\ntt5323662\tA Silent Voice\tAmanda Winn Lee\ntt0420251\tThree... Extremes\tHaruko Fukushima\ntt0477347\tNight at the Museum\tMilan Trenc\ntt1836944\tThe Baytown Outlaws\tGriffin Hood\ntt1430615\tBig Miracle\tThomas Rose\ntt1843866\tCaptain America: The Winter Soldier\tDick Ayers\ntt2015381\tGuardians of the Galaxy\tDick Ayers\ntt1559547\tBeautiful Creatures\tKami Garcia\ntt1928330\tBad Ass\tElliot Tishman\ntt1054580\tDesert Flower\tWüstenblume\ntt3068194\tLove & Friendship\tWhit Stillman\ntt1080016\tIce Age: Dawn of the Dinosaurs\tPeter Ackerman\ntt0268380\tIce Age\tPeter Ackerman\ntt1285309\tThe Joneses\tDerrick Borte\ntt0291579\tHe Loves Me... He Loves Me Not\tLaetitia Colombani\ntt0493949\tRamona and Beezus\tLaurie Craig\ntt0327679\tElla Enchanted\tLaurie Craig\ntt0481797\tYouth Without Youth\tMircea Eliade\ntt0246894\tRollerball\tLarry Ferguson\ntt0816462\tConan the Barbarian\tRobert E. Howard\ntt0970452\tSolomon Kane\tRobert E. Howard\ntt0251160\tJohn Q\tJames Kearns\ntt0371606\tChicken Little\tSandra Tsing Loh\ntt0382992\tStealth\tW.D. Richter\ntt1966566\tStalingrad\tSergey Snezhkin\ntt2032557\tThe Reluctant Fundamentalist\tWilliam Wheeler\ntt1219827\tGhost in the Shell\tWilliam Wheeler\ntt0462338\tThe Hoax\tWilliam Wheeler\ntt3014284\tThe LEGO Ninjago Movie\tWilliam Wheeler\ntt4341582\tQueen of Katwe\tWilliam Wheeler\ntt0436339\tG-Force\tHoyt Yeatman\ntt0244970\tSomeone Like You...\tLaura Zigman\ntt1951264\tThe Hunger Games: Catching Fire\tSuzanne Collins\ntt1951265\tThe Hunger Games: Mockingjay - Part 1\tSuzanne Collins\ntt1392170\tThe Hunger Games\tSuzanne Collins\ntt1951266\tThe Hunger Games: Mockingjay - Part 2\tSuzanne Collins\ntt0844457\tNorth Face\tJohannes Naber\ntt0455760\tDead Silence\tLeigh Whannell\ntt0432348\tSaw II\tLeigh Whannell\ntt3195644\tInsidious: Chapter 3\tLeigh Whannell\ntt1591095\tInsidious\tLeigh Whannell\ntt0387564\tSaw\tLeigh Whannell\ntt2490326\tCooties\tLeigh Whannell\ntt0489270\tSaw III\tLeigh Whannell\ntt2226417\tInsidious: Chapter 2\tLeigh Whannell\ntt0488478\t12\tAleksandr Novototskiy-Vlasov\ntt0376968\tThe Return\tAleksandr Novototskiy-Vlasov\ntt2261287\tLeap!\tLaurent Zeitoun\ntt1465487\tHeartbreaker\tLaurent Zeitoun\ntt1686039\tFive Minarets in New York\tMahsun Kirmizigül\ntt0986233\tHunger\tSteve McQueen\ntt1723811\tShame\tSteve McQueen\ntt2167202\tGetaway\tSean Finegan\ntt3748172\tGerald's Game\tJeff Howard\ntt3174376\tBefore I Wake\tJeff Howard\ntt2388715\tOculus\tJeff Howard\ntt4361050\tOuija: Origin of Evil\tJeff Howard\ntt1456472\tWe Have a Pope\tGeorgii Nik\ntt1234654\tGreenberg\tJennifer Jason Leigh\ntt0430770\tThe Women\tAnita Loos\ntt0499375\tGuru\tSuhasini\ntt1469304\tBaywatch\tMichael Berk\ntt1596346\tSoul Surfer\tMichael Berk\ntt1192628\tRango\tJames Ward Byrkit\ntt2866360\tCoherence\tJames Ward Byrkit\ntt4698684\tHunt for the Wilderpeople\tBarry Crump\ntt0172156\tBad Boys II\tGeorge Gallo\ntt0327247\tThe Whole Ten Yards\tGeorge Gallo\ntt0462229\tCode Name: The Cleaner\tGeorge Gallo\ntt0780534\tMy Mom's New Boyfriend\tGeorge Gallo\ntt1251757\tMiddle Men\tGeorge Gallo\ntt0443453\tBorat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan\tAnthony Hines\ntt0889583\tBrüno\tAnthony Hines\ntt4824302\tMother's Day\tTom Hines\ntt0408306\tMunich\tGeorge Jonas\ntt2404425\tWoman in Gold\tAlexi Kaye Campbell\ntt0337578\tBaghban\tHelen Leary\ntt1405365\tCeleste & Jesse Forever\tWill McCormack\ntt0328107\tMan on Fire\tA.J. Quinnell\ntt0844457\tNorth Face\tPhilipp Stölzl\ntt2101473\tThe Physician\tPhilipp Stölzl\ntt1673697\tThe Sapphires\tKeith Thompson\ntt0183659\tPollock\tBarbara Turner\ntt2172985\tThe Art of the Steal\tJonathan Sobol\ntt0452594\tThe Break-Up\tJeremy Garelick\ntt0884732\tThe Wedding Ringer\tJeremy Garelick\ntt1456472\tWe Have a Pope\tTom King\ntt2024519\tThe Broken Circle Breakdown\tMieke Dobbels\ntt1450321\tFilth\tJon S. Baird\ntt1699231\tQuarantine 2: Terminal\tDrew Dowdle\ntt1082868\tQuarantine\tDrew Dowdle\ntt1781922\tNo Escape\tDrew Dowdle\ntt2870612\tAs Above, So Below\tDrew Dowdle\ntt1010271\tThe Poughkeepsie Tapes\tDrew Dowdle\ntt0762114\tLicense to Wed\tKim Barker\ntt0881891\tAll About Steve\tKim Barker\ntt0787474\tThe Boxtrolls\tAlan Snow\ntt4846340\tHidden Figures\tAllison Schroeder\ntt1093357\tThe Darkest Hour\tM.T. Ahern\ntt0491152\tSomething Borrowed\tEmily Giffin\ntt0808399\tNew York, I Love You\tHu Hong\ntt1407084\tTwelve\tNick McDonell\ntt1490017\tThe Lego Movie\tGodtfred Kirk Christiansen\ntt4116284\tThe LEGO Batman Movie\tGodtfred Kirk Christiansen\ntt1196141\tDiary of a Wimpy Kid\tGabe Sachs\ntt1650043\tDiary of a Wimpy Kid: Rodrick Rules\tGabe Sachs\ntt1564367\tJust Go with It\tI.A.L. Diamond\ntt1075419\tShinjuku Incident\tTung-Shing Yee\ntt0220099\tThe Tigger Movie\tJun Falkenstein\ntt0230030\tBedazzled\tLarry Gelbart\ntt0417658\tFactotum\tBent Hamer\ntt0347618\tThe Cat Returns\tAoi Hiiragi\ntt0264761\tKissing Jessica Stein\tHeather Juergensen\ntt1242545\tLooking for Eric\tPaul Laverty\ntt0460989\tThe Wind That Shakes the Barley\tPaul Laverty\ntt1422032\tEven the Rain\tPaul Laverty\ntt0313670\tSweet Sixteen\tPaul Laverty\ntt5168192\tI, Daniel Blake\tPaul Laverty\ntt1924394\tThe Angels' Share\tPaul Laverty\ntt0283084\tTuck Everlasting\tJeffrey Lieber\ntt0974015\tJustice League\tWilliam Moulton Marston\ntt0451279\tWonder Woman\tWilliam Moulton Marston\ntt1490017\tThe Lego Movie\tWilliam Moulton Marston\ntt2975590\tBatman v Superman: Dawn of Justice\tWilliam Moulton Marston\ntt4116284\tThe LEGO Batman Movie\tWilliam Moulton Marston\ntt0455944\tThe Equalizer\tMichael Sloan\ntt0875034\tNine\tMichael Tolkin\ntt0264472\tChanging Lanes\tMichael Tolkin\ntt0443706\tZodiac\tJames Vanderbilt\ntt0327850\tThe Rundown\tJames Vanderbilt\ntt1628841\tIndependence Day: Resurgence\tJames Vanderbilt\ntt1291570\tSolace\tJames Vanderbilt\ntt0282209\tDarkness Falls\tJames Vanderbilt\ntt3859076\tTruth\tJames Vanderbilt\ntt1872181\tThe Amazing Spider-Man 2\tJames Vanderbilt\ntt0264395\tBasic\tJames Vanderbilt\ntt2334879\tWhite House Down\tJames Vanderbilt\ntt0948470\tThe Amazing Spider-Man\tJames Vanderbilt\ntt0480255\tThe Losers\tJames Vanderbilt\ntt0353489\tGinger Snaps 2: Unleashed\tKaren Walton\ntt0210070\tGinger Snaps\tKaren Walton\ntt0903657\tLove & Mercy\tBrian Wilson\ntt2474976\tThe Hallow\tTom de Ville\ntt2235779\tThe Quiet Ones\tTom de Ville\ntt0456149\tThe Death of Mr. Lazarescu\tCristi Puiu\ntt1468846\tGet a Job\tKyle Pennekamp\ntt0790804\tThe Comebacks\tJohn Aboud\ntt1911658\tPenguins of Madagascar\tJohn Aboud\ntt2669336\tTime Lapse\tBradley King\ntt2094018\tHours\tEric Heisserer\ntt2543164\tArrival\tEric Heisserer\ntt4786282\tLights Out\tEric Heisserer\ntt1622979\tFinal Destination 5\tEric Heisserer\ntt1179056\tA Nightmare on Elm Street\tEric Heisserer\ntt0905372\tThe Thing\tEric Heisserer\ntt1151922\tMiss March\tThomas Mimms\ntt1772341\tWreck-It Ralph\tJeff Lee\ntt0315642\tWazir\tBejoy Nambiar\ntt1571249\tThe Skeleton Twins\tCraig Johnson\ntt0462322\tGrindhouse\tJason Eisener\ntt2450186\tV/H/S/2\tJason Eisener\ntt1985019\tAustenland\tShannon Hale\ntt2224026\tHome\tAdam Rex\ntt2637294\tHot Tub Time Machine 2\tJohn Karnay\ntt1935896\tThe ABCs of Death\tMartha Poly Vil\ntt0383216\tThe Pink Panther\tBlake Edwards\ntt0838232\tThe Pink Panther 2\tBlake Edwards\ntt1152836\tPublic Enemies\tRonan Bennett\ntt0332375\tSaved!\tBrian Dannelly\ntt0822832\tMarley & Me\tScott Frank\ntt0373926\tThe Interpreter\tScott Frank\ntt1430132\tThe Wolverine\tScott Frank\ntt3315342\tLogan\tScott Frank\ntt0377062\tFlight of the Phoenix\tScott Frank\ntt0427470\tThe Lookout\tScott Frank\ntt0181689\tMinority Report\tScott Frank\ntt0365907\tA Walk Among the Tombstones\tScott Frank\ntt0408839\tThe Heartbreak Kid\tBruce Jay Friedman\ntt1133991\tWhat Doesn't Kill You\tBrian Goodman\ntt0121164\tCorpse Bride\tCarlos Grangel\ntt2080374\tSteve Jobs\tWalter Isaacson\ntt0462538\tThe Simpsons Movie\tAl Jean\ntt0278435\tEnough\tNicholas Kazan\ntt3503406\tThe Whole Truth\tNicholas Kazan\ntt0200465\tThe Bank Job\tIan La Frenais\ntt0380389\tGoal! The Dream Begins\tIan La Frenais\ntt0424095\tFlushed Away\tIan La Frenais\ntt0445922\tAcross the Universe\tIan La Frenais\ntt0429493\tThe A-Team\tFrank Lupo\ntt0391304\tA Lot Like Love\tColin Patrick Lynch\ntt0156812\tMy Dog Skip\tWillie Morris\ntt0452681\tThe Santa Clause 3: The Escape Clause\tSteve Rudnick\ntt0304669\tThe Santa Clause 2\tSteve Rudnick\ntt0384642\tKicking & Screaming\tSteve Rudnick\ntt0813547\tThe Counterfeiters\tStefan Ruzowitzky\ntt0187696\tAnatomy\tStefan Ruzowitzky\ntt0463872\tAsterix at the Olympic Games\tAlbert Uderzo\ntt0250223\tAsterix and Obelix Meet Cleopatra\tAlbert Uderzo\ntt1597522\tAstérix and Obélix: God Save Britannia\tAlbert Uderzo\ntt0367085\tSoul Plane\tChuck Wilson\ntt1311060\tA.C.O.D.\tStuart Zicherman\ntt0357277\tElektra\tStuart Zicherman\ntt0285742\tMonster's Ball\tMilo Addica\ntt0337876\tBirth\tMilo Addica\ntt1441395\tUnder the Skin\tMilo Addica\ntt0808276\tCold Prey\tRoar Uthaug\ntt1649419\tThe Impossible\tSergio G. Sánchez\ntt0464141\tThe Orphanage\tSergio G. Sánchez\ntt1053424\tRepo Men\tEric Garcia\ntt0325805\tMatchstick Men\tEric Garcia\ntt0343660\t50 First Dates\tGeorge Wing\ntt0425326\tOutsourced\tGeorge Wing\ntt2097298\tMcFarland, USA\tChristopher Cleveland\ntt0385726\tGlory Road\tChristopher Cleveland\ntt1536410\tFaces in the Crowd\tKelly Smith\ntt1320082\tThe Concert\tThierry Degrandi\ntt3824458\tTangerine\tChris Bergoch\ntt5649144\tThe Florida Project\tChris Bergoch\ntt1245112\t[Rec] 2\tAmèlia Mora\ntt0875034\tNine\tMario Fratti\ntt7312940\tSingularity\tRobert Kouba\ntt1798188\tFrom Up on Poppy Hill\tTetsurô Sayama\ntt1680114\tThe Snowtown Murders\tAndrew McGarry\ntt4196450\tThe Birth of a Nation\tJean McGianni Celestin\ntt0329028\tDumb and Dumberer: When Harry Met Lloyd\tTroy Miller\ntt0453451\tMr. Bean's Holiday\tRobin Driscoll\ntt0279064\tElling\tIngvar Ambjørnsen\ntt1226273\tEdge of Darkness\tAndrew Bovell\ntt0259393\tLantana\tAndrew Bovell\ntt1972571\tA Most Wanted Man\tAndrew Bovell\ntt0292542\tSon of the Bride\tFernando Castets\ntt0265651\tRipley's Game\tLiliana Cavani\ntt2005151\tWar Dogs\tStephen Chin\ntt0929425\tGomorrah\tGianni Di Gregorio\ntt0762114\tLicense to Wed\tVince Di Meglio\ntt1392197\tMarmaduke\tVince Di Meglio\ntt0179626\t15 Minutes\tJohn Herzfeld\ntt1716777\tPeople Like Us\tJody Lambert\ntt1502404\tDrive Angry\tPatrick Lussier\ntt0219653\tDracula 2000\tPatrick Lussier\ntt1340138\tTerminator Genisys\tPatrick Lussier\ntt0239948\tSaving Silverman\tHank Nelken\ntt0422774\tAre We Done Yet?\tHank Nelken\ntt0301727\tWinged Migration\tJacques Perrin\ntt1084972\tWanted\tPuri Jagannadh\ntt1374992\tUpside Down\tJuan Solanas\ntt0291579\tHe Loves Me... He Loves Me Not\tCaroline Thivel\ntt1781769\tAnna Karenina\tLeo Tolstoy\ntt0997047\tCollege Road Trip\tCarrie Lee Wilson\ntt1727776\tScouts Guide to the Zombie Apocalypse\tCarrie Lee Wilson\ntt0805570\tThe Midnight Meat Train\tJeff Buhler\ntt2962876\tThe Road Within\tFlorian David Fitz\ntt0443706\tZodiac\tRobert Graysmith\ntt0298744\tAuto Focus\tRobert Graysmith\ntt0327084\tOver the Hedge\tMichael Fry\ntt1431045\tDeadpool\tFabian Nicieza\ntt2513074\tBilly Lynn's Long Halftime Walk\tBen Fountain\ntt1084972\tWanted\tSunil Kumar Agrawal\ntt2238032\tSkiptrace\tWen-Chia Chang\ntt0450188\tLa Vie en Rose\tIsabelle Sobelman\ntt1837703\tThe Fifth Estate\tDavid Leigh\ntt4432480\tRangiTaranga\tAnup Bhandari\ntt1596346\tSoul Surfer\tRick Bundschuh\ntt2543472\tWonder\tR.J. Palacio\ntt0271027\tKiss of the Dragon\tJet Li\ntt0270846\tSuperbabies: Baby Geniuses 2\tGregory Poppen\ntt0770772\tI Think I Love My Wife\tÉric Rohmer\ntt2974918\tAlvin and the Chipmunks: The Road Chip\tRoss Bagdasarian\ntt0952640\tAlvin and the Chipmunks\tRoss Bagdasarian\ntt1231580\tAlvin and the Chipmunks: The Squeakquel\tRoss Bagdasarian\ntt1615918\tAlvin and the Chipmunks: Chipwrecked\tRoss Bagdasarian\ntt1151309\tBigger Stronger Faster*\tAlexander Buono\ntt1843866\tCaptain America: The Winter Soldier\tGene Colan\ntt0187738\tBlade II\tGene Colan\ntt2015381\tGuardians of the Galaxy\tGene Colan\ntt0359013\tBlade: Trinity\tGene Colan\ntt1386697\tSuicide Squad\tGene Colan\ntt0381707\tWhite Chicks\tXavier Cook\ntt0800069\tThe Hills Have Eyes II\tJonathan Craven\ntt0434124\tKinky Boots\tGeoff Deane\ntt0482527\tIt's a Boy Girl Thing\tGeoff Deane\ntt0120913\tTitan A.E.\tBen Edlund\ntt1095217\tBad Lieutenant: Port of Call New Orleans\tWilliam M. Finkelstein\ntt0122459\tReturn to Me\tSamantha Goodman\ntt1016075\tFame\tChristopher Gore\ntt1313139\tThe Oranges\tIan Helfer\ntt4501244\tWhy Him?\tIan Helfer\ntt0479647\tBon Cop Bad Cop\tPatrick Huard\ntt0765446\tEscape from Planet Earth\tDavid Javerbaum\ntt2278871\tBlue Is the Warmest Color\tAbdellatif Kechiche\ntt0457939\tThe Holiday\tNancy Meyers\ntt2361509\tThe Intern\tNancy Meyers\ntt1230414\tIt's Complicated\tNancy Meyers\ntt0337741\tSomething's Gotta Give\tNancy Meyers\ntt1753496\tResident Evil: Damnation\tShinji Mikami\ntt1174954\tResident Evil: Degeneration\tShinji Mikami\ntt0482572\tPride and Glory\tGreg O'Connor\ntt2005151\tWar Dogs\tTodd Phillips\ntt0443453\tBorat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan\tTodd Phillips\ntt0335438\tStarsky & Hutch\tTodd Phillips\ntt1951261\tThe Hangover Part III\tTodd Phillips\ntt0462519\tSchool for Scoundrels\tTodd Phillips\ntt1411697\tThe Hangover Part II\tTodd Phillips\ntt1231583\tDue Date\tTodd Phillips\ntt0302886\tOld School\tTodd Phillips\ntt0215129\tRoad Trip\tTodd Phillips\ntt0318649\tSahara\tJohn C. Richards\ntt0171580\tNurse Betty\tJohn C. Richards\ntt2404181\tBelle\tMisan Sagay\ntt3922818\tThe Space Between Us\tStewart Schill\ntt5362988\tWind River\tTaylor Sheridan\ntt2582782\tHell or High Water\tTaylor Sheridan\ntt3397884\tSicario\tTaylor Sheridan\ntt0433416\tThe Namesake\tSooni Taraporevala\ntt0230838\tSweet November\tPaul Yurick\ntt1649444\t[REC] 3: Genesis\tDavid Gallart\ntt0377092\tMean Girls\tRosalind Wiseman\ntt0810784\tBright Star\tAndrew Motion\ntt4981966\t24\tVikram K. Kumar\ntt3449292\tManjhi: The Mountain Man\tJakhar Mahendar\ntt2375559\t1 - Nenokkadine\tHari Prasad Jakka\ntt1142977\tFrankenweenie\tTim Burton\ntt0121164\tCorpse Bride\tTim Burton\ntt0368794\tI'm Not There.\tTodd Haynes\ntt0297884\tFar from Heaven\tTodd Haynes\ntt1781769\tAnna Karenina\tTom Stoppard\ntt0157583\tEnigma\tTom Stoppard\ntt0815241\tReligulous\tBill Maher\ntt0206917\tThe Man Who Cried\tSally Potter\ntt0278488\tHow High\tDustin Lee Abraham\ntt0227445\tThe Score\tLem Dobbs\ntt1381404\tThe Company You Keep\tLem Dobbs\ntt1506999\tHaywire\tLem Dobbs\ntt0765446\tEscape from Planet Earth\tCory Edwards\ntt0443536\tHoodwinked!\tCory Edwards\ntt0844993\tHoodwinked Too! Hood vs. Evil\tCory Edwards\ntt0246894\tRollerball\tWilliam Harrison\ntt1704573\tBernie\tSkip Hollandsworth\ntt1661382\tGrudge Match\tTim Kelleher\ntt0473356\tThe Flock\tCraig Mitchell\ntt1277737\tThe Stoning of Soraya M.\tBetsy Giffen Nowrasteh\ntt0364751\tWithout a Paddle\tTom Nursall\ntt0361467\tConfessions of a Teenage Drama Queen\tGail Parent\ntt1756750\tStarbuck\tKen Scott\ntt2387559\tDelivery Man\tKen Scott\ntt2319580\tThe Grand Seduction\tKen Scott\ntt0435761\tToy Story 3\tLee Unkrich\ntt2380307\tCoco\tLee Unkrich\ntt0790804\tThe Comebacks\tMichael Colton\ntt1911658\tPenguins of Madagascar\tMichael Colton\ntt1975249\t6 Bullets\tChad Law\ntt1575694\tThe Hit List\tChad Law\ntt1971325\tAutomata\tJavier Sánchez Donate\ntt1395054\tOnce Upon a Time in Mumbai\tRajat Arora\ntt2424988\tGabbar is Back\tRajat Arora\ntt2372222\tKick\tRajat Arora\ntt1935896\tThe ABCs of Death\tYoshihiro Nishimura\ntt1099212\tTwilight\tStephenie Meyer\ntt1259571\tThe Twilight Saga: New Moon\tStephenie Meyer\ntt1325004\tThe Twilight Saga: Eclipse\tStephenie Meyer\ntt1673434\tThe Twilight Saga: Breaking Dawn - Part 2\tStephenie Meyer\ntt1324999\tThe Twilight Saga: Breaking Dawn - Part 1\tStephenie Meyer\ntt1517260\tThe Host\tStephenie Meyer\ntt1097643\tFifty Dead Men Walking\tMartin McGartland\ntt0344854\tArthur and the Invisibles\tNicolas Fructus\ntt1865505\tSong of the Sea\tWill Collins\ntt1114740\tPaul Blart: Mall Cop\tNick Bakay\ntt1222817\tZookeeper\tNick Bakay\ntt3450650\tPaul Blart: Mall Cop 2\tNick Bakay\ntt1767372\tShe's Funny That Way\tLouise Stratten\ntt0200465\tThe Bank Job\tDick Clement\ntt0380389\tGoal! The Dream Begins\tDick Clement\ntt0424095\tFlushed Away\tDick Clement\ntt0445922\tAcross the Universe\tDick Clement\ntt1440345\tThis Must Be the Place\tUmberto Contarello\ntt2358891\tThe Great Beauty\tUmberto Contarello\ntt2194499\tAbout Time\tRichard Curtis\ntt0314331\tLove Actually\tRichard Curtis\ntt0453451\tMr. Bean's Holiday\tRichard Curtis\ntt1921149\tTrash\tRichard Curtis\ntt0317198\tBridget Jones: The Edge of Reason\tRichard Curtis\ntt1131729\tPirate Radio\tRichard Curtis\ntt0243155\tBridget Jones's Diary\tRichard Curtis\ntt1568911\tWar Horse\tRichard Curtis\ntt2199711\tVishwaroopam\tKamal Haasan\ntt0367495\tAnbe Sivam\tKamal Haasan\ntt1261945\tSex and the City 2\tMichael Patrick King\ntt1000774\tSex and the City\tMichael Patrick King\ntt0486640\tPostal\tBryan C. Knight\ntt4326444\tJulieta\tAlice Munro\ntt0491747\tAway from Her\tAlice Munro\ntt0831387\tGodzilla\tTakeo Murata\ntt0256009\tThe Devil's Backbone\tDavid Muñoz\ntt1345836\tThe Dark Knight Rises\tChristopher Nolan\ntt0816692\tInterstellar\tChristopher Nolan\ntt0372784\tBatman Begins\tChristopher Nolan\ntt1375666\tInception\tChristopher Nolan\ntt0482571\tThe Prestige\tChristopher Nolan\ntt0468569\tThe Dark Knight\tChristopher Nolan\ntt5013056\tDunkirk\tChristopher Nolan\ntt0209144\tMemento\tChristopher Nolan\ntt0770828\tMan of Steel\tChristopher Nolan\ntt0480239\tAtlas Shrugged: Part I\tBrian Patrick O'Toole\ntt4025514\tSuburra\tSandro Petraglia\ntt0346336\tThe Best of Youth\tSandro Petraglia\ntt0213847\tMalèna\tLuciano Vincenzoni\ntt0472399\tThe Mechanic\tRichard Wenk\ntt3393786\tJack Reacher: Never Go Back\tRichard Wenk\ntt2404435\tThe Magnificent Seven\tRichard Wenk\ntt1764651\tThe Expendables 2\tRichard Wenk\ntt0450232\t16 Blocks\tRichard Wenk\ntt0455944\tThe Equalizer\tRichard Wenk\ntt0400497\tHerbie Fully Loaded\tMark Perez\ntt0384793\tAccepted\tMark Perez\ntt1307068\tSeeking a Friend for the End of the World\tLorene Scafaria\ntt0981227\tNick and Norah's Infinite Playlist\tLorene Scafaria\ntt1810697\tMeeting Evil\tChris Fisher\ntt0478970\tAnt-Man\tLarry Lieber\ntt1228705\tIron Man 2\tLarry Lieber\ntt0800369\tThor\tLarry Lieber\ntt0371746\tIron Man\tLarry Lieber\ntt1300854\tIron Man 3\tLarry Lieber\ntt2015381\tGuardians of the Galaxy\tLarry Lieber\ntt1981115\tThor: The Dark World\tLarry Lieber\ntt3896198\tGuardians of the Galaxy Vol. 2\tLarry Lieber\ntt3501632\tThor: Ragnarok\tLarry Lieber\ntt3678782\tBadlapur\tPooja Ladha Surti\ntt0808399\tNew York, I Love You\tJim Strouse\ntt3175038\tEk Villain\tTushar Hiranandani\ntt1980986\tHousefull 2\tTushar Hiranandani\ntt1954701\tA Coffee in Berlin\tJan Ole Gerster\ntt0482629\tThe Ultimate Gift\tJim Stovall\ntt2752758\tDevil's Due\tLindsay Devlin\ntt0892899\tOutpost\tRae Brunton\ntt1075747\tJonah Hex\tJohn Albano\ntt4769836\tThe Do-Over\tChris Pappas\ntt1267297\tHercules\tRyan J. Condal\ntt1305591\tMars Needs Moms\tWendy Wells\ntt1590089\tConfessions\tKanae Minato\ntt1772341\tWreck-It Ralph\tEd Boon\ntt2568862\tGoing in Style\tEdward Cannon\ntt2099556\tAntiviral\tBrandon Cronenberg\ntt1385867\tCop Out\tRobb Cullen\ntt4694544\tOnce Upon a Time in Venice\tRobb Cullen\ntt0929425\tGomorrah\tMatteo Garrone\ntt3278330\tTale of Tales\tMatteo Garrone\ntt0120912\tMen in Black II\tRobert Gordon\ntt0339291\tA Series of Unfortunate Events\tRobert Gordon\ntt0280486\tBad Company\tDavid Himmelstein\ntt0457495\tAlex Rider: Operation Stormbreaker\tAnthony Horowitz\ntt0473188\tBobby Z\tBob Krakower\ntt0462396\tThe Last Legion\tValerio Manfredi\ntt1217209\tBrave\tIrene Mecchi\ntt1142977\tFrankenweenie\tLeonard Ripps\ntt0241025\tVanity Fair\tMark Skeet\ntt0814255\tPercy Jackson & the Olympians: The Lightning Thief\tCraig Titley\ntt0452598\tCheaper by the Dozen 2\tCraig Titley\ntt0267913\tScooby-Doo\tCraig Titley\ntt0349205\tCheaper by the Dozen\tCraig Titley\ntt1251757\tMiddle Men\tAndy Weiss\ntt0242519\tHera Pheri\tAnand S. Vardhan\ntt2040560\tThe Pact\tNicholas McCarthy\ntt2398231\tThe Homesman\tWesley A. Oliver\ntt0408790\tFlightplan\tPeter A. Dowling\ntt2304953\tReasonable Doubt\tPeter A. Dowling\ntt2113681\tThe 100 Year-Old Man Who Climbed Out the Window and Disappeared\tHans Ingemansson\ntt0480239\tAtlas Shrugged: Part I\tJohn Aglialoro\ntt2223990\tDraft Day\tScott Rothman\ntt1456472\tWe Have a Pope\tJer Lujan\ntt1280558\tA Wednesday\tNeeraj Pandey\ntt3848892\tBaby\tNeeraj Pandey\ntt4169250\tM.S. Dhoni: The Untold Story\tNeeraj Pandey\ntt2377938\tSpecial 26\tNeeraj Pandey\ntt1959332\tAmerican Mary\tSylvia Soska\ntt0884224\tWar, Inc.\tJohn Cusack\ntt0146882\tHigh Fidelity\tJohn Cusack\ntt0120755\tMission: Impossible II\tRobert Towne\ntt0268995\tThe Majestic\tMichael Sloane\ntt0230011\tAtlantis: The Lost Empire\tBryce Zabel\ntt0842926\tThe Kids Are All Right\tStuart Blumberg\ntt0171433\tKeeping the Faith\tStuart Blumberg\ntt0265208\tThe Girl Next Door\tStuart Blumberg\ntt1932718\tThanks for Sharing\tStuart Blumberg\ntt2452386\tThe Fundamentals of Caring\tRob Burnett\ntt0808339\tThe Heir Apparent: Largo Winch\tPhilippe Francq\ntt3717490\tPower Rangers\tJohn Gatins\ntt1907668\tFlight\tJohn Gatins\ntt0418647\tDreamer: Inspired by a True Story\tJohn Gatins\ntt0234829\tSummer Catch\tJohn Gatins\ntt3731562\tKong: Skull Island\tJohn Gatins\ntt0433035\tReal Steel\tJohn Gatins\ntt2369135\tNeed for Speed\tJohn Gatins\ntt0393162\tCoach Carter\tJohn Gatins\ntt0180734\tHardball\tJohn Gatins\ntt2467046\tLeft Behind\tPaul Lalonde\ntt0252299\tBuffalo Soldiers\tNora Maccoby\ntt0338564\tInfernal Affairs\tAlan Mak\ntt0374339\tInfernal Affairs 3\tAlan Mak\ntt0369060\tInfernal Affairs 2\tAlan Mak\ntt0407887\tThe Departed\tAlan Mak\ntt0460791\tThe Fall\tValeri Petrov\ntt3210686\tSon of God\tColin Swash\ntt0402901\tThe Cave\tTegan West\ntt0328880\tBrother Bear\tWoody Woodman\ntt4025514\tSuburra\tGiancarlo De Cataldo\ntt0337578\tBaghban\tShafiq Ansari\ntt1326972\tRed Cliff II\tKhan Chan\ntt0425637\tRed Cliff\tKhan Chan\ntt2294449\t22 Jump Street\tJonah Hill\ntt1232829\t21 Jump Street\tJonah Hill\ntt1700841\tSausage Party\tJonah Hill\ntt4501244\tWhy Him?\tJonah Hill\ntt0439289\tRunning with Scissors\tAugusten Burroughs\ntt1034314\tIron Sky\tJarmo Puskala\ntt1129445\tAmelia\tSusan Butler\ntt1743720\tThe Greatest Movie Ever Sold\tJeremy Chilnick\ntt2372678\t2 States\tChetan Bhagat\ntt1187043\t3 Idiots\tChetan Bhagat\ntt2213054\tKai po che!\tChetan Bhagat\ntt2372222\tKick\tChetan Bhagat\ntt1656192\tSpecial Forces\tEmmanuelle Collomp\ntt4667094\tFifty Shades of Black\tRick Alvarez\ntt2243537\tA Haunted House\tRick Alvarez\ntt2828996\tA Haunted House 2\tRick Alvarez\ntt6048930\tNaked\tRick Alvarez\ntt3398268\tWhen Marnie Was There\tMasashi Ando\ntt0299172\tHome on the Range\tKeith Baxter\ntt0968264\tThe Conspirator\tGregory Bernstein\ntt3704538\tV/H/S Viral\tGregg Bishop\ntt0188453\tBirthday Girl\tTom Butterworth\ntt0462396\tThe Last Legion\tTom Butterworth\ntt1264904\tLittle Nicholas\tAlain Chabat\ntt0357111\tRRRrrrr!!!\tAlain Chabat\ntt0250223\tAsterix and Obelix Meet Cleopatra\tAlain Chabat\ntt2212008\tThe Bag Man\tPaul Conway\ntt3399024\tSamba\tMuriel Coulin\ntt1614989\tHeadhunters\tLars Gudmestad\ntt0248408\tManitou's Shoe\tMichael Herbig\ntt0349047\t(T)Raumschiff Surprise - Periode 1\tMichael Herbig\ntt1564349\tDolphin Tale\tKaren Janszen\ntt0281358\tA Walk to Remember\tKaren Janszen\ntt0383028\tSynecdoche, New York\tCharlie Kaufman\ntt0338013\tEternal Sunshine of the Spotless Mind\tCharlie Kaufman\ntt2401878\tAnomalisa\tCharlie Kaufman\ntt0268126\tAdaptation.\tCharlie Kaufman\ntt0270288\tConfessions of a Dangerous Mind\tCharlie Kaufman\ntt0219822\tHuman Nature\tCharlie Kaufman\ntt0192111\tHead Over Heels\tDavid Kidd\ntt3411444\tFerdinand\tDavid Kidd\ntt0443295\tYours, Mine & Ours\tDavid Kidd\ntt0430770\tThe Women\tClare Boothe Luce\ntt3297330\tGood Kill\tAndrew Niccol\ntt0258153\tS1m0ne\tAndrew Niccol\ntt0399295\tLord of War\tAndrew Niccol\ntt1637688\tIn Time\tAndrew Niccol\ntt0362227\tThe Terminal\tAndrew Niccol\ntt1517260\tThe Host\tAndrew Niccol\ntt0425413\tRun, Fatboy, Run\tSimon Pegg\ntt0425112\tHot Fuzz\tSimon Pegg\ntt1092026\tPaul\tSimon Pegg\ntt0365748\tShaun of the Dead\tSimon Pegg\ntt1213663\tThe World's End\tSimon Pegg\ntt2660888\tStar Trek: Beyond\tSimon Pegg\ntt0420609\tInfamous\tGeorge Plimpton\ntt0317219\tCars\tSteve Purcell\ntt1217209\tBrave\tSteve Purcell\ntt1596346\tSoul Surfer\tDeborah Schwartz\ntt1001508\tHe's Just Not That Into You\tLiz Tuccillo\ntt1292566\tHow to Be Single\tLiz Tuccillo\ntt1653665\tGoodbye Christopher Robin\tSimon Vaughan\ntt1904996\tParker\tDonald E. Westlake\ntt0814335\tThe Stepfather\tDonald E. Westlake\ntt0161083\tWhat's the Worst That Could Happen?\tDonald E. Westlake\ntt1410063\tThe Flowers of War\tGeling Yan\ntt0283003\tSpun\tCreighton Vero\ntt0377818\tThe Dukes of Hazzard\tJohn O'Brien\ntt0335438\tStarsky & Hutch\tJohn O'Brien\ntt0306685\tCradle 2 the Grave\tJohn O'Brien\ntt0423409\tTristram Shandy: A Cock and Bull Story\tLaurence Sterne\ntt2006295\tThe 33\tMikko Alanne\ntt1486193\t5 Days of War\tMikko Alanne\ntt0384819\tAzumi\tIsao Kiriyama\ntt3577624\tA Perfect Day\tPaula Farias\ntt2094766\tAssassin's Creed\tJade Raymond\ntt0822854\tShooter\tStephen Hunter\ntt1175709\tAll Good Things\tMarcus Hinchey\ntt2077851\tSleepwalk with Me\tJoe Birbiglia\ntt1702439\tSafe Haven\tGage Lansky\ntt0432291\tThe Fog\tJohn Carpenter\ntt0220506\tHalloween: Resurrection\tJohn Carpenter\ntt0373883\tHalloween\tJohn Carpenter\ntt0398712\tAssault on Precinct 13\tJohn Carpenter\ntt0228333\tGhosts of Mars\tJohn Carpenter\ntt0362004\tPalindromes\tTodd Solondz\ntt0250081\tStorytelling\tTodd Solondz\ntt0164184\tThe Sum of All Fears\tPaul Attanasio\ntt0452624\tThe Good German\tPaul Attanasio\ntt3278330\tTale of Tales\tEdoardo Albinati\ntt0384806\tThe Amityville Horror\tJay Anson\ntt2085910\tRoom 237\tRodney Ascher\ntt0425061\tGet Smart\tTom J. Astle\ntt2224026\tHome\tTom J. Astle\ntt0427229\tFailure to Launch\tTom J. Astle\ntt0848537\tEpic\tTom J. Astle\ntt1412528\tTable 19\tMark Duplass\ntt2428170\tCreep\tMark Duplass\ntt1588334\tJeff, Who Lives at Home\tMark Duplass\ntt1336617\tCyrus\tMark Duplass\ntt0133240\tTreasure Planet\tTed Elliott\ntt1298650\tPirates of the Caribbean: On Stranger Tides\tTed Elliott\ntt0138749\tThe Road to El Dorado\tTed Elliott\ntt0449088\tPirates of the Caribbean: At World's End\tTed Elliott\ntt0386140\tThe Legend of Zorro\tTed Elliott\ntt1210819\tThe Lone Ranger\tTed Elliott\ntt0325980\tPirates of the Caribbean: The Curse of the Black Pearl\tTed Elliott\ntt0126029\tShrek\tTed Elliott\ntt1790809\tPirates of the Caribbean: Dead Men Tell No Tales\tTed Elliott\ntt0383574\tPirates of the Caribbean: Dead Man's Chest\tTed Elliott\ntt0465234\tNational Treasure: Book of Secrets\tTed Elliott\ntt0322259\t2 Fast 2 Furious\tDerek Haas\ntt0381849\t3:10 to Yuma\tDerek Haas\ntt0493464\tWanted\tDerek Haas\ntt1646980\tThe Double\tDerek Haas\ntt1258197\tExam\tStuart Hazeldine\ntt0212338\tMeet the Parents\tJim Herzfeld\ntt0290002\tMeet the Fockers\tJim Herzfeld\ntt0469021\tAlan Partridge\tArmando Iannucci\ntt1226774\tIn the Loop\tArmando Iannucci\ntt4686844\tThe Death of Stalin\tArmando Iannucci\ntt0397313\tEight Below\tToshirô Ishidô\ntt0398027\tDown in the Valley\tDavid Jacobson\ntt2103281\tDawn of the Planet of the Apes\tRick Jaffa\ntt0369610\tJurassic World\tRick Jaffa\ntt3450958\tWar for the Planet of the Apes\tRick Jaffa\ntt1318514\tRise of the Planet of the Apes\tRick Jaffa\ntt1390411\tIn the Heart of the Sea\tRick Jaffa\ntt0254686\tThe Piano Teacher\tElfriede Jelinek\ntt1414382\tYou Again\tMoe Jelline\ntt0401445\tA Good Year\tMarc Klein\ntt1667353\tMirror Mirror\tMarc Klein\ntt0240890\tSerendipity\tMarc Klein\ntt0428870\tA Moment to Remember\tJohn H. Lee\ntt0351977\tWalking Tall\tDavid Levien\ntt2364841\tRunner Runner\tDavid Levien\ntt0313542\tRunaway Jury\tDavid Levien\ntt0211465\tKnockaround Guys\tDavid Levien\ntt1103982\tThe Girlfriend Experience\tDavid Levien\ntt0496806\tOcean's Thirteen\tDavid Levien\ntt0357111\tRRRrrrr!!!\tPierre-François Martin-Laval\ntt0371606\tChicken Little\tJosann McGibbon\ntt2183034\tEarth to Echo\tAndrew Panay\ntt2103281\tDawn of the Planet of the Apes\tAmanda Silver\ntt0369610\tJurassic World\tAmanda Silver\ntt3450958\tWar for the Planet of the Apes\tAmanda Silver\ntt1318514\tRise of the Planet of the Apes\tAmanda Silver\ntt1390411\tIn the Heart of the Sea\tAmanda Silver\ntt0838247\tAfter.Life\tAgnieszka Wojtowicz-Vosloo\ntt0804452\tBratz\tAdam De La Peña\ntt1084972\tWanted\tShiraz Ahmed\ntt1375789\tRace 2\tShiraz Ahmed\ntt2077833\tRowdy Rathore\tShiraz Ahmed\ntt1017456\tRace\tShiraz Ahmed\ntt0323120\tLoving Annabelle\tOlivia Bohnhoff Harris\ntt1046173\tG.I. Joe: The Rise of Cobra\tMichael B. Gordon\ntt0416449\t300\tMichael B. Gordon\ntt0356470\tA Cinderella Story\tLeigh Dunlap\ntt1399683\tWinter's Bone\tAnne Rosellini\ntt2024469\tNon-Stop\tChristopher Roach\ntt0401085\tC.R.A.Z.Y.\tFrançois Boulay\ntt1594918\tEyyvah Eyvah\tAta Demirer\ntt1801051\tEyyvah Eyvah 2\tAta Demirer\ntt2446980\tJoy\tAnnie Mumolo\ntt1478338\tBridesmaids\tAnnie Mumolo\ntt4899370\tMegan Leavey\tAnnie Mumolo\ntt1084972\tWanted\tShabbir Ahmed\ntt1333125\tMovie 43\tElizabeth Shapiro\ntt0439662\tFanaa\tShibani Bathija\ntt0449999\tKabhi Alvida Naa Kehna\tShibani Bathija\ntt1188996\tMy Name Is Khan\tShibani Bathija\ntt0495596\tTales from Earthsea\tGorô Miyazaki\ntt5022702\tHush\tKate Siegel\ntt0829297\tTen Inch Hero\tBetsy Morris\ntt1205537\tJack Ryan: Shadow Recruit\tAdam Cozad\ntt0918940\tThe Legend of Tarzan\tAdam Cozad\ntt0315642\tWazir\tGazal Dhaliwal\ntt0338512\tTwo Brothers\tJean-Jacques Annaud\ntt0215750\tEnemy at the Gates\tJean-Jacques Annaud\ntt1701210\tDay of the Falcon\tJean-Jacques Annaud\ntt0438859\tThe Color of Freedom\tBille August\ntt0968264\tThe Conspirator\tJames D. Solomon\ntt0372824\tThe Chorus\tChristophe Barratier\ntt0397078\tJust My Luck\tJonathan Bernstein\ntt1273678\tThe Spy Next Door\tJonathan Bernstein\ntt0158622\tThe Flintstones in Viva Rock Vegas\tJim Cash\ntt0366174\tAnacondas: The Hunt for the Blood Orchid\tJim Cash\ntt2479800\tPalo Alto\tGia Coppola\ntt0901476\tBride Wars\tGreg DePaul\ntt0239948\tSaving Silverman\tGreg DePaul\ntt0480025\tThis Is England\tShane Meadows\ntt0419677\tDead Man's Shoes\tShane Meadows\ntt0804497\tIt's Kind of a Funny Story\tRyan Fleck\ntt0468489\tHalf Nelson\tRyan Fleck\ntt2349144\tMississippi Grind\tRyan Fleck\ntt1205535\tThe Rebound\tBart Freundlich\ntt0228750\tProof of Life\tThomas Hargrove\ntt0276751\tAbout a Boy\tPeter Hedges\ntt0311648\tPieces of April\tPeter Hedges\ntt0480242\tDan in Real Life\tPeter Hedges\ntt1462769\tThe Odd Life of Timothy Green\tPeter Hedges\ntt1979388\tThe Good Dinosaur\tPeter Hedges\ntt1434435\tMother's Day\tCharles Kaufman\ntt3748528\tRogue One: A Star Wars Story\tJohn Knoll\ntt0284837\tAli G Indahouse\tDan Mazer\ntt0765446\tEscape from Planet Earth\tDan Mazer\ntt0443453\tBorat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan\tDan Mazer\ntt1711525\tOffice Christmas Party\tDan Mazer\ntt2244901\tI Give It a Year\tDan Mazer\ntt0889583\tBrüno\tDan Mazer\ntt1473832\tBridget Jones's Baby\tDan Mazer\ntt0346723\tChalte Chalte\tAziz Mirza\ntt2948356\tZootopia\tRich Moore\ntt1772341\tWreck-It Ralph\tRich Moore\ntt0208990\tThe Son's Room\tNanni Moretti\ntt1456472\tWe Have a Pope\tNanni Moretti\ntt3532216\tAmerican Made\tGary Spinelli\ntt0983213\t5 Centimeters Per Second\tAlexander Von David\ntt0366292\tOne Missed Call\tAlexander Von David\ntt1753496\tResident Evil: Damnation\tAlexander Von David\ntt0367110\tSwades\tAmin Hajee\ntt0349825\tMiracle\tEric Guggenheim\ntt1465522\tTucker and Dale vs Evil\tMorgan Jurgenson\ntt0381971\tCurious George\tMargret Rey\ntt0429589\tThe Ant Bully\tJohn Nickle\ntt2490326\tCooties\tJosh C. Waller\ntt1441912\tThe Way\tJack Hitt\ntt1990181\tBrake\tAndrew Hilton\ntt1092633\tThe Goods: Live Hard, Sell Hard\tAndy Stock\ntt2105044\tV/H/S\tJustin Martinez\ntt1362058\tCockneys vs Zombies\tMatthias Hoene\ntt5462602\tThe Big Sick\tKumail Nanjiani\ntt1935896\tThe ABCs of Death\tLee Hardcastle\ntt2083383\tTrouble with the Curve\tRandy Brown\ntt4257926\tMiracles from Heaven\tRandy Brown\ntt2168910\tCocktail\tSajid Ali\ntt3387266\tA United Kingdom\tSusan Williams\ntt0497465\tVicky Cristina Barcelona\tWoody Allen\ntt1178663\tWhatever Works\tWoody Allen\ntt0416320\tMatch Point\tWoody Allen\ntt2334873\tBlue Jasmine\tWoody Allen\ntt1605783\tMidnight in Paris\tWoody Allen\ntt4513674\tCafé Society\tWoody Allen\ntt3715320\tIrrational Man\tWoody Allen\ntt0795493\tCassandra's Dream\tWoody Allen\ntt0313792\tAnything Else\tWoody Allen\ntt0196216\tSmall Time Crooks\tWoody Allen\ntt5825380\tWonder Wheel\tWoody Allen\ntt0378947\tMelinda and Melinda\tWoody Allen\ntt2870756\tMagic in the Moonlight\tWoody Allen\ntt1859650\tTo Rome with Love\tWoody Allen\ntt0278823\tHollywood Ending\tWoody Allen\ntt0457513\tScoop\tWoody Allen\ntt1182350\tYou Will Meet a Tall Dark Stranger\tWoody Allen\ntt0256524\tThe Curse of the Jade Scorpion\tWoody Allen\ntt2209418\tBefore Midnight\tJulie Delpy\ntt0841044\t2 Days in Paris\tJulie Delpy\ntt1602472\t2 Days in New York\tJulie Delpy\ntt0381681\tBefore Sunset\tJulie Delpy\ntt1229238\tMission: Impossible - Ghost Protocol\tSteven Zaillian\ntt1210166\tMoneyball\tSteven Zaillian\ntt0373926\tThe Interpreter\tSteven Zaillian\ntt1528100\tExodus: Gods and Kings\tSteven Zaillian\n<!--TABLE_COMMENT-->\n<font color=red>Results are limited by 1000.</font>\n"}]},"apps":[],"jobName":"paragraph_1525239781837_-1670545870","id":"20180425-232913_30718351","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:106","user":"anonymous","dateFinished":"2018-05-02T06:19:47+0000","dateStarted":"2018-05-02T06:18:35+0000"},{"title":"Filtering for director","text":"%pyspark\n\nnameBasicColumnRename1 = nameBasic.select('_c0', '_c1').withColumnRenamed('_c0','director').withColumnRenamed('_c1', 'directorName')\nnameColumnRename1 = crew.select('_c0', '_c1').withColumnRenamed('_c0','tconst').withColumnRenamed('_c1', 'director')\n\ntable3 = nameColumnRename1.toDF('tconst','director')\nz.show(table3)","dateUpdated":"2018-05-02T06:27:24+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":false},"helium":{}}},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"tconst\tdirector\ntconst\tdirectors\ntt0000001\tnm0005690\ntt0000002\tnm0721526\ntt0000003\tnm0721526\ntt0000004\tnm0721526\ntt0000005\tnm0005690\ntt0000006\tnm0005690\ntt0000007\tnm0374658,nm0005690\ntt0000008\tnm0005690\ntt0000009\tnm0085156\ntt0000010\tnm0525910\ntt0000011\tnm0804434\ntt0000012\tnm0525908,nm0525910\ntt0000013\tnm0525910\ntt0000014\tnm0525910\ntt0000015\tnm0721526\ntt0000016\tnm0525910\ntt0000017\tnm1587194,nm0804434\ntt0000018\tnm0804434\ntt0000019\tnm0932055\ntt0000020\tnm0010291\ntt0000022\tnm0525910\ntt0000023\tnm0525910\ntt0000024\tnm0010291\ntt0000025\tnm0010291\ntt0000026\tnm0525910\ntt0000027\tnm0525910\ntt0000028\tnm0525910\ntt0000029\tnm0525910\ntt0000030\tnm0010291,nm0666972\ntt0000031\tnm0525910\ntt0000032\tnm0804434\ntt0000033\tnm0525910\ntt0000034\tnm0617588\ntt0000035\tnm0617588\ntt0000036\tnm0005690\ntt0000037\tnm0617588\ntt0000038\tnm0374658\ntt0000039\t\\N\ntt0000040\tnm0617588\ntt0000041\tnm0525910\ntt0000042\tnm0617588\ntt0000043\tnm0617588\ntt0000044\tnm0617588\ntt0000045\tnm0617588\ntt0000046\tnm0617588\ntt0000047\tnm0617588\ntt0000048\tnm0010291\ntt0000049\tnm0010291\ntt0000050\tnm0617588\ntt0000051\tnm0617588\ntt0000052\tnm0895515\ntt0000053\tnm0684607\ntt0000054\tnm0617588\ntt0000055\tnm0617588\ntt0000056\tnm0795060\ntt0000057\tnm0617588\ntt0000058\tnm0617588\ntt0000059\tnm0617588\ntt0000060\tnm0005690\ntt0000061\tnm0010291\ntt0000062\tnm0617588\ntt0000063\tnm0617588\ntt0000064\tnm0617588\ntt0000065\tnm0617588\ntt0000066\tnm0617588\ntt0000067\tnm0617588\ntt0000068\tnm0617588\ntt0000069\tnm0617588\ntt0000070\tnm0525910\ntt0000071\tnm0617588\ntt0000072\tnm0617588\ntt0000073\tnm0617588\ntt0000074\tnm0617588\ntt0000075\tnm0617588\ntt0000076\tnm0005690\ntt0000077\tnm0617588\ntt0000078\tnm0234288\ntt0000079\tnm0617588\ntt0000080\tnm0617588\ntt0000081\tnm0617588\ntt0000082\tnm0005690\ntt0000083\tnm0617588\ntt0000084\tnm0617588\ntt0000085\tnm0617588\ntt0000086\tnm0617588\ntt0000087\tnm0617588\ntt0000088\tnm0617588\ntt0000089\tnm0525908,nm0698645\ntt0000090\tnm0617588\ntt0000091\tnm0617588\ntt0000092\tnm0617588\ntt0000093\tnm0525908,nm0525910\ntt0000094\tnm0617588\ntt0000095\tnm0617588\ntt0000096\tnm0617588\ntt0000097\tnm0617588\ntt0000098\tnm0617588\ntt0000099\tnm0617588\ntt0000100\tnm0617588\ntt0000101\tnm0617588\ntt0000102\tnm0617588\ntt0000103\tnm0617588\ntt0000104\t\\N\ntt0000105\tnm0617588\ntt0000106\tnm0617588\ntt0000107\tnm0617588\ntt0000108\tnm0005690\ntt0000109\tnm0005690\ntt0000110\tnm0005690\ntt0000111\tnm0005690\ntt0000112\tnm0005690\ntt0000113\tnm0005690\ntt0000114\tnm0617588\ntt0000115\tnm0617588\ntt0000116\tnm0617588\ntt0000117\tnm0234288\ntt0000118\tnm0617588\ntt0000119\tnm0617588\ntt0000120\tnm0617588\ntt0000121\tnm0609678\ntt0000122\tnm0617588\ntt0000123\tnm0617588\ntt0000124\tnm0617588\ntt0000125\t\\N\ntt0000126\tnm0617588\ntt0000127\tnm0617588\ntt0000128\tnm0617588\ntt0000129\tnm0617588\ntt0000130\tnm0617588\ntt0000131\tnm0617588\ntt0000132\tnm0617588\ntt0000133\tnm0617588\ntt0000134\t\\N\ntt0000135\tnm0005690\ntt0000136\tnm0349785\ntt0000137\tnm0349785\ntt0000138\tnm0617588\ntt0000139\tnm0349785\ntt0000140\tnm0349785\ntt0000141\tnm0349785\ntt0000142\tnm0924920\ntt0000143\tnm0349785\ntt0000144\tnm0349785\ntt0000145\tnm0349785\ntt0000146\tnm0349785\ntt0000147\tnm0714557\ntt0000148\tnm0349785\ntt0000149\tnm0617588\ntt0000150\tnm0349785\ntt0000151\tnm0617588\ntt0000152\tnm0617588\ntt0000153\tnm0808310\ntt0000154\tnm0010291\ntt0000155\tnm0617588\ntt0000156\tnm0617588\ntt0000157\tnm0349785\ntt0000158\tnm0349785\ntt0000159\tnm0617588\ntt0000160\tnm0095816\ntt0000161\tnm0349785\ntt0000162\t\\N\ntt0000163\tnm0349785\ntt0000164\tnm0349785\ntt0000165\tnm0005717\ntt0000166\tnm0005717\ntt0000167\tnm0422809\ntt0000168\tnm0005717\ntt0000169\tnm0698645\ntt0000170\tnm0666972\ntt0000171\tnm0349785\ntt0000172\tnm0808310\ntt0000173\tnm0085865\ntt0000174\tnm0471818\ntt0000175\tnm0795060\ntt0000176\t\\N\ntt0000177\tnm0085865\ntt0000178\tnm0692105\ntt0000179\tnm0617588\ntt0000180\tnm0349785\ntt0000181\tnm0808310\ntt0000182\tnm0666972\ntt0000183\tnm0808310\ntt0000184\tnm0924920\ntt0000185\tnm0349785\ntt0000186\tnm0617588\ntt0000187\tnm0349785\ntt0000188\tnm0666972\ntt0000189\tnm0005717\ntt0000190\tnm0471818\ntt0000191\tnm0349785\ntt0000192\tnm0924920\ntt0000193\tnm0349785\ntt0000194\tnm0378408\ntt0000195\tnm0349785\ntt0000196\tnm0808310\ntt0000197\tnm0349785\ntt0000198\tnm0349785\ntt0000199\t\\N\ntt0000200\t\\N\ntt0000201\tnm0005690\ntt0000202\tnm0349785\ntt0000203\tnm0349785\ntt0000204\tnm0349785\ntt0000205\tnm0349785\ntt0000206\tnm0005717\ntt0000207\t\\N\ntt0000208\tnm0808310\ntt0000209\tnm0808310\ntt0000210\tnm0617588\ntt0000211\tnm0617588\ntt0000212\tnm0795060\ntt0000213\tnm0349785\ntt0000214\tnm0085865\ntt0000215\tnm0471818\ntt0000216\tnm0005717\ntt0000217\tnm0808310\ntt0000218\tnm0617588\ntt0000219\tnm0808310\ntt0000220\t\\N\ntt0000221\tnm0182052\ntt0000222\tnm0349785\ntt0000223\tnm0349785\ntt0000224\t\\N\ntt0000225\t\\N\ntt0000226\t\\N\ntt0000227\tnm4427898\ntt0000228\tnm0349785\ntt0000229\t\\N\ntt0000230\tnm0617588\ntt0000231\tnm0795060\ntt0000232\tnm0349785\ntt0000233\tnm0005717\ntt0000234\tnm0617588\ntt0000235\tnm0617588\ntt0000236\tnm0349785\ntt0000237\tnm0349785\ntt0000238\tnm0349785\ntt0000239\tnm0349785\ntt0000240\t\\N\ntt0000241\tnm0349785\ntt0000242\tnm0617588\ntt0000243\tnm0349785\ntt0000244\tnm0349785\ntt0000245\t\\N\ntt0000246\tnm0617588\ntt0000247\tnm2156608,nm0005690,nm0002504\ntt0000248\tnm0808310\ntt0000249\tnm0808310\ntt0000250\tnm0005717\ntt0000251\tnm0177862\ntt0000252\tnm0349785\ntt0000253\tnm0095816\ntt0000254\tnm0349785\ntt0000255\tnm0349785\ntt0000256\t\\N\ntt0000257\tnm0349785\ntt0000258\tnm0349785\ntt0000259\tnm0349785\ntt0000260\tnm0349785\ntt0000261\tnm0617588\ntt0000262\tnm0349785\ntt0000263\t\\N\ntt0000264\tnm0617588\ntt0000265\t\\N\ntt0000266\t\\N\ntt0000267\tnm0349785\ntt0000268\tnm0349785\ntt0000269\tnm0666972\ntt0000270\tnm0349785\ntt0000271\tnm0349785\ntt0000272\tnm0808310\ntt0000273\tnm0932055\ntt0000274\tnm0349785\ntt0000275\tnm0349785\ntt0000276\tnm0349785\ntt0000277\tnm0349785\ntt0000278\t\\N\ntt0000279\t\\N\ntt0000280\t\\N\ntt0000281\t\\N\ntt0000282\tnm0349785\ntt0000283\tnm0349785\ntt0000284\tnm0349785\ntt0000285\tnm0095816\ntt0000286\tnm0349785\ntt0000287\tnm0807236,nm0085865\ntt0000288\tnm0349785\ntt0000289\tnm0349785\ntt0000290\tnm0349785\ntt0000291\tnm0349785\ntt0000292\tnm0349785\ntt0000293\tnm0349785\ntt0000294\tnm0349785\ntt0000295\tnm0349785\ntt0000296\tnm0349785\ntt0000297\tnm0349785\ntt0000298\tnm0349785\ntt0000299\tnm0349785\ntt0000300\tnm0085865\ntt0000301\tnm0692105\ntt0000302\tnm0349785\ntt0000303\tnm0349785\ntt0000304\tnm0808310\ntt0000305\tnm0349785\ntt0000306\tnm0561109\ntt0000307\tnm0085865\ntt0000308\tnm0808310\ntt0000309\tnm0378408\ntt0000310\t\\N\ntt0000312\tnm0349785\ntt0000313\tnm0808310\ntt0000314\tnm0349785\ntt0000315\tnm0349785\ntt0000316\tnm0349785\ntt0000317\tnm0349785\ntt0000318\tnm0804434\ntt0000319\tnm0793094\ntt0000320\tnm0349785\ntt0000321\tnm0692105\ntt0000322\tnm0005717\ntt0000323\tnm0349785\ntt0000324\tnm0349785\ntt0000325\tnm0349785\ntt0000326\tnm0349785\ntt0000327\tnm0349785\ntt0000328\tnm0349785\ntt0000329\tnm0349785\ntt0000330\tnm0349785\ntt0000331\tnm0349785\ntt0000332\tnm0349785\ntt0000333\tnm0349785\ntt0000334\tnm0349785\ntt0000335\tnm0675140,nm0095714\ntt0000336\tnm0349785\ntt0000337\t\\N\ntt0000338\tnm0349785\ntt0000339\tnm0349785\ntt0000340\tnm0692105\ntt0000341\tnm0692105\ntt0000342\tnm0349785\ntt0000343\tnm0349785\ntt0000344\tnm0349785\ntt0000345\tnm0349785\ntt0000346\tnm0692105\ntt0000347\t\\N\ntt0000348\tnm0349785\ntt0000349\tnm0095816\ntt0000350\tnm0666972\ntt0000351\tnm0349785\ntt0000352\tnm0692105\ntt0000353\tnm0692105\ntt0000354\tnm0182052\ntt0000355\tnm0932055\ntt0000356\tnm0349785\ntt0000357\tnm0095816\ntt0000358\tnm0954087\ntt0000359\tnm0617588\ntt0000360\tnm0349785\ntt0000361\tnm0349785\ntt0000362\tnm0349785\ntt0000363\tnm0095816\ntt0000364\tnm0692105\ntt0000365\tnm0182052\ntt0000366\tnm0182052\ntt0000367\tnm0349785\ntt0000368\tnm0617588\ntt0000369\tnm0005717\ntt0000370\tnm0095816\ntt0000371\tnm0349785\ntt0000372\tnm0349785\ntt0000373\tnm0954087\ntt0000374\tnm0349785\ntt0000375\tnm0182052\ntt0000376\tnm0958169\ntt0000377\tnm0095816\ntt0000378\tnm0349785\ntt0000379\tnm0005717\ntt0000380\tnm0954087,nm0634629\ntt0000381\t\\N\ntt0000382\tnm0005717\ntt0000383\tnm0005717\ntt0000384\tnm0349785\ntt0000385\tnm0349785\ntt0000386\tnm0349785\ntt0000387\tnm0881616,nm0617588\ntt0000388\tnm0349785\ntt0000389\tnm0349785\ntt0000390\tnm0349785\ntt0000391\tnm0349785\ntt0000392\tnm0095816\ntt0000393\tnm0349785\ntt0000394\tnm0349785\ntt0000395\tnm0349785\ntt0000396\tnm0349785\ntt0000397\tnm0349785\ntt0000398\tnm0349785\ntt0000399\tnm0692105,nm2092030\ntt0000400\tnm0349785\ntt0000401\tnm0349785\ntt0000402\tnm0808310\ntt0000403\tnm0349785\ntt0000404\tnm0349785\ntt0000405\tnm0349785\ntt0000406\t\\N\ntt0000407\tnm0005717\ntt0000408\tnm0349785\ntt0000409\tnm0349785\ntt0000410\tnm0035502\ntt0000411\tnm0349785\ntt0000412\t\\N\ntt0000413\tnm0617588\ntt0000414\tnm0692105\ntt0000415\tnm0349785\ntt0000416\tnm0954087\ntt0000417\tnm0617588\ntt0000418\tnm0353576\ntt0000419\tnm0349785\ntt0000420\tnm0832948,nm0378408\ntt0000421\tnm0349785\ntt0000422\tnm0349785\ntt0000423\tnm0617588\ntt0000424\tnm0349785\ntt0000425\t\\N\ntt0000426\t\\N\ntt0000427\tnm0349785\ntt0000428\tnm0005717\ntt0000429\tnm0349785\ntt0000430\tnm0666972\ntt0000431\tnm0349785\ntt0000432\tnm0349785\ntt0000433\tnm0349785\ntt0000434\tnm0808310\ntt0000435\tnm0349785\ntt0000436\tnm0095816,nm0666972\ntt0000437\tnm0349785\ntt0000438\tnm0349785\ntt0000439\tnm0692105\ntt0000440\tnm0617588\ntt0000441\tnm0159015\ntt0000442\tnm0253298\ntt0000443\tnm0742777\ntt0000444\tnm0349785\ntt0000445\tnm0349785\ntt0000446\tnm0567363\ntt0000447\tnm0692105,nm2092030\ntt0000448\tnm0349785\ntt0000449\tnm0349785\ntt0000450\tnm0349785\ntt0000451\tnm0808310\ntt0000452\tnm0692105\ntt0000453\tnm0349785\ntt0000454\tnm0349785\ntt0000455\tnm0617588\ntt0000456\t\\N\ntt0000457\tnm0349785\ntt0000458\tnm0349785\ntt0000459\t\\N\ntt0000460\tnm0567363\ntt0000461\tnm0349785\ntt0000462\tnm0349785\ntt0000463\tnm0005717\ntt0000464\tnm0005690\ntt0000465\tnm0617588\ntt0000466\tnm0349785\ntt0000467\tnm0349785\ntt0000468\tnm0349785\ntt0000469\tnm0808310\ntt0000470\tnm0349785\ntt0000471\tnm0692105\ntt0000472\tnm0002615\ntt0000473\tnm0349785\ntt0000474\tnm0349785\ntt0000475\tnm0095816\ntt0000476\tnm0349785\ntt0000477\tnm0349785\ntt0000478\tnm0172118\ntt0000479\tnm0666972\ntt0000480\tnm0617588\ntt0000481\t\\N\ntt0000482\tnm0349785\ntt0000483\tnm0349785\ntt0000484\tnm0349785\ntt0000485\tnm0349785\ntt0000486\tnm0085865\ntt0000487\tnm0002615\ntt0000488\tnm0789748\ntt0000489\tnm0349785\ntt0000490\tnm0349785\ntt0000491\t\\N\ntt0000492\tnm0567363\ntt0000493\tnm0349785\ntt0000494\tnm0349785\ntt0000495\tnm0954087\ntt0000496\t\\N\ntt0000497\t\\N\ntt0000498\tnm0280432,nm0378408\ntt0000499\tnm0617588\ntt0000500\t\\N\ntt0000501\tnm0085865\ntt0000502\tnm0063413\ntt0000503\tnm0185426\ntt0000504\tnm0185426\ntt0000505\tnm1563072,nm0381874\ntt0000506\tnm0353576\ntt0000507\t\\N\ntt0000508\tnm0185426\ntt0000509\tnm1563072\ntt0000510\tnm0063413\ntt0000511\tnm0349785,nm0419327\ntt0000512\t\\N\ntt0000513\tnm0185426\ntt0000514\tnm0005717\ntt0000515\tnm0159015\ntt0000516\tnm0159015\ntt0000517\tnm0063413\ntt0000518\t\\N\ntt0000519\tnm0692105\ntt0000520\tnm0353576\ntt0000521\tnm0692105\ntt0000522\t\\N\ntt0000523\t\\N\ntt0000524\tnm0005658\ntt0000525\tnm0243796\ntt0000526\t\\N\ntt0000527\tnm0185426\ntt0000528\tnm0001908\ntt0000529\t\\N\ntt0000530\tnm0159015\ntt0000531\tnm0159015\ntt0000532\tnm0185426\ntt0000533\t\\N\ntt0000534\tnm0095816\ntt0000535\tnm0488932\ntt0000536\tnm6758605,nm0582268\ntt0000537\t\\N\ntt0000538\tnm0005717\ntt0000539\tnm0647763\ntt0000540\t\\N\ntt0000541\tnm0488932\ntt0000542\tnm0005717\ntt0000543\tnm0647763\ntt0000544\tnm1210247\ntt0000545\t\\N\ntt0000546\tnm0567363,nm0692105\ntt0000547\tnm0005717\ntt0000548\tnm0488932\ntt0000549\tnm0488932\ntt0000550\tnm0647763\ntt0000551\t\\N\ntt0000552\tnm0095816\ntt0000553\tnm0085865\ntt0000554\tnm0085865\ntt0000555\tnm0488932\ntt0000556\tnm0488932\ntt0000557\tnm0692105\ntt0000558\tnm0005717\ntt0000559\tnm0354726\ntt0000560\tnm0005717\ntt0000561\tnm0692105\ntt0000562\t\\N\ntt0000563\t\\N\ntt0000564\tnm0085865\ntt0000565\tnm0692105\ntt0000566\tnm0488932,nm0354726\ntt0000567\tnm0617588\ntt0000568\t\\N\ntt0000569\tnm0488932\ntt0000570\t\\N\ntt0000571\tnm0085865\ntt0000572\tnm0063413\ntt0000573\tnm0488932\ntt0000574\tnm0846879\ntt0000575\tnm0617588\ntt0000576\tnm0159015\ntt0000577\tnm0488932\ntt0000578\tnm0001908\ntt0000579\tnm0001908\ntt0000580\tnm0180860\ntt0000581\t\\N\ntt0000582\tnm0646058,nm0741382\ntt0000583\tnm0488932\ntt0000584\tnm0191133,nm0305591\ntt0000585\tnm0005717\ntt0000586\tnm0085865\ntt0000587\t\\N\ntt0000588\tnm0526168,nm0488932\ntt0000589\t\\N\ntt0000590\tnm0567363\ntt0000591\tnm0141150\ntt0000592\tnm0180466,nm0180492\ntt0000593\tnm0005717\ntt0000594\tnm0488932\ntt0000595\tnm0488932\ntt0000596\tnm0488932\ntt0000597\tnm0159015,nm0954087\ntt0000598\tnm0617588\ntt0000599\t\\N\ntt0000601\tnm0691994\ntt0000602\tnm0488932\ntt0000603\tnm0085865\ntt0000604\tnm0488932\ntt0000605\t\\N\ntt0000606\t\\N\ntt0000607\tnm0194088\ntt0000608\tnm0488932\ntt0000609\tnm0892614,nm0143333\ntt0000610\tnm0691994\ntt0000611\tnm0091767\ntt0000612\tnm0005717\ntt0000613\tnm0274368\ntt0000614\tnm0159015,nm0954087\ntt0000615\tnm0533958\ntt0000616\tnm0005717\ntt0000617\tnm0488932\ntt0000618\tnm0700930,nm0817086\ntt0000619\t\\N\ntt0000620\tnm0488932\ntt0000621\tnm0280432\ntt0000622\tnm0194088,nm0005717\ntt0000623\tnm0488932\ntt0000624\t\\N\ntt0000625\tnm0005717\ntt0000626\t\\N\ntt0000627\tnm0567363\ntt0000628\tnm0000428,nm0005658\ntt0000629\tnm0000428\ntt0000630\tnm0143333\ntt0000631\tnm0173774\ntt0000632\tnm0005717\ntt0000633\tnm0294276\ntt0000634\tnm0085865,nm0448682\ntt0000636\tnm0119138\ntt0000637\tnm0130633,nm0494039\ntt0000638\tnm1266490\ntt0000639\tnm0567363\ntt0000640\tnm0000428\ntt0000641\tnm0000428\ntt0000642\tnm0000428\ntt0000643\tnm0085865\ntt0000644\tnm0000428\ntt0000645\tnm0000428\ntt0000646\t\\N\ntt0000647\t\\N\ntt0000648\tnm0000428,nm1266490\ntt0000649\tnm0567363\ntt0000650\tnm0692105\ntt0000651\tnm0567363\ntt0000653\tnm0000428\ntt0000654\tnm0000428\ntt0000655\tnm0005717\ntt0000656\tnm0600341\ntt0000657\tnm0005717\ntt0000658\tnm0169871\ntt0000659\tnm0567363\ntt0000660\tnm0000428\ntt0000661\tnm0617588\ntt0000662\tnm0567363\ntt0000663\tnm0000428\ntt0000664\tnm0005717\ntt0000665\tnm0000428\ntt0000666\tnm0005717\ntt0000667\tnm0005717\ntt0000668\tnm0091767,nm0675544\ntt0000669\tnm0205986\ntt0000670\tnm0194088\ntt0000671\tnm0691994\ntt0000672\tnm0000428\ntt0000673\tnm0422930,nm0005717\ntt0000674\tnm0550220,nm0063413\ntt0000675\tnm0194088\ntt0000676\tnm0194088\ntt0000677\tnm0692105\ntt0000678\tnm0005717\ntt0000679\tnm0877783,nm0091767\ntt0000680\t\\N\ntt0000681\tnm0567363\ntt0000682\tnm0169871\ntt0000683\tnm0000428\ntt0000684\tnm0000428\ntt0000685\tnm0000428\ntt0000686\tnm0005717\ntt0000687\tnm0646058\ntt0000688\tnm0111753\ntt0000689\tnm0000428\ntt0000690\tnm0000428\ntt0000691\t\\N\ntt0000692\tnm0303066\ntt0000693\tnm0005717\ntt0000694\tnm0000428\ntt0000695\tnm0000428\ntt0000696\tnm0005717\ntt0000697\tnm0000428\ntt0000698\tnm0000428\ntt0000699\tnm0000428\ntt0000700\tnm0567363\ntt0000701\tnm0567363\ntt0000703\tnm0567363\ntt0000704\tnm0807236,nm0085865\ntt0000705\tnm0185426\ntt0000706\tnm0000428\ntt0000707\tnm0000428\ntt0000708\tnm0567363\ntt0000709\tnm0085865,nm0710362\ntt0000711\tnm0567363\ntt0000712\tnm0567363\ntt0000713\tnm0567363\ntt0000714\tnm0111753\ntt0000715\tnm0692105\ntt0000716\t\\N\ntt0000717\tnm0085865\ntt0000718\tnm0085865\ntt0000719\tnm0005717\ntt0000720\tnm0000428\ntt0000721\tnm0567363\ntt0000722\tnm0353576\ntt0000723\tnm0005717,nm0168503\ntt0000724\tnm0085865\ntt0000725\tnm0567363\ntt0000726\tnm0005717\ntt0000727\tnm0000428\ntt0000728\tnm0000428\ntt0000729\t\\N\ntt0000730\tnm0000428\ntt0000731\tnm0000428\ntt0000732\tnm0567363\ntt0000733\tnm0567363\ntt0000734\tnm0710362\ntt0000736\tnm0567363\ntt0000737\tnm0853193\ntt0000738\t\\N\ntt0000739\tnm0191133\ntt0000740\tnm0000428\ntt0000741\tnm0000428\ntt0000742\tnm0294276\ntt0000743\tnm0567363\ntt0000744\t\\N\ntt0000745\t\\N\ntt0000746\tnm0000428\ntt0000747\tnm0000428\ntt0000748\tnm0000428\ntt0000749\tnm0205986\ntt0000750\tnm0710362,nm0085865\ntt0000751\tnm0091767\ntt0000752\tnm0000428\ntt0000753\tnm0567363\ntt0000754\tnm0085865\ntt0000755\tnm0617588\ntt0000756\tnm0567363\ntt0000757\tnm0692105\ntt0000758\tnm0488932\ntt0000759\tnm0488932\ntt0000760\tnm0488932\ntt0000761\tnm0005717\ntt0000762\tnm0000428\ntt0000763\tnm0567363\ntt0000764\tnm0000428\ntt0000765\tnm0567363\ntt0000766\tnm0111753\ntt0000767\tnm0000428\ntt0000768\tnm0488932\ntt0000769\tnm0617588\ntt0000770\tnm0000428\ntt0000771\tnm0000428\ntt0000772\tnm0000428\ntt0000773\tnm0567363\ntt0000774\tnm0294276\ntt0000775\tnm0243796\ntt0000776\tnm0535957,nm0024464\ntt0000777\tnm0692105\ntt0000778\tnm0000428\ntt0000779\tnm0000428\ntt0000780\tnm0488932\ntt0000781\tnm0085865\ntt0000782\tnm0808310\ntt0000783\tnm0567363\ntt0000784\tnm0567363\ntt0000785\tnm0000428\ntt0000786\t\\N\ntt0000787\tnm0000428\ntt0000788\tnm0567363\ntt0000789\tnm0000428\ntt0000790\tnm0095816\ntt0000791\tnm0194088\ntt0000792\tnm0000428\ntt0000793\tnm0081288\ntt0000794\tnm0022607\ntt0000795\tnm0111753\ntt0000796\t\\N\ntt0000797\tnm0000428\ntt0000798\tnm0294276\ntt0000799\tnm0646844\ntt0000800\tnm0000428\ntt0000801\tnm0000428\ntt0000802\tnm0294276\ntt0000803\tnm0488932\ntt0000804\t\\N\ntt0000805\tnm0005717\ntt0000806\tnm0001908\ntt0000807\tnm0000428\ntt0000808\tnm0111753\ntt0000809\tnm0000428\ntt0000810\tnm0001908\ntt0000811\tnm0294276\ntt0000812\tnm0185426\ntt0000813\tnm0205986\ntt0000814\tnm0185426\ntt0000815\tnm0000428\ntt0000816\tnm0000428\ntt0000817\tnm0488932\ntt0000818\tnm0294276\ntt0000819\tnm0000428\ntt0000820\tnm0063413\ntt0000821\tnm0000428\ntt0000822\tnm0063413,nm0550220\ntt0000823\tnm0000428\ntt0000824\tnm0692105\ntt0000825\tnm0000428\ntt0000826\tnm0000428\ntt0000827\tnm0000428\ntt0000828\tnm0000428\ntt0000829\tnm0000428\ntt0000830\tnm0097769,nm0005717\ntt0000831\tnm0000428\ntt0000832\tnm0000428\ntt0000833\tnm0000428\ntt0000834\tnm0294276\ntt0000835\tnm0000428\ntt0000836\tnm0180860,nm0274368\ntt0000837\tnm0000428\ntt0000838\tnm0017074\ntt0000839\tnm0294276\ntt0000840\tnm0000428,nm0784407\ntt0000841\tnm0000428\ntt0000842\tnm0005717\ntt0000843\tnm0000428\ntt0000844\tnm0327201\ntt0000845\tnm0000428\ntt0000846\tnm0023107\ntt0000847\tnm0093361\ntt0000848\tnm0617588\ntt0000849\tnm0063413,nm0550220\ntt0000850\tnm0550220,nm0063413\ntt0000851\tnm0000428\ntt0000852\tnm0000428\ntt0000853\tnm0000428\ntt0000854\tnm0000428\ntt0000855\tnm0000428\ntt0000856\tnm0023107\ntt0000857\tnm0000428\ntt0000858\tnm0000428\ntt0000859\tnm0005717\ntt0000860\tnm0000428\ntt0000861\tnm0000428\ntt0000862\tnm0878467\ntt0000863\tnm0294276\ntt0000864\tnm0000428\ntt0000865\tnm0294276\ntt0000866\tnm0294276\ntt0000867\tnm0023107\ntt0000868\tnm0005717\ntt0000869\tnm0005717\ntt0000870\tnm0000428\ntt0000871\tnm0000428\ntt0000872\tnm0111753\ntt0000873\tnm0698839\ntt0000874\tnm0000428\ntt0000875\tnm0000428\ntt0000876\tnm0692105\ntt0000877\tnm0000428\ntt0000878\tnm0000428\ntt0000879\tnm0023107\ntt0000880\tnm0000428\ntt0000881\t\\N\ntt0000882\tnm0000428\ntt0000883\tnm0488932\ntt0000884\tnm0488932\ntt0000885\tnm0422930,nm0005717\ntt0000886\tnm0099901\ntt0000887\tnm0205986\ntt0000888\tnm0692105\ntt0000889\tnm0001908\ntt0000890\tnm0000428\ntt0000891\tnm0488932\ntt0000892\tnm0000428\ntt0000893\tnm0176699,nm0160280,nm0265289\ntt0000894\tnm0488932\ntt0000895\tnm0000428\ntt0000896\tnm0000428\ntt0000897\tnm0000428\ntt0000898\tnm0000428\ntt0000899\tnm0001908\ntt0000900\tnm0000428\ntt0000901\tnm0000428\ntt0000902\tnm0000428\ntt0000903\tnm0000428\ntt0000904\tnm0692105\ntt0000905\tnm0000428\ntt0000906\tnm0294276\ntt0000907\tnm0000428\ntt0000908\tnm0000428\ntt0000909\tnm0000428\ntt0000910\tnm0000428\ntt0000911\tnm0000428\ntt0000912\tnm0000428\ntt0000913\tnm0001908\ntt0000914\tnm0005717\ntt0000915\tnm0294276\ntt0000916\tnm0511729\ntt0000917\tnm0000428\ntt0000918\tnm0111753\ntt0000919\tnm0000428\ntt0000920\tnm0000428\ntt0000921\tnm0000428\ntt0000922\tnm0000428\ntt0000923\tnm0550220,nm0063413\ntt0000924\tnm0169871\ntt0000925\tnm0001908\ntt0000926\tnm0063413,nm0550220\ntt0000927\tnm0808310\ntt0000928\tnm0710362,nm0085865\ntt0000929\tnm0093361\ntt0000930\tnm0093361\ntt0000931\tnm0488932\ntt0000932\tnm0488932\ntt0000933\tnm0000428\ntt0000934\tnm0000428\ntt0000935\tnm0000428\ntt0000936\tnm0000428\ntt0000938\tnm0000428\ntt0000939\tnm0000428\ntt0000940\tnm0205986\ntt0000941\tnm0550220,nm0063413\ntt0000942\tnm0000428\ntt0000943\tnm0000428\ntt0000944\tnm0294276\ntt0000945\tnm0000428\ntt0000946\tnm0000428\ntt0000947\t\\N\ntt0000948\t\\N\ntt0000949\t\\N\ntt0000950\tnm0143333\ntt0000951\tnm0488932\ntt0000952\tnm0130633\ntt0000953\tnm0001908\ntt0000954\tnm0000428\ntt0000955\t\\N\ntt0000956\tnm0000428\ntt0000957\tnm0511729\ntt0000958\tnm0000428\ntt0000959\tnm0185426\ntt0000960\tnm0000428\ntt0000961\tnm0000428\ntt0000962\tnm0000428\ntt0000963\tnm0001908\ntt0000964\tnm0000428\ntt0000965\tnm0001908\ntt0000966\tnm0085865,nm0448682\ntt0000967\tnm0000428\ntt0000968\tnm0294276\ntt0000969\tnm0085865\ntt0000970\tnm0674600\ntt0000971\tnm0532622\ntt0000972\tnm0000428\ntt0000974\tnm0000428\ntt0000975\tnm0000428\ntt0000976\tnm0000428\ntt0000977\t\\N\ntt0000978\tnm0488932\ntt0000979\tnm0085865\ntt0000980\tnm0294276\ntt0000981\tnm0000428\ntt0000982\tnm0294276\ntt0000983\tnm0000428\ntt0000984\tnm0023107\ntt0000985\tnm0000428\ntt0000986\tnm0000428\ntt0000987\tnm0711337\ntt0000988\tnm0333175\ntt0000989\tnm0000428\ntt0000990\tnm0085865\ntt0000991\tnm0091767\ntt0000992\t\\N\ntt0000993\tnm0000428\ntt0000994\tnm0294276\ntt0000995\tnm0000428\ntt0000996\tnm0294276\ntt0000997\tnm0000428\ntt0000998\tnm0266080\ntt0000999\tnm0488932\ntt0001000\tnm0000428\ntt0001001\tnm0000428\ntt0001002\tnm0000428\ntt0001003\tnm0005717\ntt0001004\tnm0674600\ntt0001005\tnm0000428\ntt0001006\tnm0005717\ntt0001007\tnm0185426\ntt0001008\tnm0205986\ntt0001009\tnm0085865\n<!--TABLE_COMMENT-->\n<font color=red>Results are limited by 1000.</font>\n"}]},"apps":[],"jobName":"paragraph_1525239781838_-1669391623","id":"20180425-233124_1836164232","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:107","user":"anonymous","dateFinished":"2018-05-02T06:19:47+0000","dateStarted":"2018-05-02T06:19:13+0000"},{"title":"Combining two datasets and exploding multiple directors to multiple rows","text":"%pyspark\n\ndirectorJoin = nameColumnRename1.join(output, on='tconst')\ndirectorExplode = directorJoin.withColumn(\"director\", explode(split(col(\"director\"), \",\"))).select(\"tconst\",\"director\",\"title\",\"year\",\"avgRating\",\"votes\",'runtime','genre')\ndirectorJoining = directorExplode.join(nameBasicColumnRename1, on='director')\n\ntable4 = directorJoining.toDF(\"tconst\",\"director\",\"directorName\",\"title\",\"year\",\"avgRating\",\"votes\",'runtime','genre')\nz.show(table4)","dateUpdated":"2018-05-02T06:26:54+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"tconst\tdirector\tdirectorName\ttitle\tyear\tavgRating\tvotes\truntime\tgenre\nnm0000362\ttt0266452\tDeath to Smoochy\t2002\t6.4\t36248\t109\tComedy,Crime,Drama\tDanny DeVito\nnm0000362\ttt0266489\tDuplex\t2003\t5.9\t50034\t89\tComedy\tDanny DeVito\nnm0255411\ttt1095174\tNew in Town\t2009\t5.6\t19373\t97\tComedy,Romance\tJonas Elmer\nnm0266302\ttt0306841\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\tJim Fall\nnm0275629\ttt2381941\tFocus\t2015\t6.6\t179806\t105\tComedy,Crime,Drama\tGlenn Ficarra\nnm0275629\ttt1570728\tCrazy, Stupid, Love.\t2011\t7.4\t416140\t118\tComedy,Drama,Romance\tGlenn Ficarra\nnm0275629\ttt1045772\tI Love You Phillip Morris\t2009\t6.6\t84366\t98\tBiography,Comedy,Crime\tGlenn Ficarra\nnm0275629\ttt3553442\tWhiskey Tango Foxtrot\t2016\t6.6\t42138\t112\tBiography,Comedy,Drama\tGlenn Ficarra\nnm0282708\ttt1182921\tNinja\t2009\t5.5\t10684\t86\tAction,Crime,Drama\tIsaac Florentine\nnm0600409\ttt1242422\tCell 211\t2009\t7.7\t56349\t113\tAction,Crime,Drama\tDaniel Monzón\nnm1754704\ttt1687247\tLife in a Day\t2011\t7.7\t14065\t95\tDocumentary,Drama\tZillah Bowes\nnm1924019\ttt1016301\tFermat's Room\t2007\t6.7\t16268\t89\tMystery,Thriller\tRodrigo Sopeña\nnm2299471\ttt0816436\tBlack Water\t2007\t6.0\t10948\t90\tAction,Drama,Horror\tDavid Nerlich\nnm2305431\ttt1179904\tParanormal Activity\t2007\t6.3\t200330\t86\tHorror,Mystery,Thriller\tOren Peli\nnm2305431\ttt1519461\tArea 51\t2015\t4.2\t10660\t91\tHorror,Sci-Fi,Thriller\tOren Peli\nnm0245888\ttt0328828\tAmerican Wedding\t2003\t6.3\t175390\t96\tComedy\tJesse Dylan\nnm0245888\ttt0384642\tKicking & Screaming\t2005\t5.6\t32521\t95\tComedy,Family,Romance\tJesse Dylan\nnm0245888\ttt0278488\tHow High\t2001\t6.3\t47206\t93\tComedy,Fantasy\tJesse Dylan\nnm0451884\ttt0279778\tDivine Secrets of the Ya-Ya Sisterhood\t2002\t6.0\t16416\t116\tDrama\tCallie Khouri\nnm0451884\ttt0951216\tMad Money\t2008\t5.8\t18287\t104\tComedy,Crime,Thriller\tCallie Khouri\nnm0620378\ttt0308379\tDark Water\t2002\t6.7\t26546\t101\tDrama,Horror,Mystery\tHideo Nakata\nnm0620378\ttt0377109\tThe Ring Two\t2005\t5.4\t80997\t110\tHorror,Mystery,Thriller\tHideo Nakata\nnm0687427\ttt2473510\tParanormal Activity: The Ghost Dimension\t2015\t4.6\t20552\t88\tHorror\tGregory Plotkin\nnm0693561\ttt1212436\tThe Back-up Plan\t2010\t5.3\t44210\t104\tComedy,Romance\tAlan Poul\nnm0833780\ttt0758730\tAliens vs. Predator: Requiem\t2007\t4.7\t102602\t94\tAction,Horror,Sci-Fi\tGreg Strause\nnm0833780\ttt1564585\tSkyline\t2010\t4.4\t81239\t97\tAction,Sci-Fi,Thriller\tGreg Strause\nnm0837406\ttt0361467\tConfessions of a Teenage Drama Queen\t2004\t4.6\t25035\t89\tComedy,Family,Music\tSara Sugarman\nnm0863254\ttt0309820\tLuther\t2003\t6.6\t13706\t123\tBiography,Drama,History\tEric Till\nnm0917405\ttt1588895\tUncle Boonmee Who Can Recall His Past Lives\t2010\t6.6\t10819\t114\tDrama,Fantasy\tApichatpong Weerasethakul\nnm1314116\ttt0900387\tSuite Française\t2014\t6.9\t16968\t107\tDrama,Romance,War\tSaul Dibb\nnm1314116\ttt0864761\tThe Duchess\t2008\t6.9\t68738\t110\tBiography,Drama,History\tSaul Dibb\nnm1672246\ttt3960412\tPopstar: Never Stop Never Stopping\t2016\t6.7\t39524\t87\tComedy,Music\tJorma Taccone\nnm1672246\ttt1470023\tMacGruber\t2010\t5.5\t38433\t90\tAction,Comedy,Romance\tJorma Taccone\nnm0000487\ttt0388795\tBrokeback Mountain\t2005\t7.7\t284696\t134\tDrama,Romance\tAng Lee\nnm0000487\ttt0286716\tHulk\t2003\t5.7\t229568\t138\tAction,Sci-Fi\tAng Lee\nnm0000487\ttt0454876\tLife of Pi\t2012\t7.9\t500706\t127\tAdventure,Drama,Fantasy\tAng Lee\nnm0000487\ttt1127896\tTaking Woodstock\t2009\t6.7\t26274\t120\tBiography,Comedy,Drama\tAng Lee\nnm0000487\ttt0190332\tCrouching Tiger, Hidden Dragon\t2000\t7.9\t232245\t120\tAction,Adventure,Fantasy\tAng Lee\nnm0000487\ttt2513074\tBilly Lynn's Long Halftime Walk\t2016\t6.3\t16978\t113\tDrama,War\tAng Lee\nnm0000487\ttt0808357\tLust, Caution\t2007\t7.6\t33105\t157\tDrama,Romance,Thriller\tAng Lee\nnm0000881\ttt0213149\tPearl Harbor\t2001\t6.1\t280229\t183\tAction,Drama,History\tMichael Bay\nnm0000881\ttt4172430\t13 Hours\t2016\t7.3\t91520\t144\tAction,Drama,History\tMichael Bay\nnm0000881\ttt1399103\tTransformers: Dark of the Moon\t2011\t6.3\t352377\t154\tAction,Adventure,Sci-Fi\tMichael Bay\nnm0000881\ttt0399201\tThe Island\t2005\t6.9\t280488\t136\tAction,Adventure,Romance\tMichael Bay\nnm0000881\ttt0418279\tTransformers\t2007\t7.1\t550199\t144\tAction,Adventure,Sci-Fi\tMichael Bay\nnm0000881\ttt0172156\tBad Boys II\t2003\t6.6\t195701\t147\tAction,Comedy,Crime\tMichael Bay\nnm0000881\ttt3371366\tTransformers: The Last Knight\t2017\t5.2\t96081\t154\tAction,Adventure,Sci-Fi\tMichael Bay\nnm0000881\ttt1980209\tPain & Gain\t2013\t6.4\t177026\t129\tAction,Comedy,Crime\tMichael Bay\nnm0000881\ttt2109248\tTransformers: Age of Extinction\t2014\t5.7\t270488\t165\tAction,Adventure,Sci-Fi\tMichael Bay\nnm0000881\ttt1055369\tTransformers: Revenge of the Fallen\t2009\t6.0\t350486\t150\tAction,Adventure,Sci-Fi\tMichael Bay\nnm0001885\ttt1937390\tNymphomaniac: Vol. I\t2013\t7.0\t98354\t117\tDrama\tLars von Trier\nnm0001885\ttt0870984\tAntichrist\t2009\t6.6\t99620\t108\tDrama,Horror\tLars von Trier\nnm0001885\ttt1527186\tMelancholia\t2011\t7.1\t144513\t135\tDrama,Fantasy,Sci-Fi\tLars von Trier\nnm0001885\ttt0276919\tDogville\t2003\t8.0\t119126\t178\tCrime,Drama\tLars von Trier\nnm0001885\ttt0342735\tManderlay\t2005\t7.4\t20123\t139\tDrama\tLars von Trier\nnm0001885\ttt0168629\tDancer in the Dark\t2000\t8.0\t88136\t140\tCrime,Drama,Musical\tLars von Trier\nnm0001885\ttt2382009\tNymphomaniac: Vol. II\t2013\t6.7\t72030\t123\tDrama\tLars von Trier\nnm0001994\ttt0269095\tCity by the Sea\t2002\t6.1\t22596\t108\tCrime,Drama,Mystery\tMichael Caton-Jones\nnm0001994\ttt0420901\tBeyond the Gates\t2005\t7.7\t10307\t115\tDrama,History,War\tMichael Caton-Jones\nnm0001994\ttt0430912\tBasic Instinct 2\t2006\t4.3\t33655\t114\tDrama,Mystery,Thriller\tMichael Caton-Jones\nnm0006476\ttt1976009\tVictor Frankenstein\t2015\t6.0\t43292\t110\tDrama,Horror,Sci-Fi\tPaul McGuigan\nnm0006476\ttt0324554\tWicker Park\t2004\t7.0\t48429\t114\tDrama,Mystery,Romance\tPaul McGuigan\nnm0006476\ttt0465580\tPush\t2009\t6.1\t97059\t111\tAction,Sci-Fi,Thriller\tPaul McGuigan\nnm0006476\ttt0425210\tLucky Number Slevin\t2006\t7.8\t280895\t110\tCrime,Drama,Mystery\tPaul McGuigan\nnm0006476\ttt0210065\tGangster No. 1\t2000\t6.8\t11728\t103\tCrime,Drama,Thriller\tPaul McGuigan\nnm0041161\ttt0499556\tWar\t2007\t6.3\t77961\t103\tAction,Crime,Thriller\tPhilip G. Atwell\nnm0150897\ttt0420251\tThree... Extremes\t2004\t7.0\t17100\t118\tHorror\tFruit Chan\nnm0150906\ttt0288045\tThe Medallion\t2003\t5.2\t33832\t88\tAction,Comedy,Fantasy\tGordon Chan\nnm0185848\ttt2937366\tLittle Evil\t2017\t5.7\t12368\t94\tComedy,Horror\tEli Craig\nnm0185848\ttt1465522\tTucker and Dale vs Evil\t2010\t7.6\t145412\t89\tComedy,Horror\tEli Craig\nnm0218621\ttt2975578\tThe Purge: Anarchy\t2014\t6.5\t114615\t103\tAction,Horror,Sci-Fi\tJames DeMonaco\nnm0218621\ttt4094724\tThe Purge: Election Year\t2016\t6.0\t66280\t108\tAction,Horror,Sci-Fi\tJames DeMonaco\nnm0218621\ttt2184339\tThe Purge\t2013\t5.7\t165569\t85\tHorror,Sci-Fi,Thriller\tJames DeMonaco\nnm1118351\ttt1401143\tRare Exports: A Christmas Tale\t2010\t6.7\t22583\t84\tAdventure,Fantasy,Horror\tJalmari Helander\nnm1118351\ttt2088003\tBig Game\t2014\t5.4\t26230\t90\tAction,Adventure\tJalmari Helander\nnm1637785\ttt2093991\tElvis & Nixon\t2016\t6.4\t10876\t86\tComedy,History\tLiza Johnson\nnm0001005\ttt0810784\tBright Star\t2009\t7.0\t23137\t119\tBiography,Drama,Romance\tJane Campion\nnm0001005\ttt0199626\tIn the Cut\t2003\t5.3\t19768\t119\tMystery,Thriller\tJane Campion\nnm0080120\ttt1067774\tMonte Carlo\t2011\t5.8\t36666\t109\tAdventure,Comedy,Family\tThomas Bezucha\nnm0080120\ttt0356680\tThe Family Stone\t2005\t6.3\t53836\t103\tComedy,Drama,Romance\tThomas Bezucha\nnm0123666\ttt2872750\tShaun the Sheep Movie\t2015\t7.4\t30035\t85\tAdventure,Animation,Comedy\tMark Burton\nnm0294457\ttt1196141\tDiary of a Wimpy Kid\t2010\t6.2\t36342\t94\tComedy,Family\tThor Freudenthal\nnm0294457\ttt1854564\tPercy Jackson: Sea of Monsters\t2013\t5.9\t96946\t106\tAdventure,Family,Fantasy\tThor Freudenthal\nnm0294457\ttt0785006\tHotel for Dogs\t2009\t5.4\t18482\t100\tComedy,Family\tThor Freudenthal\nnm0383688\ttt2072230\tAttack on Titan: Part 1\t2015\t5.1\t10226\t98\tAction,Adventure,Drama\tShinji Higuchi\nnm0383688\ttt4262980\tShin Godzilla\t2016\t6.7\t14483\t120\tAction,Adventure,Drama\tShinji Higuchi\nnm0602104\ttt2910904\tThe Dressmaker\t2015\t7.1\t40886\t119\tComedy,Drama\tJocelyn Moorhouse\nnm0602616\ttt1512685\tJulia's Eyes\t2010\t6.7\t26551\t118\tHorror,Mystery,Thriller\tGuillem Morales\nnm0677037\ttt1049413\tUp\t2009\t8.3\t779879\t96\tAdventure,Animation,Comedy\tBob Peterson\nnm0709056\ttt1446192\tRise of the Guardians\t2012\t7.3\t137632\t97\tAdventure,Animation,Family\tPeter Ramsey\nnm0775447\ttt0264935\tMurder by Numbers\t2002\t6.1\t47347\t115\tCrime,Mystery,Thriller\tBarbet Schroeder\nnm0853380\ttt0120679\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\tJulie Taymor\nnm0853380\ttt0445922\tAcross the Universe\t2007\t7.4\t98329\t133\tDrama,Fantasy,Musical\tJulie Taymor\nnm0001460\ttt0223897\tPay It Forward\t2000\t7.2\t103658\t123\tDrama\tMimi Leder\nnm0001460\ttt1112782\tThick as Thieves\t2009\t6.0\t30881\t104\tAction,Crime,Thriller\tMimi Leder\nnm0001775\ttt3068194\tLove & Friendship\t2016\t6.4\t19279\t90\tComedy,Drama,Romance\tWhit Stillman\nnm0004234\ttt2561546\tThe Town That Dreaded Sundown\t2014\t5.6\t11545\t86\tHorror,Mystery,Thriller\tAlfonso Gomez-Rejon\nnm0004234\ttt2582496\tMe and Earl and the Dying Girl\t2015\t7.8\t103687\t105\tComedy,Drama\tAlfonso Gomez-Rejon\nnm0097517\ttt1285309\tThe Joneses\t2009\t6.5\t35749\t96\tDrama\tDerrick Borte\nnm0172989\ttt0291579\tHe Loves Me... He Loves Me Not\t2002\t7.2\t17272\t92\tRomance,Thriller\tLaetitia Colombani\nnm0477129\ttt1001508\tHe's Just Not That Into You\t2009\t6.4\t143340\t129\tComedy,Drama,Romance\tKen Kwapis\nnm0477129\ttt1430615\tBig Miracle\t2012\t6.5\t16675\t107\tBiography,Drama,Romance\tKen Kwapis\nnm0477129\ttt0403508\tThe Sisterhood of the Traveling Pants\t2005\t6.5\t48659\t119\tComedy,Drama,Romance\tKen Kwapis\nnm0477129\ttt0762114\tLicense to Wed\t2007\t5.3\t34755\t91\tComedy,Romance\tKen Kwapis\nnm0477129\ttt1178665\tA Walk in the Woods\t2015\t6.3\t19919\t104\tAdventure,Biography,Comedy\tKen Kwapis\nnm0492979\ttt0259393\tLantana\t2001\t7.3\t17317\t121\tDrama,Mystery,Romance\tRay Lawrence\nnm0574625\ttt0427392\tThe Invasion\t2007\t5.9\t68949\t99\tSci-Fi,Thriller\tJames McTeigue\nnm0574625\ttt0434409\tV for Vendetta\t2005\t8.2\t900156\t132\tAction,Drama,Sci-Fi\tJames McTeigue\nnm0574625\ttt1186367\tNinja Assassin\t2009\t6.4\t62207\t99\tAction,Crime,Fantasy\tJames McTeigue\nnm0574625\ttt1486192\tThe Raven\t2012\t6.4\t77571\t110\tCrime,Mystery,Thriller\tJames McTeigue\nnm0574625\ttt3247714\tSurvivor\t2015\t5.6\t26109\t96\tAction,Crime,Thriller\tJames McTeigue\nnm0690794\ttt0245238\tLost and Delirious\t2001\t7.0\t18312\t103\tDrama,Romance\tLéa Pool\nnm0947087\ttt0436339\tG-Force\t2009\t5.1\t36721\t88\tAction,Adventure,Animation\tHoyt Yeatman\nnm1191481\ttt3195644\tInsidious: Chapter 3\t2015\t6.1\t73408\t97\tHorror,Mystery,Thriller\tLeigh Whannell\nnm1749449\ttt1686039\tFive Minarets in New York\t2010\t5.9\t13026\t119\tDrama\tMahsun Kirmizigül\nnm2588606\ttt2024544\t12 Years a Slave\t2013\t8.1\t533583\t134\tBiography,Drama,History\tSteve McQueen\nnm2588606\ttt0986233\tHunger\t2008\t7.6\t58070\t96\tBiography,Drama\tSteve McQueen\nnm2588606\ttt1723811\tShame\t2011\t7.2\t163554\t101\tDrama\tSteve McQueen\nnm0126096\ttt2866360\tCoherence\t2013\t7.2\t78191\t89\tMystery,Sci-Fi,Thriller\tJames Ward Byrkit\nnm0303032\ttt0780534\tMy Mom's New Boyfriend\t2008\t5.3\t10107\t97\tAction,Comedy,Crime\tGeorge Gallo\nnm0303032\ttt1251757\tMiddle Men\t2009\t6.6\t34415\t105\tComedy,Crime,Drama\tGeorge Gallo\nnm0382584\ttt1194417\tCasino Jack\t2010\t6.2\t15698\t108\tBiography,Comedy,Crime\tGeorge Hickenlooper\nnm0382584\ttt0432402\tFactory Girl\t2006\t6.4\t19538\t90\tBiography,Drama\tGeorge Hickenlooper\nnm0736930\ttt0252866\tAmerican Pie 2\t2001\t6.4\t216414\t108\tComedy\tJ.B. Rogers\nnm0736930\ttt0239949\tSay It Isn't So\t2001\t4.9\t11895\t95\tComedy,Romance\tJ.B. Rogers\nnm0836715\ttt0844457\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\tPhilipp Stölzl\nnm0836715\ttt2101473\tThe Physician\t2013\t7.2\t30529\t150\tAdventure,Drama,History\tPhilipp Stölzl\nnm0836715\ttt1645155\tErased\t2012\t6.1\t25778\t100\tAction,Thriller\tPhilipp Stölzl\nnm1038286\ttt2172985\tThe Art of the Steal\t2013\t6.3\t20945\t90\tComedy,Crime,Thriller\tJonathan Sobol\nnm1275670\ttt0884732\tThe Wedding Ringer\t2015\t6.7\t63167\t101\tComedy\tJeremy Garelick\nnm1580671\ttt1450321\tFilth\t2013\t7.1\t87836\t97\tComedy,Crime,Drama\tJon S. Baird\nnm1780501\ttt1687247\tLife in a Day\t2011\t7.7\t14065\t95\tDocumentary,Drama\tAlejo Crisóstomo\nnm0000941\ttt0267626\tK-19: The Widowmaker\t2002\t6.7\t53278\t138\tDrama,History,Thriller\tKathryn Bigelow\nnm0000941\ttt1790885\tZero Dark Thirty\t2012\t7.4\t238096\t157\tDrama,Thriller\tKathryn Bigelow\nnm0000941\ttt5390504\tDetroit\t2017\t7.4\t29865\t143\tCrime,Drama,Thriller\tKathryn Bigelow\nnm0000941\ttt0887912\tThe Hurt Locker\t2008\t7.6\t371571\t131\tDrama,History,Thriller\tKathryn Bigelow\nnm0179117\ttt0380268\tCocaine Cowboys\t2006\t7.9\t11466\t118\tCrime,Documentary,History\tBilly Corben\nnm0232504\ttt1075419\tShinjuku Incident\t2009\t7.1\t10071\t119\tAction,Crime,Drama\tTung-Shing Yee\nnm0266255\ttt0220099\tThe Tigger Movie\t2000\t6.3\t14654\t77\tAnimation,Comedy,Drama\tJun Falkenstein\nnm0357584\ttt0417658\tFactotum\t2005\t6.6\t12757\t94\tComedy,Drama,Romance\tBent Hamer\nnm0888743\ttt3859076\tTruth\t2015\t6.8\t15646\t125\tBiography,Drama,History\tJames Vanderbilt\nnm1090998\ttt0456149\tThe Death of Mr. Lazarescu\t2005\t8.0\t11568\t153\tDrama\tCristi Puiu\nnm1783713\ttt2669336\tTime Lapse\t2014\t6.5\t34781\t104\tSci-Fi,Thriller\tBradley King\nnm2104063\ttt2094018\tHours\t2013\t6.5\t25012\t97\tDrama,Thriller\tEric Heisserer\nnm2349060\ttt0315642\tWazir\t2016\t7.2\t14507\t103\tAction,Crime,Drama\tBejoy Nambiar\nnm2574897\ttt1571249\tThe Skeleton Twins\t2014\t6.8\t35176\t93\tComedy,Drama,Romance\tCraig Johnson\nnm2639032\ttt1640459\tHobo with a Shotgun\t2011\t6.1\t40249\t86\tAction,Comedy,Horror\tJason Eisener\nnm2639032\ttt2450186\tV/H/S/2\t2013\t6.1\t31302\t96\tHorror,Thriller\tJason Eisener\nnm2639032\ttt1935896\tThe ABCs of Death\t2012\t4.7\t16073\t129\tComedy,Horror\tJason Eisener\nnm0004838\ttt0433412\tMaterial Girls\t2006\t3.9\t20188\t98\tComedy,Family,Romance\tMartha Coolidge\nnm0004838\ttt0337697\tThe Prince and Me\t2004\t5.9\t34478\t111\tComedy,Family,Romance\tMartha Coolidge\nnm0134176\ttt0380389\tGoal! The Dream Begins\t2005\t6.7\t55032\t118\tDrama,Romance,Sport\tDanny Cannon\nnm0200380\ttt1791614\tStruck by Lightning\t2012\t6.3\t13730\t90\tComedy,Drama\tBrian Dannelly\nnm0200380\ttt0332375\tSaved!\t2004\t6.8\t42092\t92\tComedy,Drama\tBrian Dannelly\nnm0291082\ttt0427470\tThe Lookout\t2007\t7.1\t53496\t99\tCrime,Drama,Thriller\tScott Frank\nnm0291082\ttt0365907\tA Walk Among the Tombstones\t2014\t6.5\t98863\t114\tCrime,Drama,Mystery\tScott Frank\nnm0329023\ttt1133991\tWhat Doesn't Kill You\t2008\t6.6\t10492\t100\tCrime,Drama\tBrian Goodman\nnm0752328\ttt1667310\tDeadfall\t2012\t6.3\t35242\t95\tCrime,Drama,Thriller\tStefan Ruzowitzky\nnm0752328\ttt0813547\tThe Counterfeiters\t2007\t7.6\t39552\t98\tCrime,Drama,War\tStefan Ruzowitzky\nnm0752328\ttt0187696\tAnatomy\t2000\t6.1\t10720\t103\tHorror,Thriller\tStefan Ruzowitzky\nnm0955974\ttt1311060\tA.C.O.D.\t2013\t5.7\t11711\t88\tComedy\tStuart Zicherman\nnm1012385\ttt0808276\tCold Prey\t2006\t6.3\t15193\t97\tHorror,Thriller\tRoar Uthaug\nnm1012385\ttt3616916\tThe Wave\t2015\t6.7\t22917\t105\tAction,Drama,Thriller\tRoar Uthaug\nnm1659908\ttt0417056\tPledge This!\t2006\t1.9\t16121\t91\tComedy\tWilliam Heins\nnm4134911\ttt7312940\tSingularity\t2017\t4.3\t10414\t92\tAction,Adventure,Drama\tRobert Kouba\nnm0002337\ttt0185183\tBattlefield Earth\t2000\t2.4\t69911\t118\tAction,Adventure,Sci-Fi\tRoger Christian\nnm0003474\ttt0329028\tDumb and Dumberer: When Harry Met Lloyd\t2003\t3.4\t32665\t85\tComedy\tTroy Miller\nnm0003557\ttt1423894\tBarney's Version\t2010\t7.3\t22376\t134\tComedy,Drama\tRichard J. Lewis\nnm0106456\ttt0492486\tShrooms\t2007\t4.7\t14794\t84\tComedy,Horror,Mystery\tPaddy Breathnach\nnm0146960\ttt0265651\tRipley's Game\t2002\t6.6\t15790\t110\tCrime,Drama,Mystery\tLiliana Cavani\nnm0381273\ttt0473188\tBobby Z\t2007\t5.9\t12919\t97\tAction,Crime,Thriller\tJohn Herzfeld\nnm0381273\ttt0179626\t15 Minutes\t2001\t6.1\t45121\t120\tAction,Crime,Drama\tJohn Herzfeld\nnm0387706\ttt0251114\tHart's War\t2002\t6.3\t46850\t125\tDrama,War\tGregory Hoblit\nnm0387706\ttt0186151\tFrequency\t2000\t7.4\t90175\t118\tCrime,Drama,Mystery\tGregory Hoblit\nnm0387706\ttt0880578\tUntraceable\t2008\t6.2\t43740\t101\tCrime,Mystery,Thriller\tGregory Hoblit\nnm0387706\ttt0488120\tFracture\t2007\t7.2\t158603\t113\tCrime,Drama,Mystery\tGregory Hoblit\nnm0466349\ttt1524137\tContraband\t2012\t6.5\t107861\t109\tAction,Crime,Drama\tBaltasar Kormákur\nnm0466349\ttt1272878\t2 Guns\t2013\t6.7\t173146\t109\tAction,Comedy,Crime\tBaltasar Kormákur\nnm0466349\ttt2719848\tEverest\t2015\t7.1\t169426\t121\tAction,Adventure,Drama\tBaltasar Kormákur\nnm0527261\ttt0496436\tWhite Noise 2: The Light\t2007\t5.7\t11892\t99\tDrama,Fantasy,Horror\tPatrick Lussier\nnm0527261\ttt1502404\tDrive Angry\t2011\t5.4\t87028\t104\tAction,Fantasy,Thriller\tPatrick Lussier\nnm0527261\ttt0219653\tDracula 2000\t2000\t4.9\t29254\t99\tAction,Fantasy,Horror\tPatrick Lussier\nnm0527261\ttt1179891\tMy Bloody Valentine\t2009\t5.5\t48770\t101\tHorror,Mystery,Thriller\tPatrick Lussier\nnm0534879\ttt5286444\tNeerja\t2016\t7.7\t16161\t122\tBiography,Drama,Thriller\tRam Madhvani\nnm0578446\ttt2193265\tWelcome to the Jungle\t2013\t5.0\t10888\t95\tAction,Adventure,Comedy\tRob Meltzer\nnm0657372\ttt0472160\tPenelope\t2006\t6.8\t54976\t104\tComedy,Fantasy,Romance\tMark Palansky\nnm0674742\ttt0301727\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Perrin\nnm0812626\ttt1374992\tUpside Down\t2012\t6.4\t63902\t109\tDrama,Fantasy,Romance\tJuan Solanas\nnm4093647\ttt4432480\tRangiTaranga\t2015\t8.6\t10478\t149\tAdventure,Music,Mystery\tAnup Bhandari\nnm0001628\ttt0373926\tThe Interpreter\t2005\t6.4\t90750\t128\tCrime,Mystery,Thriller\tSydney Pollack\nnm0349183\ttt0362165\tSon of the Mask\t2005\t2.2\t46019\t94\tComedy,Family,Fantasy\tLawrence Guterman\nnm0349183\ttt0239395\tCats & Dogs\t2001\t5.1\t50447\t87\tAction,Comedy,Family\tLawrence Guterman\nnm0444244\ttt2278871\tBlue Is the Warmest Color\t2013\t7.8\t113436\t180\tDrama,Romance\tAbdellatif Kechiche\nnm0583600\ttt0457939\tThe Holiday\t2006\t6.9\t206327\t138\tComedy,Romance\tNancy Meyers\nnm0583600\ttt0207201\tWhat Women Want\t2000\t6.4\t173171\t127\tComedy,Fantasy,Romance\tNancy Meyers\nnm0583600\ttt2361509\tThe Intern\t2015\t7.1\t176423\t121\tComedy,Drama\tNancy Meyers\nnm0583600\ttt1230414\tIt's Complicated\t2009\t6.6\t76534\t120\tComedy,Drama,Romance\tNancy Meyers\nnm0583600\ttt0337741\tSomething's Gotta Give\t2003\t6.7\t98981\t128\tComedy,Drama,Romance\tNancy Meyers\nnm0680846\ttt2005151\tWar Dogs\t2016\t7.1\t135662\t114\tComedy,Crime,Drama\tTodd Phillips\nnm0680846\ttt0335438\tStarsky & Hutch\t2004\t6.1\t127674\t101\tComedy,Crime\tTodd Phillips\nnm0680846\ttt1951261\tThe Hangover Part III\t2013\t5.9\t253613\t100\tComedy,Crime\tTodd Phillips\nnm0680846\ttt1119646\tThe Hangover\t2009\t7.7\t637852\t100\tComedy\tTodd Phillips\nnm0680846\ttt0462519\tSchool for Scoundrels\t2006\t5.9\t27544\t100\tComedy\tTodd Phillips\nnm0680846\ttt1411697\tThe Hangover Part II\t2011\t6.5\t412109\t102\tComedy,Mystery\tTodd Phillips\nnm0680846\ttt1231583\tDue Date\t2010\t6.6\t292303\t95\tAction,Adventure,Comedy\tTodd Phillips\nnm0680846\ttt0302886\tOld School\t2003\t7.1\t197104\t88\tComedy\tTodd Phillips\nnm0680846\ttt0215129\tRoad Trip\t2000\t6.5\t143270\t93\tAdventure,Comedy\tTodd Phillips\nnm0792263\ttt5362988\tWind River\t2017\t7.8\t119176\t107\tCrime,Drama,Mystery\tTaylor Sheridan\nnm0937306\ttt0388500\tBeauty Shop\t2005\t5.5\t14596\t105\tComedy\tBille Woodruff\nnm0937306\ttt0322589\tHoney\t2003\t5.3\t39693\t94\tDrama,Music,Romance\tBille Woodruff\nnm1653460\ttt4981966\t24\t2016\t7.9\t13106\t164\tAction,Sci-Fi,Thriller\tVikram K. Kumar\nnm0000318\ttt0133152\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\tTim Burton\nnm0000318\ttt1014759\tAlice in Wonderland\t2010\t6.5\t340298\t108\tAdventure,Family,Fantasy\tTim Burton\nnm0000318\ttt1935859\tMiss Peregrine's Home for Peculiar Children\t2016\t6.7\t127313\t127\tAdventure,Drama,Family\tTim Burton\nnm0000318\ttt1142977\tFrankenweenie\t2012\t7.0\t83844\t87\tAnimation,Comedy,Family\tTim Burton\nnm0000318\ttt0408236\tSweeney Todd: The Demon Barber of Fleet Street\t2007\t7.4\t308860\t116\tDrama,Horror,Musical\tTim Burton\nnm0000318\ttt0319061\tBig Fish\t2003\t8.0\t376879\t125\tAdventure,Drama,Fantasy\tTim Burton\nnm0000318\ttt0367594\tCharlie and the Chocolate Factory\t2005\t6.7\t364165\t115\tAdventure,Comedy,Family\tTim Burton\nnm0000318\ttt1077368\tDark Shadows\t2012\t6.2\t218813\t113\tComedy,Fantasy,Horror\tTim Burton\nnm0000318\ttt1126590\tBig Eyes\t2014\t7.0\t70693\t106\tBiography,Crime,Drama\tTim Burton\nnm0000318\ttt0121164\tCorpse Bride\t2005\t7.4\t212044\t77\tAnimation,Drama,Family\tTim Burton\nnm0001331\ttt0368794\tI'm Not There.\t2007\t7.0\t51597\t135\tBiography,Drama,Music\tTodd Haynes\nnm0001331\ttt2402927\tCarol\t2015\t7.2\t89100\t118\tDrama,Romance\tTodd Haynes\nnm0001331\ttt0297884\tFar from Heaven\t2002\t7.4\t39334\t107\tDrama\tTodd Haynes\nnm0006845\ttt0206917\tThe Man Who Cried\t2000\t6.2\t13245\t100\tDrama,Music,Romance\tSally Potter\nnm0249897\ttt0443536\tHoodwinked!\t2005\t6.5\t50203\t80\tAction,Animation,Comedy\tCory Edwards\nnm0779433\ttt2358925\tUnfinished Business\t2015\t5.4\t26776\t91\tComedy\tKen Scott\nnm0779433\ttt1756750\tStarbuck\t2011\t7.3\t14627\t109\tComedy,Drama,Romance\tKen Scott\nnm0779433\ttt2387559\tDelivery Man\t2013\t6.4\t67142\t105\tComedy,Drama\tKen Scott\nnm0788202\ttt1336608\tRock of Ages\t2012\t5.9\t66947\t123\tComedy,Drama,Musical\tAdam Shankman\nnm0788202\ttt0305669\tBringing Down the House\t2003\t5.6\t31986\t105\tComedy\tAdam Shankman\nnm0788202\ttt0427327\tHairspray\t2007\t6.7\t107226\t117\tComedy,Drama,Music\tAdam Shankman\nnm0788202\ttt0452598\tCheaper by the Dozen 2\t2005\t5.5\t47636\t94\tAdventure,Comedy,Family\tAdam Shankman\nnm0788202\ttt0395699\tThe Pacifier\t2005\t5.6\t75471\t95\tAction,Comedy,Drama\tAdam Shankman\nnm0788202\ttt0209475\tThe Wedding Planner\t2001\t5.3\t67533\t103\tComedy,Romance\tAdam Shankman\nnm0788202\ttt0960731\tBedtime Stories\t2008\t6.1\t78559\t99\tComedy,Family,Fantasy\tAdam Shankman\nnm0788202\ttt0281358\tA Walk to Remember\t2002\t7.4\t179601\t101\tDrama,Romance\tAdam Shankman\nnm0881279\ttt0435761\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\tLee Unkrich\nnm0881279\ttt0198781\tMonsters, Inc.\t2001\t8.1\t683316\t92\tAdventure,Animation,Comedy\tLee Unkrich\nnm0881279\ttt2380307\tCoco\t2017\t8.5\t160979\t105\tAdventure,Animation,Comedy\tLee Unkrich\nnm0881279\ttt0266543\tFinding Nemo\t2003\t8.1\t806654\t100\tAdventure,Animation,Comedy\tLee Unkrich\nnm1381100\ttt0489049\tFanboys\t2009\t6.6\t52697\t90\tAdventure,Comedy,Drama\tKyle Newman\nnm1381100\ttt1731701\tBarely Lethal\t2015\t5.4\t15044\t96\tAction,Adventure,Comedy\tKyle Newman\nnm1883583\ttt1935896\tThe ABCs of Death\t2012\t4.7\t16073\t129\tComedy,Horror\tYoshihiro Nishimura\nnm0193485\ttt2194499\tAbout Time\t2013\t7.8\t239566\t123\tComedy,Drama,Fantasy\tRichard Curtis\nnm0193485\ttt0314331\tLove Actually\t2003\t7.6\t360549\t135\tComedy,Drama,Romance\tRichard Curtis\nnm0193485\ttt1131729\tPirate Radio\t2009\t7.4\t97814\t135\tComedy,Drama,Music\tRichard Curtis\nnm0352032\ttt2199711\tVishwaroopam\t2013\t8.4\t36732\t148\tAction,Thriller\tKamal Haasan\nnm0455078\ttt1261945\tSex and the City 2\t2010\t4.4\t65496\t146\tComedy,Drama,Romance\tMichael Patrick King\nnm0455078\ttt1000774\tSex and the City\t2008\t5.6\t106162\t145\tComedy,Drama,Romance\tMichael Patrick King\nnm0634240\ttt1345836\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\tChristopher Nolan\nnm0634240\ttt0278504\tInsomnia\t2002\t7.2\t242042\t118\tDrama,Mystery,Thriller\tChristopher Nolan\nnm0634240\ttt0816692\tInterstellar\t2014\t8.6\t1166700\t169\tAdventure,Drama,Sci-Fi\tChristopher Nolan\nnm0634240\ttt0372784\tBatman Begins\t2005\t8.3\t1117490\t140\tAction,Adventure,Thriller\tChristopher Nolan\nnm0634240\ttt1375666\tInception\t2010\t8.8\t1700010\t148\tAction,Adventure,Sci-Fi\tChristopher Nolan\nnm0634240\ttt0482571\tThe Prestige\t2006\t8.5\t988214\t130\tDrama,Mystery,Sci-Fi\tChristopher Nolan\nnm0634240\ttt0468569\tThe Dark Knight\t2008\t9.0\t1912934\t152\tAction,Crime,Drama\tChristopher Nolan\nnm0634240\ttt5013056\tDunkirk\t2017\t8.0\t380432\t106\tAction,Drama,History\tChristopher Nolan\nnm0634240\ttt0209144\tMemento\t2000\t8.5\t967722\t113\tMystery,Thriller\tChristopher Nolan\nnm0946734\ttt0417741\tHarry Potter and the Half-Blood Prince\t2009\t7.6\t379980\t153\tAdventure,Family,Fantasy\tDavid Yates\nnm0946734\ttt1201607\tHarry Potter and the Deathly Hallows: Part 2\t2011\t8.1\t639755\t130\tAdventure,Drama,Fantasy\tDavid Yates\nnm0946734\ttt3183660\tFantastic Beasts and Where to Find Them\t2016\t7.4\t301060\t133\tAdventure,Family,Fantasy\tDavid Yates\nnm0946734\ttt0373889\tHarry Potter and the Order of the Phoenix\t2007\t7.5\t414813\t138\tAdventure,Family,Fantasy\tDavid Yates\nnm0946734\ttt0918940\tThe Legend of Tarzan\t2016\t6.3\t137049\t110\tAction,Adventure,Drama\tDavid Yates\nnm0946734\ttt0926084\tHarry Potter and the Deathly Hallows: Part 1\t2010\t7.7\t386882\t146\tAdventure,Family,Fantasy\tDavid Yates\nnm1032521\ttt1307068\tSeeking a Friend for the End of the World\t2012\t6.7\t97691\t101\tAdventure,Comedy,Drama\tLorene Scafaria\nnm1060986\ttt1458169\tKidnap\t2017\t5.9\t23490\t95\tAction,Crime,Drama\tLuis Prieto\nnm1084723\ttt1810697\tMeeting Evil\t2012\t5.3\t10792\t89\tCrime,Drama,Mystery\tChris Fisher\nnm1084723\ttt1231277\tS. Darko\t2009\t3.6\t11967\t103\tMystery,Sci-Fi,Thriller\tChris Fisher\nnm1338845\ttt1447508\tPeepli (Live)\t2010\t7.5\t10179\t95\tComedy,Drama\tMahmood Farooqui\nnm1673756\ttt1954701\tA Coffee in Berlin\t2012\t7.4\t12708\t86\tComedy,Drama\tJan Ole Gerster\nnm2225334\ttt4547194\tI Kill Giants\t2017\t6.5\t11072\t106\tDrama,Fantasy,Thriller\tAnders Walter\nnm3078168\ttt1440732\tBel Ami\t2012\t5.4\t16561\t102\tDrama,History,Romance\tNick Ormerod\nnm0188722\ttt2099556\tAntiviral\t2012\t5.7\t10504\t108\tHorror,Sci-Fi,Thriller\tBrandon Cronenberg\nnm0308520\ttt0929425\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\tMatteo Garrone\nnm0308520\ttt3278330\tTale of Tales\t2015\t6.4\t20621\t134\tDrama,Fantasy,Horror\tMatteo Garrone\nnm0587955\ttt1210166\tMoneyball\t2011\t7.6\t310248\t133\tBiography,Drama,Sport\tBennett Miller\nnm0587955\ttt0379725\tCapote\t2005\t7.4\t111521\t114\tBiography,Crime,Drama\tBennett Miller\nnm0587955\ttt1100089\tFoxcatcher\t2014\t7.0\t120655\t134\tBiography,Drama,Sport\tBennett Miller\nnm0661751\ttt0369441\tFun with Dick and Jane\t2005\t6.1\t120101\t90\tComedy,Crime\tDean Parisot\nnm0661751\ttt1821694\tRED 2\t2013\t6.7\t140784\t116\tAction,Comedy,Crime\tDean Parisot\nnm1130275\ttt2040560\tThe Pact\t2012\t5.8\t21449\t89\tHorror,Mystery,Thriller\tNicholas McCarthy\nnm1519306\ttt0392878\tThe Onion Movie\t2008\t6.3\t14395\t86\tComedy\tTom Kuntz\nnm1760867\ttt0493264\tValley of the Wolves: Iraq\t2006\t5.9\t15666\t122\tAction,Adventure,Drama\tSadullah Sentürk\nnm1879589\ttt0814335\tThe Stepfather\t2009\t5.6\t26035\t101\tCrime,Thriller\tNelson McCormick\nnm1879589\ttt0926129\tProm Night\t2008\t3.9\t30092\t88\tHorror,Mystery\tNelson McCormick\nnm2266744\ttt1687247\tLife in a Day\t2011\t7.7\t14065\t95\tDocumentary,Drama\tFrancesco La Regina\nnm3109770\ttt1280558\tA Wednesday\t2008\t8.2\t61878\t104\tCrime,Drama,Mystery\tNeeraj Pandey\nnm3109770\ttt3848892\tBaby\t2015\t8.1\t44595\t159\tAction,Thriller\tNeeraj Pandey\nnm3109770\ttt4169250\tM.S. Dhoni: The Untold Story\t2016\t7.8\t25128\t184\tBiography,Drama,Sport\tNeeraj Pandey\nnm3109770\ttt2377938\tSpecial 26\t2013\t8.0\t41158\t144\tAction,Crime,Thriller\tNeeraj Pandey\nnm3609300\ttt1959332\tAmerican Mary\t2012\t6.3\t19265\t103\tDrama,Horror\tSylvia Soska\nnm0005222\ttt0959337\tRevolutionary Road\t2008\t7.3\t167567\t119\tDrama,Romance\tSam Mendes\nnm0005222\ttt0418763\tJarhead\t2005\t7.0\t156014\t125\tBiography,Drama,War\tSam Mendes\nnm0005222\ttt0257044\tRoad to Perdition\t2002\t7.7\t219046\t117\tCrime,Drama,Thriller\tSam Mendes\nnm0005222\ttt1074638\tSkyfall\t2012\t7.8\t568472\t143\tAction,Adventure,Thriller\tSam Mendes\nnm0005222\ttt1176740\tAway We Go\t2009\t7.1\t48326\t98\tComedy,Drama,Romance\tSam Mendes\nnm0005222\ttt2379713\tSpectre\t2015\t6.8\t331382\t148\tAction,Adventure,Thriller\tSam Mendes\nnm0089742\ttt1932718\tThanks for Sharing\t2012\t6.4\t23089\t112\tComedy,Drama,Romance\tStuart Blumberg\nnm0122427\ttt2452386\tThe Fundamentals of Caring\t2016\t7.3\t40309\t97\tComedy,Drama\tRob Burnett\nnm0192289\ttt0484562\tThe Seeker: The Dark Is Rising\t2007\t4.8\t13865\t99\tAdventure,Drama,Family\tDavid L. Cunningham\nnm0309691\ttt0418647\tDreamer: Inspired by a True Story\t2005\t6.9\t10878\t106\tDrama,Family,Sport\tJohn Gatins\nnm0538320\ttt0338564\tInfernal Affairs\t2002\t8.1\t106993\t101\tCrime,Drama,Mystery\tAlan Mak\nnm0538320\ttt0374339\tInfernal Affairs 3\t2003\t7.0\t10849\t118\tAction,Crime,Drama\tAlan Mak\nnm0538320\ttt0369060\tInfernal Affairs 2\t2003\t7.4\t14756\t119\tAction,Crime,Drama\tAlan Mak\nnm0635895\ttt1441940\tBroken\t2012\t7.3\t11944\t91\tDrama,Romance\tRufus Norris\nnm0878763\ttt1355644\tPassengers\t2016\t7.0\t270827\t116\tDrama,Sci-Fi,Thriller\tMorten Tyldum\nnm0878763\ttt1614989\tHeadhunters\t2011\t7.6\t87829\t96\tCrime,Drama,Thriller\tMorten Tyldum\nnm0878763\ttt2084970\tThe Imitation Game\t2014\t8.0\t573073\t114\tBiography,Drama,History\tMorten Tyldum\nnm0890060\ttt0432047\tSarkar\t2005\t7.7\t13156\t124\tCrime,Drama\tRam Gopal Varma\nnm0890060\ttt0296574\tCompany\t2002\t8.0\t11977\t155\tAction,Crime,Drama\tRam Gopal Varma\nnm1639277\ttt4667094\tFifty Shades of Black\t2016\t3.5\t15332\t92\tComedy\tMichael Tiddes\nnm1639277\ttt2243537\tA Haunted House\t2013\t5.1\t38332\t86\tComedy,Fantasy\tMichael Tiddes\nnm1639277\ttt2828996\tA Haunted House 2\t2014\t4.7\t16882\t86\tComedy,Fantasy\tMichael Tiddes\nnm1639277\ttt6048930\tNaked\t2017\t5.3\t11078\t96\tComedy,Romance\tMichael Tiddes\nnm0007193\ttt3401882\tFist Fight\t2017\t5.6\t28825\t91\tComedy\tRichie Keen\nnm0022768\ttt0839980\tSemi-Pro\t2008\t5.8\t71855\t91\tComedy,Sport\tKent Alterman\nnm0084059\ttt3704538\tV/H/S Viral\t2014\t4.2\t12880\t81\tHorror,Thriller\tGregg Bishop\nnm0084059\ttt0926063\tDance of the Dead\t2008\t5.8\t10621\t87\tComedy,Horror\tGregg Bishop\nnm0149260\ttt0357111\tRRRrrrr!!!\t2004\t5.8\t11309\t94\tComedy,Crime,Sci-Fi\tAlain Chabat\nnm0149260\ttt0250223\tAsterix and Obelix Meet Cleopatra\t2002\t6.6\t42032\t107\tAdventure,Comedy,Family\tAlain Chabat\nnm0179697\ttt0445990\tInvincible\t2006\t7.1\t57595\t105\tBiography,Drama,Sport\tEricson Core\nnm0179697\ttt2058673\tPoint Break\t2015\t5.3\t49769\t114\tAction,Crime,Sport\tEricson Core\nnm0378660\ttt0248408\tManitou's Shoe\t2001\t6.6\t15242\t87\tComedy,Western\tMichael Herbig\nnm0378660\ttt0349047\t(T)Raumschiff Surprise - Periode 1\t2004\t5.4\t11863\t87\tComedy,Sci-Fi\tMichael Herbig\nnm0400441\ttt0808399\tNew York, I Love You\t2008\t6.3\t41895\t103\tComedy,Drama,Romance\tAllen Hughes\nnm0400441\ttt1037705\tThe Book of Eli\t2010\t6.9\t254132\t118\tAction,Adventure,Drama\tAllen Hughes\nnm0400441\ttt0120681\tFrom Hell\t2001\t6.8\t134493\t122\tHorror,Mystery,Thriller\tAllen Hughes\nnm0400441\ttt1235522\tBroken City\t2013\t6.2\t69139\t109\tAction,Crime,Drama\tAllen Hughes\nnm0442109\ttt0383028\tSynecdoche, New York\t2008\t7.5\t66418\t124\tComedy,Drama\tCharlie Kaufman\nnm0442109\ttt2401878\tAnomalisa\t2015\t7.3\t51974\t90\tAnimation,Comedy,Drama\tCharlie Kaufman\nnm0629272\ttt3297330\tGood Kill\t2014\t6.4\t19637\t102\tDrama,Thriller,War\tAndrew Niccol\nnm0629272\ttt0258153\tS1m0ne\t2002\t6.1\t54878\t117\tComedy,Drama,Sci-Fi\tAndrew Niccol\nnm0629272\ttt0399295\tLord of War\t2005\t7.6\t267587\t122\tCrime,Drama,Thriller\tAndrew Niccol\nnm0629272\ttt1637688\tIn Time\t2011\t6.7\t332452\t109\tAction,Crime,Drama\tAndrew Niccol\nnm0629272\ttt1517260\tThe Host\t2013\t5.9\t101281\t125\tAction,Adventure,Romance\tAndrew Niccol\nnm0700760\ttt1217209\tBrave\t2012\t7.1\t313479\t93\tAdventure,Animation,Comedy\tSteve Purcell\nnm0801055\ttt0476958\tAmusement\t2008\t5.1\t10096\t85\tHorror,Thriller\tJohn Simpson\nnm0891114\ttt1033643\tWhat Happens in Vegas\t2008\t6.1\t151970\t99\tComedy,Romance\tTom Vaughan\nnm0891114\ttt0477095\tStarter for 10\t2006\t6.7\t19571\t92\tComedy,Drama,Romance\tTom Vaughan\nnm0891114\ttt1725986\tSome Kind of Beautiful\t2014\t5.8\t10387\t99\tComedy,Romance\tTom Vaughan\nnm0891114\ttt1766094\tSo Undercover\t2012\t5.0\t16760\t94\tAction,Comedy\tTom Vaughan\nnm0891114\ttt1244659\tExtraordinary Measures\t2010\t6.5\t15228\t106\tDrama\tTom Vaughan\nnm1049433\ttt3170832\tRoom\t2015\t8.2\t271779\t118\tDrama\tLenny Abrahamson\nnm1049433\ttt1605717\tFrank\t2014\t7.0\t65935\t95\tComedy,Drama,Music\tLenny Abrahamson\nnm1883257\ttt2059255\tNo\t2012\t7.4\t20565\t118\tDrama\tPablo Larraín\nnm1883257\ttt1619029\tJackie\t2016\t6.7\t58889\t100\tBiography,Drama,History\tPablo Larraín\nnm0000118\ttt1369706\tThe Ward\t2010\t5.6\t36648\t89\tHorror,Mystery,Thriller\tJohn Carpenter\nnm0000118\ttt0228333\tGhosts of Mars\t2001\t4.9\t46272\t98\tAction,Horror,Sci-Fi\tJohn Carpenter\nnm0001754\ttt0362004\tPalindromes\t2004\t6.8\t11300\t100\tComedy,Drama\tTodd Solondz\nnm0001754\ttt0250081\tStorytelling\t2001\t6.9\t16050\t87\tComedy,Drama,Romance\tTodd Solondz\nnm0038896\ttt2085910\tRoom 237\t2012\t6.2\t18707\t102\tDocumentary\tRodney Ascher\nnm0086431\ttt0328880\tBrother Bear\t2003\t6.8\t80553\t85\tAdventure,Animation,Comedy\tAaron Blaise\nnm0141961\ttt0206275\tSave the Last Dance\t2001\t6.2\t51900\t112\tDrama,Music,Romance\tThomas Carter\nnm0141961\ttt0393162\tCoach Carter\t2005\t7.3\t104147\t136\tBiography,Drama,Sport\tThomas Carter\nnm0141961\ttt2247476\tWhen the Game Stands Tall\t2014\t6.7\t13967\t115\tDrama,Family,Sport\tThomas Carter\nnm0243233\ttt1588334\tJeff, Who Lives at Home\t2011\t6.5\t58724\t83\tComedy,Drama\tMark Duplass\nnm0243233\ttt1336617\tCyrus\t2010\t6.3\t31712\t91\tComedy,Drama,Romance\tMark Duplass\nnm0371955\ttt2872518\tThe Shack\t2017\t6.3\t21507\t132\tDrama,Fantasy\tStuart Hazeldine\nnm0371955\ttt1258197\tExam\t2009\t6.9\t87485\t101\tMystery,Thriller\tStuart Hazeldine\nnm0406334\ttt1226774\tIn the Loop\t2009\t7.5\t48639\t106\tComedy\tArmando Iannucci\nnm0406334\ttt4686844\tThe Death of Stalin\t2017\t7.2\t30717\t107\tComedy\tArmando Iannucci\nnm0414817\ttt0398027\tDown in the Valley\t2005\t6.4\t17134\t108\tDrama,Romance,Thriller\tDavid Jacobson\nnm0497565\ttt0428870\tA Moment to Remember\t2004\t8.2\t18273\t117\tDrama,Romance\tJohn H. Lee\nnm0505522\ttt1294213\tSolitary Man\t2009\t6.4\t14385\t90\tComedy,Drama,Romance\tDavid Levien\nnm0505522\ttt0211465\tKnockaround Guys\t2001\t6.1\t20791\t92\tCrime,Drama,Thriller\tDavid Levien\nnm1033683\ttt0838247\tAfter.Life\t2009\t5.9\t33307\t104\tDrama,Horror,Mystery\tAgnieszka Wojtowicz-Vosloo\nnm2021516\ttt2823054\tMike and Dave Need Wedding Dates\t2016\t6.0\t67396\t98\tAdventure,Comedy,Romance\tJake Szymanski\nnm2066439\ttt1798188\tFrom Up on Poppy Hill\t2011\t7.5\t23686\t91\tAnimation,Drama,Family\tGorô Miyazaki\nnm2066439\ttt0495596\tTales from Earthsea\t2006\t6.5\t27021\t115\tAdventure,Animation,Fantasy\tGorô Miyazaki\nnm0000269\ttt0338512\tTwo Brothers\t2004\t7.1\t12997\t109\tAdventure,Drama,Family\tJean-Jacques Annaud\nnm0000269\ttt0215750\tEnemy at the Gates\t2001\t7.6\t212292\t131\tDrama,History,War\tJean-Jacques Annaud\nnm0000269\ttt1701210\tDay of the Falcon\t2011\t6.7\t10051\t130\tAction,Adventure,Drama\tJean-Jacques Annaud\nnm0000806\ttt1654523\tNight Train to Lisbon\t2013\t6.8\t15348\t111\tMystery,Romance,Thriller\tBille August\nnm0000806\ttt0438859\tThe Color of Freedom\t2007\t7.1\t10874\t118\tBiography,Drama,History\tBille August\nnm0056725\ttt0372824\tThe Chorus\t2004\t7.9\t49503\t97\tDrama,Music\tChristophe Barratier\nnm0134811\ttt0479647\tBon Cop Bad Cop\t2006\t6.9\t10544\t116\tAction,Comedy,Crime\tErik Canuel\nnm0178886\ttt2479800\tPalo Alto\t2013\t6.2\t23972\t100\tDrama\tGia Coppola\nnm0276349\ttt0480025\tThis Is England\t2006\t7.7\t106289\t101\tCrime,Drama\tShane Meadows\nnm0276349\ttt0419677\tDead Man's Shoes\t2004\t7.7\t43863\t90\tCrime,Drama,Thriller\tShane Meadows\nnm0281396\ttt0804497\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\tRyan Fleck\nnm0281396\ttt0468489\tHalf Nelson\t2006\t7.2\t77491\t106\tDrama\tRyan Fleck\nnm0281396\ttt2349144\tMississippi Grind\t2015\t6.4\t14232\t108\tComedy,Drama\tRyan Fleck\nnm0294505\ttt1205535\tThe Rebound\t2009\t6.3\t42560\t95\tComedy,Romance\tBart Freundlich\nnm0373282\ttt0311648\tPieces of April\t2003\t7.1\t18803\t80\tComedy,Drama\tPeter Hedges\nnm0373282\ttt0480242\tDan in Real Life\t2007\t6.8\t91274\t98\tComedy,Drama,Romance\tPeter Hedges\nnm0373282\ttt1462769\tThe Odd Life of Timothy Green\t2012\t6.6\t40975\t105\tComedy,Drama,Family\tPeter Hedges\nnm0542450\ttt0985694\tMachete\t2010\t6.6\t176432\t105\tAction,Crime,Thriller\tEthan Maniquis\nnm0563243\ttt2244901\tI Give It a Year\t2013\t5.7\t32831\t97\tComedy,Romance\tDan Mazer\nnm0563243\ttt1860213\tDirty Grandpa\t2016\t5.9\t90020\t102\tComedy\tDan Mazer\nnm0580729\ttt0324127\tSuspect Zero\t2004\t5.9\t17439\t99\tCrime,Horror,Mystery\tE. Elias Merhige\nnm0580729\ttt0189998\tShadow of the Vampire\t2000\t6.9\t36446\t92\tDrama,Horror\tE. Elias Merhige\nnm0592583\ttt0346723\tChalte Chalte\t2003\t6.6\t12749\t167\tDrama,Romance\tAziz Mirza\nnm0601781\ttt2948356\tZootopia\t2016\t8.0\t342206\t108\tAdventure,Animation,Comedy\tRich Moore\nnm0601781\ttt1772341\tWreck-It Ralph\t2012\t7.7\t309038\t101\tAdventure,Animation,Comedy\tRich Moore\nnm0604335\ttt0208990\tThe Son's Room\t2001\t7.4\t15914\t99\tDrama\tNanni Moretti\nnm0604335\ttt1456472\tWe Have a Pope\t2011\t6.7\t11778\t102\tComedy,Drama\tNanni Moretti\nnm0851724\ttt0910905\tIn the Electric Mist\t2009\t6.1\t14604\t117\tCrime,Drama,Mystery\tBertrand Tavernier\nnm0925870\ttt0421729\tBig Momma's House 2\t2006\t4.7\t35688\t99\tComedy,Crime\tJohn Whitesell\nnm0925870\ttt0328099\tMalibu's Most Wanted\t2003\t5.1\t17034\t86\tComedy,Crime\tJohn Whitesell\nnm0925870\ttt0790604\tDeck the Halls\t2006\t4.9\t18965\t93\tComedy,Family\tJohn Whitesell\nnm0925870\ttt1464174\tBig Mommas: Like Father, Like Son\t2011\t4.4\t22148\t107\tAction,Comedy,Crime\tJohn Whitesell\nnm1226871\ttt4046784\tMaze Runner: The Scorch Trials\t2015\t6.3\t181861\t131\tAction,Sci-Fi,Thriller\tWes Ball\nnm1226871\ttt1790864\tThe Maze Runner\t2014\t6.8\t363158\t113\tAction,Mystery,Sci-Fi\tWes Ball\nnm2127650\ttt0963794\tThe Ruins\t2008\t5.9\t63653\t90\tHorror\tCarter Smith\nnm2151439\ttt2231554\tGrave Encounters 2\t2012\t5.1\t19571\t95\tHorror\tJohn Poliquin\nnm2301412\ttt2105044\tV/H/S\t2012\t5.8\t50121\t116\tHorror,Thriller\tJustin Martinez\nnm2775497\ttt1362058\tCockneys vs Zombies\t2012\t5.9\t16490\t88\tAction,Comedy,Crime\tMatthias Hoene\nnm4416364\ttt1935896\tThe ABCs of Death\t2012\t4.7\t16073\t129\tComedy,Horror\tLee Hardcastle\nnm0000095\ttt0497465\tVicky Cristina Barcelona\t2008\t7.1\t218409\t96\tDrama,Romance\tWoody Allen\nnm0000095\ttt1178663\tWhatever Works\t2009\t7.2\t64673\t93\tComedy,Romance\tWoody Allen\nnm0000095\ttt0416320\tMatch Point\t2005\t7.7\t183548\t124\tDrama,Romance,Thriller\tWoody Allen\nnm0000095\ttt2334873\tBlue Jasmine\t2013\t7.3\t170069\t98\tDrama\tWoody Allen\nnm0000095\ttt1605783\tMidnight in Paris\t2011\t7.7\t338436\t94\tComedy,Fantasy,Romance\tWoody Allen\nnm0000095\ttt4513674\tCafé Society\t2016\t6.6\t55837\t96\tComedy,Drama,Romance\tWoody Allen\nnm0000095\ttt3715320\tIrrational Man\t2015\t6.6\t46111\t95\tComedy,Drama\tWoody Allen\nnm0000095\ttt0795493\tCassandra's Dream\t2007\t6.7\t46904\t108\tCrime,Drama,Romance\tWoody Allen\nnm0000095\ttt0313792\tAnything Else\t2003\t6.4\t27258\t108\tComedy,Romance\tWoody Allen\nnm0000095\ttt0196216\tSmall Time Crooks\t2000\t6.7\t33530\t94\tComedy,Crime\tWoody Allen\nnm0000095\ttt5825380\tWonder Wheel\t2017\t6.2\t11655\t101\tDrama\tWoody Allen\nnm0000095\ttt0378947\tMelinda and Melinda\t2004\t6.5\t28970\t99\tComedy,Drama,Romance\tWoody Allen\nnm0000095\ttt2870756\tMagic in the Moonlight\t2014\t6.6\t55684\t97\tComedy,Romance\tWoody Allen\nnm0000095\ttt1859650\tTo Rome with Love\t2012\t6.3\t76169\t112\tComedy,Romance\tWoody Allen\nnm0000095\ttt0278823\tHollywood Ending\t2002\t6.6\t23624\t112\tComedy,Romance\tWoody Allen\nnm0000095\ttt0457513\tScoop\t2006\t6.7\t73462\t96\tComedy,Crime,Mystery\tWoody Allen\nnm0000095\ttt1182350\tYou Will Meet a Tall Dark Stranger\t2010\t6.3\t40185\t98\tComedy,Drama,Romance\tWoody Allen\nnm0000095\ttt0256524\tThe Curse of the Jade Scorpion\t2001\t6.8\t34582\t103\tComedy,Crime,Mystery\tWoody Allen\nnm0000365\ttt0841044\t2 Days in Paris\t2007\t6.8\t28345\t96\tComedy,Drama,Romance\tJulie Delpy\nnm0000365\ttt1602472\t2 Days in New York\t2012\t6.0\t12908\t96\tComedy,Drama,Romance\tJulie Delpy\nnm0001873\ttt0405676\tAll the King's Men\t2006\t6.2\t22023\t128\tDrama,Thriller\tSteven Zaillian\nnm0002140\ttt0424908\tCopying Beethoven\t2006\t6.8\t11898\t104\tBiography,Drama,Music\tAgnieszka Holland\nnm0352524\ttt1132626\tSaw V\t2008\t5.8\t100671\t92\tHorror,Mystery,Thriller\tDavid Hackl\nnm0569814\ttt0282120\tThe Wild Thornberrys Movie\t2002\t5.3\t12956\t85\tAdventure,Animation,Comedy\tJeff McGrath\nnm0619923\ttt3399024\tSamba\t2014\t6.7\t12450\t118\tComedy,Drama,Romance\tOlivier Nakache\nnm0619923\ttt1675434\tThe Intouchables\t2011\t8.5\t614329\t112\tBiography,Comedy,Drama\tOlivier Nakache\nnm0698125\ttt0250310\tCorky Romano\t2001\t4.7\t11461\t86\tComedy,Crime\tRob Pritts\nnm1291105\ttt1649419\tThe Impossible\t2012\t7.6\t166079\t114\tDrama,Thriller\tJ.A. Bayona\nnm1291105\ttt0464141\tThe Orphanage\t2007\t7.5\t131561\t105\tDrama,Mystery,Thriller\tJ.A. Bayona\nnm1291105\ttt3416532\tA Monster Calls\t2016\t7.5\t60482\t108\tAnimation,Drama,Fantasy\tJ.A. Bayona\nnm1312919\ttt2614684\t'71\t2014\t7.2\t42976\t99\tAction,Drama,Thriller\tYann Demange\nnm1369705\ttt0361089\tValiant\t2005\t5.6\t17834\t76\tAdventure,Animation,Comedy\tGary Chapman\nnm1473091\ttt1648112\tNew Kids Turbo\t2010\t6.4\t13115\t84\tAction,Comedy\tSteffen Haars\nnm1531934\ttt0844708\tThe Last House on the Left\t2009\t6.6\t75168\t110\tHorror,Thriller\tDennis Iliadis\nnm1698571\ttt2788710\tThe Interview\t2014\t6.6\t274007\t112\tComedy\tEvan Goldberg\nnm1698571\ttt1245492\tThis Is the End\t2013\t6.6\t343715\t107\tComedy,Fantasy\tEvan Goldberg\nnm2947553\ttt5215952\tThe Wailing\t2016\t7.4\t26996\t156\tHorror,Mystery,Thriller\tHong-jin Na\nnm2947553\ttt1230385\tThe Yellow Sea\t2010\t7.4\t14644\t157\tAction,Drama,Thriller\tHong-jin Na\nnm2947553\ttt1190539\tThe Chaser\t2008\t7.9\t44968\t125\tAction,Crime,Thriller\tHong-jin Na\nnm3522076\ttt2309224\tBig Bad Wolves\t2013\t6.8\t13630\t110\tComedy,Thriller\tAharon Keshales\nnm0000436\ttt0298203\t8 Mile\t2002\t7.1\t213430\t110\tDrama,Music\tCurtis Hanson\nnm0000436\ttt0388125\tIn Her Shoes\t2005\t6.5\t55176\t130\tComedy,Drama,Romance\tCurtis Hanson\nnm0000436\ttt0185014\tWonder Boys\t2000\t7.4\t57267\t107\tComedy,Drama\tCurtis Hanson\nnm0000436\ttt1629757\tChasing Mavericks\t2012\t7.2\t27819\t116\tBiography,Drama,Sport\tCurtis Hanson\nnm0000436\ttt0338216\tLucky You\t2007\t5.9\t19134\t124\tDrama,Romance,Sport\tCurtis Hanson\nnm0001708\ttt1674784\tTrespass\t2011\t5.3\t37707\t91\tCrime,Thriller\tJoel Schumacher\nnm0001708\ttt0312549\tVeronica Guerin\t2003\t6.9\t17380\t98\tBiography,Crime,Drama\tJoel Schumacher\nnm0001708\ttt0293508\tThe Phantom of the Opera\t2004\t7.3\t104933\t143\tDrama,Musical,Romance\tJoel Schumacher\nnm0001708\ttt0170691\tTigerland\t2000\t7.0\t35306\t101\tDrama,War\tJoel Schumacher\nnm0001708\ttt0183649\tPhone Booth\t2002\t7.1\t227271\t81\tCrime,Thriller\tJoel Schumacher\nnm0001708\ttt0280486\tBad Company\t2002\t5.6\t41970\t116\tAction,Adventure,Comedy\tJoel Schumacher\nnm0001708\ttt0450336\tBlood Creek\t2009\t5.4\t10382\t90\tHorror\tJoel Schumacher\nnm0001708\ttt0481369\tThe Number 23\t2007\t6.4\t177943\t98\tMystery,Thriller\tJoel Schumacher\nnm0001708\ttt1407084\tTwelve\t2010\t5.7\t11259\t93\tAction,Crime,Drama\tJoel Schumacher\nnm0027459\ttt1449283\tWinnie the Pooh\t2011\t7.2\t17714\t63\tAdventure,Animation,Comedy\tStephen J. Anderson\nnm0027459\ttt0396555\tMeet the Robinsons\t2007\t6.9\t75595\t95\tAdventure,Animation,Comedy\tStephen J. Anderson\nnm0201095\ttt2737050\tTwo Days, One Night\t2014\t7.4\t38833\t95\tDrama\tLuc Dardenne\nnm0201095\ttt0456396\tL'enfant\t2005\t7.5\t15818\t95\tCrime,Drama,Romance\tLuc Dardenne\nnm0201095\ttt1827512\tThe Kid with a Bike\t2011\t7.4\t23509\t87\tDrama\tLuc Dardenne\nnm0422638\ttt0808399\tNew York, I Love You\t2008\t6.3\t41895\t103\tComedy,Drama,Romance\tWen Jiang\nnm0601680\ttt1024255\tWild Child\t2008\t6.1\t41998\t98\tComedy,Drama,Romance\tNick Moore\nnm0718646\ttt1625346\tYoung Adult\t2011\t6.3\t69596\t94\tComedy,Drama\tJason Reitman\nnm0718646\ttt3179568\tMen, Women & Children\t2014\t6.7\t26456\t119\tComedy,Drama\tJason Reitman\nnm0718646\ttt0427944\tThank You for Smoking\t2005\t7.6\t201338\t92\tComedy,Drama\tJason Reitman\nnm0718646\ttt1967545\tLabor Day\t2013\t6.9\t36327\t111\tDrama,Romance\tJason Reitman\nnm0718646\ttt1193138\tUp in the Air\t2009\t7.4\t289328\t109\tDrama,Romance\tJason Reitman\nnm0718646\ttt0467406\tJuno\t2007\t7.5\t449339\t96\tComedy,Drama\tJason Reitman\nnm0914134\ttt0821640\tGhosts of Girlfriends Past\t2009\t5.8\t73951\t100\tComedy,Fantasy,Romance\tMark Waters\nnm0914134\ttt1396218\tMr. Popper's Penguins\t2011\t6.0\t75567\t94\tComedy,Family,Fantasy\tMark Waters\nnm0914134\ttt0322330\tFreaky Friday\t2003\t6.2\t108409\t97\tComedy,Family,Fantasy\tMark Waters\nnm0914134\ttt0425123\tJust Like Heaven\t2005\t6.7\t89362\t95\tComedy,Fantasy,Romance\tMark Waters\nnm0914134\ttt0192111\tHead Over Heels\t2001\t5.4\t12602\t86\tComedy,Mystery,Romance\tMark Waters\nnm0914134\ttt1798603\tBad Santa 2\t2016\t5.6\t17242\t92\tComedy,Crime,Drama\tMark Waters\nnm0914134\ttt0416236\tThe Spiderwick Chronicles\t2008\t6.6\t76737\t96\tAdventure,Family,Fantasy\tMark Waters\nnm0914134\ttt1686821\tVampire Academy\t2014\t5.5\t46759\t104\tAction,Comedy,Fantasy\tMark Waters\nnm0914134\ttt0377092\tMean Girls\t2004\t7.0\t280641\t97\tComedy\tMark Waters\nnm0923736\ttt2395427\tAvengers: Age of Ultron\t2015\t7.4\t571469\t141\tAction,Adventure,Sci-Fi\tJoss Whedon\nnm0923736\ttt0379786\tSerenity\t2005\t7.9\t259712\t119\tAction,Adventure,Sci-Fi\tJoss Whedon\nnm0923736\ttt2094064\tMuch Ado About Nothing\t2012\t7.2\t14960\t109\tComedy,Drama,Romance\tJoss Whedon\nnm0923736\ttt0848228\tThe Avengers\t2012\t8.1\t1095753\t143\tAction,Adventure,Sci-Fi\tJoss Whedon\nnm1391924\ttt1235841\tSidewalls\t2011\t7.5\t12017\t95\tComedy,Drama\tGustavo Taretto\nnm5932553\ttt3173910\tHasee Toh Phasee\t2014\t6.9\t11734\t141\tComedy,Romance\tVinil Mathew\nnm0001054\ttt2042568\tInside Llewyn Davis\t2013\t7.5\t114649\t104\tDrama,Music\tJoel Coen\nnm0001054\ttt1019452\tA Serious Man\t2009\t7.0\t114240\t106\tComedy,Drama\tJoel Coen\nnm0001054\ttt0887883\tBurn After Reading\t2008\t7.0\t272163\t96\tComedy,Crime,Drama\tJoel Coen\nnm0001054\ttt1403865\tTrue Grit\t2010\t7.6\t267261\t110\tAdventure,Drama,Western\tJoel Coen\nnm0001054\ttt0477348\tNo Country for Old Men\t2007\t8.1\t711702\t122\tCrime,Drama,Thriller\tJoel Coen\nnm0001054\ttt0243133\tThe Man Who Wasn't There\t2001\t7.6\t92885\t116\tCrime,Drama\tJoel Coen\nnm0001054\ttt0190590\tO Brother, Where Art Thou?\t2000\t7.8\t249024\t107\tAdventure,Comedy,Crime\tJoel Coen\nnm0001054\ttt0335245\tThe Ladykillers\t2004\t6.2\t90434\t104\tComedy,Crime,Thriller\tJoel Coen\nnm0001054\ttt0401711\tParis, je t'aime\t2006\t7.3\t66241\t120\tComedy,Drama,Romance\tJoel Coen\nnm0001054\ttt0138524\tIntolerable Cruelty\t2003\t6.3\t82432\t100\tComedy,Crime,Romance\tJoel Coen\nnm0001054\ttt0475290\tHail, Caesar!\t2016\t6.3\t101584\t106\tComedy,Mystery\tJoel Coen\nnm0001437\ttt0322420\tLife is a Miracle\t2004\t7.6\t10974\t155\tComedy,Drama,Music\tEmir Kusturica\nnm0001747\ttt1564349\tDolphin Tale\t2011\t6.9\t19662\t113\tDrama,Family\tCharles Martin Smith\nnm0384864\ttt0345950\tThe SpongeBob SquarePants Movie\t2004\t7.0\t66433\t87\tAdventure,Animation,Comedy\tStephen Hillenburg\nnm0617042\ttt0284837\tAli G Indahouse\t2002\t6.2\t75099\t85\tComedy,Romance\tMark Mylod\nnm0617042\ttt0402850\tThe Big White\t2005\t6.4\t13051\t100\tComedy,Crime,Drama\tMark Mylod\nnm0617042\ttt0770703\tWhat's Your Number?\t2011\t6.1\t64945\t106\tComedy,Romance\tMark Mylod\nnm0640334\ttt2140037\tJane Got a Gun\t2015\t5.9\t17132\t98\tAction,Drama,Western\tGavin O'Connor\nnm0640334\ttt0349825\tMiracle\t2004\t7.5\t40633\t135\tBiography,Drama,History\tGavin O'Connor\nnm0640334\ttt0482572\tPride and Glory\t2008\t6.7\t55856\t130\tCrime,Drama,Thriller\tGavin O'Connor\nnm0640334\ttt2140479\tThe Accountant\t2016\t7.4\t209363\t128\tAction,Crime,Drama\tGavin O'Connor\nnm0640334\ttt1291584\tWarrior\t2011\t8.2\t380966\t140\tDrama,Sport\tGavin O'Connor\nnm0720135\ttt2381941\tFocus\t2015\t6.6\t179806\t105\tComedy,Crime,Drama\tJohn Requa\nnm0720135\ttt1570728\tCrazy, Stupid, Love.\t2011\t7.4\t416140\t118\tComedy,Drama,Romance\tJohn Requa\nnm0720135\ttt1045772\tI Love You Phillip Morris\t2009\t6.6\t84366\t98\tBiography,Comedy,Crime\tJohn Requa\nnm0720135\ttt3553442\tWhiskey Tango Foxtrot\t2016\t6.6\t42138\t112\tBiography,Comedy,Drama\tJohn Requa\nnm0992370\ttt1673697\tThe Sapphires\t2012\t7.1\t11517\t103\tBiography,Comedy,Drama\tWayne Blair\nnm1053371\ttt0407265\tTransamerica\t2005\t7.4\t38148\t103\tAdventure,Comedy,Drama\tDuncan Tucker\nnm1534600\ttt1666185\tAll Eyez on Me\t2017\t5.8\t15126\t139\tBiography,Drama,Music\tBenny Boom\nnm1883612\ttt0806203\tCarriers\t2009\t6.0\t38076\t84\tDrama,Horror,Sci-Fi\tÀlex Pastor\nnm3651642\ttt1935896\tThe ABCs of Death\t2012\t4.7\t16073\t129\tComedy,Horror\tThomas Cappelen Malling\nnm5732579\ttt2490326\tCooties\t2014\t5.7\t18834\t88\tAction,Comedy,Horror\tJonathan Milott\nnm0001707\ttt0298744\tAuto Focus\t2002\t6.6\t11997\t105\tBiography,Crime,Drama\tPaul Schrader\nnm0074426\ttt0138749\tThe Road to El Dorado\t2000\t6.9\t69114\t89\tAdventure,Animation,Comedy\tBibo Bergeron\nnm0074426\ttt0307453\tShark Tale\t2004\t6.0\t146455\t90\tAdventure,Animation,Comedy\tBibo Bergeron\nnm0074426\ttt0961097\tA Monster in Paris\t2011\t6.7\t17423\t90\tAdventure,Animation,Comedy\tBibo Bergeron\nnm0354091\ttt1714210\tWeekend\t2011\t7.7\t23520\t97\tDrama,Romance\tAndrew Haigh\nnm0354091\ttt3544082\t45 Years\t2015\t7.1\t25615\t91\tDrama,Romance\tAndrew Haigh\nnm0460206\ttt1840417\tThe Words\t2012\t7.1\t66915\t102\tDrama,Mystery,Romance\tBrian Klugman\nnm0553942\ttt0451079\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\tSteve Martino\nnm0553942\ttt1667889\tIce Age: Continental Drift\t2012\t6.6\t163600\t88\tAdventure,Animation,Comedy\tSteve Martino\nnm0553942\ttt2452042\tThe Peanuts Movie\t2015\t7.1\t36792\t88\tAdventure,Animation,Comedy\tSteve Martino\nnm0576987\ttt0861689\tBlindness\t2008\t6.6\t63609\t121\tDrama,Mystery,Sci-Fi\tFernando Meirelles\nnm0576987\ttt1680045\t360\t2011\t6.2\t14501\t110\tDrama,Thriller\tFernando Meirelles\nnm0576987\ttt0387131\tThe Constant Gardener\t2005\t7.4\t120402\t129\tDrama,Mystery,Romance\tFernando Meirelles\nnm0576987\ttt0317248\tCity of God\t2002\t8.6\t604099\t130\tCrime,Drama\tFernando Meirelles\nnm0643696\ttt0482599\tShutter\t2008\t5.2\t29377\t85\tHorror,Mystery,Thriller\tMasayuki Ochiai\nnm0814085\ttt1046173\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\tStephen Sommers\nnm0814085\ttt0338526\tVan Helsing\t2004\t6.1\t217610\t131\tAction,Adventure,Fantasy\tStephen Sommers\nnm0814085\ttt1767354\tOdd Thomas\t2013\t6.9\t41207\t97\tComedy,Fantasy,Horror\tStephen Sommers\nnm0814085\ttt0209163\tThe Mummy Returns\t2001\t6.3\t270766\t130\tAction,Adventure,Fantasy\tStephen Sommers\nnm0831690\ttt0303933\tDrumline\t2002\t5.7\t30317\t118\tComedy,Drama,Music\tCharles Stone III\nnm0831690\ttt0339412\tMr 3000\t2004\t5.5\t12962\t104\tComedy,Drama,Romance\tCharles Stone III\nnm0931095\ttt0775440\tCell\t2016\t4.3\t19628\t98\tAction,Drama,Horror\tTod Williams\nnm0931095\ttt0348593\tThe Door in the Floor\t2004\t6.7\t14205\t111\tComedy,Drama\tTod Williams\nnm0931095\ttt1536044\tParanormal Activity 2\t2010\t5.7\t89385\t91\tHorror\tTod Williams\nnm1190816\ttt5278506\tTickled\t2016\t7.6\t10669\t92\tDocumentary,Mystery\tDylan Reeve\nnm1229323\ttt1525366\tGrabbers\t2012\t6.3\t14950\t94\tComedy,Horror,Sci-Fi\tJon Wright\nnm1547859\ttt0420293\tThe Stanford Prison Experiment\t2015\t6.9\t27331\t122\tBiography,Drama,History\tKyle Patrick Alvarez\nnm1561205\ttt1598873\tCleanskin\t2012\t6.3\t18668\t108\tAction,Crime,Drama\tHadi Hajaig\nnm2497546\ttt4786282\tLights Out\t2016\t6.3\t88422\t81\tHorror\tDavid F. Sandberg\nnm2497546\ttt5140878\tAnnabelle: Creation\t2017\t6.6\t68088\t109\tHorror,Mystery,Thriller\tDavid F. Sandberg\nnm0000165\ttt0338188\tThe Missing\t2003\t6.5\t29737\t137\tAdventure,Thriller,Western\tRon Howard\nnm0000165\ttt0352248\tCinderella Man\t2005\t8.0\t160341\t144\tBiography,Drama,Sport\tRon Howard\nnm0000165\ttt3062096\tInferno\t2016\t6.2\t121594\t121\tAction,Adventure,Crime\tRon Howard\nnm0000165\ttt1578275\tThe Dilemma\t2011\t5.3\t46726\t111\tComedy,Drama\tRon Howard\nnm0000165\ttt0870111\tFrost/Nixon\t2008\t7.7\t94220\t122\tBiography,Drama,History\tRon Howard\nnm0000165\ttt0382625\tThe Da Vinci Code\t2006\t6.6\t354418\t149\tMystery,Thriller\tRon Howard\nnm0000165\ttt1979320\tRush\t2013\t8.1\t368003\t123\tAction,Biography,Drama\tRon Howard\nnm0000165\ttt0170016\tHow the Grinch Stole Christmas\t2000\t6.1\t165502\t104\tComedy,Family,Fantasy\tRon Howard\nnm0000165\ttt0268978\tA Beautiful Mind\t2001\t8.2\t715624\t135\tBiography,Drama\tRon Howard\nnm0000165\ttt1390411\tIn the Heart of the Sea\t2015\t6.9\t100185\t122\tAction,Adventure,Biography\tRon Howard\nnm0000165\ttt0808151\tAngels & Demons\t2009\t6.7\t239856\t138\tMystery,Thriller\tRon Howard\nnm0006969\ttt1333125\tMovie 43\t2013\t4.3\t88078\t94\tComedy,Romance\tElizabeth Banks\nnm0006969\ttt2848292\tPitch Perfect 2\t2015\t6.4\t120591\t115\tComedy,Music\tElizabeth Banks\nnm0015295\ttt4110568\tDil Dhadakne Do\t2015\t6.8\t11403\t170\tComedy,Drama,Family\tZoya Akhtar\nnm0015295\ttt1562872\tZindagi Na Milegi Dobara\t2011\t8.1\t53095\t155\tAdventure,Comedy,Drama\tZoya Akhtar\nnm0257646\ttt1233301\tIronclad\t2011\t6.2\t36896\t121\tAction,Adventure,Drama\tJonathan English\nnm0345307\ttt0815245\tThe Uninvited\t2009\t6.4\t68351\t87\tDrama,Horror,Mystery\tThomas Guard\nnm0453518\ttt1588170\tI Saw the Devil\t2010\t7.8\t85873\t142\tAction,Drama,Horror\tJee-woon Kim\nnm0453518\ttt0456912\tA Bittersweet Life\t2005\t7.6\t29423\t120\tAction,Drama\tJee-woon Kim\nnm0453518\ttt0901487\tThe Good the Bad the Weird\t2008\t7.3\t29268\t139\tAction,Adventure,Western\tJee-woon Kim\nnm0453518\ttt1549920\tThe Last Stand\t2013\t6.4\t122601\t107\tAction,Crime,Thriller\tJee-woon Kim\nnm0453518\ttt0365376\tA Tale of Two Sisters\t2003\t7.2\t47893\t115\tDrama,Horror,Mystery\tJee-woon Kim\nnm0464804\ttt0388473\tTokyo Godfathers\t2003\t7.9\t23688\t93\tAdventure,Animation,Comedy\tSatoshi Kon\nnm0464804\ttt0291350\tMillennium Actress\t2001\t7.9\t17842\t87\tAnimation,Drama,Fantasy\tSatoshi Kon\nnm0464804\ttt0851578\tPaprika\t2006\t7.7\t55055\t90\tAdventure,Animation,Crime\tSatoshi Kon\nnm0567126\ttt0265808\tStealing Harvard\t2002\t5.1\t11665\t85\tComedy,Crime\tBruce McCulloch\nnm0630083\ttt0240900\tSlackers\t2002\t5.3\t12955\t86\tComedy,Romance\tDewey Nicks\nnm0769135\ttt0790628\tThe Incredible Burt Wonderstone\t2013\t5.9\t65108\t100\tAdventure,Comedy,Fantasy\tDon Scardino\nnm0930261\ttt3521164\tMoana\t2016\t7.6\t187394\t107\tAdventure,Animation,Comedy\tChris Williams\nnm0930261\ttt2245084\tBig Hero 6\t2014\t7.8\t335753\t102\tAction,Adventure,Animation\tChris Williams\nnm0930261\ttt0397892\tBolt\t2008\t6.9\t163393\t96\tAdventure,Animation,Comedy\tChris Williams\nnm0057106\ttt1925431\tFire with Fire\t2012\t5.7\t22673\t97\tAction,Crime,Drama\tDavid Barrett\nnm0424103\ttt2172071\tStudent of the Year\t2012\t5.5\t11344\t146\tComedy,Drama,Romance\tKaran Johar\nnm0424103\ttt4559006\tAe Dil Hai Mushkil\t2016\t5.8\t16471\t158\tDrama,Music,Musical\tKaran Johar\nnm0424103\ttt0248126\tKabhi Khushi Kabhie Gham...\t2001\t7.5\t36412\t210\tDrama,Musical,Romance\tKaran Johar\nnm0424103\ttt0449999\tKabhi Alvida Naa Kehna\t2006\t6.1\t15805\t193\tDrama,Romance\tKaran Johar\nnm0424103\ttt1188996\tMy Name Is Khan\t2010\t8.0\t84447\t165\tDrama\tKaran Johar\nnm0535234\ttt0920458\tFlame & Citron\t2008\t7.3\t15757\t130\tAction,Drama,History\tOle Christian Madsen\nnm0688636\ttt4044364\tCitizenfour\t2014\t8.1\t45490\t114\tBiography,Documentary\tLaura Poitras\nnm0751648\ttt3498820\tCaptain America: Civil War\t2016\t7.8\t486714\t147\tAction,Adventure,Sci-Fi\tJoe Russo\nnm0751648\ttt1843866\tCaptain America: The Winter Soldier\t2014\t7.8\t589189\t136\tAction,Adventure,Sci-Fi\tJoe Russo\nnm0751648\ttt0463034\tYou, Me and Dupree\t2006\t5.6\t72787\t110\tComedy,Romance\tJoe Russo\nnm0751648\ttt0271259\tWelcome to Collinwood\t2002\t6.4\t13159\t86\tComedy,Crime\tJoe Russo\nnm0796117\ttt3567288\tThe Visit\t2015\t6.2\t92584\t94\tHorror,Thriller\tM. Night Shyamalan\nnm0796117\ttt0452637\tLady in the Water\t2006\t5.6\t85906\t110\tDrama,Fantasy,Mystery\tM. Night Shyamalan\nnm0796117\ttt1815862\tAfter Earth\t2013\t4.9\t173952\t100\tAction,Adventure,Sci-Fi\tM. Night Shyamalan\nnm0796117\ttt0217869\tUnbreakable\t2000\t7.2\t291621\t106\tDrama,Mystery,Sci-Fi\tM. Night Shyamalan\nnm0796117\ttt4972582\tSplit\t2016\t7.3\t260188\t117\tHorror,Thriller\tM. Night Shyamalan\nnm0796117\ttt0938283\tThe Last Airbender\t2010\t4.2\t130438\t103\tAction,Adventure,Family\tM. Night Shyamalan\nnm0796117\ttt0286106\tSigns\t2002\t6.7\t298847\t106\tDrama,Mystery,Sci-Fi\tM. Night Shyamalan\nnm0796117\ttt0368447\tThe Village\t2004\t6.5\t214433\t108\tDrama,Mystery,Thriller\tM. Night Shyamalan\nnm0796117\ttt0949731\tThe Happening\t2008\t5.0\t177744\t91\tSci-Fi,Thriller\tM. Night Shyamalan\nnm0797869\ttt0457400\tLand of the Lost\t2009\t5.4\t56823\t102\tAdventure,Comedy,Sci-Fi\tBrad Silberling\nnm0797869\ttt0339291\tA Series of Unfortunate Events\t2004\t6.8\t177130\t108\tAdventure,Comedy,Family\tBrad Silberling\nnm0797869\ttt0179098\tMoonlight Mile\t2002\t6.7\t12628\t117\tDrama,Romance\tBrad Silberling\nnm0797869\ttt0499603\t10 Items or Less\t2006\t6.7\t13475\t82\tComedy,Drama\tBrad Silberling\nnm0962729\ttt1071875\tGhost Rider: Spirit of Vengeance\t2011\t4.3\t97678\t96\tAction,Fantasy,Thriller\tBrian Taylor\nnm0962729\ttt1034032\tGamer\t2009\t5.8\t120766\t95\tAction,Sci-Fi,Thriller\tBrian Taylor\nnm0962729\ttt1121931\tCrank: High Voltage\t2009\t6.2\t125119\t96\tAction,Crime,Thriller\tBrian Taylor\nnm0962729\ttt0479884\tCrank\t2006\t7.0\t213010\t88\tAction,Crime,Thriller\tBrian Taylor\nnm1294961\ttt0433362\tDaybreakers\t2009\t6.5\t112781\t98\tAction,Fantasy,Horror\tMichael Spierig\nnm1294961\ttt3348730\tJigsaw\t2017\t5.8\t41688\t92\tCrime,Horror,Mystery\tMichael Spierig\nnm1294961\ttt0339840\tUndead\t2003\t5.5\t11955\t104\tAction,Comedy,Horror\tMichael Spierig\nnm1294961\ttt2397535\tPredestination\t2014\t7.5\t207873\t97\tDrama,Mystery,Sci-Fi\tMichael Spierig\nnm1436693\ttt3801314\tKaththi\t2014\t8.0\t13945\t166\tAction,Drama\tA.R. Murugadoss\nnm1436693\ttt2556308\tHoliday\t2014\t7.4\t20851\t160\tAction,Crime,Thriller\tA.R. Murugadoss\nnm1436693\ttt1166100\tGhajini\t2008\t7.3\t46790\t183\tAction,Drama,Mystery\tA.R. Murugadoss\nnm1436693\ttt2187153\tThuppakki\t2012\t7.9\t19551\t165\tAction,Thriller\tA.R. Murugadoss\nnm1560977\ttt1365050\tBeasts of No Nation\t2015\t7.8\t56692\t137\tDrama,War\tCary Joji Fukunaga\nnm1560977\ttt1229822\tJane Eyre\t2011\t7.4\t71027\t120\tDrama,Romance\tCary Joji Fukunaga\nnm1560977\ttt1127715\tSin Nombre\t2009\t7.6\t28229\t96\tAdventure,Crime,Drama\tCary Joji Fukunaga\nnm1956691\ttt1715873\t10 Years\t2011\t6.1\t21308\t100\tComedy,Drama,Romance\tJamie Linden\nnm1996918\ttt2171867\tEmpire State\t2013\t5.2\t16714\t94\tAction,Crime,Drama\tDito Montiel\nnm1996918\ttt1082601\tFighting\t2009\t5.6\t29608\t105\tAction,Drama,Sport\tDito Montiel\nnm1996918\ttt1535612\tThe Son of No One\t2011\t5.1\t15279\t90\tCrime,Drama,Thriller\tDito Montiel\nnm1996918\ttt0473488\tA Guide to Recognizing Your Saints\t2006\t7.0\t23338\t100\tCrime,Drama\tDito Montiel\nnm2095817\ttt1197628\tObserve and Report\t2009\t5.8\t55342\t86\tAction,Comedy,Crime\tJody Hill\nnm2095817\ttt0492619\tThe Foot Fist Way\t2006\t6.4\t10171\t85\tComedy\tJody Hill\nnm2123102\ttt2126235\tCollide\t2016\t5.7\t11409\t99\tAction,Crime,Thriller\tEran Creevy\nnm2123102\ttt1684233\tWelcome to the Punch\t2013\t6.1\t29551\t99\tAction,Crime,Thriller\tEran Creevy\nnm2419470\ttt2105044\tV/H/S\t2012\t5.8\t50121\t116\tHorror,Thriller\tTyler Gillett\nnm2419470\ttt2752758\tDevil's Due\t2014\t4.1\t15019\t89\tHorror,Mystery,Thriller\tTyler Gillett\nnm0001382\ttt1183251\tBeyond a Reasonable Doubt\t2009\t5.9\t11401\t106\tCrime,Drama,Mystery\tPeter Hyams\nnm0001382\ttt0246544\tThe Musketeer\t2001\t4.7\t13340\t104\tAction,Adventure,Romance\tPeter Hyams\nnm0001382\ttt0318081\tA Sound of Thunder\t2005\t4.2\t17482\t101\tAction,Adventure,Horror\tPeter Hyams\nnm0001770\ttt1389096\tStand Up Guys\t2012\t6.5\t48822\t95\tAction,Comedy,Crime\tFisher Stevens\nnm0001770\ttt5929776\tBefore the Flood\t2016\t8.3\t20399\t96\tDocumentary,News\tFisher Stevens\nnm0067619\ttt1082853\tManagement\t2008\t5.9\t15799\t94\tComedy,Drama,Romance\tStephen Belber\nnm0080220\ttt0238936\tDevdas\t2002\t7.6\t31506\t185\tDrama,Musical,Romance\tSanjay Leela Bhansali\nnm0080220\ttt2215477\tGoliyon Ki Rasleela Ram-Leela\t2013\t6.4\t15179\t150\tDrama,Musical,Romance\tSanjay Leela Bhansali\nnm0080220\ttt0375611\tBlack\t2005\t8.2\t28942\t122\tDrama\tSanjay Leela Bhansali\nnm0080220\ttt3735246\tBajirao Mastani\t2015\t7.2\t25213\t158\tAction,Drama,History\tSanjay Leela Bhansali\nnm0080220\ttt1438298\tGuzaarish\t2010\t7.5\t14022\t126\tDrama\tSanjay Leela Bhansali\nnm0107774\ttt0289879\tThe Butterfly Effect\t2004\t7.7\t399161\t113\tSci-Fi,Thriller\tEric Bress\nnm0379237\ttt0333780\tLegally Blonde 2: Red, White & Blonde\t2003\t4.7\t52404\t95\tComedy\tCharles Herman-Wurmfeld\nnm0379237\ttt0264761\tKissing Jessica Stein\t2001\t6.6\t14815\t97\tComedy,Drama,Romance\tCharles Herman-Wurmfeld\nnm0662086\ttt1991245\tChernobyl Diaries\t2012\t5.0\t56950\t86\tHorror,Mystery,Thriller\tBradley Parker\nnm0701245\ttt0804492\tThe Hottie & the Nottie\t2008\t1.9\t34514\t91\tComedy,Romance\tTom Putnam\nnm0757858\ttt0438097\tIce Age: The Meltdown\t2006\t6.8\t219139\t91\tAction,Adventure,Animation\tCarlos Saldanha\nnm0757858\ttt1080016\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tCarlos Saldanha\nnm0757858\ttt0268380\tIce Age\t2002\t7.5\t370796\t81\tAdventure,Animation,Comedy\tCarlos Saldanha\nnm0757858\ttt3411444\tFerdinand\t2017\t6.7\t23296\t108\tAdventure,Animation,Comedy\tCarlos Saldanha\nnm0757858\ttt2357291\tRio 2\t2014\t6.3\t66877\t101\tAdventure,Animation,Comedy\tCarlos Saldanha\nnm0757858\ttt0358082\tRobots\t2005\t6.3\t115315\t91\tAdventure,Animation,Comedy\tCarlos Saldanha\nnm0757858\ttt1436562\tRio\t2011\t6.9\t181628\t96\tAdventure,Animation,Comedy\tCarlos Saldanha\nnm0838374\ttt0264323\t2001 Maniacs\t2005\t5.4\t10989\t87\tComedy,Horror\tTim Sullivan\nnm0923330\ttt1435513\tHysteria\t2011\t6.7\t27884\t100\tComedy,Romance\tTanya Wexler\nnm1142073\ttt4547056\tThe Girl with All the Gifts\t2016\t6.7\t39041\t111\tDrama,Horror,Thriller\tColm McCarthy\nnm1167933\ttt3011894\tWild Tales\t2014\t8.1\t132554\t122\tComedy,Drama,Thriller\tDamián Szifron\nnm1503403\ttt0390384\tPrimer\t2004\t6.9\t84505\t77\tDrama,Sci-Fi,Thriller\tShane Carruth\nnm1503403\ttt2084989\tUpstream Color\t2013\t6.7\t26847\t96\tDrama,Sci-Fi\tShane Carruth\nnm1823264\ttt3704538\tV/H/S Viral\t2014\t4.2\t12880\t81\tHorror,Thriller\tAaron Moorhead\nnm1823264\ttt3395184\tSpring\t2014\t6.7\t18306\t109\tComedy,Horror,Romance\tAaron Moorhead\nnm2274197\ttt3612032\tWrong Turn 6: Last Resort\t2014\t4.3\t10171\t91\tHorror\tValeri Milev\nnm0119613\ttt1032819\tPowder Blue\t2009\t6.3\t13062\t106\tDrama\tTimothy Linh Bui\nnm0127373\ttt0258038\tPootie Tang\t2001\t5.2\t12295\t81\tAction,Adventure,Comedy\tLouis C.K.\nnm0201283\ttt0437179\tSee No Evil\t2006\t5.1\t23596\t84\tAction,Horror,Thriller\tGregory Dark\nnm0310673\ttt3077214\tSuffragette\t2015\t6.9\t30948\t106\tBiography,Drama,History\tSarah Gavron\nnm0386246\ttt1187043\t3 Idiots\t2009\t8.4\t269648\t170\tComedy,Drama\tRajkumar Hirani\nnm0386246\ttt0374887\tMunna Bhai M.B.B.S.\t2003\t8.2\t58261\t156\tComedy,Drama,Musical\tRajkumar Hirani\nnm0386246\ttt0456144\tLage Raho Munna Bhai\t2006\t8.1\t34759\t144\tComedy,Drama,Fantasy\tRajkumar Hirani\nnm0386246\ttt2338151\tPK\t2014\t8.2\t120754\t153\tComedy,Drama,Fantasy\tRajkumar Hirani\nnm0425843\ttt0121164\tCorpse Bride\t2005\t7.4\t212044\t77\tAnimation,Drama,Family\tMike Johnson\nnm0489453\ttt0338077\tGrind\t2003\t6.0\t10894\t105\tAdventure,Comedy,Sport\tCasey La Scala\nnm0776271\ttt0308506\tLike Mike\t2002\t5.2\t16629\t99\tComedy,Family,Fantasy\tJohn Schultz\nnm0776271\ttt0775552\tAliens in the Attic\t2009\t5.4\t18512\t86\tAdventure,Animation,Comedy\tJohn Schultz\nnm1194320\ttt3405236\tRaees\t2017\t7.0\t33535\t143\tAction,Crime,Thriller\tRahul Dholakia\nnm1837748\ttt2205697\tStuck in Love\t2012\t7.3\t75236\t97\tComedy,Drama,Romance\tJosh Boone\nnm1837748\ttt2582846\tThe Fault in Our Stars\t2014\t7.8\t292350\t126\tDrama,Romance\tJosh Boone\nnm3227090\ttt3783958\tLa La Land\t2016\t8.1\t367801\t128\tComedy,Drama,Music\tDamien Chazelle\nnm3227090\ttt2582802\tWhiplash\t2014\t8.5\t545483\t107\tDrama,Music\tDamien Chazelle\nnm0000123\ttt0433383\tGood Night, and Good Luck.\t2005\t7.5\t88093\t93\tBiography,Drama,History\tGeorge Clooney\nnm0000123\ttt1124035\tThe Ides of March\t2011\t7.1\t201937\t101\tDrama,Thriller\tGeorge Clooney\nnm0000123\ttt0491175\tSuburbicon\t2017\t5.5\t19733\t105\tCrime,Drama,Mystery\tGeorge Clooney\nnm0000123\ttt2177771\tThe Monuments Men\t2014\t6.1\t112727\t118\tDrama,History,War\tGeorge Clooney\nnm0000123\ttt0379865\tLeatherheads\t2008\t6.0\t29181\t114\tComedy,Drama,Romance\tGeorge Clooney\nnm0000123\ttt0270288\tConfessions of a Dangerous Mind\t2002\t7.1\t76285\t113\tBiography,Comedy,Crime\tGeorge Clooney\nnm0000729\ttt1356864\tI'm Still Here\t2010\t6.2\t17603\t108\tComedy,Drama,Music\tCasey Affleck\nnm0001566\ttt0472062\tCharlie Wilson's War\t2007\t7.1\t96301\t102\tBiography,Comedy,Drama\tMike Nichols\nnm0001566\ttt0376541\tCloser\t2004\t7.3\t182274\t104\tDrama,Romance\tMike Nichols\nnm0003697\ttt0405094\tThe Lives of Others\t2006\t8.4\t300857\t137\tDrama,Thriller\tFlorian Henckel von Donnersmarck\nnm0003697\ttt1243957\tThe Tourist\t2010\t6.0\t195951\t103\tAction,Adventure,Crime\tFlorian Henckel von Donnersmarck\nnm0006846\ttt4633690\tShot Caller\t2017\t7.3\t44487\t121\tCrime,Drama,Thriller\tRic Roman Waugh\nnm0006846\ttt0882977\tSnitch\t2013\t6.5\t71531\t112\tAction,Drama,Thriller\tRic Roman Waugh\nnm0006846\ttt1117385\tFelon\t2008\t7.5\t70640\t104\tCrime,Drama\tRic Roman Waugh\nnm0093051\ttt2368553\tAssault on Wall Street\t2013\t6.1\t18383\t99\tAction,Crime,Thriller\tUwe Boll\nnm0093051\ttt0486640\tPostal\t2007\t4.5\t21019\t100\tAction,Comedy,Thriller\tUwe Boll\nnm0093051\ttt0369226\tAlone in the Dark\t2005\t2.3\t39438\t96\tAction,Horror,Sci-Fi\tUwe Boll\nnm0093051\ttt0460780\tIn the Name of the King: A Dungeon Siege Tale\t2007\t3.8\t40597\t127\tAction,Adventure,Fantasy\tUwe Boll\nnm0093051\ttt0383222\tBloodRayne\t2005\t2.9\t31838\t95\tAction,Adventure,Fantasy\tUwe Boll\nnm0093051\ttt0400426\tFar Cry\t2008\t3.1\t12063\t95\tAction,Adventure,Sci-Fi\tUwe Boll\nnm0093051\ttt1337057\tRampage\t2009\t6.3\t16527\t85\tAction,Crime,Thriller\tUwe Boll\nnm0093051\ttt0317676\tHouse of the Dead\t2003\t2.0\t33739\t90\tAction,Adventure,Horror\tUwe Boll\nnm0146991\ttt1545759\tPoint Blank\t2010\t6.8\t12298\t81\tAction,Crime,Drama\tFred Cavayé\nnm0278181\ttt0299172\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\nnm0373571\ttt1135525\tThe Slammin' Salmon\t2009\t6.5\t11610\t90\tComedy\tKevin Heffernan\nnm0571098\ttt0366780\tMirrormask\t2005\t6.9\t21209\t101\tAdventure,Fantasy\tDave McKean\nnm0612487\ttt0437405\tPaper Man\t2009\t6.6\t16772\t110\tComedy,Drama\tKieran Mulroney\nnm0637497\ttt5541240\tTo the Bone\t2017\t6.9\t25665\t107\tDrama\tMarti Noxon\nnm0784061\ttt0479997\tSeason of the Witch\t2011\t5.4\t82240\t95\tAction,Adventure,Fantasy\tDominic Sena\nnm0784061\ttt0244244\tSwordfish\t2001\t6.5\t164238\t99\tAction,Crime,Thriller\tDominic Sena\nnm0784061\ttt0365929\tWhiteout\t2009\t5.5\t34267\t101\tAction,Crime,Horror\tDominic Sena\nnm0784061\ttt0187078\tGone in Sixty Seconds\t2000\t6.5\t236124\t118\tAction,Crime,Thriller\tDominic Sena\nnm1000113\ttt2561572\tGet Hard\t2015\t6.0\t103436\t100\tComedy,Crime\tEtan Cohen\nnm1223381\ttt1772250\tThe Hidden Face\t2011\t7.4\t27293\t97\tDrama,Mystery,Thriller\tAndrés Baiz\nnm1509613\ttt2262227\tThe Book of Life\t2014\t7.3\t55734\t95\tAdventure,Animation,Comedy\tJorge R. Gutiérrez\nnm1512910\ttt0945513\tSource Code\t2011\t7.5\t428577\t93\tMystery,Romance,Sci-Fi\tDuncan Jones\nnm1512910\ttt1182345\tMoon\t2009\t7.9\t294632\t97\tDrama,Mystery,Sci-Fi\tDuncan Jones\nnm1512910\ttt0803096\tWarcraft\t2016\t6.9\t208946\t123\tAction,Adventure,Fantasy\tDuncan Jones\nnm2908199\ttt2261287\tLeap!\t2016\t6.8\t13219\t89\tAdventure,Animation,Comedy\tÉric Warin\nnm0001570\ttt0171433\tKeeping the Faith\t2000\t6.4\t46863\t128\tComedy,Drama,Romance\tEdward Norton\nnm0164187\ttt0242193\tBully\t2001\t7.0\t31341\t108\tBiography,Crime,Drama\tLarry Clark\nnm0164187\ttt0209077\tKen Park\t2002\t5.9\t26680\t93\tDrama\tLarry Clark\nnm0164929\ttt1126596\tAdulthood\t2008\t6.7\t10788\t99\tCrime,Drama\tNoel Clarke\nnm0281945\ttt0988595\t27 Dresses\t2008\t6.1\t137234\t111\tComedy,Romance\tAnne Fletcher\nnm0281945\ttt1041829\tThe Proposal\t2009\t6.7\t255414\t108\tComedy,Drama,Romance\tAnne Fletcher\nnm0281945\ttt2967224\tHot Pursuit\t2015\t5.1\t42098\t87\tAction,Comedy,Crime\tAnne Fletcher\nnm0281945\ttt1694020\tThe Guilt Trip\t2012\t5.8\t32637\t95\tComedy,Drama\tAnne Fletcher\nnm0281945\ttt0462590\tStep Up\t2006\t6.5\t100158\t104\tCrime,Drama,Music\tAnne Fletcher\nnm0402995\ttt0245803\tBulletproof Monk\t2003\t5.5\t44640\t104\tAction,Comedy,Fantasy\tPaul Hunter\nnm0424800\ttt0443632\tThe Sentinel\t2006\t6.1\t44728\t108\tAction,Crime,Thriller\tClark Johnson\nnm0424800\ttt0257076\tS.W.A.T.\t2003\t6.0\t127524\t117\tAction,Adventure,Crime\tClark Johnson\nnm0815070\ttt4209788\tMolly's Game\t2017\t7.5\t54399\t140\tBiography,Crime,Drama\tAaron Sorkin\nnm0958387\ttt0250687\tRat Race\t2001\t6.4\t99244\t112\tAdventure,Comedy\tJerry Zucker\nnm1071898\ttt1468846\tGet a Job\t2016\t5.3\t17796\t83\tComedy\tDylan Kidd\nnm1071898\ttt0299117\tRoger Dodger\t2002\t7.0\t15983\t106\tComedy,Drama\tDylan Kidd\nnm1442514\ttt4849438\tBaahubali 2: The Conclusion\t2017\t8.4\t56146\t167\tAction,Drama,Fantasy\tS.S. Rajamouli\nnm1442514\ttt2258337\tEega\t2012\t7.8\t17115\t145\tAction,Comedy,Fantasy\tS.S. Rajamouli\nnm1442514\ttt1447500\tMagadheera\t2009\t7.7\t14020\t147\tAction,Drama,Fantasy\tS.S. Rajamouli\nnm1442514\ttt2631186\tBaahubali: The Beginning\t2015\t8.2\t85674\t159\tAction,Adventure,Drama\tS.S. Rajamouli\nnm1991847\ttt6214928\t1922\t2017\t6.3\t23633\t102\tCrime,Drama,Mystery\tZak Hilditch\nnm1991847\ttt2268458\tThese Final Hours\t2013\t6.7\t13368\t87\tDrama,Sci-Fi,Thriller\tZak Hilditch\nnm2284484\ttt1470827\tMonsters\t2010\t6.4\t81974\t94\tDrama,Sci-Fi,Thriller\tGareth Edwards\nnm2284484\ttt0831387\tGodzilla\t2014\t6.4\t330992\t123\tAction,Adventure,Sci-Fi\tGareth Edwards\nnm2284484\ttt3748528\tRogue One: A Star Wars Story\t2016\t7.8\t419741\t133\tAction,Adventure,Sci-Fi\tGareth Edwards\nnm2556572\ttt1527788\tThe Man from Nowhere\t2010\t7.8\t51034\t119\tAction,Crime,Thriller\tJeong-beom Lee\nnm0000914\ttt0308383\tThe Human Stain\t2003\t6.3\t27077\t106\tDrama,Romance,Thriller\tRobert Benton\nnm0000914\ttt0800027\tFeast of Love\t2007\t6.7\t15046\t97\tDrama,Romance\tRobert Benton\nnm0001239\ttt0184858\tReindeer Games\t2000\t5.7\t33822\t104\tAction,Adventure,Crime\tJohn Frankenheimer\nnm0152312\ttt1217209\tBrave\t2012\t7.1\t313479\t93\tAdventure,Animation,Comedy\tBrenda Chapman\nnm0359387\ttt0318974\tThe Alamo\t2004\t6.0\t17922\t137\tDrama,History,War\tJohn Lee Hancock\nnm0359387\ttt2140373\tSaving Mr. Banks\t2013\t7.5\t131927\t125\tBiography,Comedy,Drama\tJohn Lee Hancock\nnm0359387\ttt0878804\tThe Blind Side\t2009\t7.7\t250948\t129\tBiography,Drama,Sport\tJohn Lee Hancock\nnm0359387\ttt4276820\tThe Founder\t2016\t7.2\t80005\t115\tBiography,Drama,History\tJohn Lee Hancock\nnm0359387\ttt0265662\tThe Rookie\t2002\t7.0\t28680\t127\tDrama,Family,Sport\tJohn Lee Hancock\nnm0562266\ttt0366627\tThe Jacket\t2005\t7.1\t100160\t103\tDrama,Fantasy,Horror\tJohn Maybury\nnm0562266\ttt0819714\tThe Edge of Love\t2008\t6.3\t14799\t110\tBiography,Drama,Romance\tJohn Maybury\nnm0576559\ttt3449292\tManjhi: The Mountain Man\t2015\t8.0\t14625\t120\tAdventure,Biography,Drama\tKetan Mehta\nnm0585011\ttt4411596\tMy Cousin Rachel\t2017\t6.0\t11908\t106\tDrama,Mystery,Romance\tRoger Michell\nnm0585011\ttt1477855\tHyde Park on Hudson\t2012\t5.9\t10231\t94\tBiography,Comedy,Drama\tRoger Michell\nnm0585011\ttt1126618\tMorning Glory\t2010\t6.5\t63994\t107\tComedy,Drama,Romance\tRoger Michell\nnm0585011\ttt0264472\tChanging Lanes\t2002\t6.5\t61527\t98\tDrama,Thriller\tRoger Michell\nnm0585011\ttt0489327\tVenus\t2006\t7.1\t11720\t95\tComedy,Drama,Romance\tRoger Michell\nnm0881038\ttt0180052\tThe Adventures of Pluto Nash\t2002\t3.8\t21679\t95\tAction,Comedy,Sci-Fi\tRon Underwood\nnm0887452\ttt0926762\tLoft\t2008\t7.4\t17229\t118\tCrime,Drama,Mystery\tErik Van Looy\nnm0887452\ttt1850397\tThe Loft\t2014\t6.3\t43107\t108\tMystery,Romance,Thriller\tErik Van Looy\nnm1322477\ttt4434004\tUdta Punjab\t2016\t7.8\t20109\t148\tAction,Crime,Drama\tAbhishek Chaubey\nnm1530422\ttt0892899\tOutpost\t2008\t5.9\t14884\t90\tAction,Horror,Sci-Fi\tSteve Barker\nnm2067421\ttt3504048\tHousebound\t2014\t6.8\t28298\t107\tComedy,Horror,Mystery\tGerard Johnstone\nnm2214893\ttt0790623\tMeet Bill\t2007\t6.3\t18495\t93\tComedy,Drama\tMelisa Wallack\nnm3393440\ttt1410051\tRetreat\t2011\t5.8\t10106\t90\tDrama,Thriller\tCarl Tibbetts\nnm3613566\ttt5700672\tTrain to Busan\t2016\t7.5\t86601\t118\tAction,Horror,Thriller\tSang-ho Yeon\nnm3868633\ttt3086442\tGoodnight Mommy\t2014\t6.7\t31672\t99\tHorror,Mystery,Thriller\tSeverin Fiala\nnm4342198\ttt4195278\tTelling Tales\t2015\t7.8\t11555\t103\tComedy,Fantasy,Romance\tBurak Aksak\nnm0004303\ttt0468565\tTsotsi\t2005\t7.3\t26155\t94\tCrime,Drama\tGavin Hood\nnm0004303\ttt2057392\tEye in the Sky\t2015\t7.3\t66481\t102\tDrama,Thriller,War\tGavin Hood\nnm0004303\ttt0458525\tX-Men Origins: Wolverine\t2009\t6.6\t409703\t107\tAction,Adventure,Sci-Fi\tGavin Hood\nnm0004303\ttt1731141\tEnder's Game\t2013\t6.7\t202669\t114\tAction,Fantasy,Sci-Fi\tGavin Hood\nnm0004303\ttt0804522\tRendition\t2007\t6.8\t50512\t122\tDrama,Thriller\tGavin Hood\nnm0179023\ttt0249380\tRape Me\t2000\t4.5\t15489\t77\tCrime,Drama,Thriller\tCoralie\nnm0437625\ttt0386064\tTae Guk Gi: The Brotherhood of War\t2004\t8.1\t34451\t140\tAction,Drama,War\tJe-kyu Kang\nnm0566788\ttt1591479\tAct of Valor\t2012\t6.5\t61855\t110\tAction,Adventure,Drama\tMike McCoy\nnm1360702\ttt1656192\tSpecial Forces\t2011\t6.4\t16245\t109\tAction,Drama,War\tStéphane Rybojad\nnm1783265\ttt1431045\tDeadpool\t2016\t8.0\t716812\t108\tAction,Adventure,Comedy\tTim Miller\nnm1918538\ttt0844993\tHoodwinked Too! Hood vs. Evil\t2011\t4.8\t10616\t86\tAction,Animation,Comedy\tMike Disa\nnm3146718\ttt2281159\tContracted\t2013\t5.3\t12486\t84\tDrama,Horror,Thriller\tEric England\nnm3311094\ttt1979319\tRurouni Kenshin: Origins\t2012\t7.6\t17098\t134\tAction,Drama,History\tKeishi Ohtomo\nnm0000128\ttt3007512\tThe Water Diviner\t2014\t7.1\t63322\t111\tDrama,History,War\tRussell Crowe\nnm0001756\ttt0120912\tMen in Black II\t2002\t6.1\t292356\t88\tAction,Adventure,Comedy\tBarry Sonnenfeld\nnm0001756\ttt0246464\tBig Trouble\t2002\t6.5\t18444\t85\tComedy,Crime,Thriller\tBarry Sonnenfeld\nnm0001756\ttt4383594\tNine Lives\t2016\t5.3\t16171\t87\tComedy,Drama,Family\tBarry Sonnenfeld\nnm0001756\ttt1409024\tMen in Black 3\t2012\t6.8\t290598\t106\tAction,Adventure,Comedy\tBarry Sonnenfeld\nnm0001756\ttt0449089\tRV\t2006\t5.5\t50434\t99\tAdventure,Comedy,Family\tBarry Sonnenfeld\nnm0032925\ttt2668134\tHarlock: Space Pirate\t2013\t6.5\t10114\t115\tAdventure,Animation,Sci-Fi\tShinji Aramaki\nnm0032925\ttt0401233\tAppleseed\t2004\t7.0\t16583\t101\tAction,Animation,Drama\tShinji Aramaki\nnm0366004\ttt0144084\tAmerican Psycho\t2000\t7.6\t404198\t102\tCrime,Drama\tMary Harron\nnm0755261\ttt0221218\tThe Glass House\t2001\t5.8\t27783\t106\tCrime,Drama,Mystery\tDaniel Sackheim\nnm0817895\ttt3210686\tSon of God\t2014\t5.7\t16969\t138\tBiography,Drama,History\tChristopher Spencer\nnm0824220\ttt1303828\tDefendor\t2009\t6.8\t33316\t101\tComedy,Crime,Drama\tPeter Stebbings\nnm1349040\ttt1153706\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\tDamien Dante Wayans\nnm1571761\ttt1639084\tTallulah\t2016\t6.7\t12722\t111\tComedy,Drama,Romance\tSian Heder\nnm1618276\ttt1016301\tFermat's Room\t2007\t6.7\t16268\t89\tMystery,Thriller\tLuis Piedrahita\nnm2543774\ttt2275946\tRedirected\t2014\t6.7\t32016\t99\tAction,Comedy,Crime\tEmilis Velyvis\nnm5820154\ttt3072482\tHardcore Henry\t2015\t6.7\t69234\t96\tAction,Adventure,Sci-Fi\tIlya Naishuller\nnm0090066\ttt0326769\tBiker Boyz\t2003\t4.6\t11710\t110\tAction,Drama\tReggie Rock Bythewood\nnm0151540\ttt0377818\tThe Dukes of Hazzard\t2005\t5.1\t70372\t104\tAction,Adventure,Comedy\tJay Chandrasekhar\nnm0151540\ttt0331953\tClub Dread\t2004\t5.7\t25608\t104\tComedy,Horror,Mystery\tJay Chandrasekhar\nnm0151540\ttt0247745\tSuper Troopers\t2001\t7.1\t83807\t100\tComedy,Crime,Mystery\tJay Chandrasekhar\nnm0151540\ttt0486551\tBeerfest\t2006\t6.3\t58398\t110\tComedy\tJay Chandrasekhar\nnm0564827\ttt0327137\tSecondhand Lions\t2003\t7.6\t46726\t111\tComedy,Drama,Family\tTim McCanlies\nnm1679136\ttt1181795\tBunraku\t2010\t6.2\t17803\t124\tAction,Drama,Fantasy\tGuy Moshe\nnm2676052\ttt1483013\tOblivion\t2013\t7.0\t430477\t124\tAction,Adventure,Mystery\tJoseph Kosinski\nnm2676052\ttt3829920\tOnly the Brave\t2017\t7.7\t26139\t134\tBiography,Drama\tJoseph Kosinski\nnm2676052\ttt1104001\tTRON: Legacy\t2010\t6.8\t284684\t125\tAction,Adventure,Sci-Fi\tJoseph Kosinski\nnm0000228\ttt0363473\tBeyond the Sea\t2004\t6.7\t13678\t118\tBiography,Drama,Music\tKevin Spacey\nnm0041864\ttt0810988\tThe Nines\t2007\t6.4\t30426\t100\tDrama,Fantasy,Mystery\tJohn August\nnm0279729\ttt3014284\tThe LEGO Ninjago Movie\t2017\t6.0\t12812\t101\tAction,Adventure,Animation\tPaul Fisher\nnm0330140\ttt0286788\tWhat a Girl Wants\t2003\t5.8\t52474\t105\tComedy,Drama,Family\tDennie Gordon\nnm0330140\ttt0245686\tJoe Dirt\t2001\t5.9\t45321\t91\tAdventure,Comedy,Drama\tDennie Gordon\nnm0330140\ttt0363282\tNew York Minute\t2004\t4.9\t19256\t91\tComedy,Crime,Family\tDennie Gordon\nnm0583654\ttt5719700\tHome Again\t2017\t5.7\t15307\t97\tComedy,Drama,Romance\tHallie Meyers-Shyer\nnm0736622\ttt2788710\tThe Interview\t2014\t6.6\t274007\t112\tComedy\tSeth Rogen\nnm0736622\ttt1245492\tThis Is the End\t2013\t6.6\t343715\t107\tComedy,Fantasy\tSeth Rogen\nnm0777300\ttt1663143\tFun Size\t2012\t5.4\t12352\t86\tAdventure,Comedy\tJosh Schwartz\nnm0999118\ttt2321405\tMy Life as a Zucchini\t2016\t7.8\t13211\t66\tAnimation,Comedy,Drama\tMichael Sinterniklaas\nnm1085270\ttt1715336\tAnna\t2013\t6.5\t17895\t99\tDrama,Mystery,Sci-Fi\tJorge Dorado\nnm1226290\ttt0275083\tThe Warrior\t2001\t7.2\t10283\t158\tAction,Drama,History\tSung-su Kim\nnm1306443\ttt0896534\tDeadgirl\t2008\t5.7\t16882\t101\tHorror\tMarcel Sarmiento\nnm1306443\ttt3704538\tV/H/S Viral\t2014\t4.2\t12880\t81\tHorror,Thriller\tMarcel Sarmiento\nnm1306443\ttt1935896\tThe ABCs of Death\t2012\t4.7\t16073\t129\tComedy,Horror\tMarcel Sarmiento\nnm3235877\ttt2326554\tA Girl Walks Home Alone at Night\t2014\t7.0\t24191\t101\tDrama,Horror\tAna Lily Amirpour\nnm3235877\ttt4334266\tThe Bad Batch\t2016\t5.3\t15098\t118\tDrama,Horror,Romance\tAna Lily Amirpour\nnm0064741\ttt1588337\tOf Gods and Men\t2010\t7.2\t13508\t122\tDrama,History\tXavier Beauvois\nnm0235719\ttt1314655\tDevil\t2010\t6.2\t116095\t80\tHorror,Mystery,Thriller\tJohn Erick Dowdle\nnm0235719\ttt1082868\tQuarantine\t2008\t6.0\t62494\t89\tHorror,Thriller\tJohn Erick Dowdle\nnm0235719\ttt1781922\tNo Escape\t2015\t6.8\t64736\t103\tAction,Thriller\tJohn Erick Dowdle\nnm0235719\ttt2870612\tAs Above, So Below\t2014\t6.2\t59980\t93\tHorror,Mystery,Thriller\tJohn Erick Dowdle\nnm0235719\ttt1010271\tThe Poughkeepsie Tapes\t2007\t6.1\t11457\t81\tHorror,Mystery,Thriller\tJohn Erick Dowdle\nnm0250410\ttt0443536\tHoodwinked!\t2005\t6.5\t50203\t80\tAction,Animation,Comedy\tTodd Edwards\nnm0506613\ttt2234155\tThe Internship\t2013\t6.3\t172990\t119\tComedy\tShawn Levy\nnm0506613\ttt1078912\tNight at the Museum: Battle of the Smithsonian\t2009\t5.9\t148989\t105\tAdventure,Comedy,Family\tShawn Levy\nnm0506613\ttt1371150\tThis Is Where I Leave You\t2014\t6.6\t61774\t103\tComedy,Drama\tShawn Levy\nnm0506613\ttt0305711\tJust Married\t2003\t5.5\t61837\t95\tComedy,Romance\tShawn Levy\nnm0506613\ttt1279935\tDate Night\t2010\t6.3\t138697\t88\tComedy,Crime,Romance\tShawn Levy\nnm0506613\ttt0477347\tNight at the Museum\t2006\t6.4\t267365\t108\tAdventure,Comedy,Family\tShawn Levy\nnm0506613\ttt0265298\tBig Fat Liar\t2002\t5.4\t31267\t88\tAdventure,Comedy,Family\tShawn Levy\nnm0506613\ttt0433035\tReal Steel\t2011\t7.1\t274197\t127\tAction,Drama,Family\tShawn Levy\nnm0506613\ttt2692250\tNight at the Museum: Secret of the Tomb\t2014\t6.2\t82732\t98\tAdventure,Comedy,Family\tShawn Levy\nnm0506613\ttt0349205\tCheaper by the Dozen\t2003\t5.8\t82745\t98\tComedy,Family\tShawn Levy\nnm0506613\ttt0383216\tThe Pink Panther\t2006\t5.6\t72051\t93\tAdventure,Comedy,Crime\tShawn Levy\nnm0533284\ttt0289635\tYoung Adam\t2003\t6.5\t12249\t98\tCrime,Drama\tDavid Mackenzie\nnm0533284\ttt1186370\tSpread\t2009\t5.9\t34997\t97\tComedy,Drama,Romance\tDavid Mackenzie\nnm0533284\ttt2567712\tStarred Up\t2013\t7.4\t37078\t106\tCrime,Drama\tDavid Mackenzie\nnm0533284\ttt0466816\tHallam Foe\t2007\t7.0\t11526\t95\tDrama,Mystery,Romance\tDavid Mackenzie\nnm0533284\ttt2582782\tHell or High Water\t2016\t7.6\t151714\t102\tCrime,Drama,Thriller\tDavid Mackenzie\nnm0533284\ttt1439572\tPerfect Sense\t2011\t7.1\t48291\t92\tDrama,Romance,Sci-Fi\tDavid Mackenzie\nnm0687913\ttt0401711\tParis, je t'aime\t2006\t7.3\t66241\t120\tComedy,Drama,Romance\tBruno Podalydès\nnm0828099\ttt0448075\tThe Night Listener\t2006\t5.9\t13624\t91\tCrime,Mystery,Thriller\tPatrick Stettner\nnm0833889\ttt1268799\tA Very Harold & Kumar 3D Christmas\t2011\t6.3\t59789\t90\tAdventure,Comedy\tTodd Strauss-Schulson\nnm0833889\ttt2118624\tThe Final Girls\t2015\t6.6\t27085\t88\tComedy,Horror\tTodd Strauss-Schulson\nnm1077275\ttt1536410\tFaces in the Crowd\t2011\t5.8\t16975\t103\tCrime,Drama,Mystery\tJulien Magnat\nnm1637474\ttt1996264\tFor a Good Time, Call...\t2012\t6.0\t14563\t85\tComedy\tJamie Travis\nnm1823227\ttt0486358\tJesus Camp\t2006\t7.5\t24575\t84\tDocumentary\tRachel Grady\nnm4333222\ttt2212008\tThe Bag Man\t2014\t5.3\t14744\t108\tCrime,Drama,Thriller\tDavid Grovic\nnm0106230\ttt0351977\tWalking Tall\t2004\t6.2\t58733\t86\tAction,Crime\tKevin Bray\nnm0106230\ttt0278295\tAll About the Benjamins\t2002\t5.8\t10847\t95\tAction,Comedy,Crime\tKevin Bray\nnm0353673\ttt2343793\tThird Person\t2013\t6.4\t23550\t137\tDrama,Romance\tPaul Haggis\nnm0353673\ttt0478134\tIn the Valley of Elah\t2007\t7.2\t63911\t121\tCrime,Drama,Mystery\tPaul Haggis\nnm0353673\ttt1458175\tThe Next Three Days\t2010\t7.4\t159533\t133\tAction,Crime,Drama\tPaul Haggis\nnm0353673\ttt0375679\tCrash\t2004\t7.8\t387468\t112\tCrime,Drama,Thriller\tPaul Haggis\nnm0379179\ttt0914798\tThe Boy in the Striped Pajamas\t2008\t7.8\t156532\t94\tDrama,War\tMark Herman\nnm0922115\ttt1023500\tDoghouse\t2009\t6.1\t19571\t89\tComedy,Horror,Sci-Fi\tJake West\nnm0922115\ttt1935896\tThe ABCs of Death\t2012\t4.7\t16073\t129\tComedy,Horror\tJake West\nnm0998551\ttt0299172\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\nnm1100217\ttt3922798\tThe Siege of Jadotville\t2016\t7.3\t19570\t108\tAction,Drama,Thriller\tRichie Smyth\nnm1157527\ttt4481514\tThe House\t2017\t5.6\t23809\t88\tComedy\tAndrew Jay Cohen\nnm1199107\ttt1151922\tMiss March\t2009\t5.0\t19482\t90\tComedy,Romance\tZach Cregger\nnm1259604\ttt1391034\tAnd Soon the Darkness\t2010\t5.2\t14801\t91\tCrime,Horror,Mystery\tMarcos Efron\nnm1296554\ttt0462335\tHigh-Rise\t2015\t5.6\t30449\t119\tDrama\tBen Wheatley\nnm1296554\ttt4158096\tFree Fire\t2016\t6.4\t30139\t91\tAction,Comedy,Crime\tBen Wheatley\nnm1296554\ttt1788391\tKill List\t2011\t6.4\t30337\t95\tCrime,Drama,Horror\tBen Wheatley\nnm1296554\ttt2023690\tSightseers\t2012\t6.5\t23480\t88\tAdventure,Comedy,Crime\tBen Wheatley\nnm1296554\ttt1935896\tThe ABCs of Death\t2012\t4.7\t16073\t129\tComedy,Horror\tBen Wheatley\nnm1637865\ttt5065822\tRonaldo\t2015\t6.4\t12555\t102\tBiography,Documentary,Sport\tAnthony Wonke\nnm1918140\ttt3704538\tV/H/S Viral\t2014\t4.2\t12880\t81\tHorror,Thriller\tJustin Benson\nnm1918140\ttt3395184\tSpring\t2014\t6.7\t18306\t109\tComedy,Horror,Romance\tJustin Benson\nnm3094672\ttt0232500\tThe Fast and the Furious\t2001\t6.7\t303824\t106\tAction,Crime,Thriller\tMel City\nnm4363461\ttt1687247\tLife in a Day\t2011\t7.7\t14065\t95\tDocumentary,Drama\tClementine Isaac\nnm5986857\ttt5541848\tWhat the Health\t2017\t7.9\t20354\t97\tDocumentary\tKeegan Kuhn\nnm5986857\ttt3302820\tCowspiracy: The Sustainability Secret\t2014\t8.3\t15450\t85\tDocumentary\tKeegan Kuhn\nnm0000204\ttt0808399\tNew York, I Love You\t2008\t6.3\t41895\t103\tComedy,Drama,Romance\tNatalie Portman\nnm0000583\ttt0409182\tPoseidon\t2006\t5.6\t88303\t98\tAction,Adventure,Drama\tWolfgang Petersen\nnm0000583\ttt0177971\tThe Perfect Storm\t2000\t6.4\t141848\t130\tAction,Adventure,Drama\tWolfgang Petersen\nnm0000583\ttt0332452\tTroy\t2004\t7.2\t427174\t163\tDrama,History,Romance\tWolfgang Petersen\nnm0000709\ttt0162222\tCast Away\t2000\t7.8\t445063\t143\tAdventure,Drama,Romance\tRobert Zemeckis\nnm0000709\ttt0338348\tThe Polar Express\t2004\t6.6\t142555\t100\tAdventure,Animation,Family\tRobert Zemeckis\nnm0000709\ttt1907668\tFlight\t2012\t7.3\t287884\t138\tDrama,Thriller\tRobert Zemeckis\nnm0000709\ttt1067106\tA Christmas Carol\t2009\t6.8\t85144\t96\tAnimation,Drama,Family\tRobert Zemeckis\nnm0000709\ttt0442933\tBeowulf\t2007\t6.2\t150569\t115\tAction,Adventure,Animation\tRobert Zemeckis\nnm0000709\ttt3640424\tAllied\t2016\t7.1\t108947\t124\tAction,Drama,Romance\tRobert Zemeckis\nnm0000709\ttt0161081\tWhat Lies Beneath\t2000\t6.6\t105725\t130\tDrama,Fantasy,Horror\tRobert Zemeckis\nnm0000709\ttt3488710\tThe Walk\t2015\t7.3\t102158\t123\tAdventure,Biography,Crime\tRobert Zemeckis\nnm0065615\ttt0301357\tGood Bye Lenin!\t2003\t7.7\t124311\t121\tComedy,Drama,Romance\tWolfgang Becker\nnm0068587\ttt3882082\tThe Boy\t2016\t6.0\t59811\t97\tHorror,Mystery,Thriller\tWilliam Brent Bell\nnm0068587\ttt1560985\tThe Devil Inside\t2012\t4.2\t32378\t83\tHorror\tWilliam Brent Bell\nnm0068587\ttt0441796\tStay Alive\t2006\t5.1\t27477\t85\tFantasy,Horror,Sci-Fi\tWilliam Brent Bell\nnm0505183\ttt2799166\tThe Pyramid\t2014\t4.6\t20034\t89\tAction,Adventure,Horror\tGrégory Levasseur\nnm1443502\ttt5052448\tGet Out\t2017\t7.7\t296485\t104\tHorror,Mystery,Thriller\tJordan Peele\nnm1463981\ttt1322930\tAlone\t2008\t6.8\t15129\t113\tDrama,Romance\tÇagan Irmak\nnm1463981\ttt0476735\tMy Father and My Son\t2005\t8.5\t57777\t108\tDrama\tÇagan Irmak\nnm1715502\ttt1833673\tDhoom 3\t2013\t5.4\t37915\t172\tAction,Adventure,Thriller\tVijay Krishna Acharya\nnm0192845\ttt1423995\tStone\t2010\t5.4\t37377\t105\tDrama,Thriller\tJohn Curran\nnm0192845\ttt2167266\tTracks\t2013\t7.2\t23784\t112\tAdventure,Biography,Drama\tJohn Curran\nnm0192845\ttt0446755\tThe Painted Veil\t2006\t7.5\t83120\t125\tDrama,Romance\tJohn Curran\nnm0598671\ttt0358456\tEarthlings\t2005\t8.7\t14985\t95\tDocumentary,Horror\tShaun Monson\nnm0920108\ttt0328589\tUnder the Tuscan Sun\t2003\t6.8\t40466\t113\tComedy,Drama,Romance\tAudrey Wells\nnm0951975\ttt2494362\tBone Tomahawk\t2015\t7.1\t57778\t132\tAdventure,Drama,Horror\tS. Craig Zahler\nnm0951975\ttt5657856\tBrawl in Cell Block 99\t2017\t7.2\t30052\t132\tCrime,Drama\tS. Craig Zahler\nnm1196684\ttt2279373\tThe SpongeBob Movie: Sponge Out of Water\t2015\t6.0\t40237\t92\tAdventure,Animation,Comedy\tPaul Tibbitt\nnm1379002\ttt3235888\tIt Follows\t2014\t6.9\t160190\t100\tHorror,Mystery\tDavid Robert Mitchell\nnm1383079\ttt0435679\tKeith\t2008\t7.5\t32988\t93\tDrama,Romance\tTodd Kessler\nnm0000776\ttt0157583\tEnigma\t2001\t6.4\t18707\t119\tDrama,Mystery,Romance\tMichael Apted\nnm0000776\ttt0278435\tEnough\t2002\t5.7\t33972\t115\tCrime,Drama,Thriller\tMichael Apted\nnm0000776\ttt1734493\tUnlocked\t2017\t6.2\t16670\t98\tAction,Drama,Mystery\tMichael Apted\nnm0000776\ttt1629757\tChasing Mavericks\t2012\t7.2\t27819\t116\tBiography,Drama,Sport\tMichael Apted\nnm0000776\ttt0980970\tThe Chronicles of Narnia: The Voyage of the Dawn Treader\t2010\t6.3\t120440\t113\tAdventure,Family,Fantasy\tMichael Apted\nnm0000776\ttt0454776\tAmazing Grace\t2006\t7.5\t22273\t118\tBiography,Drama,History\tMichael Apted\nnm0001252\ttt0330099\tThe Brown Bunny\t2003\t5.0\t12414\t93\tDrama\tVincent Gallo\nnm0001281\ttt1912398\tGod Bless America\t2011\t7.2\t64232\t105\tComedy,Crime\tBobcat Goldthwait\nnm0001281\ttt1262981\tWorld's Greatest Dad\t2009\t6.9\t34288\t99\tComedy,Drama\tBobcat Goldthwait\nnm0088392\ttt1111833\tSuper High Me\t2007\t6.1\t12224\t94\tComedy,Documentary\tMichael Blieden\nnm0203993\ttt1700844\tThe Deep Blue Sea\t2011\t6.3\t12971\t98\tDrama,Romance\tTerence Davies\nnm0474955\ttt0997047\tCollege Road Trip\t2008\t4.3\t14097\t83\tAdventure,Comedy,Drama\tRoger Kumble\nnm0474955\ttt0433400\tJust Friends\t2005\t6.2\t91073\t96\tComedy,Romance\tRoger Kumble\nnm0474955\ttt0253867\tThe Sweetest Thing\t2002\t5.1\t49829\t88\tComedy,Romance\tRoger Kumble\nnm0474955\ttt0492389\tFurry Vengeance\t2010\t3.8\t13660\t92\tComedy,Family\tRoger Kumble\nnm0518644\ttt0408345\tFirewall\t2006\t5.8\t52486\t105\tCrime,Thriller\tRichard Loncraine\nnm0518644\ttt0360201\tWimbledon\t2004\t6.3\t55073\t98\tComedy,Romance,Sport\tRichard Loncraine\nnm0615780\ttt0133240\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tJohn Musker\nnm0615780\ttt3521164\tMoana\t2016\t7.6\t187394\t107\tAdventure,Animation,Comedy\tJohn Musker\nnm0615780\ttt0780521\tThe Princess and the Frog\t2009\t7.1\t101278\t97\tAdventure,Animation,Comedy\tJohn Musker\nnm0699932\ttt0995829\tXXY\t2007\t7.1\t11580\t86\tDrama,Romance\tLucía Puenzo\nnm0711807\ttt0808331\tJoshua\t2007\t5.9\t10796\t106\tDrama,Horror,Thriller\tGeorge Ratliff\nnm1228976\ttt1800741\tStep Up Revolution\t2012\t6.5\t49377\t99\tDrama,Music,Romance\tScott Speer\nnm0000200\ttt0388980\tThe Greatest Game Ever Played\t2005\t7.5\t24499\t120\tBiography,Drama,History\tBill Paxton\nnm0000200\ttt0264616\tFrailty\t2001\t7.3\t67410\t100\tCrime,Drama,Thriller\tBill Paxton\nnm0000631\ttt2193215\tThe Counselor\t2013\t5.3\t88554\t117\tCrime,Drama,Thriller\tRidley Scott\nnm0000631\ttt0172495\tGladiator\t2000\t8.5\t1126002\t155\tAction,Adventure,Drama\tRidley Scott\nnm0000631\ttt5294550\tAll the Money in the World\t2017\t6.9\t31740\t132\tBiography,Crime,Drama\tRidley Scott\nnm0000631\ttt0401445\tA Good Year\t2006\t6.9\t78602\t117\tComedy,Drama,Romance\tRidley Scott\nnm0000631\ttt1528100\tExodus: Gods and Kings\t2014\t6.0\t144484\t150\tAction,Adventure,Drama\tRidley Scott\nnm0000631\ttt0955308\tRobin Hood\t2010\t6.7\t229792\t140\tAction,Adventure,Drama\tRidley Scott\nnm0000631\ttt2316204\tAlien: Covenant\t2017\t6.5\t195805\t122\tHorror,Sci-Fi,Thriller\tRidley Scott\nnm0000631\ttt0758774\tBody of Lies\t2008\t7.1\t190311\t128\tAction,Drama,Romance\tRidley Scott\nnm0000631\ttt0325805\tMatchstick Men\t2003\t7.3\t114194\t116\tComedy,Crime,Drama\tRidley Scott\nnm0000631\ttt0765429\tAmerican Gangster\t2007\t7.8\t350486\t157\tBiography,Crime,Drama\tRidley Scott\nnm0000631\ttt1446714\tPrometheus\t2012\t7.0\t516484\t124\tAdventure,Mystery,Sci-Fi\tRidley Scott\nnm0000631\ttt0265086\tBlack Hawk Down\t2001\t7.7\t322764\t144\tDrama,History,War\tRidley Scott\nnm0000631\ttt0212985\tHannibal\t2001\t6.8\t226760\t131\tCrime,Drama,Thriller\tRidley Scott\nnm0000631\ttt3659388\tThe Martian\t2015\t8.0\t614914\t144\tAdventure,Drama,Sci-Fi\tRidley Scott\nnm0000631\ttt0320661\tKingdom of Heaven\t2005\t7.2\t239100\t144\tAction,Adventure,Drama\tRidley Scott\nnm0001068\ttt0335266\tLost in Translation\t2003\t7.8\t355487\t102\tDrama\tSofia Coppola\nnm0001068\ttt0422720\tMarie Antoinette\t2006\t6.4\t88778\t123\tBiography,Drama,History\tSofia Coppola\nnm0001068\ttt1421051\tSomewhere\t2010\t6.3\t38905\t97\tComedy,Drama\tSofia Coppola\nnm0001068\ttt5592248\tThe Beguiled\t2017\t6.4\t33818\t93\tDrama,Thriller\tSofia Coppola\nnm0001068\ttt2132285\tThe Bling Ring\t2013\t5.6\t74713\t90\tBiography,Crime,Drama\tSofia Coppola\nnm0001528\ttt2319580\tThe Grand Seduction\t2013\t7.0\t13537\t113\tComedy\tDon McKellar\nnm0002184\ttt2467046\tLeft Behind\t2014\t3.1\t29728\t110\tAction,Drama,Fantasy\tVic Armstrong\nnm0002645\ttt4901306\tPerfect Strangers\t2016\t7.8\t34094\t97\tComedy,Drama\tPaolo Genovese\nnm0004306\ttt1402488\tHappy Feet Two\t2011\t5.9\t36196\t100\tAdventure,Animation,Comedy\tGeorge Miller\nnm0004306\ttt0366548\tHappy Feet\t2006\t6.5\t148937\t108\tAdventure,Animation,Comedy\tGeorge Miller\nnm0004306\ttt1392190\tMad Max: Fury Road\t2015\t8.1\t707184\t120\tAction,Adventure,Sci-Fi\tGeorge Miller\nnm0006487\ttt0430308\tGet Rich or Die Tryin'\t2005\t5.2\t39654\t117\tBiography,Crime,Drama\tJim Sheridan\nnm0006487\ttt0765010\tBrothers\t2009\t7.1\t97916\t105\tDrama,Thriller,War\tJim Sheridan\nnm0006487\ttt0298845\tIn America\t2002\t7.8\t38244\t105\tDrama\tJim Sheridan\nnm0006487\ttt1462041\tDream House\t2011\t6.0\t56444\t84\tDrama,Mystery,Thriller\tJim Sheridan\nnm0152466\ttt1535970\tThe Ledge\t2011\t6.6\t17035\t101\tDrama,Romance,Thriller\tMatthew Chapman\nnm0336620\ttt1398426\tStraight Outta Compton\t2015\t7.9\t154718\t147\tBiography,Drama,History\tF. Gary Gray\nnm0336620\ttt4630562\tThe Fate of the Furious\t2017\t6.7\t158846\t136\tAction,Crime,Thriller\tF. Gary Gray\nnm0336620\ttt0266465\tA Man Apart\t2003\t6.1\t41043\t109\tAction,Crime,Drama\tF. Gary Gray\nnm0336620\ttt1197624\tLaw Abiding Citizen\t2009\t7.4\t238860\t109\tCrime,Drama,Thriller\tF. Gary Gray\nnm0336620\ttt0377471\tBe Cool\t2005\t5.7\t62755\t118\tComedy,Crime,Music\tF. Gary Gray\nnm0336620\ttt0317740\tThe Italian Job\t2003\t7.0\t309437\t111\tAction,Crime,Thriller\tF. Gary Gray\nnm0814469\ttt0312843\tSuicide Club\t2001\t6.6\t16473\t99\tCrime,Drama,Horror\tSion Sono\nnm0933471\ttt0830558\tThe Girl Next Door\t2007\t6.7\t20314\t91\tCrime,Drama,Horror\tGregory Wilson\nnm1055105\ttt0964516\tFashion\t2008\t7.0\t10409\t167\tDrama,Romance\tMadhur Bhandarkar\nnm1962313\ttt3447364\tDetective Byomkesh Bakshy!\t2015\t7.6\t12967\t139\tAction,Mystery,Thriller\tDibakar Banerjee\nnm1962313\ttt0466460\tKhosla Ka Ghosla!\t2006\t8.3\t17588\t135\tComedy,Crime,Drama\tDibakar Banerjee\nnm1962313\ttt1292703\tOye Lucky! Lucky Oye!\t2008\t7.8\t13318\t125\tComedy,Crime,Drama\tDibakar Banerjee\nnm2377436\ttt3672742\tTurbo Kid\t2015\t6.7\t21571\t93\tAction,Adventure,Comedy\tAnouk Whissell\nnm5722382\ttt2490326\tCooties\t2014\t5.7\t18834\t88\tAction,Comedy,Horror\tCary Murnion\nnm0001162\ttt0809504\tThe Accidental Husband\t2008\t5.6\t21102\t90\tComedy,Romance\tGriffin Dunne\nnm0001162\ttt1333125\tMovie 43\t2013\t4.3\t88078\t94\tComedy,Romance\tGriffin Dunne\nnm0376664\ttt1472584\tMax Steel\t2016\t4.6\t14954\t92\tAction,Adventure,Family\tStewart Hendler\nnm0376664\ttt1232783\tSorority Row\t2009\t5.1\t25829\t101\tHorror,Mystery\tStewart Hendler\nnm0604688\ttt0310357\tWillard\t2003\t6.2\t16092\t100\tDrama,Horror,Sci-Fi\tGlen Morgan\nnm0604688\ttt0454082\tBlack Christmas\t2006\t4.6\t21915\t84\tHorror\tGlen Morgan\n<!--TABLE_COMMENT-->\n<font color=red>Results are limited by 1000.</font>\n"}]},"apps":[],"jobName":"paragraph_1525239781838_-1669776372","id":"20180428-191218_1146719031","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:108","user":"anonymous","dateFinished":"2018-05-02T06:28:31+0000","dateStarted":"2018-05-02T06:26:54+0000"},{"title":"Joining Writer and directors","text":"%pyspark\n\nfinal = writerOutput.join(directorJoining, on='tconst')\n\ntable5 = final.toDF('tconst','title1','writeName','director','title','year','avgRating','votes','runtime','genre','directorName')\nz.show(table5)","dateUpdated":"2018-05-02T06:28:42+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"tconst\ttitle1\twriteName\tdirector\ttitle\tyear\tavgRating\tvotes\truntime\tgenre\tdirectorName\ntt0121766\tStar Wars: Episode III - Revenge of the Sith\tGeorge Lucas\tnm0000184\tStar Wars: Episode III - Revenge of the Sith\t2005\t7.6\t599275\t140\tAction,Adventure,Fantasy\tGeorge Lucas\ntt0133240\tTreasure Planet\tTed Elliott\tnm0615780\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tJohn Musker\ntt0133240\tTreasure Planet\tTed Elliott\tnm0166256\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tRon Clements\ntt0133240\tTreasure Planet\tJohn Musker\tnm0615780\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tJohn Musker\ntt0133240\tTreasure Planet\tJohn Musker\tnm0166256\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tRon Clements\ntt0133240\tTreasure Planet\tRob Edwards\tnm0615780\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tJohn Musker\ntt0133240\tTreasure Planet\tRob Edwards\tnm0166256\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tRon Clements\ntt0133240\tTreasure Planet\tRobert Louis Stevenson\tnm0615780\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tJohn Musker\ntt0133240\tTreasure Planet\tRobert Louis Stevenson\tnm0166256\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tRon Clements\ntt0133240\tTreasure Planet\tTerry Rossio\tnm0615780\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tJohn Musker\ntt0133240\tTreasure Planet\tTerry Rossio\tnm0166256\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tRon Clements\ntt0133240\tTreasure Planet\tRon Clements\tnm0615780\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tJohn Musker\ntt0133240\tTreasure Planet\tRon Clements\tnm0166256\tTreasure Planet\t2002\t7.1\t83553\t95\tAdventure,Animation,Family\tRon Clements\ntt0204946\tBring It On\tJessica Bendinger\tnm0715636\tBring It On\t2000\t6.0\t76927\t98\tComedy,Romance,Sport\tPeyton Reed\ntt0241025\tVanity Fair\tJulian Fellowes\tnm0619762\tVanity Fair\t2004\t6.2\t18540\t141\tDrama\tMira Nair\ntt0241025\tVanity Fair\tMark Skeet\tnm0619762\tVanity Fair\t2004\t6.2\t18540\t141\tDrama\tMira Nair\ntt0241025\tVanity Fair\tWilliam Makepeace Thackeray\tnm0619762\tVanity Fair\t2004\t6.2\t18540\t141\tDrama\tMira Nair\ntt0241025\tVanity Fair\tMatthew Faulk\tnm0619762\tVanity Fair\t2004\t6.2\t18540\t141\tDrama\tMira Nair\ntt0244000\tAmerican Outlaws\tJohn Rogers\tnm0562645\tAmerican Outlaws\t2001\t6.0\t12824\t94\tAction,Western\tLes Mayfield\ntt0244000\tAmerican Outlaws\tRoderick Taylor\tnm0562645\tAmerican Outlaws\t2001\t6.0\t12824\t94\tAction,Western\tLes Mayfield\ntt0363988\tSecret Window\tDavid Koepp\tnm0462895\tSecret Window\t2004\t6.6\t161768\t96\tDrama,Mystery,Thriller\tDavid Koepp\ntt0363988\tSecret Window\tStephen King\tnm0462895\tSecret Window\t2004\t6.6\t161768\t96\tDrama,Mystery,Thriller\tDavid Koepp\ntt0383028\tSynecdoche, New York\tCharlie Kaufman\tnm0442109\tSynecdoche, New York\t2008\t7.5\t66418\t124\tComedy,Drama\tCharlie Kaufman\ntt0449010\tEragon\tChristopher Paolini\tnm0266777\tEragon\t2006\t5.1\t114207\t104\tAction,Adventure,Family\tStefen Fangmeier\ntt0449010\tEragon\tPeter Buchman\tnm0266777\tEragon\t2006\t5.1\t114207\t104\tAction,Adventure,Family\tStefen Fangmeier\ntt0455362\tThe Breed\tPeter Wortmann\tnm0557608\tThe Breed\t2006\t5.1\t11088\t91\tComedy,Horror,Thriller\tNicholas Mastandrea\ntt0455362\tThe Breed\tRobert Conte\tnm0557608\tThe Breed\t2006\t5.1\t11088\t91\tComedy,Horror,Thriller\tNicholas Mastandrea\ntt0463854\t28 Weeks Later\tEnrique López Lavigne\tnm0294379\t28 Weeks Later\t2007\t7.0\t231584\t100\tDrama,Horror,Sci-Fi\tJuan Carlos Fresnadillo\ntt0463854\t28 Weeks Later\tJesús Olmo\tnm0294379\t28 Weeks Later\t2007\t7.0\t231584\t100\tDrama,Horror,Sci-Fi\tJuan Carlos Fresnadillo\ntt0463854\t28 Weeks Later\tRowan Joffe\tnm0294379\t28 Weeks Later\t2007\t7.0\t231584\t100\tDrama,Horror,Sci-Fi\tJuan Carlos Fresnadillo\ntt0463854\t28 Weeks Later\tJuan Carlos Fresnadillo\tnm0294379\t28 Weeks Later\t2007\t7.0\t231584\t100\tDrama,Horror,Sci-Fi\tJuan Carlos Fresnadillo\ntt0464049\tThe History Boys\tAlan Bennett\tnm0405336\tThe History Boys\t2006\t6.9\t18867\t109\tComedy,Drama,Romance\tNicholas Hytner\ntt0475723\tShinobi: Heart Under Blade\tKenya Hirata\tnm1033087\tShinobi: Heart Under Blade\t2005\t7.0\t11456\t107\tAction,Drama,Fantasy\tTen Shimoyama\ntt0475723\tShinobi: Heart Under Blade\tFûtarô Yamada\tnm1033087\tShinobi: Heart Under Blade\t2005\t7.0\t11456\t107\tAction,Drama,Fantasy\tTen Shimoyama\ntt0810922\tTake Me Home Tonight\tJeff Filgo\tnm0236226\tTake Me Home Tonight\t2011\t6.3\t46839\t97\tComedy,Drama,Romance\tMichael Dowse\ntt0810922\tTake Me Home Tonight\tTopher Grace\tnm0236226\tTake Me Home Tonight\t2011\t6.3\t46839\t97\tComedy,Drama,Romance\tMichael Dowse\ntt0810922\tTake Me Home Tonight\tGordon Kaywin\tnm0236226\tTake Me Home Tonight\t2011\t6.3\t46839\t97\tComedy,Drama,Romance\tMichael Dowse\ntt0810922\tTake Me Home Tonight\tJackie Filgo\tnm0236226\tTake Me Home Tonight\t2011\t6.3\t46839\t97\tComedy,Drama,Romance\tMichael Dowse\ntt0844286\tThe Brothers Bloom\tRian Johnson\tnm0426059\tThe Brothers Bloom\t2008\t6.8\t44768\t114\tAdventure,Comedy,Drama\tRian Johnson\ntt0964185\tTetro\tFrancis Ford Coppola\tnm0000338\tTetro\t2009\t6.9\t11255\t127\tDrama\tFrancis Ford Coppola\ntt0964185\tTetro\tMauricio Kartun\tnm0000338\tTetro\t2009\t6.9\t11255\t127\tDrama\tFrancis Ford Coppola\ntt1031969\tThe Rocker\tRyan Jaffe\tnm0146341\tThe Rocker\t2008\t6.2\t34350\t102\tComedy,Music\tPeter Cattaneo\ntt1031969\tThe Rocker\tWallace Wolodarsky\tnm0146341\tThe Rocker\t2008\t6.2\t34350\t102\tComedy,Music\tPeter Cattaneo\ntt1031969\tThe Rocker\tMaya Forbes\tnm0146341\tThe Rocker\t2008\t6.2\t34350\t102\tComedy,Music\tPeter Cattaneo\ntt1280558\tA Wednesday\tNeeraj Pandey\tnm3109770\tA Wednesday\t2008\t8.2\t61878\t104\tCrime,Drama,Mystery\tNeeraj Pandey\ntt1386588\tThe Other Guys\tChris Henchy\tnm0570912\tThe Other Guys\t2010\t6.7\t210028\t107\tAction,Comedy,Crime\tAdam McKay\ntt1386588\tThe Other Guys\tAdam McKay\tnm0570912\tThe Other Guys\t2010\t6.7\t210028\t107\tAction,Comedy,Crime\tAdam McKay\ntt1499658\tHorrible Bosses\tJonathan Goldstein\tnm1164861\tHorrible Bosses\t2011\t6.9\t383054\t98\tComedy,Crime\tSeth Gordon\ntt1499658\tHorrible Bosses\tMichael Markowitz\tnm1164861\tHorrible Bosses\t2011\t6.9\t383054\t98\tComedy,Crime\tSeth Gordon\ntt1499658\tHorrible Bosses\tJohn Francis Daley\tnm1164861\tHorrible Bosses\t2011\t6.9\t383054\t98\tComedy,Crime\tSeth Gordon\ntt1529572\tTrust\tRobert Festinger\tnm0001710\tTrust\t2010\t6.9\t37687\t106\tCrime,Drama,Thriller\tDavid Schwimmer\ntt1529572\tTrust\tAndy Bellin\tnm0001710\tTrust\t2010\t6.9\t37687\t106\tCrime,Drama,Thriller\tDavid Schwimmer\ntt1637706\tOur Idiot Brother\tJesse Peretz\tnm0673400\tOur Idiot Brother\t2011\t6.4\t78747\t90\tComedy,Drama\tJesse Peretz\ntt1637706\tOur Idiot Brother\tEvgenia Peretz\tnm0673400\tOur Idiot Brother\t2011\t6.4\t78747\t90\tComedy,Drama\tJesse Peretz\ntt1637706\tOur Idiot Brother\tDavid Schisgall\tnm0673400\tOur Idiot Brother\t2011\t6.4\t78747\t90\tComedy,Drama\tJesse Peretz\ntt1640548\tRampart\tJames Ellroy\tnm0610219\tRampart\t2011\t5.8\t21290\t108\tCrime,Drama\tOren Moverman\ntt1640548\tRampart\tOren Moverman\tnm0610219\tRampart\t2011\t5.8\t21290\t108\tCrime,Drama\tOren Moverman\ntt1847731\tTomboy\tCéline Sciamma\tnm1780037\tTomboy\t2011\t7.4\t14656\t82\tDrama\tCéline Sciamma\ntt2802144\tKingsman: The Secret Service\tMark Millar\tnm0891216\tKingsman: The Secret Service\t2014\t7.7\t503432\t129\tAction,Adventure,Comedy\tMatthew Vaughn\ntt2802144\tKingsman: The Secret Service\tJane Goldman\tnm0891216\tKingsman: The Secret Service\t2014\t7.7\t503432\t129\tAction,Adventure,Comedy\tMatthew Vaughn\ntt2802144\tKingsman: The Secret Service\tMatthew Vaughn\tnm0891216\tKingsman: The Secret Service\t2014\t7.7\t503432\t129\tAction,Adventure,Comedy\tMatthew Vaughn\ntt2802144\tKingsman: The Secret Service\tDave Gibbons\tnm0891216\tKingsman: The Secret Service\t2014\t7.7\t503432\t129\tAction,Adventure,Comedy\tMatthew Vaughn\ntt2980210\tA Hologram for the King\tTom Tykwer\tnm0878756\tA Hologram for the King\t2016\t6.1\t31887\t98\tComedy,Drama,Romance\tTom Tykwer\ntt2980210\tA Hologram for the King\tDave Eggers\tnm0878756\tA Hologram for the King\t2016\t6.1\t31887\t98\tComedy,Drama,Romance\tTom Tykwer\ntt3531824\tNerve\tJeanne Ryan\tnm1160962\tNerve\t2016\t6.6\t90202\t96\tAction,Adventure,Crime\tHenry Joost\ntt3531824\tNerve\tJeanne Ryan\tnm1413364\tNerve\t2016\t6.6\t90202\t96\tAction,Adventure,Crime\tAriel Schulman\ntt3531824\tNerve\tJessica Sharzer\tnm1160962\tNerve\t2016\t6.6\t90202\t96\tAction,Adventure,Crime\tHenry Joost\ntt3531824\tNerve\tJessica Sharzer\tnm1413364\tNerve\t2016\t6.6\t90202\t96\tAction,Adventure,Crime\tAriel Schulman\ntt3808342\tSon of Saul\tClara Royer\tnm1841577\tSon of Saul\t2015\t7.5\t35155\t107\tDrama,War\tLászló Nemes\ntt3808342\tSon of Saul\tLászló Nemes\tnm1841577\tSon of Saul\t2015\t7.5\t35155\t107\tDrama,War\tLászló Nemes\ntt5657846\tDaddy's Home 2\tJohn Morris\tnm1890845\tDaddy's Home 2\t2017\t6.0\t30025\t100\tComedy\tSean Anders\ntt5657846\tDaddy's Home 2\tBrian Burns\tnm1890845\tDaddy's Home 2\t2017\t6.0\t30025\t100\tComedy\tSean Anders\ntt5657846\tDaddy's Home 2\tSean Anders\tnm1890845\tDaddy's Home 2\t2017\t6.0\t30025\t100\tComedy\tSean Anders\ntt0134084\tScream 3\tEhren Kruger\tnm0000127\tScream 3\t2000\t5.5\t108192\t116\tHorror,Mystery\tWes Craven\ntt0134084\tScream 3\tKevin Williamson\tnm0000127\tScream 3\t2000\t5.5\t108192\t116\tHorror,Mystery\tWes Craven\ntt0160184\tEye See You\tRon L. Brinkerhoff\tnm0318947\tEye See You\t2002\t5.3\t21245\t96\tCrime,Horror,Mystery\tJim Gillespie\ntt0160184\tEye See You\tHoward Swindle\tnm0318947\tEye See You\t2002\t5.3\t21245\t96\tCrime,Horror,Mystery\tJim Gillespie\ntt0265087\tBlack Knight\tPeter Gaulke\tnm0432627\tBlack Knight\t2001\t4.8\t33810\t95\tAdventure,Comedy,Fantasy\tGil Junger\ntt0265087\tBlack Knight\tGerry Swallow\tnm0432627\tBlack Knight\t2001\t4.8\t33810\t95\tAdventure,Comedy,Fantasy\tGil Junger\ntt0265087\tBlack Knight\tDarryl Quarles\tnm0432627\tBlack Knight\t2001\t4.8\t33810\t95\tAdventure,Comedy,Fantasy\tGil Junger\ntt0283084\tTuck Everlasting\tJeffrey Lieber\tnm0751221\tTuck Everlasting\t2002\t6.7\t19350\t90\tDrama,Family,Fantasy\tJay Russell\ntt0283084\tTuck Everlasting\tJames V. Hart\tnm0751221\tTuck Everlasting\t2002\t6.7\t19350\t90\tDrama,Family,Fantasy\tJay Russell\ntt0283084\tTuck Everlasting\tNatalie Babbitt\tnm0751221\tTuck Everlasting\t2002\t6.7\t19350\t90\tDrama,Family,Fantasy\tJay Russell\ntt0287467\tTalk to Her\tPedro Almodóvar\tnm0000264\tTalk to Her\t2002\t8.0\t93598\t112\tDrama,Mystery,Romance\tPedro Almodóvar\ntt0292542\tSon of the Bride\tFernando Castets\tnm0002728\tSon of the Bride\t2001\t7.9\t12963\t123\tComedy,Drama\tJuan José Campanella\ntt0292542\tSon of the Bride\tJuan José Campanella\tnm0002728\tSon of the Bride\t2001\t7.9\t12963\t123\tComedy,Drama\tJuan José Campanella\ntt0304711\tThe Order\tBrian Helgeland\tnm0001338\tThe Order\t2003\t5.2\t15840\t102\tHorror,Mystery,Thriller\tBrian Helgeland\ntt0361596\tFahrenheit 9/11\tMichael Moore\tnm0601619\tFahrenheit 9/11\t2004\t7.5\t119093\t122\tDocumentary,Drama,War\tMichael Moore\ntt0367959\tHannibal Rising\tThomas Harris\tnm0916424\tHannibal Rising\t2007\t6.2\t93941\t121\tCrime,Drama,Horror\tPeter Webber\ntt0386741\tRenaissance\tJean-Bernard Pouy\tnm1466691\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\tChristian Volckman\ntt0386741\tRenaissance\tMatthieu Delaporte\tnm1466691\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\tChristian Volckman\ntt0386741\tRenaissance\tMichael Katims\tnm1466691\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\tChristian Volckman\ntt0386741\tRenaissance\tPatrick Raynal\tnm1466691\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\tChristian Volckman\ntt0386741\tRenaissance\tAlexandre de La Patellière\tnm1466691\tRenaissance\t2006\t6.7\t14874\t105\tAction,Animation,Sci-Fi\tChristian Volckman\ntt0454987\tLet's Go to Prison\tMichael Patrick Jann\tnm0644022\tLet's Go to Prison\t2006\t6.0\t21220\t84\tComedy,Crime\tBob Odenkirk\ntt0454987\tLet's Go to Prison\tRobert Ben Garant\tnm0644022\tLet's Go to Prison\t2006\t6.0\t21220\t84\tComedy,Crime\tBob Odenkirk\ntt0454987\tLet's Go to Prison\tThomas Lennon\tnm0644022\tLet's Go to Prison\t2006\t6.0\t21220\t84\tComedy,Crime\tBob Odenkirk\ntt0454987\tLet's Go to Prison\tJim Hogshire\tnm0644022\tLet's Go to Prison\t2006\t6.0\t21220\t84\tComedy,Crime\tBob Odenkirk\ntt0475276\tUnited 93\tPaul Greengrass\tnm0339030\tUnited 93\t2006\t7.6\t89370\t111\tDrama,History,Thriller\tPaul Greengrass\ntt0478970\tAnt-Man\tLarry Lieber\tnm0715636\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\tPeyton Reed\ntt0478970\tAnt-Man\tEdgar Wright\tnm0715636\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\tPeyton Reed\ntt0478970\tAnt-Man\tPaul Rudd\tnm0715636\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\tPeyton Reed\ntt0478970\tAnt-Man\tStan Lee\tnm0715636\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\tPeyton Reed\ntt0478970\tAnt-Man\tJack Kirby\tnm0715636\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\tPeyton Reed\ntt0478970\tAnt-Man\tAdam McKay\tnm0715636\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\tPeyton Reed\ntt0478970\tAnt-Man\tJoe Cornish\tnm0715636\tAnt-Man\t2015\t7.3\t419620\t117\tAction,Adventure,Comedy\tPeyton Reed\ntt0865554\tThe Informers\tBret Easton Ellis\tnm0429964\tThe Informers\t2008\t5.0\t14976\t98\tCrime,Drama,Thriller\tGregor Jordan\ntt0865554\tThe Informers\tNicholas Jarecki\tnm0429964\tThe Informers\t2008\t5.0\t14976\t98\tCrime,Drama,Thriller\tGregor Jordan\ntt0875113\t99 francs\tBruno Lavaine\tnm0468007\t99 francs\t2007\t7.3\t16914\t100\tComedy,Drama\tJan Kounen\ntt0875113\t99 francs\tFrédéric Beigbeder\tnm0468007\t99 francs\t2007\t7.3\t16914\t100\tComedy,Drama\tJan Kounen\ntt0875113\t99 francs\tNicolas Charlet\tnm0468007\t99 francs\t2007\t7.3\t16914\t100\tComedy,Drama\tJan Kounen\ntt0875113\t99 francs\tJan Kounen\tnm0468007\t99 francs\t2007\t7.3\t16914\t100\tComedy,Drama\tJan Kounen\ntt0999913\tStraw Dogs\tRod Lurie\tnm0527109\tStraw Dogs\t2011\t5.8\t29450\t110\tAction,Drama,Thriller\tRod Lurie\ntt0999913\tStraw Dogs\tGordon Williams\tnm0527109\tStraw Dogs\t2011\t5.8\t29450\t110\tAction,Drama,Thriller\tRod Lurie\ntt0999913\tStraw Dogs\tSam Peckinpah\tnm0527109\tStraw Dogs\t2011\t5.8\t29450\t110\tAction,Drama,Thriller\tRod Lurie\ntt0999913\tStraw Dogs\tDavid Zelag Goodman\tnm0527109\tStraw Dogs\t2011\t5.8\t29450\t110\tAction,Drama,Thriller\tRod Lurie\ntt1032825\tLove and Other Impossible Pursuits\tAyelet Waldman\tnm0740400\tLove and Other Impossible Pursuits\t2009\t6.4\t16901\t102\tDrama\tDon Roos\ntt1032825\tLove and Other Impossible Pursuits\tDon Roos\tnm0740400\tLove and Other Impossible Pursuits\t2009\t6.4\t16901\t102\tDrama\tDon Roos\ntt1068680\tYes Man\tAndrew Mogel\tnm0715636\tYes Man\t2008\t6.8\t296418\t104\tComedy,Romance\tPeyton Reed\ntt1068680\tYes Man\tDanny Wallace\tnm0715636\tYes Man\t2008\t6.8\t296418\t104\tComedy,Romance\tPeyton Reed\ntt1068680\tYes Man\tJarrad Paul\tnm0715636\tYes Man\t2008\t6.8\t296418\t104\tComedy,Romance\tPeyton Reed\ntt1068680\tYes Man\tNicholas Stoller\tnm0715636\tYes Man\t2008\t6.8\t296418\t104\tComedy,Romance\tPeyton Reed\ntt1331307\tDread\tClive Barker\tnm1304669\tDread\t2009\t5.7\t10894\t108\tDrama,Horror,Thriller\tAnthony DiBlasi\ntt1331307\tDread\tAnthony DiBlasi\tnm1304669\tDread\t2009\t5.7\t10894\t108\tDrama,Horror,Thriller\tAnthony DiBlasi\ntt1334260\tNever Let Me Go\tAlex Garland\tnm0738796\tNever Let Me Go\t2010\t7.2\t123991\t103\tDrama,Romance,Sci-Fi\tMark Romanek\ntt1334260\tNever Let Me Go\tKazuo Ishiguro\tnm0738796\tNever Let Me Go\t2010\t7.2\t123991\t103\tDrama,Romance,Sci-Fi\tMark Romanek\ntt1945084\tEverly\tYale Hannon\tnm1362570\tEverly\t2014\t5.1\t14822\t92\tAction,Thriller\tJoe Lynch\ntt1945084\tEverly\tJoe Lynch\tnm1362570\tEverly\t2014\t5.1\t14822\t92\tAction,Thriller\tJoe Lynch\ntt2216240\tA Hijacking\tTobias Lindholm\tnm2105585\tA Hijacking\t2012\t7.2\t14117\t103\tDrama,Thriller\tTobias Lindholm\ntt3063516\tBad Grandpa\tSpike Jonze\tnm0871860\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\tJeff Tremaine\ntt3063516\tBad Grandpa\tAdam Small\tnm0871860\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\tJeff Tremaine\ntt3063516\tBad Grandpa\tJeff Tremaine\tnm0871860\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\tJeff Tremaine\ntt3063516\tBad Grandpa\tJohnny Knoxville\tnm0871860\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\tJeff Tremaine\ntt3063516\tBad Grandpa\tFax Bahr\tnm0871860\tBad Grandpa\t2013\t6.5\t83142\t92\tComedy\tJeff Tremaine\ntt3832914\tWar Room\tStephen Kendrick\tnm1731937\tWar Room\t2015\t6.4\t10793\t120\tDrama\tAlex Kendrick\ntt3832914\tWar Room\tAlex Kendrick\tnm1731937\tWar Room\t2015\t6.4\t10793\t120\tDrama\tAlex Kendrick\ntt0233469\tCollateral Damage\tDavid Griffiths\tnm0001112\tCollateral Damage\t2002\t5.5\t66017\t108\tAction,Drama,Thriller\tAndrew Davis\ntt0233469\tCollateral Damage\tPeter Griffiths\tnm0001112\tCollateral Damage\t2002\t5.5\t66017\t108\tAction,Drama,Thriller\tAndrew Davis\ntt0233469\tCollateral Damage\tRonald Roose\tnm0001112\tCollateral Damage\t2002\t5.5\t66017\t108\tAction,Drama,Thriller\tAndrew Davis\ntt0237572\tThe Pledge\tMary Olson-Kromolowski\tnm0000576\tThe Pledge\t2001\t6.8\t47024\t124\tCrime,Drama,Mystery\tSean Penn\ntt0237572\tThe Pledge\tFriedrich Dürrenmatt\tnm0000576\tThe Pledge\t2001\t6.8\t47024\t124\tCrime,Drama,Mystery\tSean Penn\ntt0237572\tThe Pledge\tJerzy Kromolowski\tnm0000576\tThe Pledge\t2001\t6.8\t47024\t124\tCrime,Drama,Mystery\tSean Penn\ntt0289635\tYoung Adam\tDavid Mackenzie\tnm0533284\tYoung Adam\t2003\t6.5\t12249\t98\tCrime,Drama\tDavid Mackenzie\ntt0289635\tYoung Adam\tAlexander Trocchi\tnm0533284\tYoung Adam\t2003\t6.5\t12249\t98\tCrime,Drama\tDavid Mackenzie\ntt0356150\tEuroTrip\tDavid Mandel\tnm0541635\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tDavid Mandel\ntt0356150\tEuroTrip\tDavid Mandel\tnm0073688\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tAlec Berg\ntt0356150\tEuroTrip\tDavid Mandel\tnm0769840\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tJeff Schaffer\ntt0356150\tEuroTrip\tAlec Berg\tnm0541635\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tDavid Mandel\ntt0356150\tEuroTrip\tAlec Berg\tnm0073688\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tAlec Berg\ntt0356150\tEuroTrip\tAlec Berg\tnm0769840\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tJeff Schaffer\ntt0356150\tEuroTrip\tJeff Schaffer\tnm0541635\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tDavid Mandel\ntt0356150\tEuroTrip\tJeff Schaffer\tnm0073688\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tAlec Berg\ntt0356150\tEuroTrip\tJeff Schaffer\tnm0769840\tEuroTrip\t2004\t6.6\t175425\t92\tComedy\tJeff Schaffer\ntt0365737\tSyriana\tRobert Baer\tnm0300866\tSyriana\t2005\t6.9\t116854\t128\tDrama,Thriller\tStephen Gaghan\ntt0365737\tSyriana\tStephen Gaghan\tnm0300866\tSyriana\t2005\t6.9\t116854\t128\tDrama,Thriller\tStephen Gaghan\ntt0375912\tLayer Cake\tJ.J. Connolly\tnm0891216\tLayer Cake\t2004\t7.4\t145572\t105\tCrime,Drama,Thriller\tMatthew Vaughn\ntt0414982\tFinal Destination 3\tJeffrey Reddick\tnm0939128\tFinal Destination 3\t2006\t5.8\t113958\t93\tFantasy,Horror,Mystery\tJames Wong\ntt0414982\tFinal Destination 3\tGlen Morgan\tnm0939128\tFinal Destination 3\t2006\t5.8\t113958\t93\tFantasy,Horror,Mystery\tJames Wong\ntt0414982\tFinal Destination 3\tJames Wong\tnm0939128\tFinal Destination 3\t2006\t5.8\t113958\t93\tFantasy,Horror,Mystery\tJames Wong\ntt0420509\tThe Aura\tPablo De Santis\tnm0081433\tThe Aura\t2005\t7.2\t11862\t134\tCrime,Drama,Thriller\tFabián Bielinsky\ntt0420509\tThe Aura\tFabián Bielinsky\tnm0081433\tThe Aura\t2005\t7.2\t11862\t134\tCrime,Drama,Thriller\tFabián Bielinsky\ntt0450405\tCirque du Freak: The Vampire's Assistant\tBrian Helgeland\tnm0919369\tCirque du Freak: The Vampire's Assistant\t2009\t5.9\t38554\t109\tAction,Adventure,Fantasy\tPaul Weitz\ntt0450405\tCirque du Freak: The Vampire's Assistant\tPaul Weitz\tnm0919369\tCirque du Freak: The Vampire's Assistant\t2009\t5.9\t38554\t109\tAction,Adventure,Fantasy\tPaul Weitz\ntt0450405\tCirque du Freak: The Vampire's Assistant\tDarren Shan\tnm0919369\tCirque du Freak: The Vampire's Assistant\t2009\t5.9\t38554\t109\tAction,Adventure,Fantasy\tPaul Weitz\ntt0472399\tThe Mechanic\tRichard Wenk\tnm0922346\tThe Mechanic\t2011\t6.6\t135004\t93\tAction,Crime,Thriller\tSimon West\ntt0472399\tThe Mechanic\tLewis John Carlino\tnm0922346\tThe Mechanic\t2011\t6.6\t135004\t93\tAction,Crime,Thriller\tSimon West\ntt0842926\tThe Kids Are All Right\tStuart Blumberg\tnm0158966\tThe Kids Are All Right\t2010\t7.0\t117463\t106\tComedy,Drama,Romance\tLisa Cholodenko\ntt0842926\tThe Kids Are All Right\tLisa Cholodenko\tnm0158966\tThe Kids Are All Right\t2010\t7.0\t117463\t106\tComedy,Drama,Romance\tLisa Cholodenko\ntt1083452\tEddie the Eagle\tSean Macaulay\tnm0002077\tEddie the Eagle\t2016\t7.4\t67064\t106\tBiography,Comedy,Drama\tDexter Fletcher\ntt1083452\tEddie the Eagle\tSimon Kelton\tnm0002077\tEddie the Eagle\t2016\t7.4\t67064\t106\tBiography,Comedy,Drama\tDexter Fletcher\ntt1092633\tThe Goods: Live Hard, Sell Hard\tAndy Stock\tnm0107366\tThe Goods: Live Hard, Sell Hard\t2009\t5.8\t18768\t89\tComedy\tNeal Brennan\ntt1092633\tThe Goods: Live Hard, Sell Hard\tRick Stempson\tnm0107366\tThe Goods: Live Hard, Sell Hard\t2009\t5.8\t18768\t89\tComedy\tNeal Brennan\ntt1229340\tAnchorman 2: The Legend Continues\tAdam McKay\tnm0570912\tAnchorman 2: The Legend Continues\t2013\t6.3\t146756\t119\tComedy\tAdam McKay\ntt1229340\tAnchorman 2: The Legend Continues\tWill Ferrell\tnm0570912\tAnchorman 2: The Legend Continues\t2013\t6.3\t146756\t119\tComedy\tAdam McKay\ntt1345836\tThe Dark Knight Rises\tChristopher Nolan\tnm0634240\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\tChristopher Nolan\ntt1345836\tThe Dark Knight Rises\tDavid S. Goyer\tnm0634240\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\tChristopher Nolan\ntt1345836\tThe Dark Knight Rises\tBob Kane\tnm0634240\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\tChristopher Nolan\ntt1345836\tThe Dark Knight Rises\tJonathan Nolan\tnm0634240\tThe Dark Knight Rises\t2012\t8.4\t1300365\t164\tAction,Thriller\tChristopher Nolan\ntt1453405\tMonsters University\tRobert L. Baird\tnm0768959\tMonsters University\t2013\t7.3\t269981\t104\tAdventure,Animation,Comedy\tDan Scanlon\ntt1453405\tMonsters University\tDaniel Gerson\tnm0768959\tMonsters University\t2013\t7.3\t269981\t104\tAdventure,Animation,Comedy\tDan Scanlon\ntt1453405\tMonsters University\tDan Scanlon\tnm0768959\tMonsters University\t2013\t7.3\t269981\t104\tAdventure,Animation,Comedy\tDan Scanlon\ntt1453405\tMonsters University\tAdrian Molina\tnm0768959\tMonsters University\t2013\t7.3\t269981\t104\tAdventure,Animation,Comedy\tDan Scanlon\ntt1560747\tThe Master\tPaul Thomas Anderson\tnm0000759\tThe Master\t2012\t7.1\t121445\t138\tDrama\tPaul Thomas Anderson\ntt1592281\tTake This Waltz\tSarah Polley\tnm0001631\tTake This Waltz\t2011\t6.6\t24728\t116\tComedy,Drama\tSarah Polley\ntt2120120\tPixels\tTim Herlihy\tnm0001060\tPixels\t2015\t5.6\t110881\t105\tAction,Comedy,Fantasy\tChris Columbus\ntt2120120\tPixels\tPatrick Jean\tnm0001060\tPixels\t2015\t5.6\t110881\t105\tAction,Comedy,Fantasy\tChris Columbus\ntt2120120\tPixels\tTimothy Dowling\tnm0001060\tPixels\t2015\t5.6\t110881\t105\tAction,Comedy,Fantasy\tChris Columbus\ntt2299842\tPieta\tKi-duk Kim\tnm1104118\tPieta\t2012\t7.2\t10658\t104\tCrime,Drama\tKi-duk Kim\ntt0134847\tPitch Black\tKen Wheat\tnm0878638\tPitch Black\t2000\t7.1\t207146\t109\tHorror,Sci-Fi\tDavid Twohy\ntt0134847\tPitch Black\tDavid Twohy\tnm0878638\tPitch Black\t2000\t7.1\t207146\t109\tHorror,Sci-Fi\tDavid Twohy\ntt0134847\tPitch Black\tJim Wheat\tnm0878638\tPitch Black\t2000\t7.1\t207146\t109\tHorror,Sci-Fi\tDavid Twohy\ntt0166813\tSpirit: Stallion of the Cimarron\tJohn Fusco\tnm0177170\tSpirit: Stallion of the Cimarron\t2002\t7.1\t52802\t83\tAdventure,Animation,Family\tLorna Cook\ntt0166813\tSpirit: Stallion of the Cimarron\tJohn Fusco\tnm0038432\tSpirit: Stallion of the Cimarron\t2002\t7.1\t52802\t83\tAdventure,Animation,Family\tKelly Asbury\ntt0166813\tSpirit: Stallion of the Cimarron\tMichael Lucker\tnm0177170\tSpirit: Stallion of the Cimarron\t2002\t7.1\t52802\t83\tAdventure,Animation,Family\tLorna Cook\ntt0166813\tSpirit: Stallion of the Cimarron\tMichael Lucker\tnm0038432\tSpirit: Stallion of the Cimarron\t2002\t7.1\t52802\t83\tAdventure,Animation,Family\tKelly Asbury\ntt0293662\tThe Transporter\tRobert Mark Kamen\tnm0477035\tThe Transporter\t2002\t6.8\t258706\t92\tAction,Crime,Thriller\tCorey Yuen\ntt0293662\tThe Transporter\tRobert Mark Kamen\tnm0504642\tThe Transporter\t2002\t6.8\t258706\t92\tAction,Crime,Thriller\tLouis Leterrier\ntt0293662\tThe Transporter\tLuc Besson\tnm0477035\tThe Transporter\t2002\t6.8\t258706\t92\tAction,Crime,Thriller\tCorey Yuen\ntt0293662\tThe Transporter\tLuc Besson\tnm0504642\tThe Transporter\t2002\t6.8\t258706\t92\tAction,Crime,Thriller\tLouis Leterrier\ntt0311519\tThe Man Without a Past\tAki Kaurismäki\tnm0442454\tThe Man Without a Past\t2002\t7.7\t19448\t97\tComedy,Drama,Romance\tAki Kaurismäki\ntt0383010\tThe Three Stooges\tMike Cerrone\tnm0268370\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\tBobby Farrelly\ntt0383010\tThe Three Stooges\tMike Cerrone\tnm0268380\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\tPeter Farrelly\ntt0383010\tThe Three Stooges\tBobby Farrelly\tnm0268370\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\tBobby Farrelly\ntt0383010\tThe Three Stooges\tBobby Farrelly\tnm0268380\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\tPeter Farrelly\ntt0383010\tThe Three Stooges\tPeter Farrelly\tnm0268370\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\tBobby Farrelly\ntt0383010\tThe Three Stooges\tPeter Farrelly\tnm0268380\tThe Three Stooges\t2012\t5.1\t27379\t92\tComedy,Family\tPeter Farrelly\ntt0395119\tAlatriste\tCarlota Pérez-Reverte\tnm0246503\tAlatriste\t2006\t6.1\t11091\t145\tAdventure,Drama,History\tAgustín Díaz Yanes\ntt0395119\tAlatriste\tAgustín Díaz Yanes\tnm0246503\tAlatriste\t2006\t6.1\t11091\t145\tAdventure,Drama,History\tAgustín Díaz Yanes\ntt0395119\tAlatriste\tArturo Pérez-Reverte\tnm0246503\tAlatriste\t2006\t6.1\t11091\t145\tAdventure,Drama,History\tAgustín Díaz Yanes\ntt0401792\tSin City\tFrank Miller\tnm0000233\tSin City\t2005\t8.0\t698590\t124\tCrime,Thriller\tQuentin Tarantino\ntt0401792\tSin City\tFrank Miller\tnm0001675\tSin City\t2005\t8.0\t698590\t124\tCrime,Thriller\tRobert Rodriguez\ntt0401792\tSin City\tFrank Miller\tnm0588340\tSin City\t2005\t8.0\t698590\t124\tCrime,Thriller\tFrank Miller\ntt0423409\tTristram Shandy: A Cock and Bull Story\tLaurence Sterne\tnm0935863\tTristram Shandy: A Cock and Bull Story\t2005\t6.8\t11705\t94\tComedy\tMichael Winterbottom\ntt0423409\tTristram Shandy: A Cock and Bull Story\tFrank Cottrell Boyce\tnm0935863\tTristram Shandy: A Cock and Bull Story\t2005\t6.8\t11705\t94\tComedy\tMichael Winterbottom\ntt0451079\tHorton Hears a Who!\tCinco Paul\tnm0553942\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\tSteve Martino\ntt0451079\tHorton Hears a Who!\tCinco Paul\tnm0371755\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\tJimmy Hayward\ntt0451079\tHorton Hears a Who!\tKen Daurio\tnm0553942\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\tSteve Martino\ntt0451079\tHorton Hears a Who!\tKen Daurio\tnm0371755\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\tJimmy Hayward\ntt0451079\tHorton Hears a Who!\tDr. Seuss\tnm0553942\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\tSteve Martino\ntt0451079\tHorton Hears a Who!\tDr. Seuss\tnm0371755\tHorton Hears a Who!\t2008\t6.8\t115981\t86\tAdventure,Animation,Comedy\tJimmy Hayward\ntt0465624\tMy Super Ex-Girlfriend\tDon Payne\tnm0718645\tMy Super Ex-Girlfriend\t2006\t5.1\t57276\t96\tComedy,Romance,Sci-Fi\tIvan Reitman\ntt0466893\tMargaret\tKenneth Lonergan\tnm0518836\tMargaret\t2011\t6.5\t14143\t150\tDrama\tKenneth Lonergan\ntt0485601\tThe Secret of Kells\tFabrice Ziolkowski\tnm1316072\tThe Secret of Kells\t2009\t7.7\t26516\t71\tAdventure,Animation,Family\tNora Twomey\ntt0485601\tThe Secret of Kells\tFabrice Ziolkowski\tnm1119079\tThe Secret of Kells\t2009\t7.7\t26516\t71\tAdventure,Animation,Family\tTomm Moore\ntt0485601\tThe Secret of Kells\tTomm Moore\tnm1316072\tThe Secret of Kells\t2009\t7.7\t26516\t71\tAdventure,Animation,Family\tNora Twomey\ntt0485601\tThe Secret of Kells\tTomm Moore\tnm1119079\tThe Secret of Kells\t2009\t7.7\t26516\t71\tAdventure,Animation,Family\tTomm Moore\ntt0775440\tCell\tStephen King\tnm0931095\tCell\t2016\t4.3\t19628\t98\tAction,Drama,Horror\tTod Williams\ntt0775440\tCell\tAdam Alleca\tnm0931095\tCell\t2016\t4.3\t19628\t98\tAction,Drama,Horror\tTod Williams\ntt0787523\tTowelhead\tAlicia Erian\tnm0050332\tTowelhead\t2007\t7.0\t10826\t124\tDrama\tAlan Ball\ntt0787523\tTowelhead\tAlan Ball\tnm0050332\tTowelhead\t2007\t7.0\t10826\t124\tDrama\tAlan Ball\ntt1229238\tMission: Impossible - Ghost Protocol\tSteven Zaillian\tnm0083348\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\tBrad Bird\ntt1229238\tMission: Impossible - Ghost Protocol\tAndré Nemec\tnm0083348\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\tBrad Bird\ntt1229238\tMission: Impossible - Ghost Protocol\tDavid Koepp\tnm0083348\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\tBrad Bird\ntt1229238\tMission: Impossible - Ghost Protocol\tBruce Geller\tnm0083348\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\tBrad Bird\ntt1229238\tMission: Impossible - Ghost Protocol\tJosh Appelbaum\tnm0083348\tMission: Impossible - Ghost Protocol\t2011\t7.4\t397611\t132\tAction,Adventure,Thriller\tBrad Bird\ntt1291465\tRaajneeti\tPrakash Jha\tnm0422552\tRaajneeti\t2010\t7.1\t13974\t163\tCrime,Drama\tPrakash Jha\ntt1291465\tRaajneeti\tAnjum Rajabali\tnm0422552\tRaajneeti\t2010\t7.1\t13974\t163\tCrime,Drama\tPrakash Jha\ntt1291465\tRaajneeti\tSameer\tnm0422552\tRaajneeti\t2010\t7.1\t13974\t163\tCrime,Drama\tPrakash Jha\ntt1308729\tBullet to the Head\tAlexis Nolent\tnm0001353\tBullet to the Head\t2012\t5.7\t42931\t92\tAction,Thriller\tWalter Hill\ntt1308729\tBullet to the Head\tColin Wilson\tnm0001353\tBullet to the Head\t2012\t5.7\t42931\t92\tAction,Thriller\tWalter Hill\ntt1308729\tBullet to the Head\tAlessandro Camon\tnm0001353\tBullet to the Head\t2012\t5.7\t42931\t92\tAction,Thriller\tWalter Hill\ntt1321860\tThe Beaver\tKyle Killen\tnm0000149\tThe Beaver\t2011\t6.7\t43617\t91\tDrama\tJodie Foster\ntt1481572\tHappythankyoumoreplease\tJosh Radnor\tnm1102140\tHappythankyoumoreplease\t2010\t6.8\t27751\t100\tComedy,Drama,Romance\tJosh Radnor\ntt1623205\tOz the Great and Powerful\tMitchell Kapner\tnm0000600\tOz the Great and Powerful\t2013\t6.3\t186796\t130\tAdventure,Comedy,Drama\tSam Raimi\ntt1623205\tOz the Great and Powerful\tL. Frank Baum\tnm0000600\tOz the Great and Powerful\t2013\t6.3\t186796\t130\tAdventure,Comedy,Drama\tSam Raimi\ntt1623205\tOz the Great and Powerful\tDavid Lindsay-Abaire\tnm0000600\tOz the Great and Powerful\t2013\t6.3\t186796\t130\tAdventure,Comedy,Drama\tSam Raimi\ntt1784575\tThe Parade\tSrdjan Dragojevic\tnm0236729\tThe Parade\t2011\t7.3\t10237\t115\tComedy,Drama\tSrdjan Dragojevic\ntt1964418\tTomorrowland\tDamon Lindelof\tnm0083348\tTomorrowland\t2015\t6.5\t152934\t130\tAction,Adventure,Family\tBrad Bird\ntt1964418\tTomorrowland\tJeff Jensen\tnm0083348\tTomorrowland\t2015\t6.5\t152934\t130\tAction,Adventure,Family\tBrad Bird\ntt1964418\tTomorrowland\tBrad Bird\tnm0083348\tTomorrowland\t2015\t6.5\t152934\t130\tAction,Adventure,Family\tBrad Bird\ntt1964624\tIn the House\tJuan Mayorga\tnm0654830\tIn the House\t2012\t7.4\t25812\t105\tComedy,Drama,Mystery\tFrançois Ozon\ntt1964624\tIn the House\tFrançois Ozon\tnm0654830\tIn the House\t2012\t7.4\t25812\t105\tComedy,Drama,Mystery\tFrançois Ozon\ntt2194499\tAbout Time\tRichard Curtis\tnm0193485\tAbout Time\t2013\t7.8\t239566\t123\tComedy,Drama,Fantasy\tRichard Curtis\ntt2283362\tJumanji: Welcome to the Jungle\tJeff Pinkner\tnm0440458\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\tJake Kasdan\ntt2283362\tJumanji: Welcome to the Jungle\tChris McKenna\tnm0440458\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\tJake Kasdan\ntt2283362\tJumanji: Welcome to the Jungle\tJonathan Hensleigh\tnm0440458\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\tJake Kasdan\ntt2283362\tJumanji: Welcome to the Jungle\tErik Sommers\tnm0440458\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\tJake Kasdan\ntt2283362\tJumanji: Welcome to the Jungle\tJim Strain\tnm0440458\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\tJake Kasdan\ntt2283362\tJumanji: Welcome to the Jungle\tChris Van Allsburg\tnm0440458\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\tJake Kasdan\ntt2283362\tJumanji: Welcome to the Jungle\tGreg Taylor\tnm0440458\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\tJake Kasdan\ntt2283362\tJumanji: Welcome to the Jungle\tScott Rosenberg\tnm0440458\tJumanji: Welcome to the Jungle\t2017\t7.0\t147054\t119\tAction,Adventure,Comedy\tJake Kasdan\ntt2465146\tAnd So It Goes\tMark Andrus\tnm0001661\tAnd So It Goes\t2014\t5.8\t10788\t94\tComedy,Drama,Romance\tRob Reiner\ntt2488496\tStar Wars: The Force Awakens\tMichael Arndt\tnm0009190\tStar Wars: The Force Awakens\t2015\t8.0\t735972\t136\tAction,Adventure,Fantasy\tJ.J. Abrams\ntt2488496\tStar Wars: The Force Awakens\tLawrence Kasdan\tnm0009190\tStar Wars: The Force Awakens\t2015\t8.0\t735972\t136\tAction,Adventure,Fantasy\tJ.J. Abrams\ntt2488496\tStar Wars: The Force Awakens\tGeorge Lucas\tnm0009190\tStar Wars: The Force Awakens\t2015\t8.0\t735972\t136\tAction,Adventure,Fantasy\tJ.J. Abrams\ntt2488496\tStar Wars: The Force Awakens\tJ.J. Abrams\tnm0009190\tStar Wars: The Force Awakens\t2015\t8.0\t735972\t136\tAction,Adventure,Fantasy\tJ.J. Abrams\ntt2639344\tLove Is Strange\tMauricio Zacharias\tnm0755158\tLove Is Strange\t2014\t6.7\t11014\t94\tDrama,Romance\tIra Sachs\ntt2639344\tLove Is Strange\tIra Sachs\tnm0755158\tLove Is Strange\t2014\t6.7\t11014\t94\tDrama,Romance\tIra Sachs\ntt3783958\tLa La Land\tDamien Chazelle\tnm3227090\tLa La Land\t2016\t8.1\t367801\t128\tComedy,Drama,Music\tDamien Chazelle\ntt0227445\tThe Score\tLem Dobbs\tnm0000568\tThe Score\t2001\t6.8\t109071\t124\tCrime,Drama,Thriller\tFrank Oz\ntt0227445\tThe Score\tScott Marshall Smith\tnm0000568\tThe Score\t2001\t6.8\t109071\t124\tCrime,Drama,Thriller\tFrank Oz\ntt0227445\tThe Score\tDaniel E. Taylor\tnm0000568\tThe Score\t2001\t6.8\t109071\t124\tCrime,Drama,Thriller\tFrank Oz\ntt0227445\tThe Score\tKario Salem\tnm0000568\tThe Score\t2001\t6.8\t109071\t124\tCrime,Drama,Thriller\tFrank Oz\ntt0275230\tBlood: The Last Vampire\tKenji Kamiyama\tnm0457541\tBlood: The Last Vampire\t2000\t6.7\t10903\t48\tAction,Animation,Horror\tHiroyuki Kitakubo\ntt0275230\tBlood: The Last Vampire\tKatsuya Terada\tnm0457541\tBlood: The Last Vampire\t2000\t6.7\t10903\t48\tAction,Animation,Horror\tHiroyuki Kitakubo\ntt0279781\tSorority Boys\tJoe Jarvis\tnm0938645\tSorority Boys\t2002\t5.4\t12729\t93\tComedy\tWallace Wolodarsky\ntt0279781\tSorority Boys\tGreg Coolidge\tnm0938645\tSorority Boys\t2002\t5.4\t12729\t93\tComedy\tWallace Wolodarsky\ntt0295178\tAustin Powers in Goldmember\tMike Myers\tnm0005366\tAustin Powers in Goldmember\t2002\t6.2\t175877\t94\tAction,Adventure,Comedy\tJay Roach\ntt0295178\tAustin Powers in Goldmember\tMichael McCullers\tnm0005366\tAustin Powers in Goldmember\t2002\t6.2\t175877\t94\tAction,Adventure,Comedy\tJay Roach\ntt0306434\tAankhen\tShobhna Desai\tnm1150959\tAankhen\t2002\t7.6\t10053\t165\tComedy,Crime,Drama\tVipul Amrutlal Shah\ntt0306434\tAankhen\tVipul Amrutlal Shah\tnm1150959\tAankhen\t2002\t7.6\t10053\t165\tComedy,Crime,Drama\tVipul Amrutlal Shah\ntt0306434\tAankhen\tAatish Kapadia\tnm1150959\tAankhen\t2002\t7.6\t10053\t165\tComedy,Crime,Drama\tVipul Amrutlal Shah\ntt0314353\tTears of the Sun\tAlex Lasker\tnm0298807\tTears of the Sun\t2003\t6.6\t101746\t121\tAction,Drama,Thriller\tAntoine Fuqua\ntt0314353\tTears of the Sun\tPatrick Cirillo\tnm0298807\tTears of the Sun\t2003\t6.6\t101746\t121\tAction,Drama,Thriller\tAntoine Fuqua\ntt0397078\tJust My Luck\tJonathan Bernstein\tnm0677953\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\tDonald Petrie\ntt0397078\tJust My Luck\tI. Marlene King\tnm0677953\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\tDonald Petrie\ntt0397078\tJust My Luck\tMark Blackwell\tnm0677953\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\tDonald Petrie\ntt0397078\tJust My Luck\tAmy Harris\tnm0677953\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\tDonald Petrie\ntt0397078\tJust My Luck\tJames Greer\tnm0677953\tJust My Luck\t2006\t5.4\t48487\t103\tComedy,Fantasy,Romance\tDonald Petrie\ntt0430308\tGet Rich or Die Tryin'\tTerence Winter\tnm0006487\tGet Rich or Die Tryin'\t2005\t5.2\t39654\t117\tBiography,Crime,Drama\tJim Sheridan\ntt0438097\tIce Age: The Meltdown\tPeter Gaulke\tnm0757858\tIce Age: The Meltdown\t2006\t6.8\t219139\t91\tAction,Adventure,Animation\tCarlos Saldanha\ntt0438097\tIce Age: The Meltdown\tGerry Swallow\tnm0757858\tIce Age: The Meltdown\t2006\t6.8\t219139\t91\tAction,Adventure,Animation\tCarlos Saldanha\ntt0438097\tIce Age: The Meltdown\tJim Hecht\tnm0757858\tIce Age: The Meltdown\t2006\t6.8\t219139\t91\tAction,Adventure,Animation\tCarlos Saldanha\ntt0466839\tI Could Never Be Your Woman\tAmy Heckerling\tnm0002132\tI Could Never Be Your Woman\t2007\t6.0\t15521\t97\tComedy,Drama,Romance\tAmy Heckerling\ntt0832266\tDefinitely, Maybe\tAdam Brooks\tnm0111845\tDefinitely, Maybe\t2008\t7.2\t139257\t112\tComedy,Drama,Romance\tAdam Brooks\ntt0860906\tEvangelion: 2.0 You Can (Not) Advance\tHideaki Anno\tnm0030417\tEvangelion: 2.0 You Can (Not) Advance\t2009\t8.0\t12776\t112\tAction,Animation,Drama\tHideaki Anno\ntt0860906\tEvangelion: 2.0 You Can (Not) Advance\tHideaki Anno\tnm0556094\tEvangelion: 2.0 You Can (Not) Advance\t2009\t8.0\t12776\t112\tAction,Animation,Drama\tMasayuki\ntt0860906\tEvangelion: 2.0 You Can (Not) Advance\tHideaki Anno\tnm0875453\tEvangelion: 2.0 You Can (Not) Advance\t2009\t8.0\t12776\t112\tAction,Animation,Drama\tKazuya Tsurumaki\ntt0945513\tSource Code\tBen Ripley\tnm1512910\tSource Code\t2011\t7.5\t428577\t93\tMystery,Romance,Sci-Fi\tDuncan Jones\ntt1051907\tFor Love and Honor\tYavuz Turgul\tnm0889943\tFor Love and Honor\t2007\t7.9\t15438\t140\tAction,Crime,Drama\tÖmer Vargi\ntt1213012\tAlpha and Omega\tSteve Moore\tnm0994310\tAlpha and Omega\t2010\t5.3\t11906\t90\tAdventure,Animation,Comedy\tBen Gluck\ntt1213012\tAlpha and Omega\tSteve Moore\tnm0068034\tAlpha and Omega\t2010\t5.3\t11906\t90\tAdventure,Animation,Comedy\tAnthony Bell\ntt1213012\tAlpha and Omega\tChris Denk\tnm0994310\tAlpha and Omega\t2010\t5.3\t11906\t90\tAdventure,Animation,Comedy\tBen Gluck\ntt1213012\tAlpha and Omega\tChris Denk\tnm0068034\tAlpha and Omega\t2010\t5.3\t11906\t90\tAdventure,Animation,Comedy\tAnthony Bell\ntt1658837\tThe Tall Man\tPascal Laugier\tnm1052791\tThe Tall Man\t2012\t5.9\t34310\t106\tCrime,Drama,Horror\tPascal Laugier\ntt1853739\tYou're Next\tSimon Barrett\tnm1417392\tYou're Next\t2011\t6.5\t73813\t95\tHorror,Thriller\tAdam Wingard\ntt1937390\tNymphomaniac: Vol. I\tLars von Trier\tnm0001885\tNymphomaniac: Vol. I\t2013\t7.0\t98354\t117\tDrama\tLars von Trier\ntt1979319\tRurouni Kenshin: Origins\tNobuhiro Watsuki\tnm3311094\tRurouni Kenshin: Origins\t2012\t7.6\t17098\t134\tAction,Drama,History\tKeishi Ohtomo\ntt1979319\tRurouni Kenshin: Origins\tKeishi Ohtomo\tnm3311094\tRurouni Kenshin: Origins\t2012\t7.6\t17098\t134\tAction,Drama,History\tKeishi Ohtomo\ntt1979319\tRurouni Kenshin: Origins\tKiyomi Fujii\tnm3311094\tRurouni Kenshin: Origins\t2012\t7.6\t17098\t134\tAction,Drama,History\tKeishi Ohtomo\ntt2099556\tAntiviral\tBrandon Cronenberg\tnm0188722\tAntiviral\t2012\t5.7\t10504\t108\tHorror,Sci-Fi,Thriller\tBrandon Cronenberg\ntt2170439\tHorrible Bosses 2\tJohn Morris\tnm1890845\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\tSean Anders\ntt2170439\tHorrible Bosses 2\tJonathan Goldstein\tnm1890845\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\tSean Anders\ntt2170439\tHorrible Bosses 2\tMichael Markowitz\tnm1890845\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\tSean Anders\ntt2170439\tHorrible Bosses 2\tJohn Francis Daley\tnm1890845\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\tSean Anders\ntt2170439\tHorrible Bosses 2\tSean Anders\tnm1890845\tHorrible Bosses 2\t2014\t6.3\t134641\t108\tAction,Comedy,Crime\tSean Anders\ntt2378281\tInstructions Not Included\tGuillermo Ríos\tnm0220240\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\tEugenio Derbez\ntt2378281\tInstructions Not Included\tOscar Orlando Torres\tnm0220240\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\tEugenio Derbez\ntt2378281\tInstructions Not Included\tDavid Hernández Miranda\tnm0220240\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\tEugenio Derbez\ntt2378281\tInstructions Not Included\tEugenio Derbez\tnm0220240\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\tEugenio Derbez\ntt2378281\tInstructions Not Included\tGustavo Rodríguez\tnm0220240\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\tEugenio Derbez\ntt2378281\tInstructions Not Included\tLeticia López Margalli\tnm0220240\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\tEugenio Derbez\ntt2378281\tInstructions Not Included\tEduardo Cisneros\tnm0220240\tInstructions Not Included\t2013\t7.6\t25180\t115\tComedy,Drama\tEugenio Derbez\ntt2832470\tDead Snow 2: Red vs. Dead\tVegar Hoel\tnm2482088\tDead Snow 2: Red vs. Dead\t2014\t6.9\t19083\t100\tAction,Comedy,Horror\tTommy Wirkola\ntt2832470\tDead Snow 2: Red vs. Dead\tTommy Wirkola\tnm2482088\tDead Snow 2: Red vs. Dead\t2014\t6.9\t19083\t100\tAction,Comedy,Horror\tTommy Wirkola\ntt2832470\tDead Snow 2: Red vs. Dead\tStig Frode Henriksen\tnm2482088\tDead Snow 2: Red vs. Dead\t2014\t6.9\t19083\t100\tAction,Comedy,Horror\tTommy Wirkola\ntt3095734\tMonster Trucks\tMatthew Robinson\tnm0917188\tMonster Trucks\t2016\t5.7\t11488\t104\tAction,Adventure,Comedy\tChris Wedge\ntt3095734\tMonster Trucks\tGlenn Berger\tnm0917188\tMonster Trucks\t2016\t5.7\t11488\t104\tAction,Adventure,Comedy\tChris Wedge\ntt3095734\tMonster Trucks\tDerek Connolly\tnm0917188\tMonster Trucks\t2016\t5.7\t11488\t104\tAction,Adventure,Comedy\tChris Wedge\ntt3095734\tMonster Trucks\tJonathan Aibel\tnm0917188\tMonster Trucks\t2016\t5.7\t11488\t104\tAction,Adventure,Comedy\tChris Wedge\ntt3321300\tMI-5\tDavid Wolstencroft\tnm0620576\tMI-5\t2015\t6.2\t16993\t104\tAction,Drama,Thriller\tBharat Nalluri\ntt3321300\tMI-5\tSam Vincent\tnm0620576\tMI-5\t2015\t6.2\t16993\t104\tAction,Drama,Thriller\tBharat Nalluri\ntt3321300\tMI-5\tJonathan Brackley\tnm0620576\tMI-5\t2015\t6.2\t16993\t104\tAction,Drama,Thriller\tBharat Nalluri\ntt3801314\tKaththi\tA.R. Murugadoss\tnm1436693\tKaththi\t2014\t8.0\t13945\t166\tAction,Drama\tA.R. Murugadoss\ntt0120679\tFrida\tHayden Herrera\tnm0853380\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\tJulie Taymor\ntt0120679\tFrida\tDiane Lake\tnm0853380\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\tJulie Taymor\ntt0120679\tFrida\tAnna Thomas\tnm0853380\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\tJulie Taymor\ntt0120679\tFrida\tClancy Sigal\tnm0853380\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\tJulie Taymor\ntt0120679\tFrida\tGregory Nava\tnm0853380\tFrida\t2002\t7.4\t70012\t123\tBiography,Drama,Romance\tJulie Taymor\ntt0162222\tCast Away\tWilliam Broyles Jr.\tnm0000709\tCast Away\t2000\t7.8\t445063\t143\tAdventure,Drama,Romance\tRobert Zemeckis\ntt0164184\tThe Sum of All Fears\tPaul Attanasio\tnm0004675\tThe Sum of All Fears\t2002\t6.4\t92873\t124\tAction,Drama,Thriller\tPhil Alden Robinson\ntt0164184\tThe Sum of All Fears\tTom Clancy\tnm0004675\tThe Sum of All Fears\t2002\t6.4\t92873\t124\tAction,Drama,Thriller\tPhil Alden Robinson\ntt0164184\tThe Sum of All Fears\tDaniel Pyne\tnm0004675\tThe Sum of All Fears\t2002\t6.4\t92873\t124\tAction,Drama,Thriller\tPhil Alden Robinson\ntt0242527\tThe Hole\tBen Court\tnm0358327\tThe Hole\t2001\t6.2\t41155\t102\tDrama,Mystery,Thriller\tNick Hamm\ntt0242527\tThe Hole\tCaroline Ip\tnm0358327\tThe Hole\t2001\t6.2\t41155\t102\tDrama,Mystery,Thriller\tNick Hamm\ntt0242527\tThe Hole\tGuy Burt\tnm0358327\tThe Hole\t2001\t6.2\t41155\t102\tDrama,Mystery,Thriller\tNick Hamm\ntt0251114\tHart's War\tJohn Katzenbach\tnm0387706\tHart's War\t2002\t6.3\t46850\t125\tDrama,War\tGregory Hoblit\ntt0251114\tHart's War\tBilly Ray\tnm0387706\tHart's War\t2002\t6.3\t46850\t125\tDrama,War\tGregory Hoblit\ntt0251114\tHart's War\tTerry George\tnm0387706\tHart's War\t2002\t6.3\t46850\t125\tDrama,War\tGregory Hoblit\ntt0252503\tHeist\tDavid Mamet\tnm0000519\tHeist\t2001\t6.5\t29900\t109\tAction,Crime,Drama\tDavid Mamet\ntt0267626\tK-19: The Widowmaker\tLouis Nowra\tnm0000941\tK-19: The Widowmaker\t2002\t6.7\t53278\t138\tDrama,History,Thriller\tKathryn Bigelow\ntt0267626\tK-19: The Widowmaker\tChristopher Kyle\tnm0000941\tK-19: The Widowmaker\t2002\t6.7\t53278\t138\tDrama,History,Thriller\tKathryn Bigelow\ntt0338564\tInfernal Affairs\tAlan Mak\tnm0538320\tInfernal Affairs\t2002\t8.1\t106993\t101\tCrime,Drama,Mystery\tAlan Mak\ntt0338564\tInfernal Affairs\tAlan Mak\tnm0490487\tInfernal Affairs\t2002\t8.1\t106993\t101\tCrime,Drama,Mystery\tWai-Keung Lau\ntt0338564\tInfernal Affairs\tFelix Chong\tnm0538320\tInfernal Affairs\t2002\t8.1\t106993\t101\tCrime,Drama,Mystery\tAlan Mak\ntt0338564\tInfernal Affairs\tFelix Chong\tnm0490487\tInfernal Affairs\t2002\t8.1\t106993\t101\tCrime,Drama,Mystery\tWai-Keung Lau\ntt0343818\tI, Robot\tIsaac Asimov\tnm0001639\tI, Robot\t2004\t7.1\t438005\t115\tAction,Crime,Drama\tAlex Proyas\ntt0343818\tI, Robot\tAkiva Goldsman\tnm0001639\tI, Robot\t2004\t7.1\t438005\t115\tAction,Crime,Drama\tAlex Proyas\ntt0343818\tI, Robot\tJeff Vintar\tnm0001639\tI, Robot\t2004\t7.1\t438005\t115\tAction,Crime,Drama\tAlex Proyas\ntt0402022\tÆon Flux\tPeter Chung\tnm0476201\tÆon Flux\t2005\t5.5\t116336\t93\tAction,Sci-Fi,Thriller\tKaryn Kusama\ntt0402022\tÆon Flux\tPhil Hay\tnm0476201\tÆon Flux\t2005\t5.5\t116336\t93\tAction,Sci-Fi,Thriller\tKaryn Kusama\ntt0402022\tÆon Flux\tMatt Manfredi\tnm0476201\tÆon Flux\t2005\t5.5\t116336\t93\tAction,Sci-Fi,Thriller\tKaryn Kusama\ntt0408777\tThe Edukators\tKatharina Held\tnm0918326\tThe Edukators\t2004\t7.5\t28846\t127\tDrama,Romance\tHans Weingartner\ntt0408777\tThe Edukators\tHans Weingartner\tnm0918326\tThe Edukators\t2004\t7.5\t28846\t127\tDrama,Romance\tHans Weingartner\ntt0443706\tZodiac\tJames Vanderbilt\tnm0000399\tZodiac\t2007\t7.7\t360284\t157\tCrime,Drama,History\tDavid Fincher\ntt0443706\tZodiac\tRobert Graysmith\tnm0000399\tZodiac\t2007\t7.7\t360284\t157\tCrime,Drama,History\tDavid Fincher\ntt0465430\tThe Cottage\tPaul Andrew Williams\tnm1440314\tThe Cottage\t2008\t6.1\t10824\t92\tComedy,Crime,Horror\tPaul Andrew Williams\ntt0804497\tIt's Kind of a Funny Story\tRyan Fleck\tnm0281396\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\tRyan Fleck\ntt0804497\tIt's Kind of a Funny Story\tRyan Fleck\tnm1349818\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\tAnna Boden\ntt0804497\tIt's Kind of a Funny Story\tAnna Boden\tnm0281396\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\tRyan Fleck\ntt0804497\tIt's Kind of a Funny Story\tAnna Boden\tnm1349818\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\tAnna Boden\ntt0804497\tIt's Kind of a Funny Story\tNed Vizzini\tnm0281396\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\tRyan Fleck\ntt0804497\tIt's Kind of a Funny Story\tNed Vizzini\tnm1349818\tIt's Kind of a Funny Story\t2010\t7.1\t119859\t101\tComedy,Drama,Romance\tAnna Boden\ntt0929425\tGomorrah\tGianni Di Gregorio\tnm0308520\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\tMatteo Garrone\ntt0929425\tGomorrah\tMatteo Garrone\tnm0308520\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\tMatteo Garrone\ntt0929425\tGomorrah\tUgo Chiti\tnm0308520\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\tMatteo Garrone\ntt0929425\tGomorrah\tRoberto Saviano\tnm0308520\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\tMatteo Garrone\ntt0929425\tGomorrah\tMassimo Gaudioso\tnm0308520\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\tMatteo Garrone\ntt0929425\tGomorrah\tMaurizio Braucci\tnm0308520\tGomorrah\t2008\t7.0\t41711\t137\tCrime,Drama\tMatteo Garrone\ntt0962726\tHigh School Musical 3: Senior Year\tPeter Barsocchini\tnm0650905\tHigh School Musical 3: Senior Year\t2008\t4.6\t49448\t112\tComedy,Drama,Family\tKenny Ortega\ntt1029231\tKrrish 3\tDavid Benullo\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\tRakesh Roshan\ntt1029231\tKrrish 3\tIrfan Kamal\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\tRakesh Roshan\ntt1029231\tKrrish 3\tRobin Bhatt\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\tRakesh Roshan\ntt1029231\tKrrish 3\tAkarsh Khurana\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\tRakesh Roshan\ntt1029231\tKrrish 3\tSanjay Masoomm\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\tRakesh Roshan\ntt1029231\tKrrish 3\tRajshri Sudhakar\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\tRakesh Roshan\ntt1029231\tKrrish 3\tRakesh Roshan\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\tRakesh Roshan\ntt1029231\tKrrish 3\tHoney Irani\tnm0004363\tKrrish 3\t2013\t5.3\t17721\t152\tAction,Adventure,Sci-Fi\tRakesh Roshan\ntt1080016\tIce Age: Dawn of the Dinosaurs\tPeter Ackerman\tnm0757858\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tCarlos Saldanha\ntt1080016\tIce Age: Dawn of the Dinosaurs\tPeter Ackerman\tnm0862211\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tMike Thurmeier\ntt1080016\tIce Age: Dawn of the Dinosaurs\tYoni Brenner\tnm0757858\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tCarlos Saldanha\ntt1080016\tIce Age: Dawn of the Dinosaurs\tYoni Brenner\tnm0862211\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tMike Thurmeier\ntt1080016\tIce Age: Dawn of the Dinosaurs\tMike Reiss\tnm0757858\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tCarlos Saldanha\ntt1080016\tIce Age: Dawn of the Dinosaurs\tMike Reiss\tnm0862211\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tMike Thurmeier\ntt1080016\tIce Age: Dawn of the Dinosaurs\tMichael Berg\tnm0757858\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tCarlos Saldanha\ntt1080016\tIce Age: Dawn of the Dinosaurs\tMichael Berg\tnm0862211\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tMike Thurmeier\ntt1080016\tIce Age: Dawn of the Dinosaurs\tJason Carter Eaton\tnm0757858\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tCarlos Saldanha\ntt1080016\tIce Age: Dawn of the Dinosaurs\tJason Carter Eaton\tnm0862211\tIce Age: Dawn of the Dinosaurs\t2009\t7.0\t188784\t94\tAction,Adventure,Animation\tMike Thurmeier\ntt1093908\tConfessions of a Shopaholic\tTracey Jackson\tnm0389591\tConfessions of a Shopaholic\t2009\t5.9\t68112\t104\tComedy,Family,Romance\tP.J. Hogan\ntt1093908\tConfessions of a Shopaholic\tSophie Kinsella\tnm0389591\tConfessions of a Shopaholic\t2009\t5.9\t68112\t104\tComedy,Family,Romance\tP.J. Hogan\ntt1093908\tConfessions of a Shopaholic\tKayla Alpert\tnm0389591\tConfessions of a Shopaholic\t2009\t5.9\t68112\t104\tComedy,Family,Romance\tP.J. Hogan\ntt1093908\tConfessions of a Shopaholic\tTim Firth\tnm0389591\tConfessions of a Shopaholic\t2009\t5.9\t68112\t104\tComedy,Family,Romance\tP.J. Hogan\ntt1245112\t[Rec] 2\tAmèlia Mora\tnm0687042\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\tPaco Plaza\ntt1245112\t[Rec] 2\tAmèlia Mora\tnm0049371\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\tJaume Balagueró\ntt1245112\t[Rec] 2\tManu Díez\tnm0687042\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\tPaco Plaza\ntt1245112\t[Rec] 2\tManu Díez\tnm0049371\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\tJaume Balagueró\ntt1245112\t[Rec] 2\tPaco Plaza\tnm0687042\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\tPaco Plaza\ntt1245112\t[Rec] 2\tPaco Plaza\tnm0049371\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\tJaume Balagueró\ntt1245112\t[Rec] 2\tJaume Balagueró\tnm0687042\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\tPaco Plaza\ntt1245112\t[Rec] 2\tJaume Balagueró\tnm0049371\t[Rec] 2\t2009\t6.5\t60920\t85\tHorror,Thriller\tJaume Balagueró\ntt1322312\tGoing the Distance\tGeoff LaTulippe\tnm0123379\tGoing the Distance\t2010\t6.3\t53195\t102\tComedy,Romance\tNanette Burstein\ntt1588170\tI Saw the Devil\tJee-woon Kim\tnm0453518\tI Saw the Devil\t2010\t7.8\t85873\t142\tAction,Drama,Horror\tJee-woon Kim\ntt1588170\tI Saw the Devil\tHoon-jung Park\tnm0453518\tI Saw the Devil\t2010\t7.8\t85873\t142\tAction,Drama,Horror\tJee-woon Kim\ntt1807950\tLove Loves Coincidences\tNuran Evren Sit\tnm0814716\tLove Loves Coincidences\t2011\t7.4\t14333\t118\tDrama,Romance\tÖmer Faruk Sorak\ntt1975249\t6 Bullets\tChad Law\tnm0053228\t6 Bullets\t2012\t6.1\t12571\t115\tAction,Crime,Drama\tErnie Barbarash\ntt1975249\t6 Bullets\tEvan Law\tnm0053228\t6 Bullets\t2012\t6.1\t12571\t115\tAction,Crime,Drama\tErnie Barbarash\ntt5308322\tHappy Death Day\tScott Lobdell\tnm0484907\tHappy Death Day\t2017\t6.5\t53178\t96\tHorror,Mystery,Thriller\tChristopher Landon\ntt5862312\tVeronica\tFernando Navarro\tnm0687042\tVeronica\t2017\t6.2\t17793\t105\tDrama,Horror\tPaco Plaza\ntt5862312\tVeronica\tPaco Plaza\tnm0687042\tVeronica\t2017\t6.2\t17793\t105\tDrama,Horror\tPaco Plaza\ntt0220099\tThe Tigger Movie\tJun Falkenstein\tnm0266255\tThe Tigger Movie\t2000\t6.3\t14654\t77\tAnimation,Comedy,Drama\tJun Falkenstein\ntt0220099\tThe Tigger Movie\tEddie Guzelian\tnm0266255\tThe Tigger Movie\t2000\t6.3\t14654\t77\tAnimation,Comedy,Drama\tJun Falkenstein\ntt0220099\tThe Tigger Movie\tA.A. Milne\tnm0266255\tThe Tigger Movie\t2000\t6.3\t14654\t77\tAnimation,Comedy,Drama\tJun Falkenstein\ntt0252866\tAmerican Pie 2\tAdam Herz\tnm0736930\tAmerican Pie 2\t2001\t6.4\t216414\t108\tComedy\tJ.B. Rogers\ntt0252866\tAmerican Pie 2\tDavid H. Steinberg\tnm0736930\tAmerican Pie 2\t2001\t6.4\t216414\t108\tComedy\tJ.B. Rogers\ntt0279331\tDark Blue\tJames Ellroy\tnm0005421\tDark Blue\t2002\t6.6\t18595\t118\tCrime,Drama,Thriller\tRon Shelton\ntt0279331\tDark Blue\tDavid Ayer\tnm0005421\tDark Blue\t2002\t6.6\t18595\t118\tCrime,Drama,Thriller\tRon Shelton\ntt0284837\tAli G Indahouse\tDan Mazer\tnm0617042\tAli G Indahouse\t2002\t6.2\t75099\t85\tComedy,Romance\tMark Mylod\ntt0284837\tAli G Indahouse\tSacha Baron Cohen\tnm0617042\tAli G Indahouse\t2002\t6.2\t75099\t85\tComedy,Romance\tMark Mylod\ntt0327850\tThe Rundown\tJames Vanderbilt\tnm0000916\tThe Rundown\t2003\t6.7\t89248\t104\tAction,Adventure,Comedy\tPeter Berg\ntt0327850\tThe Rundown\tR.J. Stewart\tnm0000916\tThe Rundown\t2003\t6.7\t89248\t104\tAction,Adventure,Comedy\tPeter Berg\ntt0338309\tEvil\tHans Gunnarsson\tnm0405632\tEvil\t2003\t7.8\t32453\t113\tDrama\tMikael Håfström\ntt0338309\tEvil\tMikael Håfström\tnm0405632\tEvil\t2003\t7.8\t32453\t113\tDrama\tMikael Håfström\ntt0338309\tEvil\tJan Guillou\tnm0405632\tEvil\t2003\t7.8\t32453\t113\tDrama\tMikael Håfström\ntt0338309\tEvil\tKlas Östergren\tnm0405632\tEvil\t2003\t7.8\t32453\t113\tDrama\tMikael Håfström\ntt0347048\tHead-On\tFatih Akin\tnm0015359\tHead-On\t2004\t8.0\t44938\t121\tDrama,Romance\tFatih Akin\ntt0356721\tI Heart Huckabees\tDavid O. Russell\tnm0751102\tI Heart Huckabees\t2004\t6.7\t59247\t107\tComedy\tDavid O. Russell\ntt0356721\tI Heart Huckabees\tJeff Baena\tnm0751102\tI Heart Huckabees\t2004\t6.7\t59247\t107\tComedy\tDavid O. Russell\ntt0364970\tBabylon A.D.\tÉric Besnard\tnm0440913\tBabylon A.D.\t2008\t5.6\t87005\t101\tAction,Adventure,Sci-Fi\tMathieu Kassovitz\ntt0364970\tBabylon A.D.\tMathieu Kassovitz\tnm0440913\tBabylon A.D.\t2008\t5.6\t87005\t101\tAction,Adventure,Sci-Fi\tMathieu Kassovitz\ntt0364970\tBabylon A.D.\tJoseph Simas\tnm0440913\tBabylon A.D.\t2008\t5.6\t87005\t101\tAction,Adventure,Sci-Fi\tMathieu Kassovitz\ntt0364970\tBabylon A.D.\tMaurice G. Dantec\tnm0440913\tBabylon A.D.\t2008\t5.6\t87005\t101\tAction,Adventure,Sci-Fi\tMathieu Kassovitz\ntt0437777\tSomething New\tKriss Turner\tnm1065402\tSomething New\t2006\t6.8\t11301\t99\tComedy,Drama,Romance\tSanaa Hamri\ntt0440963\tThe Bourne Ultimatum\tScott Z. Burns\tnm0339030\tThe Bourne Ultimatum\t2007\t8.0\t556859\t115\tAction,Mystery,Thriller\tPaul Greengrass\ntt0440963\tThe Bourne Ultimatum\tTony Gilroy\tnm0339030\tThe Bourne Ultimatum\t2007\t8.0\t556859\t115\tAction,Mystery,Thriller\tPaul Greengrass\ntt0440963\tThe Bourne Ultimatum\tGeorge Nolfi\tnm0339030\tThe Bourne Ultimatum\t2007\t8.0\t556859\t115\tAction,Mystery,Thriller\tPaul Greengrass\ntt0440963\tThe Bourne Ultimatum\tRobert Ludlum\tnm0339030\tThe Bourne Ultimatum\t2007\t8.0\t556859\t115\tAction,Mystery,Thriller\tPaul Greengrass\ntt0482546\tMiss Potter\tRichard Maltby Jr.\tnm0003088\tMiss Potter\t2006\t7.0\t25586\t88\tBiography,Drama\tChris Noonan\ntt0810988\tThe Nines\tJohn August\tnm0041864\tThe Nines\t2007\t6.4\t30426\t100\tDrama,Fantasy,Mystery\tJohn August\ntt0892899\tOutpost\tRae Brunton\tnm1530422\tOutpost\t2008\t5.9\t14884\t90\tAction,Horror,Sci-Fi\tSteve Barker\ntt0892899\tOutpost\tSteve Barker\tnm1530422\tOutpost\t2008\t5.9\t14884\t90\tAction,Horror,Sci-Fi\tSteve Barker\ntt0892899\tOutpost\tKieran Parker\tnm1530422\tOutpost\t2008\t5.9\t14884\t90\tAction,Horror,Sci-Fi\tSteve Barker\ntt0993846\tThe Wolf of Wall Street\tTerence Winter\tnm0000217\tThe Wolf of Wall Street\t2013\t8.2\t944903\t180\tBiography,Comedy,Crime\tMartin Scorsese\ntt0993846\tThe Wolf of Wall Street\tJordan Belfort\tnm0000217\tThe Wolf of Wall Street\t2013\t8.2\t944903\t180\tBiography,Comedy,Crime\tMartin Scorsese\ntt1571249\tThe Skeleton Twins\tCraig Johnson\tnm2574897\tThe Skeleton Twins\t2014\t6.8\t35176\t93\tComedy,Drama,Romance\tCraig Johnson\ntt1571249\tThe Skeleton Twins\tMark Heyman\tnm2574897\tThe Skeleton Twins\t2014\t6.8\t35176\t93\tComedy,Drama,Romance\tCraig Johnson\ntt2096672\tDumb and Dumber To\tJohn Morris\tnm0268370\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tBobby Farrelly\ntt2096672\tDumb and Dumber To\tJohn Morris\tnm0268380\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tPeter Farrelly\ntt2096672\tDumb and Dumber To\tMike Cerrone\tnm0268370\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tBobby Farrelly\ntt2096672\tDumb and Dumber To\tMike Cerrone\tnm0268380\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tPeter Farrelly\ntt2096672\tDumb and Dumber To\tBennett Yellin\tnm0268370\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tBobby Farrelly\ntt2096672\tDumb and Dumber To\tBennett Yellin\tnm0268380\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tPeter Farrelly\ntt2096672\tDumb and Dumber To\tBobby Farrelly\tnm0268370\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tBobby Farrelly\ntt2096672\tDumb and Dumber To\tBobby Farrelly\tnm0268380\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tPeter Farrelly\ntt2096672\tDumb and Dumber To\tSean Anders\tnm0268370\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tBobby Farrelly\ntt2096672\tDumb and Dumber To\tSean Anders\tnm0268380\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tPeter Farrelly\ntt2096672\tDumb and Dumber To\tPeter Farrelly\tnm0268370\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tBobby Farrelly\ntt2096672\tDumb and Dumber To\tPeter Farrelly\tnm0268380\tDumb and Dumber To\t2014\t5.6\t110987\t109\tAdventure,Comedy\tPeter Farrelly\ntt2258281\tBeyond the Hills\tTatiana Niculescu-Bran\tnm0612816\tBeyond the Hills\t2012\t7.6\t10009\t152\tDrama\tCristian Mungiu\ntt2258281\tBeyond the Hills\tCristian Mungiu\tnm0612816\tBeyond the Hills\t2012\t7.6\t10009\t152\tDrama\tCristian Mungiu\ntt2872462\tMistress America\tGreta Gerwig\tnm0000876\tMistress America\t2015\t6.7\t20929\t84\tComedy,Drama\tNoah Baumbach\ntt2872462\tMistress America\tNoah Baumbach\tnm0000876\tMistress America\t2015\t6.7\t20929\t84\tComedy,Drama\tNoah Baumbach\ntt0132245\tDriven\tNeal Tabachnick\tnm0001317\tDriven\t2001\t4.5\t36362\t116\tAction,Drama,Sport\tRenny Harlin\ntt0132245\tDriven\tJan Skrentny\tnm0001317\tDriven\t2001\t4.5\t36362\t116\tAction,Drama,Sport\tRenny Harlin\ntt0132245\tDriven\tSylvester Stallone\tnm0001317\tDriven\t2001\t4.5\t36362\t116\tAction,Drama,Sport\tRenny Harlin\ntt0243655\tWet Hot American Summer\tMichael Showalter\tnm0906476\tWet Hot American Summer\t2001\t6.7\t46941\t97\tComedy,Romance\tDavid Wain\ntt0243655\tWet Hot American Summer\tDavid Wain\tnm0906476\tWet Hot American Summer\t2001\t6.7\t46941\t97\tComedy,Romance\tDavid Wain\ntt0252444\tRabbit-Proof Fence\tChristine Olsen\tnm0637518\tRabbit-Proof Fence\t2002\t7.5\t25045\t94\tAdventure,Biography,Drama\tPhillip Noyce\ntt0252444\tRabbit-Proof Fence\tDoris Pilkington\tnm0637518\tRabbit-Proof Fence\t2002\t7.5\t25045\t94\tAdventure,Biography,Drama\tPhillip Noyce\ntt0366627\tThe Jacket\tTom Bleecker\tnm0562266\tThe Jacket\t2005\t7.1\t100160\t103\tDrama,Fantasy,Horror\tJohn Maybury\ntt0366627\tThe Jacket\tMassy Tadjedin\tnm0562266\tThe Jacket\t2005\t7.1\t100160\t103\tDrama,Fantasy,Horror\tJohn Maybury\ntt0366627\tThe Jacket\tMarc Rocco\tnm0562266\tThe Jacket\t2005\t7.1\t100160\t103\tDrama,Fantasy,Horror\tJohn Maybury\ntt0374536\tBewitched\tDelia Ephron\tnm0001188\tBewitched\t2005\t4.8\t62785\t102\tComedy,Fantasy,Romance\tNora Ephron\ntt0374536\tBewitched\tSol Saks\tnm0001188\tBewitched\t2005\t4.8\t62785\t102\tComedy,Fantasy,Romance\tNora Ephron\ntt0374536\tBewitched\tNora Ephron\tnm0001188\tBewitched\t2005\t4.8\t62785\t102\tComedy,Fantasy,Romance\tNora Ephron\ntt0427312\tGrizzly Man\tWerner Herzog\tnm0001348\tGrizzly Man\t2005\t7.8\t46049\t103\tBiography,Documentary\tWerner Herzog\ntt0445336\tYou, the Living\tRoy Andersson\tnm0027815\tYou, the Living\t2007\t7.5\t12106\t95\tComedy,Drama,Music\tRoy Andersson\ntt0829297\tTen Inch Hero\tBetsy Morris\tnm0533145\tTen Inch Hero\t2007\t7.5\t10961\t102\tComedy,Drama,Romance\tDavid Mackay\ntt1244668\tSoul Kitchen\tAdam Bousdoukos\tnm0015359\tSoul Kitchen\t2009\t7.3\t32291\t99\tComedy,Drama\tFatih Akin\ntt1244668\tSoul Kitchen\tFatih Akin\tnm0015359\tSoul Kitchen\t2009\t7.3\t32291\t99\tComedy,Drama\tFatih Akin\ntt1307068\tSeeking a Friend for the End of the World\tLorene Scafaria\tnm1032521\tSeeking a Friend for the End of the World\t2012\t6.7\t97691\t101\tAdventure,Comedy,Drama\tLorene Scafaria\ntt1468846\tGet a Job\tKyle Pennekamp\tnm1071898\tGet a Job\t2016\t5.3\t17796\t83\tComedy\tDylan Kidd\ntt1468846\tGet a Job\tScott Turpel\tnm1071898\tGet a Job\t2016\t5.3\t17796\t83\tComedy\tDylan Kidd\ntt1540011\tBlair Witch\tSimon Barrett\tnm1417392\tBlair Witch\t2016\t5.0\t32695\t89\tHorror,Thriller\tAdam Wingard\ntt1610452\tBand Baaja Baaraat\tAmitabh Bhattacharya\tnm1834891\tBand Baaja Baaraat\t2010\t7.3\t12047\t139\tComedy,Drama,Romance\tManeesh Sharma\ntt1610452\tBand Baaja Baaraat\tHabib Faisal\tnm1834891\tBand Baaja Baaraat\t2010\t7.3\t12047\t139\tComedy,Drama,Romance\tManeesh Sharma\ntt1610452\tBand Baaja Baaraat\tManeesh Sharma\tnm1834891\tBand Baaja Baaraat\t2010\t7.3\t12047\t139\tComedy,Drama,Romance\tManeesh Sharma\ntt1657507\tColombiana\tRobert Mark Kamen\tnm0576298\tColombiana\t2011\t6.4\t83258\t108\tAction,Crime,Drama\tOlivier Megaton\ntt1657507\tColombiana\tLuc Besson\tnm0576298\tColombiana\t2011\t6.4\t83258\t108\tAction,Crime,Drama\tOlivier Megaton\ntt1714206\tThe Spectacular Now\tScott Neustadter\tnm1242054\tThe Spectacular Now\t2013\t7.1\t124312\t95\tComedy,Drama,Romance\tJames Ponsoldt\ntt1714206\tThe Spectacular Now\tMichael H. Weber\tnm1242054\tThe Spectacular Now\t2013\t7.1\t124312\t95\tComedy,Drama,Romance\tJames Ponsoldt\ntt1714206\tThe Spectacular Now\tTim Tharp\tnm1242054\tThe Spectacular Now\t2013\t7.1\t124312\t95\tComedy,Drama,Romance\tJames Ponsoldt\ntt2076220\tHoly Motors\tLeos Carax\tnm0136021\tHoly Motors\t2012\t7.1\t34471\t115\tDrama,Fantasy\tLeos Carax\ntt2302755\tOlympus Has Fallen\tKatrin Benedikt\tnm0298807\tOlympus Has Fallen\t2013\t6.5\t224852\t119\tAction,Drama,Thriller\tAntoine Fuqua\ntt2302755\tOlympus Has Fallen\tCreighton Rothenberger\tnm0298807\tOlympus Has Fallen\t2013\t6.5\t224852\t119\tAction,Drama,Thriller\tAntoine Fuqua\ntt2527336\tStar Wars: The Last Jedi\tGeorge Lucas\tnm0426059\tStar Wars: The Last Jedi\t2017\t7.3\t366323\t152\tAction,Adventure,Fantasy\tRian Johnson\ntt2527336\tStar Wars: The Last Jedi\tRian Johnson\tnm0426059\tStar Wars: The Last Jedi\t2017\t7.3\t366323\t152\tAction,Adventure,Fantasy\tRian Johnson\ntt2649554\tMidnight Special\tJeff Nichols\tnm2158772\tMidnight Special\t2016\t6.6\t63184\t112\tDrama,Mystery,Sci-Fi\tJeff Nichols\ntt2674426\tMe Before You\tJojo Moyes\tnm4824763\tMe Before You\t2016\t7.4\t143473\t106\tDrama,Romance\tThea Sharrock\ntt3297330\tGood Kill\tAndrew Niccol\tnm0629272\tGood Kill\t2014\t6.4\t19637\t102\tDrama,Thriller,War\tAndrew Niccol\ntt5286444\tNeerja\tSanyukta Shaikh Chawla\tnm0534879\tNeerja\t2016\t7.7\t16161\t122\tBiography,Drama,Thriller\tRam Madhvani\ntt5286444\tNeerja\tSaiwyn Quadras\tnm0534879\tNeerja\t2016\t7.7\t16161\t122\tBiography,Drama,Thriller\tRam Madhvani\ntt0253798\tOut Cold\tJon Zack\tnm0540139\tOut Cold\t2001\t6.3\t15364\t89\tComedy,Sport\tBrendan Malloy\ntt0253798\tOut Cold\tJon Zack\tnm0540148\tOut Cold\t2001\t6.3\t15364\t89\tComedy,Sport\tEmmett Malloy\ntt0325703\tLara Croft Tomb Raider: The Cradle of Life\tSteven E. de Souza\tnm0000957\tLara Croft Tomb Raider: The Cradle of Life\t2003\t5.5\t114835\t117\tAction,Adventure,Fantasy\tJan de Bont\ntt0325703\tLara Croft Tomb Raider: The Cradle of Life\tDean Georgaris\tnm0000957\tLara Croft Tomb Raider: The Cradle of Life\t2003\t5.5\t114835\t117\tAction,Adventure,Fantasy\tJan de Bont\ntt0325703\tLara Croft Tomb Raider: The Cradle of Life\tJames V. Hart\tnm0000957\tLara Croft Tomb Raider: The Cradle of Life\t2003\t5.5\t114835\t117\tAction,Adventure,Fantasy\tJan de Bont\ntt0335121\tGodsend\tMark Bomback\tnm0358327\tGodsend\t2004\t4.8\t23414\t102\tAction,Drama,Fantasy\tNick Hamm\ntt0371257\tStay\tDavid Benioff\tnm0286975\tStay\t2005\t6.9\t67275\t99\tDrama,Mystery,Thriller\tMarc Forster\ntt0385002\tGreen Street Hooligans\tJosh Shelov\tnm0591994\tGreen Street Hooligans\t2005\t7.5\t128929\t109\tCrime,Drama\tLexi Alexander\ntt0385002\tGreen Street Hooligans\tLexi Alexander\tnm0591994\tGreen Street Hooligans\t2005\t7.5\t128929\t109\tCrime,Drama\tLexi Alexander\ntt0385002\tGreen Street Hooligans\tDougie Brimson\tnm0591994\tGreen Street Hooligans\t2005\t7.5\t128929\t109\tCrime,Drama\tLexi Alexander\ntt0396592\tFat Albert\tCharles Kipps\tnm0959034\tFat Albert\t2004\t4.3\t10112\t93\tComedy,Family,Fantasy\tJoel Zwick\ntt0396592\tFat Albert\tBill Cosby\tnm0959034\tFat Albert\t2004\t4.3\t10112\t93\tComedy,Family,Fantasy\tJoel Zwick\ntt0409847\tCowboys & Aliens\tMark Fergus\tnm0269463\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\tJon Favreau\ntt0409847\tCowboys & Aliens\tAlex Kurtzman\tnm0269463\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\tJon Favreau\ntt0409847\tCowboys & Aliens\tSteve Oedekerk\tnm0269463\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\tJon Favreau\ntt0409847\tCowboys & Aliens\tDamon Lindelof\tnm0269463\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\tJon Favreau\ntt0409847\tCowboys & Aliens\tRoberto Orci\tnm0269463\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\tJon Favreau\ntt0409847\tCowboys & Aliens\tHawk Ostby\tnm0269463\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\tJon Favreau\ntt0409847\tCowboys & Aliens\tScott Mitchell Rosenberg\tnm0269463\tCowboys & Aliens\t2011\t6.0\t187915\t119\tAction,Sci-Fi,Thriller\tJon Favreau\ntt0428803\tMarch of the Penguins\tLuc Jacquet\tnm0415207\tMarch of the Penguins\t2005\t7.6\t51279\t80\tDocumentary,Family\tLuc Jacquet\ntt0428803\tMarch of the Penguins\tMichel Fessler\tnm0415207\tMarch of the Penguins\t2005\t7.6\t51279\t80\tDocumentary,Family\tLuc Jacquet\ntt0428803\tMarch of the Penguins\tJordan Roberts\tnm0415207\tMarch of the Penguins\t2005\t7.6\t51279\t80\tDocumentary,Family\tLuc Jacquet\ntt0435623\tConversations with Other Women\tGabrielle Zevin\tnm0134396\tConversations with Other Women\t2005\t7.1\t10886\t84\tComedy,Drama,Romance\tHans Canosa\ntt0435761\tToy Story 3\tLee Unkrich\tnm0881279\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\tLee Unkrich\ntt0435761\tToy Story 3\tMichael Arndt\tnm0881279\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\tLee Unkrich\ntt0435761\tToy Story 3\tJohn Lasseter\tnm0881279\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\tLee Unkrich\ntt0435761\tToy Story 3\tAndrew Stanton\tnm0881279\tToy Story 3\t2010\t8.3\t631868\t103\tAdventure,Animation,Comedy\tLee Unkrich\ntt0473360\tGoal II: Living the Dream\tTerry Loane\tnm1429471\tGoal II: Living the Dream\t2007\t5.9\t28442\t115\tDrama,Sport\tJaume Collet-Serra\ntt0473360\tGoal II: Living the Dream\tAdrian Butchart\tnm1429471\tGoal II: Living the Dream\t2007\t5.9\t28442\t115\tDrama,Sport\tJaume Collet-Serra\ntt0473360\tGoal II: Living the Dream\tMike Jefferies\tnm1429471\tGoal II: Living the Dream\t2007\t5.9\t28442\t115\tDrama,Sport\tJaume Collet-Serra\ntt0482088\tPriceless\tBenoît Graffin\tnm0759270\tPriceless\t2006\t7.0\t28032\t106\tComedy,Romance\tPierre Salvadori\ntt0482088\tPriceless\tPierre Salvadori\tnm0759270\tPriceless\t2006\t7.0\t28032\t106\tComedy,Romance\tPierre Salvadori\ntt0803061\tRed Dog\tDaniel Taplitz\tnm0826541\tRed Dog\t2011\t7.5\t14541\t92\tBiography,Comedy,Drama\tKriv Stenders\ntt0803061\tRed Dog\tLouis de Bernières\tnm0826541\tRed Dog\t2011\t7.5\t14541\t92\tBiography,Comedy,Drama\tKriv Stenders\ntt1046173\tG.I. Joe: The Rise of Cobra\tMichael B. Gordon\tnm0814085\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\tStephen Sommers\ntt1046173\tG.I. Joe: The Rise of Cobra\tStephen Sommers\tnm0814085\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\tStephen Sommers\ntt1046173\tG.I. Joe: The Rise of Cobra\tDavid Elliot\tnm0814085\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\tStephen Sommers\ntt1046173\tG.I. Joe: The Rise of Cobra\tStuart Beattie\tnm0814085\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\tStephen Sommers\ntt1046173\tG.I. Joe: The Rise of Cobra\tPaul Lovett\tnm0814085\tG.I. Joe: The Rise of Cobra\t2009\t5.8\t185733\t118\tAction,Adventure,Sci-Fi\tStephen Sommers\ntt1084972\tWanted\tPuri Jagannadh\tnm0222150\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\tPrabhudheva\ntt1084972\tWanted\tSunil Kumar Agrawal\tnm0222150\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\tPrabhudheva\ntt1084972\tWanted\tShiraz Ahmed\tnm0222150\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\tPrabhudheva\ntt1084972\tWanted\tShabbir Ahmed\tnm0222150\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\tPrabhudheva\ntt1084972\tWanted\tJalees Sherwani\tnm0222150\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\tPrabhudheva\ntt1084972\tWanted\tArun Bhairav\tnm0222150\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\tPrabhudheva\ntt1084972\tWanted\tWajid Ali\tnm0222150\tWanted\t2009\t6.6\t15509\t147\tAction,Crime,Thriller\tPrabhudheva\ntt1120985\tBlue Valentine\tJoey Curtis\tnm0161834\tBlue Valentine\t2010\t7.4\t160418\t112\tDrama,Romance\tDerek Cianfrance\ntt1120985\tBlue Valentine\tDerek Cianfrance\tnm0161834\tBlue Valentine\t2010\t7.4\t160418\t112\tDrama,Romance\tDerek Cianfrance\ntt1120985\tBlue Valentine\tCami Delavigne\tnm0161834\tBlue Valentine\t2010\t7.4\t160418\t112\tDrama,Romance\tDerek Cianfrance\ntt1194263\tGet Low\tC. Gaby Mitchell\tnm0773689\tGet Low\t2009\t7.1\t20293\t103\tDrama,Mystery\tAaron Schneider\ntt1194263\tGet Low\tChris Provenzano\tnm0773689\tGet Low\t2009\t7.1\t20293\t103\tDrama,Mystery\tAaron Schneider\ntt1194263\tGet Low\tScott Seeke\tnm0773689\tGet Low\t2009\t7.1\t20293\t103\tDrama,Mystery\tAaron Schneider\ntt1231586\tA Good Old Fashioned Orgy\tPeter Huyck\tnm0404752\tA Good Old Fashioned Orgy\t2011\t6.2\t19210\t95\tComedy,Romance\tPeter Huyck\ntt1231586\tA Good Old Fashioned Orgy\tPeter Huyck\tnm0339733\tA Good Old Fashioned Orgy\t2011\t6.2\t19210\t95\tComedy,Romance\tAlex Gregory\ntt1231586\tA Good Old Fashioned Orgy\tAlex Gregory\tnm0404752\tA Good Old Fashioned Orgy\t2011\t6.2\t19210\t95\tComedy,Romance\tPeter Huyck\ntt1231586\tA Good Old Fashioned Orgy\tAlex Gregory\tnm0339733\tA Good Old Fashioned Orgy\t2011\t6.2\t19210\t95\tComedy,Romance\tAlex Gregory\ntt1234719\tRed Dawn\tJohn Milius\tnm0103187\tRed Dawn\t2012\t5.4\t66951\t93\tAction,Sci-Fi,Thriller\tDan Bradley\ntt1234719\tRed Dawn\tCarl Ellsworth\tnm0103187\tRed Dawn\t2012\t5.4\t66951\t93\tAction,Sci-Fi,Thriller\tDan Bradley\ntt1234719\tRed Dawn\tKevin Reynolds\tnm0103187\tRed Dawn\t2012\t5.4\t66951\t93\tAction,Sci-Fi,Thriller\tDan Bradley\ntt1234719\tRed Dawn\tJeremy Passmore\tnm0103187\tRed Dawn\t2012\t5.4\t66951\t93\tAction,Sci-Fi,Thriller\tDan Bradley\ntt1268799\tA Very Harold & Kumar 3D Christmas\tJon Hurwitz\tnm0833889\tA Very Harold & Kumar 3D Christmas\t2011\t6.3\t59789\t90\tAdventure,Comedy\tTodd Strauss-Schulson\ntt1268799\tA Very Harold & Kumar 3D Christmas\tHayden Schlossberg\tnm0833889\tA Very Harold & Kumar 3D Christmas\t2011\t6.3\t59789\t90\tAdventure,Comedy\tTodd Strauss-Schulson\ntt1298650\tPirates of the Caribbean: On Stranger Tides\tTed Elliott\tnm0551128\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\tRob Marshall\ntt1298650\tPirates of the Caribbean: On Stranger Tides\tTerry Rossio\tnm0551128\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\tRob Marshall\ntt1298650\tPirates of the Caribbean: On Stranger Tides\tStuart Beattie\tnm0551128\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\tRob Marshall\ntt1298650\tPirates of the Caribbean: On Stranger Tides\tTim Powers\tnm0551128\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\tRob Marshall\ntt1298650\tPirates of the Caribbean: On Stranger Tides\tJay Wolpert\tnm0551128\tPirates of the Caribbean: On Stranger Tides\t2011\t6.6\t422476\t136\tAction,Adventure,Fantasy\tRob Marshall\ntt1483013\tOblivion\tKarl Gajdusek\tnm2676052\tOblivion\t2013\t7.0\t430477\t124\tAction,Adventure,Mystery\tJoseph Kosinski\ntt1483013\tOblivion\tJoseph Kosinski\tnm2676052\tOblivion\t2013\t7.0\t430477\t124\tAction,Adventure,Mystery\tJoseph Kosinski\ntt1483013\tOblivion\tMichael Arndt\tnm2676052\tOblivion\t2013\t7.0\t430477\t124\tAction,Adventure,Mystery\tJoseph Kosinski\ntt2096673\tInside Out\tJosh Cooley\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tPete Docter\ntt2096673\tInside Out\tJosh Cooley\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tRonnie Del Carmen\ntt2096673\tInside Out\tMichael Arndt\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tPete Docter\ntt2096673\tInside Out\tMichael Arndt\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tRonnie Del Carmen\ntt2096673\tInside Out\tPete Docter\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tPete Docter\ntt2096673\tInside Out\tPete Docter\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tRonnie Del Carmen\ntt2096673\tInside Out\tAmy Poehler\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tPete Docter\ntt2096673\tInside Out\tAmy Poehler\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tRonnie Del Carmen\ntt2096673\tInside Out\tBill Hader\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tPete Docter\ntt2096673\tInside Out\tBill Hader\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tRonnie Del Carmen\ntt2096673\tInside Out\tRonnie Del Carmen\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tPete Docter\ntt2096673\tInside Out\tRonnie Del Carmen\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tRonnie Del Carmen\ntt2096673\tInside Out\tSimon Rich\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tPete Docter\ntt2096673\tInside Out\tSimon Rich\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tRonnie Del Carmen\ntt2096673\tInside Out\tMeg LeFauve\tnm0230032\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tPete Docter\ntt2096673\tInside Out\tMeg LeFauve\tnm0215455\tInside Out\t2015\t8.2\t476936\t95\tAdventure,Animation,Comedy\tRonnie Del Carmen\ntt2265398\tDrinking Buddies\tJoe Swanberg\tnm1846132\tDrinking Buddies\t2013\t6.1\t51205\t90\tComedy,Drama,Romance\tJoe Swanberg\ntt4080728\tA Man Called Ove\tFredrik Backman\tnm0391502\tA Man Called Ove\t2015\t7.7\t31817\t116\tComedy,Drama,Romance\tHannes Holm\ntt4080728\tA Man Called Ove\tHannes Holm\tnm0391502\tA Man Called Ove\t2015\t7.7\t31817\t116\tComedy,Drama,Romance\tHannes Holm\ntt0133152\tPlanet of the Apes\tMark Rosenthal\tnm0000318\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\tTim Burton\ntt0133152\tPlanet of the Apes\tLawrence Konner\tnm0000318\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\tTim Burton\ntt0133152\tPlanet of the Apes\tPierre Boulle\tnm0000318\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\tTim Burton\ntt0133152\tPlanet of the Apes\tWilliam Broyles Jr.\tnm0000318\tPlanet of the Apes\t2001\t5.7\t194575\t119\tAction,Adventure,Sci-Fi\tTim Burton\ntt0149624\tAll the Pretty Horses\tCormac McCarthy\tnm0000671\tAll the Pretty Horses\t2000\t5.8\t12061\t116\tDrama,Romance,Western\tBilly Bob Thornton\ntt0149624\tAll the Pretty Horses\tTed Tally\tnm0000671\tAll the Pretty Horses\t2000\t5.8\t12061\t116\tDrama,Romance,Western\tBilly Bob Thornton\ntt0181739\tOsmosis Jones\tMarc Hyman\tnm0268370\tOsmosis Jones\t2001\t6.3\t28053\t95\tAction,Adventure,Animation\tBobby Farrelly\ntt0181739\tOsmosis Jones\tMarc Hyman\tnm0268380\tOsmosis Jones\t2001\t6.3\t28053\t95\tAction,Adventure,Animation\tPeter Farrelly\ntt0317219\tCars\tSteve Purcell\tnm0710020\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJoe Ranft\ntt0317219\tCars\tSteve Purcell\tnm0005124\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJohn Lasseter\ntt0317219\tCars\tJorgen Klubien\tnm0710020\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJoe Ranft\ntt0317219\tCars\tJorgen Klubien\tnm0005124\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJohn Lasseter\ntt0317219\tCars\tJoe Ranft\tnm0710020\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJoe Ranft\ntt0317219\tCars\tJoe Ranft\tnm0005124\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJohn Lasseter\ntt0317219\tCars\tJohn Lasseter\tnm0710020\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJoe Ranft\ntt0317219\tCars\tJohn Lasseter\tnm0005124\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJohn Lasseter\ntt0317219\tCars\tKiel Murray\tnm0710020\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJoe Ranft\ntt0317219\tCars\tKiel Murray\tnm0005124\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJohn Lasseter\ntt0317219\tCars\tDan Fogelman\tnm0710020\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJoe Ranft\ntt0317219\tCars\tDan Fogelman\tnm0005124\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJohn Lasseter\ntt0317219\tCars\tPhil Lorin\tnm0710020\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJoe Ranft\ntt0317219\tCars\tPhil Lorin\tnm0005124\tCars\t2006\t7.1\t301855\t117\tAnimation,Comedy,Family\tJohn Lasseter\ntt0443701\tThe X Files: I Want to Believe\tFrank Spotnitz\tnm0004810\tThe X Files: I Want to Believe\t2008\t5.9\t83158\t104\tDrama,Horror,Mystery\tChris Carter\ntt0443701\tThe X Files: I Want to Believe\tChris Carter\tnm0004810\tThe X Files: I Want to Believe\t2008\t5.9\t83158\t104\tDrama,Horror,Mystery\tChris Carter\ntt0449059\tLittle Miss Sunshine\tMichael Arndt\tnm0206760\tLittle Miss Sunshine\t2006\t7.8\t391289\t101\tComedy,Drama\tJonathan Dayton\ntt0449059\tLittle Miss Sunshine\tMichael Arndt\tnm0267512\tLittle Miss Sunshine\t2006\t7.8\t391289\t101\tComedy,Drama\tValerie Faris\ntt0981227\tNick and Norah's Infinite Playlist\tLorene Scafaria\tnm0813164\tNick and Norah's Infinite Playlist\t2008\t6.7\t80519\t90\tComedy,Drama,Music\tPeter Sollett\ntt0981227\tNick and Norah's Infinite Playlist\tRachel Cohn\tnm0813164\tNick and Norah's Infinite Playlist\t2008\t6.7\t80519\t90\tComedy,Drama,Music\tPeter Sollett\ntt0981227\tNick and Norah's Infinite Playlist\tDavid Levithan\tnm0813164\tNick and Norah's Infinite Playlist\t2008\t6.7\t80519\t90\tComedy,Drama,Music\tPeter Sollett\ntt1018818\tAssassination of a High School President\tTim Calpin\tnm1843195\tAssassination of a High School President\t2008\t6.3\t14687\t93\tComedy,Crime,Mystery\tBrett Simon\ntt1018818\tAssassination of a High School President\tKevin Jakubowski\tnm1843195\tAssassination of a High School President\t2008\t6.3\t14687\t93\tComedy,Crime,Mystery\tBrett Simon\ntt1226271\tThe Damned United\tDavid Peace\tnm0393799\tThe Damned United\t2009\t7.6\t36082\t98\tBiography,Drama,Sport\tTom Hooper\ntt1226271\tThe Damned United\tPeter Morgan\tnm0393799\tThe Damned United\t2009\t7.6\t36082\t98\tBiography,Drama,Sport\tTom Hooper\ntt1242545\tLooking for Eric\tPaul Laverty\tnm0516360\tLooking for Eric\t2009\t7.2\t14163\t116\tComedy,Drama,Fantasy\tKen Loach\ntt1462667\tOutrage\tTakeshi Kitano\tnm0001429\tOutrage\t2010\t6.8\t10296\t109\tAction,Crime,Drama\tTakeshi Kitano\ntt1601913\tThe Grey\tIan Mackenzie Jeffers\tnm0138620\tThe Grey\t2011\t6.8\t220000\t117\tAction,Adventure,Drama\tJoe Carnahan\ntt1601913\tThe Grey\tJoe Carnahan\tnm0138620\tThe Grey\t2011\t6.8\t220000\t117\tAction,Adventure,Drama\tJoe Carnahan\ntt1674784\tTrespass\tKarl Gajdusek\tnm0001708\tTrespass\t2011\t5.3\t37707\t91\tCrime,Thriller\tJoel Schumacher\ntt1833844\tBerberian Sound Studio\tPeter Strickland\tnm3270827\tBerberian Sound Studio\t2012\t6.2\t11976\t92\tDrama,Horror,Thriller\tPeter Strickland\ntt1912398\tGod Bless America\tBobcat Goldthwait\tnm0001281\tGod Bless America\t2011\t7.2\t64232\t105\tComedy,Crime\tBobcat Goldthwait\ntt1951264\tThe Hunger Games: Catching Fire\tSuzanne Collins\tnm1349376\tThe Hunger Games: Catching Fire\t2013\t7.5\t550267\t146\tAction,Adventure,Mystery\tFrancis Lawrence\ntt1951264\tThe Hunger Games: Catching Fire\tMichael Arndt\tnm1349376\tThe Hunger Games: Catching Fire\t2013\t7.5\t550267\t146\tAction,Adventure,Mystery\tFrancis Lawrence\ntt1951264\tThe Hunger Games: Catching Fire\tSimon Beaufoy\tnm1349376\tThe Hunger Games: Catching Fire\t2013\t7.5\t550267\t146\tAction,Adventure,Mystery\tFrancis Lawrence\ntt2226597\tThe Mountain Between Us\tCharles Martin\tnm0009463\tThe Mountain Between Us\t2017\t6.4\t39463\t112\tAction,Adventure,Drama\tHany Abu-Assad\ntt2226597\tThe Mountain Between Us\tJ. Mills Goodloe\tnm0009463\tThe Mountain Between Us\t2017\t6.4\t39463\t112\tAction,Adventure,Drama\tHany Abu-Assad\ntt2226597\tThe Mountain Between Us\tChris Weitz\tnm0009463\tThe Mountain Between Us\t2017\t6.4\t39463\t112\tAction,Adventure,Drama\tHany Abu-Assad\ntt2281159\tContracted\tEric England\tnm3146718\tContracted\t2013\t5.3\t12486\t84\tDrama,Horror,Thriller\tEric England\ntt2293640\tMinions\tBrian Lynch\tnm0049633\tMinions\t2015\t6.4\t177618\t91\tAction,Adventure,Animation\tKyle Balda\ntt2293640\tMinions\tBrian Lynch\tnm1853544\tMinions\t2015\t6.4\t177618\t91\tAction,Adventure,Animation\tPierre Coffin\ntt4679210\tPremam\tAlphonse Puthren\tnm4737195\tPremam\t2015\t8.3\t11129\t156\tComedy,Drama,Romance\tAlphonse Puthren\ntt5052448\tGet Out\tJordan Peele\tnm1443502\tGet Out\t2017\t7.7\t296485\t104\tHorror,Mystery,Thriller\tJordan Peele\ntt0200550\tCoyote Ugly\tGina Wendkos\tnm0573589\tCoyote Ugly\t2000\t5.6\t97262\t100\tComedy,Drama,Music\tDavid McNally\ntt0213149\tPearl Harbor\tRandall Wallace\tnm0000881\tPearl Harbor\t2001\t6.1\t280229\t183\tAction,Drama,History\tMichael Bay\ntt0272207\tNarc\tJoe Carnahan\tnm0138620\tNarc\t2002\t7.2\t35870\t105\tCrime,Drama,Mystery\tJoe Carnahan\ntt0277027\tI Am Sam\tKristine Johnson\tnm0625458\tI Am Sam\t2001\t7.6\t131383\t132\tDrama\tJessie Nelson\ntt0277027\tI Am Sam\tJessie Nelson\tnm0625458\tI Am Sam\t2001\t7.6\t131383\t132\tDrama\tJessie Nelson\ntt0350258\tRay\tTaylor Hackford\tnm0000431\tRay\t2004\t7.7\t121528\t152\tBiography,Drama,Music\tTaylor Hackford\ntt0350258\tRay\tJames L. White\tnm0000431\tRay\t2004\t7.7\t121528\t152\tBiography,Drama,Music\tTaylor Hackford\ntt0353489\tGinger Snaps 2: Unleashed\tKaren Walton\tnm0837977\tGinger Snaps 2: Unleashed\t2004\t6.5\t11203\t94\tHorror,Thriller\tBrett Sullivan\ntt0353489\tGinger Snaps 2: Unleashed\tMegan Martin\tnm0837977\tGinger Snaps 2: Unleashed\t2004\t6.5\t11203\t94\tHorror,Thriller\tBrett Sullivan\ntt0362270\tThe Life Aquatic with Steve Zissou\tNoah Baumbach\tnm0027572\tThe Life Aquatic with Steve Zissou\t2004\t7.3\t156922\t119\tAdventure,Comedy,Drama\tWes Anderson\ntt0362270\tThe Life Aquatic with Steve Zissou\tWes Anderson\tnm0027572\tThe Life Aquatic with Steve Zissou\t2004\t7.3\t156922\t119\tAdventure,Comedy,Drama\tWes Anderson\ntt0397619\tSamaritan Girl\tKi-duk Kim\tnm1104118\tSamaritan Girl\t2004\t7.2\t12036\t95\tDrama\tKi-duk Kim\ntt0425379\tI'm the Angel of Death: Pusher III\tNicolas Winding Refn\tnm0716347\tI'm the Angel of Death: Pusher III\t2005\t7.3\t11431\t90\tCrime,Drama,Thriller\tNicolas Winding Refn\ntt0453556\tTMNT\tKevin Munroe\tnm1083489\tTMNT\t2007\t6.3\t56609\t87\tAction,Adventure,Animation\tKevin Munroe\ntt0453556\tTMNT\tKevin Eastman\tnm1083489\tTMNT\t2007\t6.3\t56609\t87\tAction,Adventure,Animation\tKevin Munroe\ntt0453556\tTMNT\tPeter Laird\tnm1083489\tTMNT\t2007\t6.3\t56609\t87\tAction,Adventure,Animation\tKevin Munroe\ntt0772193\tPrimeval\tMichael Ferris\tnm0003150\tPrimeval\t2007\t4.7\t11810\t93\tAction,Adventure,Crime\tMichael Katleman\ntt0772193\tPrimeval\tJohn Brancato\tnm0003150\tPrimeval\t2007\t4.7\t11810\t93\tAction,Adventure,Crime\tMichael Katleman\ntt0785077\tWho's Your Caddy?\tRobert Henny\tnm0666806\tWho's Your Caddy?\t2007\t2.1\t14139\t93\tComedy,Sport\tDon Michael Paul\ntt0785077\tWho's Your Caddy?\tBradley Allenstein\tnm0666806\tWho's Your Caddy?\t2007\t2.1\t14139\t93\tComedy,Sport\tDon Michael Paul\ntt0785077\tWho's Your Caddy?\tDon Michael Paul\tnm0666806\tWho's Your Caddy?\t2007\t2.1\t14139\t93\tComedy,Sport\tDon Michael Paul\ntt0881320\tSanctum\tJohn Garvin\tnm0340958\tSanctum\t2011\t5.9\t49840\t108\tAdventure,Drama,Thriller\tAlister Grierson\ntt0881320\tSanctum\tAndrew Wight\tnm0340958\tSanctum\t2011\t5.9\t49840\t108\tAdventure,Drama,Thriller\tAlister Grierson\ntt1153706\tDance Flick\tDamien Dante Wayans\tnm1349040\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\tDamien Dante Wayans\ntt1153706\tDance Flick\tCraig Wayans\tnm1349040\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\tDamien Dante Wayans\ntt1153706\tDance Flick\tMarlon Wayans\tnm1349040\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\tDamien Dante Wayans\ntt1153706\tDance Flick\tShawn Wayans\tnm1349040\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\tDamien Dante Wayans\ntt1153706\tDance Flick\tKeenen Ivory Wayans\tnm1349040\tDance Flick\t2009\t3.5\t10680\t83\tAction,Comedy,Music\tDamien Dante Wayans\ntt1270761\tDon't Be Afraid of the Dark\tNigel McKeand\tnm2552536\tDon't Be Afraid of the Dark\t2010\t5.6\t43276\t99\tFantasy,Horror,Thriller\tTroy Nixey\ntt1270761\tDon't Be Afraid of the Dark\tGuillermo del Toro\tnm2552536\tDon't Be Afraid of the Dark\t2010\t5.6\t43276\t99\tFantasy,Horror,Thriller\tTroy Nixey\ntt1270761\tDon't Be Afraid of the Dark\tMatthew Robbins\tnm2552536\tDon't Be Afraid of the Dark\t2010\t5.6\t43276\t99\tFantasy,Horror,Thriller\tTroy Nixey\ntt1302011\tKung Fu Panda 2\tGlenn Berger\tnm0950775\tKung Fu Panda 2\t2011\t7.3\t210780\t90\tAction,Adventure,Animation\tJennifer Yuh Nelson\ntt1302011\tKung Fu Panda 2\tJonathan Aibel\tnm0950775\tKung Fu Panda 2\t2011\t7.3\t210780\t90\tAction,Adventure,Animation\tJennifer Yuh Nelson\ntt1355644\tPassengers\tJon Spaihts\tnm0878763\tPassengers\t2016\t7.0\t270827\t116\tDrama,Sci-Fi,Thriller\tMorten Tyldum\ntt1424310\tChinese Zodiac\tEdward Tang\tnm0000329\tChinese Zodiac\t2012\t6.1\t18240\t109\tAction,Adventure\tJackie Chan\ntt1424310\tChinese Zodiac\tStanley Tong\tnm0000329\tChinese Zodiac\t2012\t6.1\t18240\t109\tAction,Adventure\tJackie Chan\ntt1424310\tChinese Zodiac\tFrankie Chan\tnm0000329\tChinese Zodiac\t2012\t6.1\t18240\t109\tAction,Adventure\tJackie Chan\ntt1424310\tChinese Zodiac\tJackie Chan\tnm0000329\tChinese Zodiac\t2012\t6.1\t18240\t109\tAction,Adventure\tJackie Chan\ntt1467304\tThe Human Centipede (First Sequence)\tTom Six\tnm1519353\tThe Human Centipede (First Sequence)\t2009\t4.4\t64077\t92\tHorror\tTom Six\ntt1559547\tBeautiful Creatures\tKami Garcia\tnm0481418\tBeautiful Creatures\t2013\t6.2\t75802\t124\tDrama,Fantasy,Romance\tRichard LaGravenese\ntt1559547\tBeautiful Creatures\tMargaret Stohl\tnm0481418\tBeautiful Creatures\t2013\t6.2\t75802\t124\tDrama,Fantasy,Romance\tRichard LaGravenese\ntt1559547\tBeautiful Creatures\tRichard LaGravenese\tnm0481418\tBeautiful Creatures\t2013\t6.2\t75802\t124\tDrama,Fantasy,Romance\tRichard LaGravenese\ntt2167202\tGetaway\tSean Finegan\tnm0813309\tGetaway\t2013\t4.4\t21258\t90\tAction,Crime,Thriller\tCourtney Solomon\ntt2167202\tGetaway\tGregg Maxwell Parker\tnm0813309\tGetaway\t2013\t4.4\t21258\t90\tAction,Crime,Thriller\tCourtney Solomon\ntt2343793\tThird Person\tPaul Haggis\tnm0353673\tThird Person\t2013\t6.4\t23550\t137\tDrama,Romance\tPaul Haggis\ntt2358925\tUnfinished Business\tSteve Conrad\tnm0779433\tUnfinished Business\t2015\t5.4\t26776\t91\tComedy\tKen Scott\ntt2561546\tThe Town That Dreaded Sundown\tEarl E. Smith\tnm0004234\tThe Town That Dreaded Sundown\t2014\t5.6\t11545\t86\tHorror,Mystery,Thriller\tAlfonso Gomez-Rejon\ntt2561546\tThe Town That Dreaded Sundown\tRoberto Aguirre-Sacasa\tnm0004234\tThe Town That Dreaded Sundown\t2014\t5.6\t11545\t86\tHorror,Mystery,Thriller\tAlfonso Gomez-Rejon\ntt0263488\tJeepers Creepers\tVictor Salva\tnm0759207\tJeepers Creepers\t2001\t6.1\t98208\t90\tHorror,Mystery\tVictor Salva\ntt0299930\tGigli\tMartin Brest\tnm0000976\tGigli\t2003\t2.4\t43434\t121\tComedy,Crime,Romance\tMartin Brest\ntt0301727\tWinged Migration\tJacques Perrin\tnm0674742\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Perrin\ntt0301727\tWinged Migration\tJacques Perrin\tnm0167384\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Cluzaud\ntt0301727\tWinged Migration\tJacques Perrin\tnm0213340\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tMichel Debats\ntt0301727\tWinged Migration\tJean Dorst\tnm0674742\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Perrin\ntt0301727\tWinged Migration\tJean Dorst\tnm0167384\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Cluzaud\ntt0301727\tWinged Migration\tJean Dorst\tnm0213340\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tMichel Debats\ntt0301727\tWinged Migration\tStéphane Durand\tnm0674742\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Perrin\ntt0301727\tWinged Migration\tStéphane Durand\tnm0167384\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Cluzaud\ntt0301727\tWinged Migration\tStéphane Durand\tnm0213340\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tMichel Debats\ntt0301727\tWinged Migration\tValentine Marvel\tnm0674742\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Perrin\ntt0301727\tWinged Migration\tValentine Marvel\tnm0167384\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Cluzaud\ntt0301727\tWinged Migration\tValentine Marvel\tnm0213340\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tMichel Debats\ntt0301727\tWinged Migration\tGuy Jarry\tnm0674742\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Perrin\ntt0301727\tWinged Migration\tGuy Jarry\tnm0167384\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Cluzaud\ntt0301727\tWinged Migration\tGuy Jarry\tnm0213340\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tMichel Debats\ntt0301727\tWinged Migration\tFrancis Roux\tnm0674742\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Perrin\ntt0301727\tWinged Migration\tFrancis Roux\tnm0167384\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tJacques Cluzaud\ntt0301727\tWinged Migration\tFrancis Roux\tnm0213340\tWinged Migration\t2001\t8.0\t10877\t98\tDocumentary\tMichel Debats\ntt0306841\tThe Lizzie McGuire Movie\tTerri Minsky\tnm0266302\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\tJim Fall\ntt0306841\tThe Lizzie McGuire Movie\tSusan Estelle Jansen\tnm0266302\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\tJim Fall\ntt0306841\tThe Lizzie McGuire Movie\tJohn J. Strauss\tnm0266302\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\tJim Fall\ntt0306841\tThe Lizzie McGuire Movie\tEd Decter\tnm0266302\tThe Lizzie McGuire Movie\t2003\t5.4\t31086\t94\tAdventure,Comedy,Family\tJim Fall\ntt0322259\t2 Fast 2 Furious\tDerek Haas\tnm0005436\t2 Fast 2 Furious\t2003\t5.9\t217744\t107\tAction,Crime,Thriller\tJohn Singleton\ntt0322259\t2 Fast 2 Furious\tGary Scott Thompson\tnm0005436\t2 Fast 2 Furious\t2003\t5.9\t217744\t107\tAction,Crime,Thriller\tJohn Singleton\ntt0322259\t2 Fast 2 Furious\tMichael Brandt\tnm0005436\t2 Fast 2 Furious\t2003\t5.9\t217744\t107\tAction,Crime,Thriller\tJohn Singleton\ntt0388795\tBrokeback Mountain\tDiana Ossana\tnm0000487\tBrokeback Mountain\t2005\t7.7\t284696\t134\tDrama,Romance\tAng Lee\ntt0388795\tBrokeback Mountain\tLarry McMurtry\tnm0000487\tBrokeback Mountain\t2005\t7.7\t284696\t134\tDrama,Romance\tAng Lee\ntt0388795\tBrokeback Mountain\tAnnie Proulx\tnm0000487\tBrokeback Mountain\t2005\t7.7\t284696\t134\tDrama,Romance\tAng Lee\ntt0409182\tPoseidon\tPaul Gallico\tnm0000583\tPoseidon\t2006\t5.6\t88303\t98\tAction,Adventure,Drama\tWolfgang Petersen\ntt0409182\tPoseidon\tMark Protosevich\tnm0000583\tPoseidon\t2006\t5.6\t88303\t98\tAction,Adventure,Drama\tWolfgang Petersen\ntt0490086\tBig Stan\tJosh Lieb\tnm0001705\tBig Stan\t2007\t6.2\t37288\t105\tAction,Comedy\tRob Schneider\ntt0499375\tGuru\tSuhasini\tnm0711745\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\tMani Ratnam\ntt0499375\tGuru\tVijay Krishna Acharya\tnm0711745\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\tMani Ratnam\ntt0499375\tGuru\tMani Ratnam\tnm0711745\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\tMani Ratnam\ntt0499375\tGuru\tAnurag Kashyap\tnm0711745\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\tMani Ratnam\ntt0499375\tGuru\tSujatha\tnm0711745\tGuru\t2007\t7.8\t18269\t166\tBiography,Drama,Musical\tMani Ratnam\ntt0804492\tThe Hottie & the Nottie\tHeidi Ferrer\tnm0701245\tThe Hottie & the Nottie\t2008\t1.9\t34514\t91\tComedy,Romance\tTom Putnam\ntt0844457\tNorth Face\tBenedikt Roeskau\tnm0836715\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\tPhilipp Stölzl\ntt0844457\tNorth Face\tJohannes Naber\tnm0836715\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\tPhilipp Stölzl\ntt0844457\tNorth Face\tPhilipp Stölzl\tnm0836715\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\tPhilipp Stölzl\ntt0844457\tNorth Face\tRupert Henning\tnm0836715\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\tPhilipp Stölzl\ntt0844457\tNorth Face\tChris Silber\tnm0836715\tNorth Face\t2008\t7.4\t12879\t126\tAdventure,Biography,Drama\tPhilipp Stölzl\ntt0929632\tPrecious\tGeoffrey Fletcher\tnm0200005\tPrecious\t2009\t7.3\t96075\t110\tDrama\tLee Daniels\ntt0929632\tPrecious\tSapphire\tnm0200005\tPrecious\t2009\t7.3\t96075\t110\tDrama\tLee Daniels\ntt0970179\tHugo\tJohn Logan\tnm0000217\tHugo\t2011\t7.5\t271842\t126\tAdventure,Drama,Family\tMartin Scorsese\ntt0970179\tHugo\tBrian Selznick\tnm0000217\tHugo\t2011\t7.5\t271842\t126\tAdventure,Drama,Family\tMartin Scorsese\ntt1172570\tBronson\tNicolas Winding Refn\tnm0716347\tBronson\t2008\t7.1\t102441\t92\tAction,Biography,Crime\tNicolas Winding Refn\ntt1172570\tBronson\tBrock Norman Brock\tnm0716347\tBronson\t2008\t7.1\t102441\t92\tAction,Biography,Crime\tNicolas Winding Refn\ntt1226273\tEdge of Darkness\tAndrew Bovell\tnm0132709\tEdge of Darkness\t2010\t6.6\t81563\t117\tCrime,Drama,Mystery\tMartin Campbell\ntt1226273\tEdge of Darkness\tTroy Kennedy-Martin\tnm0132709\tEdge of Darkness\t2010\t6.6\t81563\t117\tCrime,Drama,Mystery\tMartin Campbell\ntt1226273\tEdge of Darkness\tWilliam Monahan\tnm0132709\tEdge of Darkness\t2010\t6.6\t81563\t117\tCrime,Drama,Mystery\tMartin Campbell\ntt1228705\tIron Man 2\tLarry Lieber\tnm0269463\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\tJon Favreau\ntt1228705\tIron Man 2\tJustin Theroux\tnm0269463\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\tJon Favreau\ntt1228705\tIron Man 2\tDon Heck\tnm0269463\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\tJon Favreau\ntt1228705\tIron Man 2\tStan Lee\tnm0269463\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\tJon Favreau\ntt1228705\tIron Man 2\tJack Kirby\tnm0269463\tIron Man 2\t2010\t7.0\t594697\t124\tAction,Adventure,Sci-Fi\tJon Favreau\ntt1302067\tYogi Bear\tWilliam Hanna\tnm0108094\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\tEric Brevig\ntt1302067\tYogi Bear\tJoseph Barbera\tnm0108094\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\tEric Brevig\ntt1302067\tYogi Bear\tJ.R. Ventimilia\tnm0108094\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\tEric Brevig\ntt1302067\tYogi Bear\tJoshua Sternin\tnm0108094\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\tEric Brevig\ntt1302067\tYogi Bear\tBrad Copeland\tnm0108094\tYogi Bear\t2010\t4.6\t18063\t80\tAdventure,Animation,Comedy\tEric Brevig\ntt1502712\tFantastic Four\tJosh Trank\tnm2503633\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\tJosh Trank\ntt1502712\tFantastic Four\tStan Lee\tnm2503633\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\tJosh Trank\ntt1502712\tFantastic Four\tJack Kirby\tnm2503633\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\tJosh Trank\ntt1502712\tFantastic Four\tSimon Kinberg\tnm2503633\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\tJosh Trank\ntt1502712\tFantastic Four\tJeremy Slater\tnm2503633\tFantastic Four\t2015\t4.3\t131402\t100\tAction,Adventure,Sci-Fi\tJosh Trank\ntt1531663\tEverything Must Go\tDan Rush\tnm3656297\tEverything Must Go\t2010\t6.4\t44348\t97\tComedy,Drama\tDan Rush\ntt1531663\tEverything Must Go\tRaymond Carver\tnm3656297\tEverything Must Go\t2010\t6.4\t44348\t97\tComedy,Drama\tDan Rush\ntt1586752\tMachine Gun Preacher\tJason Keller\tnm0286975\tMachine Gun Preacher\t2011\t6.8\t57828\t129\tAction,Biography,Crime\tMarc Forster\ntt2235108\tDear White People\tJustin Simien\tnm2798574\tDear White People\t2014\t6.2\t22830\t108\tComedy,Drama,Romance\tJustin Simien\ntt2404738\tWitching and Bitching\tJorge Guerricaechevarría\tnm0407067\tWitching and Bitching\t2013\t6.4\t11366\t112\tComedy,Drama,Horror\tÁlex de la Iglesia\ntt2404738\tWitching and Bitching\tÁlex de la Iglesia\tnm0407067\tWitching and Bitching\t2013\t6.4\t11366\t112\tComedy,Drama,Horror\tÁlex de la Iglesia\ntt2965412\tComet\tSam Esmail\tnm1322753\tComet\t2014\t6.8\t15041\t91\tComedy,Drama,Romance\tSam Esmail\ntt5074352\tDangal\tPiyush Gupta\tnm4318159\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\tNitesh Tiwari\ntt5074352\tDangal\tShreyas Jain\tnm4318159\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\tNitesh Tiwari\ntt5074352\tDangal\tNikhil Mehrotra\tnm4318159\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\tNitesh Tiwari\ntt5074352\tDangal\tRajshri Sudhakar\tnm4318159\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\tNitesh Tiwari\ntt5074352\tDangal\tNitesh Tiwari\tnm4318159\tDangal\t2016\t8.5\t92548\t161\tAction,Biography,Drama\tNitesh Tiwari\ntt6108090\tSecret Superstar\tAdvait Chandan\tnm2378914\tSecret Superstar\t2017\t8.1\t10283\t150\tDrama,Family,Music\tAdvait Chandan\ntt0200027\tRiding in Cars with Boys\tBeverly D'Onofrio\tnm0001508\tRiding in Cars with Boys\t2001\t6.5\t24376\t132\tBiography,Comedy,Drama\tPenny Marshall\ntt0200027\tRiding in Cars with Boys\tMorgan Ward\tnm0001508\tRiding in Cars with Boys\t2001\t6.5\t24376\t132\tBiography,Comedy,Drama\tPenny Marshall\ntt0216651\tVampire Hunter D: Bloodlust\tHideyuki Kikuchi\tnm0159109\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\tYoshiaki Kawajiri\ntt0216651\tVampire Hunter D: Bloodlust\tBrian Irving\tnm0159109\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\tYoshiaki Kawajiri\ntt0216651\tVampire Hunter D: Bloodlust\tEllen Moore\tnm0159109\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\tYoshiaki Kawajiri\ntt0216651\tVampire Hunter D: Bloodlust\tJack Fletcher\tnm0159109\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\tYoshiaki Kawajiri\ntt0216651\tVampire Hunter D: Bloodlust\tYoshiaki Kawajiri\tnm0159109\tVampire Hunter D: Bloodlust\t2000\t7.7\t25291\t103\tAction,Adventure,Animation\tYoshiaki Kawajiri\ntt0218922\tOriginal Sin\tCornell Woolrich\tnm0188165\tOriginal Sin\t2001\t6.0\t48527\t116\tDrama,Mystery,Romance\tMichael Cristofer\ntt0218922\tOriginal Sin\tMichael Cristofer\tnm0188165\tOriginal Sin\t2001\t6.0\t48527\t116\tDrama,Mystery,Romance\tMichael Cristofer\ntt0238112\tCaptain Corelli's Mandolin\tShawn Slovo\tnm0006960\tCaptain Corelli's Mandolin\t2001\t5.9\t30048\t131\tDrama,Music,Romance\tJohn Madden\ntt0238112\tCaptain Corelli's Mandolin\tLouis de Bernières\tnm0006960\tCaptain Corelli's Mandolin\t2001\t5.9\t30048\t131\tDrama,Music,Romance\tJohn Madden\ntt0240772\tOcean's Eleven\tJack Golden Russell\tnm0001752\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\tSteven Soderbergh\ntt0240772\tOcean's Eleven\tHarry Brown\tnm0001752\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\tSteven Soderbergh\ntt0240772\tOcean's Eleven\tTed Griffin\tnm0001752\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\tSteven Soderbergh\ntt0240772\tOcean's Eleven\tGeorge Clayton Johnson\tnm0001752\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\tSteven Soderbergh\ntt0240772\tOcean's Eleven\tCharles Lederer\tnm0001752\tOcean's Eleven\t2001\t7.8\t447614\t116\tCrime,Thriller\tSteven Soderbergh\ntt0299172\tHome on the Range\tKeith Baxter\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tKeith Baxter\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tDavid Moses Pimentel\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tDavid Moses Pimentel\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tWill Finn\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tWill Finn\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tJohn Sanford\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tJohn Sanford\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tMark Kennedy\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tMark Kennedy\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tRobert Lence\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tRobert Lence\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tBrian Pimental\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tBrian Pimental\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tShirley Pierce\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tShirley Pierce\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tSam Levine\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tSam Levine\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tDavy Liu\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tDavy Liu\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tDon Hall\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tDon Hall\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tMichael LaBash\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tMichael LaBash\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tMichael Lucker\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tMichael Lucker\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tJason Lethcoe\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tJason Lethcoe\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tRalph Zondag\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tRalph Zondag\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tDonnie Long\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tDonnie Long\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tJohn Norton\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tJohn Norton\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0299172\tHome on the Range\tMike Kunkel\tnm0278181\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tWill Finn\ntt0299172\tHome on the Range\tMike Kunkel\tnm0998551\tHome on the Range\t2004\t5.4\t16103\t76\tAdventure,Animation,Comedy\tJohn Sanford\ntt0338337\tPaycheck\tPhilip K. Dick\tnm0000247\tPaycheck\t2003\t6.3\t95270\t119\tAction,Mystery,Sci-Fi\tJohn Woo\ntt0338337\tPaycheck\tDean Georgaris\tnm0000247\tPaycheck\t2003\t6.3\t95270\t119\tAction,Mystery,Sci-Fi\tJohn Woo\ntt0358456\tEarthlings\tShaun Monson\tnm0598671\tEarthlings\t2005\t8.7\t14985\t95\tDocumentary,Horror\tShaun Monson\ntt0365847\tThe Myth\tHai-shu Li\tnm0867262\tThe Myth\t2005\t6.2\t12723\t122\tAction,Adventure,Comedy\tStanley Tong\ntt0365847\tThe Myth\tStanley Tong\tnm0867262\tThe Myth\t2005\t6.2\t12723\t122\tAction,Adventure,Comedy\tStanley Tong\ntt0365847\tThe Myth\tHui-Ling Wang\tnm0867262\tThe Myth\t2005\t6.2\t12723\t122\tAction,Adventure,Comedy\tStanley Tong\ntt0369735\tMonster-in-Law\tAnya Kochoff\tnm0525659\tMonster-in-Law\t2005\t5.5\t48828\t101\tComedy,Romance\tRobert Luketic\ntt0467197\tMax Payne\tSam Lake\tnm0601382\tMax Payne\t2008\t5.4\t114271\t100\tAction,Crime,Drama\tJohn Moore\ntt0467197\tMax Payne\tBeau Thorne\tnm0601382\tMax Payne\t2008\t5.4\t114271\t100\tAction,Crime,Drama\tJohn Moore\ntt0808279\tFunny Games\tMichael Haneke\tnm0359734\tFunny Games\t2007\t6.5\t78766\t111\tCrime,Drama,Horror\tMichael Haneke\ntt1046997\tMiracle at St. Anna\tJames McBride\tnm0000490\tMiracle at St. Anna\t2008\t6.0\t16543\t160\tAction,Crime,Drama\tSpike Lee\ntt1152758\tDear Zachary: A Letter to a Son About His Father\tKurt Kuenne\tnm0473936\tDear Zachary: A Letter to a Son About His Father\t2008\t8.6\t26717\t95\tBiography,Crime,Documentary\tKurt Kuenne\ntt1174730\tCity Island\tRaymond De Felitta\tnm0208343\tCity Island\t2009\t7.4\t28659\t104\tComedy,Drama\tRaymond De Felitta\ntt1179794\tTiMER\tJac Schaeffer\tnm2356614\tTiMER\t2009\t6.5\t11409\t99\tComedy,Drama,Fantasy\tJac Schaeffer\ntt1187064\tTriangle\tChristopher Smith\tnm1247462\tTriangle\t2009\t6.9\t81354\t99\tFantasy,Mystery,Thriller\tChristopher Smith\ntt1303828\tDefendor\tPeter Stebbings\tnm0824220\tDefendor\t2009\t6.8\t33316\t101\tComedy,Crime,Drama\tPeter Stebbings\ntt1588173\tWarm Bodies\tIsaac Marion\tnm1349522\tWarm Bodies\t2013\t6.9\t201176\t98\tComedy,Horror,Romance\tJonathan Levine\ntt1588173\tWarm Bodies\tJonathan Levine\tnm1349522\tWarm Bodies\t2013\t6.9\t201176\t98\tComedy,Horror,Romance\tJonathan Levine\ntt1703148\tThe Hunter\tJulia Leigh\tnm0626706\tThe Hunter\t2011\t6.8\t33493\t102\tAdventure,Drama,Thriller\tDaniel Nettheim\ntt1703148\tThe Hunter\tAlice Addison\tnm0626706\tThe Hunter\t2011\t6.8\t33493\t102\tAdventure,Drama,Thriller\tDaniel Nettheim\ntt1703148\tThe Hunter\tDaniel Nettheim\tnm0626706\tThe Hunter\t2011\t6.8\t33493\t102\tAdventure,Drama,Thriller\tDaniel Nettheim\ntt1703148\tThe Hunter\tWain Fimeri\tnm0626706\tThe Hunter\t2011\t6.8\t33493\t102\tAdventure,Drama,Thriller\tDaniel Nettheim\ntt1969062\tInfinitely Polar Bear\tMaya Forbes\tnm0285379\tInfinitely Polar Bear\t2014\t7.0\t13057\t90\tComedy,Drama,Romance\tMaya Forbes"},{"type":"TEXT","data":"Output exceeds 102400. Truncated.\n"}]},"apps":[],"jobName":"paragraph_1525239781839_-1669776372","id":"20180425-234024_24273793","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:109","user":"anonymous","dateFinished":"2018-05-02T06:32:06+0000","dateStarted":"2018-05-02T06:28:42+0000"},{"title":"Final output with the movies, director and writers","text":"%pyspark\n\nfinalOutput = final.select('title', 'year','avgRating','votes','directorName','writeName',\"runtime\",\"genre\").filter('votes > 10000').orderBy(desc('year'),desc('avgRating'))\nx = finalOutput.toDF('title', 'year','avgRating','votes','directorName','writeName',\"runtime\",\"genre\")\nz.show(x)","dateUpdated":"2018-05-02T06:14:10+0000","config":{"editorSetting":{"language":"python"},"colWidth":12,"editorMode":"ace/mode/python","title":true,"results":{"0":{"graph":{"mode":"table","height":300,"optionOpen":true,"setting":{"stackedAreaChart":{"style":"stream"},"pieChart":{}},"commonSetting":{},"keys":[{"name":"title","index":0,"aggr":"sum"}],"groups":[],"values":[{"name":"avgRating","index":2,"aggr":"sum"}]},"helium":{}}},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"title\tyear\tavgRating\tvotes\tdirectorName\twriteName\truntime\tgenre\nAyla: The Daughter of War\t2017\t9.0\t19084\tCan Ulkay\tYigit Güralp\t125\tDrama,History,War\nVikram Vedha\t2017\t8.9\t11143\tPushkar\tManikandan\t147\tAction,Crime,Thriller\nVikram Vedha\t2017\t8.9\t11143\tGayatri\tGayatri\t147\tAction,Crime,Thriller\nVikram Vedha\t2017\t8.9\t11143\tPushkar\tGayatri\t147\tAction,Crime,Thriller\nVikram Vedha\t2017\t8.9\t11143\tGayatri\tManikandan\t147\tAction,Crime,Thriller\nVikram Vedha\t2017\t8.9\t11143\tPushkar\tPushkar\t147\tAction,Crime,Thriller\nVikram Vedha\t2017\t8.9\t11143\tGayatri\tPushkar\t147\tAction,Crime,Thriller\nCoco\t2017\t8.5\t160979\tAdrian Molina\tMatthew Aldrich\t105\tAdventure,Animation,Comedy\nCoco\t2017\t8.5\t160979\tLee Unkrich\tMatthew Aldrich\t105\tAdventure,Animation,Comedy\nCoco\t2017\t8.5\t160979\tAdrian Molina\tJason Katz\t105\tAdventure,Animation,Comedy\nCoco\t2017\t8.5\t160979\tLee Unkrich\tJason Katz\t105\tAdventure,Animation,Comedy\nCoco\t2017\t8.5\t160979\tLee Unkrich\tAdrian Molina\t105\tAdventure,Animation,Comedy\nCoco\t2017\t8.5\t160979\tLee Unkrich\tLee Unkrich\t105\tAdventure,Animation,Comedy\nCoco\t2017\t8.5\t160979\tAdrian Molina\tAdrian Molina\t105\tAdventure,Animation,Comedy\nCoco\t2017\t8.5\t160979\tAdrian Molina\tLee Unkrich\t105\tAdventure,Animation,Comedy\nBaahubali 2: The Conclusion\t2017\t8.4\t56146\tS.S. Rajamouli\tC.H. Vijay Kumar\t167\tAction,Drama,Fantasy\nBaahubali 2: The Conclusion\t2017\t8.4\t56146\tS.S. Rajamouli\tAjay Kumar\t167\tAction,Drama,Fantasy\nBaahubali 2: The Conclusion\t2017\t8.4\t56146\tS.S. Rajamouli\tManoj Muntashir\t167\tAction,Drama,Fantasy\nBaahubali 2: The Conclusion\t2017\t8.4\t56146\tS.S. Rajamouli\tS.S. Rajamouli\t167\tAction,Drama,Fantasy\nBaahubali 2: The Conclusion\t2017\t8.4\t56146\tS.S. Rajamouli\tVijayendra Prasad\t167\tAction,Drama,Fantasy\nBaahubali 2: The Conclusion\t2017\t8.4\t56146\tS.S. Rajamouli\tMadhan Karky\t167\tAction,Drama,Fantasy\nBaahubali 2: The Conclusion\t2017\t8.4\t56146\tS.S. Rajamouli\tMankombu Gopalakrishnan\t167\tAction,Drama,Fantasy\nMersal\t2017\t8.3\t19164\tAtlee Kumar\tVijayendra Prasad\t172\tAction,Drama,Fantasy\nMersal\t2017\t8.3\t19164\tAtlee Kumar\tAtlee Kumar\t172\tAction,Drama,Fantasy\nMersal\t2017\t8.3\t19164\tAtlee Kumar\tRamanagirivasan\t172\tAction,Drama,Fantasy\nThree Billboards Outside Ebbing, Missouri\t2017\t8.2\t220136\tMartin McDonagh\tMartin McDonagh\t115\tCrime,Drama\nLogan\t2017\t8.1\t472542\tJames Mangold\tLen Wein\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tRoy Thomas\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tMarc Silvestri\t137\tAction,Drama,Sci-Fi\nBlade Runner 2049\t2017\t8.1\t284099\tDenis Villeneuve\tPhilip K. Dick\t164\tDrama,Mystery,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tSteven McNiven\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tMark Millar\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tDave Cockrum\t137\tAction,Drama,Sci-Fi\nSecret Superstar\t2017\t8.1\t10283\tAdvait Chandan\tAdvait Chandan\t150\tDrama,Family,Music\nLogan\t2017\t8.1\t472542\tJames Mangold\tScott Frank\t137\tAction,Drama,Sci-Fi\nBlade Runner 2049\t2017\t8.1\t284099\tDenis Villeneuve\tMichael Green\t164\tDrama,Mystery,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tHerb Trimpe\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tJohn Byrne\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tJohn Romita Sr.\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tChristopher Yost\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tStan Lee\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tCraig Kyle\t137\tAction,Drama,Sci-Fi\nBlade Runner 2049\t2017\t8.1\t284099\tDenis Villeneuve\tHampton Fancher\t164\tDrama,Mystery,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tChris Claremont\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tJames Mangold\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tJack Kirby\t137\tAction,Drama,Sci-Fi\nLogan\t2017\t8.1\t472542\tJames Mangold\tMichael Green\t137\tAction,Drama,Sci-Fi\nCall Me by Your Name\t2017\t8.0\t100030\tLuca Guadagnino\tAndré Aciman\t132\tDrama,Romance\nDunkirk\t2017\t8.0\t380432\tChristopher Nolan\tChristopher Nolan\t106\tAction,Drama,History\nIcarus\t2017\t8.0\t19877\tBryan Fogel\tBryan Fogel\t121\tDocumentary,Sport,Thriller\nIcarus\t2017\t8.0\t19877\tBryan Fogel\tMark Monroe\t121\tDocumentary,Sport,Thriller\nWonder\t2017\t8.0\t70331\tStephen Chbosky\tR.J. Palacio\t113\tDrama,Family\nIcarus\t2017\t8.0\t19877\tBryan Fogel\tTimothy Rode\t121\tDocumentary,Sport,Thriller\nWonder\t2017\t8.0\t70331\tStephen Chbosky\tSteve Conrad\t113\tDrama,Family\nCall Me by Your Name\t2017\t8.0\t100030\tLuca Guadagnino\tJames Ivory\t132\tDrama,Romance\nWonder\t2017\t8.0\t70331\tStephen Chbosky\tStephen Chbosky\t113\tDrama,Family\nIcarus\t2017\t8.0\t19877\tBryan Fogel\tJon Bertain\t121\tDocumentary,Sport,Thriller\nWonder\t2017\t8.0\t70331\tStephen Chbosky\tJack Thorne\t113\tDrama,Family\nPaddington 2\t2017\t7.9\t25358\tPaul King\tSimon Farnaby\t103\tAdventure,Animation,Comedy\nLoving Vincent\t2017\t7.9\t25895\tHugh Welchman\tHugh Welchman\t94\tAnimation,Biography,Crime\nPaddington 2\t2017\t7.9\t25358\tPaul King\tPaul King\t103\tAdventure,Animation,Comedy\nThor: Ragnarok\t2017\t7.9\t301533\tTaika Waititi\tChristopher Yost\t130\tAction,Adventure,Comedy\nLoving Vincent\t2017\t7.9\t25895\tHugh Welchman\tDorota Kobiela\t94\tAnimation,Biography,Crime\nHindi Medium\t2017\t7.9\t12618\tSaket Chaudhary\tZeenat Lakhani\t132\tComedy,Drama\nWhat the Health\t2017\t7.9\t20354\tKeegan Kuhn\tKip Andersen\t97\tDocumentary\nPaddington 2\t2017\t7.9\t25358\tPaul King\tMichael Bond\t103\tAdventure,Animation,Comedy\nLoving Vincent\t2017\t7.9\t25895\tHugh Welchman\tJacek Dehnel\t94\tAnimation,Biography,Crime\nWhat the Health\t2017\t7.9\t20354\tKip Andersen\tKeegan Kuhn\t97\tDocumentary\nLoving Vincent\t2017\t7.9\t25895\tDorota Kobiela\tJacek Dehnel\t94\tAnimation,Biography,Crime\nWhat the Health\t2017\t7.9\t20354\tKeegan Kuhn\tKeegan Kuhn\t97\tDocumentary\nWhat the Health\t2017\t7.9\t20354\tKip Andersen\tKip Andersen\t97\tDocumentary\nHindi Medium\t2017\t7.9\t12618\tSaket Chaudhary\tAmitosh Nagpal\t132\tComedy,Drama\nThor: Ragnarok\t2017\t7.9\t301533\tTaika Waititi\tJack Kirby\t130\tAction,Adventure,Comedy\nThor: Ragnarok\t2017\t7.9\t301533\tTaika Waititi\tLarry Lieber\t130\tAction,Adventure,Comedy\nHindi Medium\t2017\t7.9\t12618\tSaket Chaudhary\tSaket Chaudhary\t132\tComedy,Drama\nThor: Ragnarok\t2017\t7.9\t301533\tTaika Waititi\tStan Lee\t130\tAction,Adventure,Comedy\nLoving Vincent\t2017\t7.9\t25895\tDorota Kobiela\tHugh Welchman\t94\tAnimation,Biography,Crime\nThor: Ragnarok\t2017\t7.9\t301533\tTaika Waititi\tEric Pearson\t130\tAction,Adventure,Comedy\nLoving Vincent\t2017\t7.9\t25895\tDorota Kobiela\tDorota Kobiela\t94\tAnimation,Biography,Crime\nThor: Ragnarok\t2017\t7.9\t301533\tTaika Waititi\tCraig Kyle\t130\tAction,Adventure,Comedy\nWind River\t2017\t7.8\t119176\tTaylor Sheridan\tTaylor Sheridan\t107\tCrime,Drama,Mystery\nThe Greatest Showman\t2017\t7.8\t109396\tMichael Gracey\tJenny Bicks\t105\tBiography,Drama,Musical\nThe Greatest Showman\t2017\t7.8\t109396\tMichael Gracey\tBill Condon\t105\tBiography,Drama,Musical\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tSteve Gan\t136\tAction,Adventure,Sci-Fi\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tJack Kirby\t136\tAction,Adventure,Sci-Fi\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tVal Mayerik\t136\tAction,Adventure,Sci-Fi\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tJames Gunn\t136\tAction,Adventure,Sci-Fi\nOnly the Brave\t2017\t7.7\t26139\tJoseph Kosinski\tKen Nolan\t134\tBiography,Drama\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tLarry Lieber\t136\tAction,Adventure,Sci-Fi\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tJim Starlin\t136\tAction,Adventure,Sci-Fi\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tKeith Giffen\t136\tAction,Adventure,Sci-Fi\nGet Out\t2017\t7.7\t296485\tJordan Peele\tJordan Peele\t104\tHorror,Mystery,Thriller\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tAndy Lanning\t136\tAction,Adventure,Sci-Fi\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tSteve Englehart\t136\tAction,Adventure,Sci-Fi\nPhantom Thread\t2017\t7.7\t52789\tPaul Thomas Anderson\tPaul Thomas Anderson\t130\tDrama,Romance\nOn Body and Soul\t2017\t7.7\t13456\tIldikó Enyedi\tIldikó Enyedi\t116\tDrama,Romance\nLoveless\t2017\t7.7\t15583\tAndrey Zvyagintsev\tOleg Negin\t127\tDrama\nOnly the Brave\t2017\t7.7\t26139\tJoseph Kosinski\tEric Warren Singer\t134\tBiography,Drama\nLoveless\t2017\t7.7\t15583\tAndrey Zvyagintsev\tAndrey Zvyagintsev\t127\tDrama\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tSteve Gerber\t136\tAction,Adventure,Sci-Fi\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tDan Abnett\t136\tAction,Adventure,Sci-Fi\nOnly the Brave\t2017\t7.7\t26139\tJoseph Kosinski\tSean Flynn\t134\tBiography,Drama\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tBill Mantlo\t136\tAction,Adventure,Sci-Fi\nBaby Driver\t2017\t7.7\t291904\tEdgar Wright\tEdgar Wright\t112\tAction,Crime,Music\nGuardians of the Galaxy Vol. 2\t2017\t7.7\t364118\tJames Gunn\tStan Lee\t136\tAction,Adventure,Sci-Fi\nThe Disaster Artist\t2017\t7.6\t73280\tJames Franco\tScott Neustadter\t104\tBiography,Comedy,Drama\nGifted\t2017\t7.6\t65005\tMarc Webb\tTom Flynn\t101\tDrama\nThe Florida Project\t2017\t7.6\t45097\tSean Baker\tSean Baker\t111\tDrama\nThe Florida Project\t2017\t7.6\t45097\tSean Baker\tChris Bergoch\t111\tDrama\nThe Big Sick\t2017\t7.6\t82795\tMichael Showalter\tEmily V. Gordon\t120\tComedy,Drama,Romance\nThe Disaster Artist\t2017\t7.6\t73280\tJames Franco\tGreg Sestero\t104\tBiography,Comedy,Drama\nThe Big Sick\t2017\t7.6\t82795\tMichael Showalter\tKumail Nanjiani\t120\tComedy,Drama,Romance\nThe Disaster Artist\t2017\t7.6\t73280\tJames Franco\tTom Bissell\t104\tBiography,Comedy,Drama\nThe Disaster Artist\t2017\t7.6\t73280\tJames Franco\tMichael H. Weber\t104\tBiography,Comedy,Drama\nI, Tonya\t2017\t7.6\t82207\tCraig Gillespie\tSteven Rogers\t120\tBiography,Comedy,Drama\nMudbound\t2017\t7.5\t24713\tDee Rees\tDee Rees\t134\tDrama,War\nLady Bird\t2017\t7.5\t114016\tGreta Gerwig\tGreta Gerwig\t94\tComedy,Drama\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tJoe Simon\t133\tAction,Adventure,Sci-Fi\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tChris McKenna\t133\tAction,Adventure,Sci-Fi\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tJonathan Goldstein\t133\tAction,Adventure,Sci-Fi\nThe Shape of Water\t2017\t7.5\t200002\tGuillermo del Toro\tGuillermo del Toro\t123\tAdventure,Drama,Fantasy\nIt\t2017\t7.5\t267463\tAndy Muschietti\tGary Dauberman\t135\tDrama,Horror,Thriller\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tSteve Ditko\t133\tAction,Adventure,Sci-Fi\nWonder Woman\t2017\t7.5\t402624\tPatty Jenkins\tWilliam Moulton Marston\t141\tAction,Adventure,Fantasy\nIt\t2017\t7.5\t267463\tAndy Muschietti\tStephen King\t135\tDrama,Horror,Thriller\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tJon Watts\t133\tAction,Adventure,Sci-Fi\nWonder Woman\t2017\t7.5\t402624\tPatty Jenkins\tZack Snyder\t141\tAction,Adventure,Fantasy\nJohn Wick: Chapter 2\t2017\t7.5\t224774\tChad Stahelski\tDerek Kolstad\t122\tAction,Crime,Thriller\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tJohn Francis Daley\t133\tAction,Adventure,Sci-Fi\nMolly's Game\t2017\t7.5\t54399\tAaron Sorkin\tAaron Sorkin\t140\tBiography,Crime,Drama\nWonder Woman\t2017\t7.5\t402624\tPatty Jenkins\tJason Fuchs\t141\tAction,Adventure,Fantasy\nWonder Woman\t2017\t7.5\t402624\tPatty Jenkins\tHarry G. Peter\t141\tAction,Adventure,Fantasy\nWonder Woman\t2017\t7.5\t402624\tPatty Jenkins\tAllan Heinberg\t141\tAction,Adventure,Fantasy\nThe Shape of Water\t2017\t7.5\t200002\tGuillermo del Toro\tVanessa Taylor\t123\tAdventure,Drama,Fantasy\nWar for the Planet of the Apes\t2017\t7.5\t166066\tMatt Reeves\tAmanda Silver\t140\tAction,Adventure,Drama\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tErik Sommers\t133\tAction,Adventure,Sci-Fi\nMudbound\t2017\t7.5\t24713\tDee Rees\tVirgil Williams\t134\tDrama,War\nIt\t2017\t7.5\t267463\tAndy Muschietti\tChase Palmer\t135\tDrama,Horror,Thriller\nIt\t2017\t7.5\t267463\tAndy Muschietti\tCary Joji Fukunaga\t135\tDrama,Horror,Thriller\nMudbound\t2017\t7.5\t24713\tDee Rees\tHillary Jordan\t134\tDrama,War\nWar for the Planet of the Apes\t2017\t7.5\t166066\tMatt Reeves\tMatt Reeves\t140\tAction,Adventure,Drama\nMolly's Game\t2017\t7.5\t54399\tAaron Sorkin\tMolly Bloom\t140\tBiography,Crime,Drama\nWar for the Planet of the Apes\t2017\t7.5\t166066\tMatt Reeves\tPierre Boulle\t140\tAction,Adventure,Drama\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tJack Kirby\t133\tAction,Adventure,Sci-Fi\nWar for the Planet of the Apes\t2017\t7.5\t166066\tMatt Reeves\tRick Jaffa\t140\tAction,Adventure,Drama\nWar for the Planet of the Apes\t2017\t7.5\t166066\tMatt Reeves\tMark Bomback\t140\tAction,Adventure,Drama\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tChristopher Ford\t133\tAction,Adventure,Sci-Fi\nSpider-Man: Homecoming\t2017\t7.5\t306478\tJon Watts\tStan Lee\t133\tAction,Adventure,Sci-Fi\nToilet - Ek Prem Katha\t2017\t7.4\t10860\tShree Narayan Singh\tGarima\t155\tComedy,Drama\nToilet - Ek Prem Katha\t2017\t7.4\t10860\tShree Narayan Singh\tSiddharth\t155\tComedy,Drama\nThe Square\t2017\t7.4\t29895\tRuben Östlund\tRuben Östlund\t151\tComedy,Drama\nOkja\t2017\t7.4\t58557\tJoon-ho Bong\tJon Ronson\t120\tAction,Adventure,Drama\nDetroit\t2017\t7.4\t29865\tKathryn Bigelow\tMark Boal\t143\tCrime,Drama,Thriller\nOkja\t2017\t7.4\t58557\tJoon-ho Bong\tJoon-ho Bong\t120\tAction,Adventure,Drama\nDarkest Hour\t2017\t7.4\t90830\tJoe Wright\tAnthony McCarten\t125\tBiography,Drama,History\nStar Wars: The Last Jedi\t2017\t7.3\t366323\tRian Johnson\tRian Johnson\t152\tAction,Adventure,Fantasy\nShot Caller\t2017\t7.3\t44487\tRic Roman Waugh\tRic Roman Waugh\t121\tCrime,Drama,Thriller\nStar Wars: The Last Jedi\t2017\t7.3\t366323\tRian Johnson\tGeorge Lucas\t152\tAction,Adventure,Fantasy\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tHarry G. Peter\t104\tAction,Adventure,Animation\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tJerry Siegel\t104\tAction,Adventure,Animation\nGood Time\t2017\t7.3\t36698\tJosh Safdie\tRonald Bronstein\t101\tCrime,Drama,Thriller\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tChris McKenna\t104\tAction,Adventure,Animation\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tGodtfred Kirk Christiansen\t104\tAction,Adventure,Animation\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tBill Finger\t104\tAction,Adventure,Animation\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tJoe Shuster\t104\tAction,Adventure,Animation\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tWilliam Moulton Marston\t104\tAction,Adventure,Animation\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tJared Stern\t104\tAction,Adventure,Animation\nHostiles\t2017\t7.3\t16013\tScott Cooper\tDonald E. Stewart\t134\tAdventure,Drama,Western\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tJens Nygaard Knudsen\t104\tAction,Adventure,Animation\nGood Time\t2017\t7.3\t36698\tBenny Safdie\tRonald Bronstein\t101\tCrime,Drama,Thriller\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tBob Kane\t104\tAction,Adventure,Animation\nHostiles\t2017\t7.3\t16013\tScott Cooper\tScott Cooper\t134\tAdventure,Drama,Western\nT2 Trainspotting\t2017\t7.3\t80306\tDanny Boyle\tIrvine Welsh\t117\tDrama\nGood Time\t2017\t7.3\t36698\tJosh Safdie\tJosh Safdie\t101\tCrime,Drama,Thriller\nJolly LLB 2\t2017\t7.3\t15869\tSubhash Kapoor\tSubhash Kapoor\t137\tComedy,Crime,Drama\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tErik Sommers\t104\tAction,Adventure,Animation\nGood Time\t2017\t7.3\t36698\tBenny Safdie\tJosh Safdie\t101\tCrime,Drama,Thriller\nT2 Trainspotting\t2017\t7.3\t80306\tDanny Boyle\tJohn Hodge\t117\tDrama\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tOle Kirk Christiansen\t104\tAction,Adventure,Animation\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tSeth Grahame-Smith\t104\tAction,Adventure,Animation\nThe LEGO Batman Movie\t2017\t7.3\t98124\tChris McKay\tJohn Whittington\t104\tAction,Adventure,Animation\nThe Post\t2017\t7.2\t64129\tSteven Spielberg\tJosh Singer\t116\tBiography,Drama,History\nThe Death of Stalin\t2017\t7.2\t30717\tArmando Iannucci\tThierry Robin\t107\tComedy\nBeauty and the Beast\t2017\t7.2\t205124\tBill Condon\tStephen Chbosky\t129\tFamily,Fantasy,Musical\nThe Death of Stalin\t2017\t7.2\t30717\tArmando Iannucci\tPeter Fellows\t107\tComedy\nBeauty and the Beast\t2017\t7.2\t205124\tBill Condon\tEvan Spiliotopoulos\t129\tFamily,Fantasy,Musical\nThe Death of Stalin\t2017\t7.2\t30717\tArmando Iannucci\tFabien Nury\t107\tComedy\nBrawl in Cell Block 99\t2017\t7.2\t30052\tS. Craig Zahler\tS. Craig Zahler\t132\tCrime,Drama\nBeauty and the Beast\t2017\t7.2\t205124\tBill Condon\tJeanne-Marie Leprince de Beaumont\t129\tFamily,Fantasy,Musical\nBeauty and the Beast\t2017\t7.2\t205124\tBill Condon\tLinda Woolverton\t129\tFamily,Fantasy,Musical\nBeauty and the Beast\t2017\t7.2\t205124\tBill Condon\tGabrielle-Suzanne Barbot de Villeneuve\t129\tFamily,Fantasy,Musical\nAmerican Made\t2017\t7.2\t94950\tDoug Liman\tGary Spinelli\t115\tAction,Biography,Comedy\nThe Death of Stalin\t2017\t7.2\t30717\tArmando Iannucci\tDavid Schneider\t107\tComedy\nThe Post\t2017\t7.2\t64129\tSteven Spielberg\tLiz Hannah\t116\tBiography,Drama,History\nThe Death of Stalin\t2017\t7.2\t30717\tArmando Iannucci\tArmando Iannucci\t107\tComedy\nThe Death of Stalin\t2017\t7.2\t30717\tArmando Iannucci\tIan Martin\t107\tComedy\nThelma\t2017\t7.1\t12209\tJoachim Trier\tJoachim Trier\t116\tDrama,Fantasy,Mystery\nKaabil\t2017\t7.1\t20799\tSanjay Gupta\tRajshri Sudhakar\t139\tAction,Crime,Thriller\nLogan Lucky\t2017\t7.1\t78602\tSteven Soderbergh\tRebecca Blunt\t118\tComedy,Crime,Drama\nMegan Leavey\t2017\t7.1\t14791\tGabriela Cowperthwaite\tTim Lovestedt\t116\tBiography,Drama,War\nKaabil\t2017\t7.1\t20799\tSanjay Gupta\tVijay Kumar Mishra\t139\tAction,Crime,Thriller\nYou Were Never Really Here\t2017\t7.1\t19428\tLynne Ramsay\tLynne Ramsay\t89\tDrama,Mystery,Thriller\nThe Glass Castle\t2017\t7.1\t14984\tDestin Daniel Cretton\tJeannette Walls\t127\tBiography,Drama\nMegan Leavey\t2017\t7.1\t14791\tGabriela Cowperthwaite\tAnnie Mumolo\t116\tBiography,Drama,War\nProfessor Marston and the Wonder Women\t2017\t7.1\t10741\tAngela Robinson\tAngela Robinson\t108\tBiography,Drama\nYou Were Never Really Here\t2017\t7.1\t19428\tLynne Ramsay\tJonathan Ames\t89\tDrama,Mystery,Thriller\nThe Glass Castle\t2017\t7.1\t14984\tDestin Daniel Cretton\tAndrew Lanham\t127\tBiography,Drama\nThe Killing of a Sacred Deer\t2017\t7.1\t56422\tYorgos Lanthimos\tEfthymis Filippou\t121\tDrama,Mystery,Thriller\nThe Glass Castle\t2017\t7.1\t14984\tDestin Daniel Cretton\tDestin Daniel Cretton\t127\tBiography,Drama\nKaabil\t2017\t7.1\t20799\tSanjay Gupta\tSanjay Masoomm\t139\tAction,Crime,Thriller\nThe Killing of a Sacred Deer\t2017\t7.1\t56422\tYorgos Lanthimos\tYorgos Lanthimos\t121\tDrama,Mystery,Thriller\nGoodbye Christopher Robin\t2017\t7.1\t10573\tSimon Curtis\tFrank Cottrell Boyce\t107\tBiography,Drama\nGoodbye Christopher Robin\t2017\t7.1\t10573\tSimon Curtis\tSimon Vaughan\t107\tBiography,Drama\nThelma\t2017\t7.1\t12209\tJoachim Trier\tEskil Vogt\t116\tDrama,Fantasy,Mystery\nMegan Leavey\t2017\t7.1\t14791\tGabriela Cowperthwaite\tPamela Gray\t116\tBiography,Drama,War\nJumanji: Welcome to the Jungle\t2017\t7.0\t147054\tJake Kasdan\tScott Rosenberg\t119\tAction,Adventure,Comedy\nRaees\t2017\t7.0\t33535\tRahul Dholakia\tAshish Vashi\t143\tAction,Crime,Thriller\nThe Foreigner\t2017\t7.0\t60584\tMartin Campbell\tStephen Leather\t113\tAction,Crime,Drama\nJumanji: Welcome to the Jungle\t2017\t7.0\t147054\tJake Kasdan\tChris McKenna\t119\tAction,Adventure,Comedy\nJumanji: Welcome to the Jungle\t2017\t7.0\t147054\tJake Kasdan\tErik Sommers\t119\tAction,Adventure,Comedy\nJumanji: Welcome to the Jungle\t2017\t7.0\t147054\tJake Kasdan\tJim Strain\t119\tAction,Adventure,Comedy\nRaees\t2017\t7.0\t33535\tRahul Dholakia\tNiraj Shukla\t143\tAction,Crime,Thriller\nRaees\t2017\t7.0\t33535\tRahul Dholakia\tHarit Mehta\t143\tAction,Crime,Thriller\nRaees\t2017\t7.0\t33535\tRahul Dholakia\tRahul Dholakia\t143\tAction,Crime,Thriller\nThe Zookeeper's Wife\t2017\t7.0\t24687\tNiki Caro\tDiane Ackerman\t127\tBiography,Drama,History\nThe Foreigner\t2017\t7.0\t60584\tMartin Campbell\tDavid Marconi\t113\tAction,Crime,Drama\nThe Zookeeper's Wife\t2017\t7.0\t24687\tNiki Caro\tAngela Workman\t127\tBiography,Drama,History\nStronger\t2017\t7.0\t22651\tDavid Gordon Green\tBret Witter\t119\tBiography,Drama\nThe Meyerowitz Stories (New and Selected)\t2017\t7.0\t22711\tNoah Baumbach\tNoah Baumbach\t112\tComedy,Drama\nBorg vs McEnroe\t2017\t7.0\t11336\tJanus Metz\tRonnie Sandahl\t107\tBiography,Drama,Sport\nI Don't Feel at Home in This World Anymore.\t2017\t7.0\t28502\tMacon Blair\tMacon Blair\t93\tComedy,Crime,Drama\nJumanji: Welcome to the Jungle\t2017\t7.0\t147054\tJake Kasdan\tJeff Pinkner\t119\tAction,Adventure,Comedy\nJumanji: Welcome to the Jungle\t2017\t7.0\t147054\tJake Kasdan\tChris Van Allsburg\t119\tAction,Adventure,Comedy\nJumanji: Welcome to the Jungle\t2017\t7.0\t147054\tJake Kasdan\tJonathan Hensleigh\t119\tAction,Adventure,Comedy\nStronger\t2017\t7.0\t22651\tDavid Gordon Green\tJeff Bauman\t119\tBiography,Drama\nJumanji: Welcome to the Jungle\t2017\t7.0\t147054\tJake Kasdan\tGreg Taylor\t119\tAction,Adventure,Comedy\nStronger\t2017\t7.0\t22651\tDavid Gordon Green\tJohn Pollono\t119\tBiography,Drama\nAll the Money in the World\t2017\t6.9\t31740\tRidley Scott\tJohn Pearson\t132\tBiography,Crime,Drama\nA Dog's Purpose\t2017\t6.9\t43518\tLasse Hallström\tAudrey Wells\t100\tAdventure,Comedy,Drama\nLast Flag Flying\t2017\t6.9\t11228\tRichard Linklater\tRichard Linklater\t125\tComedy,Drama,War\nThe Hitman's Bodyguard\t2017\t6.9\t125949\tPatrick Hughes\tTom O'Connor\t118\tAction,Comedy,Thriller\nLast Flag Flying\t2017\t6.9\t11228\tRichard Linklater\tDarryl Ponicsan\t125\tComedy,Drama,War\nA Ghost Story\t2017\t6.9\t33793\tDavid Lowery\tDavid Lowery\t92\tDrama,Fantasy,Romance\nA Dog's Purpose\t2017\t6.9\t43518\tLasse Hallström\tW. Bruce Cameron\t100\tAdventure,Comedy,Drama\nA Dog's Purpose\t2017\t6.9\t43518\tLasse Hallström\tCathryn Michon\t100\tAdventure,Comedy,Drama\nTo the Bone\t2017\t6.9\t25665\tMarti Noxon\tMarti Noxon\t107\tDrama\nWhat Happened to Monday\t2017\t6.9\t60314\tTommy Wirkola\tKerry Williamson\t123\tAction,Adventure,Crime\nWhat Happened to Monday\t2017\t6.9\t60314\tTommy Wirkola\tMax Botkin\t123\tAction,Adventure,Crime\nA Dog's Purpose\t2017\t6.9\t43518\tLasse Hallström\tWallace Wolodarsky\t100\tAdventure,Comedy,Drama\nAll the Money in the World\t2017\t6.9\t31740\tRidley Scott\tDavid Scarpa\t132\tBiography,Crime,Drama\nA Dog's Purpose\t2017\t6.9\t43518\tLasse Hallström\tMaya Forbes\t100\tAdventure,Comedy,Drama\nThe Ottoman Lieutenant\t2017\t6.8\t20617\tJoseph Ruben\tJeff Stockwell\t106\tDrama,War\nVictoria & Abdul\t2017\t6.8\t17794\tStephen Frears\tLee Hall\t111\tBiography,Drama,History\nKing Arthur: Legend of the Sword\t2017\t6.8\t145722\tGuy Ritchie\tJoby Harold\t126\tAction,Adventure,Drama\nCars 3\t2017\t6.8\t43836\tBrian Fee\tBob Peterson\t102\tAdventure,Animation,Comedy\nCars 3\t2017\t6.8\t43836\tBrian Fee\tJonathon E. Stewart\t102\tAdventure,Animation,Comedy\nCars 3\t2017\t6.8\t43836\tBrian Fee\tMike Rich\t102\tAdventure,Animation,Comedy\nKing Arthur: Legend of the Sword\t2017\t6.8\t145722\tGuy Ritchie\tDavid Dobkin\t126\tAction,Adventure,Drama\nVictoria & Abdul\t2017\t6.8\t17794\tStephen Frears\tShrabani Basu\t111\tBiography,Drama,History\nCars 3\t2017\t6.8\t43836\tBrian Fee\tEyal Podell\t102\tAdventure,Animation,Comedy\nBattle of the Sexes\t2017\t6.8\t29958\tValerie Faris\tSimon Beaufoy\t121\tBiography,Comedy,Drama\nKing Arthur: Legend of the Sword\t2017\t6.8\t145722\tGuy Ritchie\tLionel Wigram\t126\tAction,Adventure,Drama\nKingsman: The Golden Circle\t2017\t6.8\t174337\tMatthew Vaughn\tMatthew Vaughn\t141\tAction,Adventure,Comedy\nCars 3\t2017\t6.8\t43836\tBrian Fee\tScott Morse\t102\tAdventure,Animation,Comedy\nCars 3\t2017\t6.8\t43836\tBrian Fee\tBen Queen\t102\tAdventure,Animation,Comedy\nCars 3\t2017\t6.8\t43836\tBrian Fee\tKiel Murray\t102\tAdventure,Animation,Comedy\nKingsman: The Golden Circle\t2017\t6.8\t174337\tMatthew Vaughn\tMark Millar\t141\tAction,Adventure,Comedy\nKingsman: The Golden Circle\t2017\t6.8\t174337\tMatthew Vaughn\tDave Gibbons\t141\tAction,Adventure,Comedy\nKing Arthur: Legend of the Sword\t2017\t6.8\t145722\tGuy Ritchie\tGuy Ritchie\t126\tAction,Adventure,Drama\nCars 3\t2017\t6.8\t43836\tBrian Fee\tBrian Fee\t102\tAdventure,Animation,Comedy\nKingsman: The Golden Circle\t2017\t6.8\t174337\tMatthew Vaughn\tJane Goldman\t141\tAction,Adventure,Comedy\nBattle of the Sexes\t2017\t6.8\t29958\tJonathan Dayton\tSimon Beaufoy\t121\tBiography,Comedy,Drama\nJustice League\t2017\t6.7\t240172\tZack Snyder\tBob Kane\t120\tAction,Adventure,Fantasy\nMother!\t2017\t6.7\t113960\tDarren Aronofsky\tDarren Aronofsky\t121\tDrama,Horror,Mystery\nJustice League\t2017\t6.7\t240172\tZack Snyder\tGardner Fox\t120\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tGeorge Pérez\t120\tAction,Adventure,Fantasy\nKong: Skull Island\t2017\t6.7\t202420\tJordan Vogt-Roberts\tMerian C. Cooper\t118\tAction,Adventure,Fantasy\nGerald's Game\t2017\t6.7\t43352\tMike Flanagan\tStephen King\t103\tDrama,Horror,Thriller\nKong: Skull Island\t2017\t6.7\t202420\tJordan Vogt-Roberts\tDerek Connolly\t118\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tJerry Siegel\t120\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tDon Cameron\t120\tAction,Adventure,Fantasy\nFerdinand\t2017\t6.7\t23296\tCarlos Saldanha\tMunro Leaf\t108\tAdventure,Animation,Comedy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tGeoff Johns\t120\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tJoss Whedon\t120\tAction,Adventure,Fantasy\nFerdinand\t2017\t6.7\t23296\tCarlos Saldanha\tRon Burch\t108\tAdventure,Animation,Comedy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tJim Lee\t120\tAction,Adventure,Fantasy\nAtomic Blonde\t2017\t6.7\t117968\tDavid Leitch\tAntony Johnston\t115\tAction,Mystery,Thriller\nAtomic Blonde\t2017\t6.7\t117968\tDavid Leitch\tKurt Johnstad\t115\tAction,Mystery,Thriller\nFerdinand\t2017\t6.7\t23296\tCarlos Saldanha\tRobert L. Baird\t108\tAdventure,Animation,Comedy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tZack Snyder\t120\tAction,Adventure,Fantasy\nGerald's Game\t2017\t6.7\t43352\tMike Flanagan\tJeff Howard\t103\tDrama,Horror,Thriller\nJustice League\t2017\t6.7\t240172\tZack Snyder\tChris Terrio\t120\tAction,Adventure,Fantasy\nAtomic Blonde\t2017\t6.7\t117968\tDavid Leitch\tSam Hart\t115\tAction,Mystery,Thriller\nThe Fate of the Furious\t2017\t6.7\t158846\tF. Gary Gray\tChris Morgan\t136\tAction,Crime,Thriller\nFerdinand\t2017\t6.7\t23296\tCarlos Saldanha\tTim Federle\t108\tAdventure,Animation,Comedy\nKong: Skull Island\t2017\t6.7\t202420\tJordan Vogt-Roberts\tJohn Gatins\t118\tAction,Adventure,Fantasy\nFerdinand\t2017\t6.7\t23296\tCarlos Saldanha\tDon Rhymer\t108\tAdventure,Animation,Comedy\nFerdinand\t2017\t6.7\t23296\tCarlos Saldanha\tRobert Lawson\t108\tAdventure,Animation,Comedy\nFerdinand\t2017\t6.7\t23296\tCarlos Saldanha\tDavid Kidd\t108\tAdventure,Animation,Comedy\nThe Fate of the Furious\t2017\t6.7\t158846\tF. Gary Gray\tGary Scott Thompson\t136\tAction,Crime,Thriller\nKong: Skull Island\t2017\t6.7\t202420\tJordan Vogt-Roberts\tDan Gilroy\t118\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tWilliam Moulton Marston\t120\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tBill Finger\t120\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tJack Kirby\t120\tAction,Adventure,Fantasy\nFerdinand\t2017\t6.7\t23296\tCarlos Saldanha\tBrad Copeland\t108\tAdventure,Animation,Comedy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tMarv Wolfman\t120\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tJoe Shuster\t120\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tPaul Norris\t120\tAction,Adventure,Fantasy\nGerald's Game\t2017\t6.7\t43352\tMike Flanagan\tMike Flanagan\t103\tDrama,Horror,Thriller\nJustice League\t2017\t6.7\t240172\tZack Snyder\tHarry G. Peter\t120\tAction,Adventure,Fantasy\nIngrid Goes West\t2017\t6.7\t18970\tMatt Spicer\tDavid Branson Smith\t98\tComedy,Drama\nJustice League\t2017\t6.7\t240172\tZack Snyder\tCarmine Infantino\t120\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tMort Weisinger\t120\tAction,Adventure,Fantasy\nIngrid Goes West\t2017\t6.7\t18970\tMatt Spicer\tMatt Spicer\t98\tComedy,Drama\nJungle\t2017\t6.7\t25847\tGreg McLean\tJustin Monjo\t115\tAction,Adventure,Biography\nKong: Skull Island\t2017\t6.7\t202420\tJordan Vogt-Roberts\tMax Borenstein\t118\tAction,Adventure,Fantasy\nJungle\t2017\t6.7\t25847\tGreg McLean\tYossi Ghinsberg\t115\tAction,Adventure,Biography\nKong: Skull Island\t2017\t6.7\t202420\tJordan Vogt-Roberts\tEdgar Wallace\t118\tAction,Adventure,Fantasy\nJustice League\t2017\t6.7\t240172\tZack Snyder\tRobert Kanigher\t120\tAction,Adventure,Fantasy\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tEspen Sandberg\tTerry Rossio\t129\tAction,Adventure,Fantasy\nGoing in Style\t2017\t6.6\t55189\tZach Braff\tTheodore Melfi\t96\tComedy,Crime\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tEspen Sandberg\tJay Wolpert\t129\tAction,Adventure,Fantasy\nLife\t2017\t6.6\t155159\tDaniel Espinosa\tRhett Reese\t104\tHorror,Sci-Fi,Thriller\nAnnabelle: Creation\t2017\t6.6\t68088\tDavid F. Sandberg\tGary Dauberman\t109\tHorror,Mystery,Thriller\nGoing in Style\t2017\t6.6\t55189\tZach Braff\tEdward Cannon\t96\tComedy,Crime\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tJoachim Rønning\tStuart Beattie\t129\tAction,Adventure,Fantasy\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tEspen Sandberg\tTed Elliott\t129\tAction,Adventure,Fantasy\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tEspen Sandberg\tJeff Nathanson\t129\tAction,Adventure,Fantasy\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tEspen Sandberg\tStuart Beattie\t129\tAction,Adventure,Fantasy\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tJoachim Rønning\tTerry Rossio\t129\tAction,Adventure,Fantasy\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tJoachim Rønning\tJay Wolpert\t129\tAction,Adventure,Fantasy\nMurder on the Orient Express\t2017\t6.6\t130243\tKenneth Branagh\tMichael Green\t114\tCrime,Drama,Mystery\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tJoachim Rønning\tJeff Nathanson\t129\tAction,Adventure,Fantasy\nLife\t2017\t6.6\t155159\tDaniel Espinosa\tPaul Wernick\t104\tHorror,Sci-Fi,Thriller\nPirates of the Caribbean: Dead Men Tell No Tales\t2017\t6.6\t191606\tJoachim Rønning\tTed Elliott\t129\tAction,Adventure,Fantasy\nMurder on the Orient Express\t2017\t6.6\t130243\tKenneth Branagh\tAgatha Christie\t114\tCrime,Drama,Mystery\nValerian and the City of a Thousand Planets\t2017\t6.5\t113189\tLuc Besson\tLuc Besson\t137\tAction,Adventure,Fantasy\nValerian and the City of a Thousand Planets\t2017\t6.5\t113189\tLuc Besson\tPierre Christin\t137\tAction,Adventure,Fantasy\nValerian and the City of a Thousand Planets\t2017\t6.5\t113189\tLuc Besson\tJean-Claude Mézières\t137\tAction,Adventure,Fantasy\nAlien: Covenant\t2017\t6.5\t195805\tRidley Scott\tRonald Shusett\t122\tHorror,Sci-Fi,Thriller\nHappy Death Day\t2017\t6.5\t53178\tChristopher Landon\tScott Lobdell\t96\tHorror,Mystery,Thriller\nI Kill Giants\t2017\t6.5\t11072\tAnders Walter\tJoe Kelly\t106\tDrama,Fantasy,Thriller\nChurchill\t2017\t6.5\t11032\tJonathan Teplitzky\tAlex von Tunzelmann\t105\tBiography,Drama,History\nThe Book of Henry\t2017\t6.5\t13209\tColin Trevorrow\tGregg Hurwitz\t105\tCrime,Drama,Thriller\nAlien: Covenant\t2017\t6.5\t195805\tRidley Scott\tDan O'Bannon\t122\tHorror,Sci-Fi,Thriller\nAlien: Covenant\t2017\t6.5\t195805\tRidley Scott\tDante Harper\t122\tHorror,Sci-Fi,Thriller\nAlien: Covenant\t2017\t6.5\t195805\tRidley Scott\tJack Paglen\t122\tHorror,Sci-Fi,Thriller\nAlien: Covenant\t2017\t6.5\t195805\tRidley Scott\tMichael Green\t122\tHorror,Sci-Fi,Thriller\nAlien: Covenant\t2017\t6.5\t195805\tRidley Scott\tJohn Logan\t122\tHorror,Sci-Fi,Thriller\nI Kill Giants\t2017\t6.5\t11072\tAnders Walter\tJ.M. Ken Niimura\t106\tDrama,Fantasy,Thriller\nBright\t2017\t6.4\t123511\tDavid Ayer\tMax Landis\t117\tAction,Crime,Fantasy\nThe Bar\t2017\t6.4\t11229\tÁlex de la Iglesia\tÁlex de la Iglesia\t102\tComedy,Horror,Thriller\nThe Beguiled\t2017\t6.4\t33818\tSofia Coppola\tThomas Cullinan\t93\tDrama,Thriller\nEverything, Everything\t2017\t6.4\t18770\tStella Meghie\tJ. Mills Goodloe\t96\tDrama,Romance\nBefore I Fall\t2017\t6.4\t30605\tRy Russo-Young\tMaria Maggenti\t98\tDrama,Mystery\nGhost in the Shell\t2017\t6.4\t150328\tRupert Sanders\tJamie Moss\t107\tAction,Crime,Drama\nGhost in the Shell\t2017\t6.4\t150328\tRupert Sanders\tEhren Kruger\t107\tAction,Crime,Drama\nGhost in the Shell\t2017\t6.4\t150328\tRupert Sanders\tShirow Masamune\t107\tAction,Crime,Drama\nGhost in the Shell\t2017\t6.4\t150328\tRupert Sanders\tWilliam Wheeler\t107\tAction,Crime,Drama\nThe Beguiled\t2017\t6.4\t33818\tSofia Coppola\tSofia Coppola\t93\tDrama,Thriller\nWheelman\t2017\t6.4\t10733\tJeremy Rush\tJeremy Rush\t82\tAction,Crime,Mystery\nThe Beguiled\t2017\t6.4\t33818\tSofia Coppola\tAlbert Maltz\t93\tDrama,Thriller\nEverything, Everything\t2017\t6.4\t18770\tStella Meghie\tNicola Yoon\t96\tDrama,Romance\nThe Mountain Between Us\t2017\t6.4\t39463\tHany Abu-Assad\tCharles Martin\t112\tAction,Adventure,Drama\nThe Mountain Between Us\t2017\t6.4\t39463\tHany Abu-Assad\tChris Weitz\t112\tAction,Adventure,Drama\nThe Mountain Between Us\t2017\t6.4\t39463\tHany Abu-Assad\tJ. Mills Goodloe\t112\tAction,Adventure,Drama\nThe Bar\t2017\t6.4\t11229\tÁlex de la Iglesia\tJorge Guerricaechevarría\t102\tComedy,Horror,Thriller\nThe Space Between Us\t2017\t6.4\t33753\tPeter Chelsom\tAllan Loeb\t120\tAdventure,Drama,Romance\nThe Beguiled\t2017\t6.4\t33818\tSofia Coppola\tIrene Kamp\t93\tDrama,Thriller\nThe Space Between Us\t2017\t6.4\t33753\tPeter Chelsom\tRichard Barton Lewis\t120\tAdventure,Drama,Romance\nThe Space Between Us\t2017\t6.4\t33753\tPeter Chelsom\tStewart Schill\t120\tAdventure,Drama,Romance\nRoman J. Israel, Esq.\t2017\t6.4\t14086\tDan Gilroy\tDan Gilroy\t122\tCrime,Drama\nBefore I Fall\t2017\t6.4\t30605\tRy Russo-Young\tLauren Oliver\t98\tDrama,Mystery\nDespicable Me 3\t2017\t6.3\t71432\tEric Guillon\tKen Daurio\t89\tAction,Adventure,Animation\nDespicable Me 3\t2017\t6.3\t71432\tPierre Coffin\tKen Daurio\t89\tAction,Adventure,Animation\n1922\t2017\t6.3\t23633\tZak Hilditch\tStephen King\t102\tCrime,Drama,Mystery\nThe Shack\t2017\t6.3\t21507\tStuart Hazeldine\tWayne Jacobsen\t132\tDrama,Fantasy\nThe Shack\t2017\t6.3\t21507\tStuart Hazeldine\tWilliam P. Young\t132\tDrama,Fantasy\nDespicable Me 3\t2017\t6.3\t71432\tEric Guillon\tCinco Paul\t89\tAction,Adventure,Animation\nDespicable Me 3\t2017\t6.3\t71432\tPierre Coffin\tCinco Paul\t89\tAction,Adventure,Animation\nThe Babysitter\t2017\t6.3\t32989\tMcG\tBrian Duffield\t85\tComedy,Horror\nTiger Zinda Hai\t2017\t6.3\t14936\tAli Abbas Zafar\tNeelesh Misra\t161\tAction,Adventure,Thriller\nBerlin Syndrome\t2017\t6.3\t14866\tCate Shortland\tCate Shortland\t116\tDrama,Horror,Mystery\nThe Shack\t2017\t6.3\t21507\tStuart Hazeldine\tAndrew Lanham\t132\tDrama,Fantasy\nThe Shack\t2017\t6.3\t21507\tStuart Hazeldine\tJohn Fusco\t132\tDrama,Fantasy\nThe Shack\t2017\t6.3\t21507\tStuart Hazeldine\tDestin Daniel Cretton\t132\tDrama,Fantasy\nBerlin Syndrome\t2017\t6.3\t14866\tCate Shortland\tMelanie Joosten\t116\tDrama,Horror,Mystery\nDespicable Me 3\t2017\t6.3\t71432\tKyle Balda\tKen Daurio\t89\tAction,Adventure,Animation\nTiger Zinda Hai\t2017\t6.3\t14936\tAli Abbas Zafar\tAditya Chopra\t161\tAction,Adventure,Thriller\nThe Discovery\t2017\t6.3\t20363\tCharlie McDowell\tJustin Lader\t102\tDrama,Mystery,Romance\nBerlin Syndrome\t2017\t6.3\t14866\tCate Shortland\tShaun Grant\t116\tDrama,Horror,Mystery\n1922\t2017\t6.3\t23633\tZak Hilditch\tZak Hilditch\t102\tCrime,Drama,Mystery\nGirls Trip\t2017\t6.3\t21666\tMalcolm D. Lee\tErica Rivinoja\t122\tComedy\nGirls Trip\t2017\t6.3\t21666\tMalcolm D. Lee\tTracy Oliver\t122\tComedy\nGirls Trip\t2017\t6.3\t21666\tMalcolm D. Lee\tKenya Barris\t122\tComedy\nThe Boss Baby\t2017\t6.3\t77275\tTom McGrath\tMichael McCullers\t97\tAnimation,Comedy,Family\nThe Boss Baby\t2017\t6.3\t77275\tTom McGrath\tMarla Frazee\t97\tAnimation,Comedy,Family\nThe Discovery\t2017\t6.3\t20363\tCharlie McDowell\tCharlie McDowell\t102\tDrama,Mystery,Romance\nThe Ritual\t2017\t6.3\t30404\tDavid Bruckner\tAdam Nevill\t94\tHorror\nDespicable Me 3\t2017\t6.3\t71432\tKyle Balda\tCinco Paul\t89\tAction,Adventure,Animation\nTiger Zinda Hai\t2017\t6.3\t14936\tAli Abbas Zafar\tAli Abbas Zafar\t161\tAction,Adventure,Thriller\nThe Ritual\t2017\t6.3\t30404\tDavid Bruckner\tJoe Barton\t94\tHorror\nSand Castle\t2017\t6.3\t11819\tFernando Coimbra\tChris Roessner\t113\tDrama,War\nThe Shack\t2017\t6.3\t21507\tStuart Hazeldine\tBrad Cummings\t132\tDrama,Fantasy\nVeronica\t2017\t6.2\t17793\tPaco Plaza\tPaco Plaza\t105\tDrama,Horror\nAmerican Assassin\t2017\t6.2\t43143\tMichael Cuesta\tVince Flynn\t112\tAction,Thriller\nAmerican Assassin\t2017\t6.2\t43143\tMichael Cuesta\tMichael Finch\t112\tAction,Thriller\nCaptain Underpants: The First Epic Movie\t2017\t6.2\t17813\tDavid Soren\tDav Pilkey\t89\tAction,Animation,Comedy\nCaptain Underpants: The First Epic Movie\t2017\t6.2\t17813\tDavid Soren\tNicholas Stoller\t89\tAction,Animation,Comedy\nThe Wall\t2017\t6.2\t16516\tDoug Liman\tDwain Worrell\t88\tDrama,Thriller,War\n6 Days\t2017\t6.2\t10344\tToa Fraser\tGlenn Standring\t94\tAction,Drama,History\nAmerican Assassin\t2017\t6.2\t43143\tMichael Cuesta\tMarshall Herskovitz\t112\tAction,Thriller\nUnlocked\t2017\t6.2\t16670\tMichael Apted\tPeter O'Brien\t98\tAction,Drama,Mystery\nWonder Wheel\t2017\t6.2\t11655\tWoody Allen\tWoody Allen\t101\tDrama\nAmerican Assassin\t2017\t6.2\t43143\tMichael Cuesta\tEdward Zwick\t112\tAction,Thriller\nVeronica\t2017\t6.2\t17793\tPaco Plaza\tFernando Navarro\t105\tDrama,Horror\nCaptain Underpants: The First Epic Movie\t2017\t6.2\t17813\tDavid Soren\tDavid Soren\t89\tAction,Animation,Comedy\nIt Comes at Night\t2017\t6.2\t53881\tTrey Edward Shults\tTrey Edward Shults\t91\tHorror,Mystery\nAmerican Assassin\t2017\t6.2\t43143\tMichael Cuesta\tStephen Schiff\t112\tAction,Thriller\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tTom Wheeler\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tWilliam Wheeler\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tWilliam Wheeler\t101\tAction,Adventure,Animation\nPitch Perfect 3\t2017\t6.0\t25947\tTrish Sie\tMike White\t93\tComedy,Music\niBoy\t2017\t6.0\t13728\tAdam Randall\tKevin Brooks\t90\tAction,Crime,Sci-Fi\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tHilary Winston\t101\tAction,Adventure,Animation\niBoy\t2017\t6.0\t13728\tAdam Randall\tMark Denton\t90\tAction,Crime,Sci-Fi\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tKevin Hageman\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tKevin Hageman\t101\tAction,Adventure,Animation\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tMatt Sazama\t124\tAction,Adventure,Sci-Fi\nMy Cousin Rachel\t2017\t6.0\t11908\tRoger Michell\tRoger Michell\t106\tDrama,Mystery,Romance\niBoy\t2017\t6.0\t13728\tAdam Randall\tJonny Stockwood\t90\tAction,Crime,Sci-Fi\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tTom Wheeler\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tHilary Winston\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tJared Stern\t101\tAction,Adventure,Animation\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tJohn Gatins\t124\tAction,Adventure,Sci-Fi\nWar Machine\t2017\t6.0\t29013\tDavid Michôd\tMichael Hastings\t122\tComedy,Drama,War\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tHaim Saban\t124\tAction,Adventure,Sci-Fi\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tJared Stern\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tWilliam Wheeler\t101\tAction,Adventure,Animation\nCHIPS\t2017\t6.0\t29579\tDax Shepard\tRick Rosner\t100\tAction,Comedy,Crime\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tDan Hageman\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tJohn Whittington\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tBob Logan\t101\tAction,Adventure,Animation\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tShuki Levy\t124\tAction,Adventure,Sci-Fi\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tKevin Hageman\t101\tAction,Adventure,Animation\nPitch Perfect 3\t2017\t6.0\t25947\tTrish Sie\tMickey Rapkin\t93\tComedy,Music\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tSaburo Yatsude\t124\tAction,Adventure,Sci-Fi\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tPaul Fisher\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tTom Wheeler\t101\tAction,Adventure,Animation\nDaddy's Home 2\t2017\t6.0\t30025\tSean Anders\tJohn Morris\t100\tComedy\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tPaul Fisher\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tDan Hageman\t101\tAction,Adventure,Animation\nDaddy's Home 2\t2017\t6.0\t30025\tSean Anders\tSean Anders\t100\tComedy\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tPaul Fisher\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tJohn Whittington\t101\tAction,Adventure,Animation\niBoy\t2017\t6.0\t13728\tAdam Randall\tJoe Barton\t90\tAction,Crime,Sci-Fi\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tBob Logan\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tDan Hageman\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tBob Logan\tJohn Whittington\t101\tAction,Adventure,Animation\nDaddy's Home 2\t2017\t6.0\t30025\tSean Anders\tBrian Burns\t100\tComedy\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tShôtarô Ishinomori\t124\tAction,Adventure,Sci-Fi\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tBob Logan\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tPaul Fisher\tJared Stern\t101\tAction,Adventure,Animation\nThe LEGO Ninjago Movie\t2017\t6.0\t12812\tCharlie Bean\tHilary Winston\t101\tAction,Adventure,Animation\nCHIPS\t2017\t6.0\t29579\tDax Shepard\tDax Shepard\t100\tAction,Comedy,Crime\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tBurk Sharpless\t124\tAction,Adventure,Sci-Fi\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tMichele Mulroney\t124\tAction,Adventure,Sci-Fi\nMy Cousin Rachel\t2017\t6.0\t11908\tRoger Michell\tDaphne Du Maurier\t106\tDrama,Mystery,Romance\nPitch Perfect 3\t2017\t6.0\t25947\tTrish Sie\tKay Cannon\t93\tComedy,Music\nWar Machine\t2017\t6.0\t29013\tDavid Michôd\tDavid Michôd\t122\tComedy,Drama,War\nPower Rangers\t2017\t6.0\t80729\tDean Israelite\tKieran Mulroney\t124\tAction,Adventure,Sci-Fi\nFullmetal Alchemist\t2017\t5.9\t11984\tFumihiko Sori\tTakeshi Miyamoto\t135\tAction,Adventure,Fantasy\nSmurfs: The Lost Village\t2017\t5.9\t12913\tKelly Asbury\tStacey Harman\t90\tAdventure,Animation,Comedy\nFullmetal Alchemist\t2017\t5.9\t11984\tFumihiko Sori\tFumihiko Sori\t135\tAction,Adventure,Fantasy\nFullmetal Alchemist\t2017\t5.9\t11984\tFumihiko Sori\tHiromu Arakawa\t135\tAction,Adventure,Fantasy\nSmurfs: The Lost Village\t2017\t5.9\t12913\tKelly Asbury\tPeyo\t90\tAdventure,Animation,Comedy\nSmurfs: The Lost Village\t2017\t5.9\t12913\tKelly Asbury\tPamela Ribon\t90\tAdventure,Animation,Comedy\nKidnap\t2017\t5.9\t23490\tLuis Prieto\tKnate Lee\t95\tAction,Crime,Drama\nAll Eyez on Me\t2017\t5.8\t15126\tBenny Boom\tEddie Gonzalez\t139\tBiography,Drama,Music\nJigsaw\t2017\t5.8\t41688\tPeter Spierig\tJosh Stolberg\t92\tCrime,Horror,Mystery\nJigsaw\t2017\t5.8\t41688\tMichael Spierig\tPete Goldfinger\t92\tCrime,Horror,Mystery\nCrimea\t2017\t5.8\t22538\tAleksey Pimanov\tVladimir Bragin\t99\tAction,Drama\nJigsaw\t2017\t5.8\t41688\tMichael Spierig\tJosh Stolberg\t92\tCrime,Horror,Mystery\nJigsaw\t2017\t5.8\t41688\tPeter Spierig\tPete Goldfinger\t92\tCrime,Horror,Mystery\nAll Eyez on Me\t2017\t5.8\t15126\tBenny Boom\tSteven Bagatourian\t139\tBiography,Drama,Music\nAll Eyez on Me\t2017\t5.8\t15126\tBenny Boom\tJeremy Haft\t139\tBiography,Drama,Music\nTable 19\t2017\t5.8\t17401\tJeffrey Blitz\tMark Duplass\t87\tComedy,Drama,Romance\nTable 19\t2017\t5.8\t17401\tJeffrey Blitz\tJeffrey Blitz\t87\tComedy,Drama,Romance\nCrimea\t2017\t5.8\t22538\tAleksey Pimanov\tAleksey Pimanov\t99\tAction,Drama\nThe Little Hours\t2017\t5.8\t10050\tJeff Baena\tJeff Baena\t90\tComedy,Romance\nTable 19\t2017\t5.8\t17401\tJeffrey Blitz\tJay Duplass\t87\tComedy,Drama,Romance\nThe Dark Tower\t2017\t5.7\t87168\tNikolaj Arcel\tAkiva Goldsman\t95\tAction,Adventure,Fantasy\nAftermath\t2017\t5.7\t14268\tElliott Lester\tJavier Gullón\t94\tDrama,Thriller\nSong to Song\t2017\t5.7\t12458\tTerrence Malick\tTerrence Malick\t129\tDrama,Music,Romance\nSecurity\t2017\t5.7\t10270\tAlain Desrochers\tTony Mosher\t88\tAction,Crime,Thriller\nDownsizing\t2017\t5.7\t43183\tAlexander Payne\tAlexander Payne\t135\tComedy,Drama,Sci-Fi\n47 Meters Down\t2017\t5.7\t30163\tJohannes Roberts\tJohannes Roberts\t89\tAdventure,Drama,Horror\n2:22\t2017\t5.7\t12560\tPaul Currie\tTodd Stein\t98\tThriller\nLittle Evil\t2017\t5.7\t12368\tEli Craig\tEli Craig\t94\tComedy,Horror\nThe Dark Tower\t2017\t5.7\t87168\tNikolaj Arcel\tAnders Thomas Jensen\t95\tAction,Adventure,Fantasy\nThe Dark Tower\t2017\t5.7\t87168\tNikolaj Arcel\tJeff Pinkner\t95\tAction,Adventure,Fantasy\nDownsizing\t2017\t5.7\t43183\tAlexander Payne\tJim Taylor\t135\tComedy,Drama,Sci-Fi\nHome Again\t2017\t5.7\t15307\tHallie Meyers-Shyer\tHallie Meyers-Shyer\t97\tComedy,Drama,Romance\n2:22\t2017\t5.7\t12560\tPaul Currie\tNathan Parker\t98\tThriller\nSecurity\t2017\t5.7\t10270\tAlain Desrochers\tJohn Sullivan\t88\tAction,Crime,Thriller\nThe Dark Tower\t2017\t5.7\t87168\tNikolaj Arcel\tStephen King\t95\tAction,Adventure,Fantasy\nThe Dark Tower\t2017\t5.7\t87168\tNikolaj Arcel\tNikolaj Arcel\t95\tAction,Adventure,Fantasy\n47 Meters Down\t2017\t5.7\t30163\tJohannes Roberts\tErnest Riera\t89\tAdventure,Drama,Horror\nSleepless\t2017\t5.6\t21654\tBaran bo Odar\tAndrea Berloff\t95\tAction,Crime,Thriller\nSleepless\t2017\t5.6\t21654\tBaran bo Odar\tFrédéric Jardin\t95\tAction,Crime,Thriller\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tRobert Ben Garant\t116\tAction,Comedy,Crime\nFist Fight\t2017\t5.6\t28825\tRichie Keen\tEvan Susser\t91\tComedy\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tMark Swift\t116\tAction,Comedy,Crime\nFist Fight\t2017\t5.6\t28825\tRichie Keen\tVan Robichaux\t91\tComedy\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tDavid Ronn\t116\tAction,Comedy,Crime\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tThomas Lennon\t116\tAction,Comedy,Crime\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tMichael Berk\t116\tAction,Comedy,Crime\nThe House\t2017\t5.6\t23809\tAndrew Jay Cohen\tAndrew Jay Cohen\t88\tComedy\nThe House\t2017\t5.6\t23809\tAndrew Jay Cohen\tBrendan O'Brien\t88\tComedy\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tDouglas Schwartz\t116\tAction,Comedy,Crime\nFist Fight\t2017\t5.6\t28825\tRichie Keen\tMax Greenfield\t91\tComedy\nSleepless\t2017\t5.6\t21654\tBaran bo Odar\tNicolas Saada\t95\tAction,Crime,Thriller\nSleepless\t2017\t5.6\t21654\tBaran bo Odar\tOlivier Douyère\t95\tAction,Crime,Thriller\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tJay Scherick\t116\tAction,Comedy,Crime\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tGregory J. Bonann\t116\tAction,Comedy,Crime\nBaywatch\t2017\t5.6\t100350\tSeth Gordon\tDamian Shannon\t116\tAction,Comedy,Crime\nThe Mummy\t2017\t5.5\t130096\tAlex Kurtzman\tJenny Lumet\t110\tAction,Adventure,Fantasy\nA Bad Moms Christmas\t2017\t5.5\t21312\tJon Lucas\tJon Lucas\t104\tAdventure,Comedy\nThe Mummy\t2017\t5.5\t130096\tAlex Kurtzman\tDylan Kussman\t110\tAction,Adventure,Fantasy\nA Bad Moms Christmas\t2017\t5.5\t21312\tScott Moore\tJon Lucas\t104\tAdventure,Comedy\nThe Mummy\t2017\t5.5\t130096\tAlex Kurtzman\tAlex Kurtzman\t110\tAction,Adventure,Fantasy\nThe Mummy\t2017\t5.5\t130096\tAlex Kurtzman\tChristopher McQuarrie\t110\tAction,Adventure,Fantasy\nThe Mummy\t2017\t5.5\t130096\tAlex Kurtzman\tJon Spaihts\t110\tAction,Adventure,Fantasy\nA Bad Moms Christmas\t2017\t5.5\t21312\tScott Moore\tScott Moore\t104\tAdventure,Comedy\nSuburbicon\t2017\t5.5\t19733\tGeorge Clooney\tGrant Heslov\t105\tCrime,Drama,Mystery\nA Bad Moms Christmas\t2017\t5.5\t21312\tJon Lucas\tScott Moore\t104\tAdventure,Comedy\nSuburbicon\t2017\t5.5\t19733\tGeorge Clooney\tEthan Coen\t105\tCrime,Drama,Mystery\nThe Mummy\t2017\t5.5\t130096\tAlex Kurtzman\tDavid Koepp\t110\tAction,Adventure,Fantasy\nJab Harry met Sejal\t2017\t5.5\t14368\tImtiaz Ali\tImtiaz Ali\t143\tComedy,Drama,Romance\nSuburbicon\t2017\t5.5\t19733\tGeorge Clooney\tJoel Coen\t105\tCrime,Drama,Mystery\nSuburbicon\t2017\t5.5\t19733\tGeorge Clooney\tGeorge Clooney\t105\tCrime,Drama,Mystery\nGeostorm\t2017\t5.4\t56279\tDean Devlin\tPaul Guyot\t109\tAction,Sci-Fi,Thriller\nGeostorm\t2017\t5.4\t56279\tDean Devlin\tDean Devlin\t109\tAction,Sci-Fi,Thriller\nThe Circle\t2017\t5.3\t60088\tJames Ponsoldt\tJames Ponsoldt\t110\tDrama,Sci-Fi,Thriller\nNaked\t2017\t5.3\t11078\tMichael Tiddes\tMårten Knutsson\t96\tComedy,Romance\nNaked\t2017\t5.3\t11078\tMichael Tiddes\tMarlon Wayans\t96\tComedy,Romance\nNaked\t2017\t5.3\t11078\tMichael Tiddes\tRick Alvarez\t96\tComedy,Romance\nNaked\t2017\t5.3\t11078\tMichael Tiddes\tCory Koller\t96\tComedy,Romance\nNaked\t2017\t5.3\t11078\tMichael Tiddes\tTorkel Knutsson\t96\tComedy,Romance\nThe Circle\t2017\t5.3\t60088\tJames Ponsoldt\tDave Eggers\t110\tDrama,Sci-Fi,Thriller\nRough Night\t2017\t5.2\t31039\tLucia Aniello\tPaul W. Downs\t101\tComedy\nxXx: Return of Xander Cage\t2017\t5.2\t68797\tD.J. Caruso\tRich Wilkes\t107\tAction,Adventure,Thriller\nRough Night\t2017\t5.2\t31039\tLucia Aniello\tLucia Aniello\t101\tComedy\nOnce Upon a Time in Venice\t2017\t5.2\t11330\tMark Cullen\tRobb Cullen\t94\tAction,Comedy,Thriller\nTransformers: The Last Knight\t2017\t5.2\t96081\tMichael Bay\tArt Marcum\t154\tAction,Adventure,Sci-Fi\nFlatliners\t2017\t5.2\t23586\tNiels Arden Oplev\tPeter Filardi\t109\tDrama,Sci-Fi,Thriller\nTransformers: The Last Knight\t2017\t5.2\t96081\tMichael Bay\tAkiva Goldsman\t154\tAction,Adventure,Sci-Fi\nxXx: Return of Xander Cage\t2017\t5.2\t68797\tD.J. Caruso\tF. Scott Frazier\t107\tAction,Adventure,Thriller\nOnce Upon a Time in Venice\t2017\t5.2\t11330\tMark Cullen\tMark Cullen\t94\tAction,Comedy,Thriller\nCult of Chucky\t2017\t5.2\t13507\tDon Mancini\tDon Mancini\t91\tHorror,Thriller\nTransformers: The Last Knight\t2017\t5.2\t96081\tMichael Bay\tKen Nolan\t154\tAction,Adventure,Sci-Fi\nTransformers: The Last Knight\t2017\t5.2\t96081\tMichael Bay\tMatt Holloway\t154\tAction,Adventure,Sci-Fi\nFlatliners\t2017\t5.2\t23586\tNiels Arden Oplev\tBen Ripley\t109\tDrama,Sci-Fi,Thriller\nWish Upon\t2017\t5.1\t10522\tJohn R. Leonetti\tBarbara Marshall\t90\tFantasy,Horror,Thriller\nThe Snowman\t2017\t5.1\t34039\tTomas Alfredson\tJo Nesbø\t119\tCrime,Drama,Mystery\nThe Snowman\t2017\t5.1\t34039\tTomas Alfredson\tHossein Amini\t119\tCrime,Drama,Mystery\nThe Snowman\t2017\t5.1\t34039\tTomas Alfredson\tSøren Sveistrup\t119\tCrime,Drama,Mystery\nThe Snowman\t2017\t5.1\t34039\tTomas Alfredson\tPeter Straughan\t119\tCrime,Drama,Mystery\nLeatherface\t2017\t5.0\t11303\tJulien Maury\tSeth M. Sherwood\t90\tHorror,Thriller\nLeatherface\t2017\t5.0\t11303\tAlexandre Bustillo\tKim Henkel\t90\tHorror,Thriller\nLeatherface\t2017\t5.0\t11303\tJulien Maury\tTobe Hooper\t90\tHorror,Thriller\nLeatherface\t2017\t5.0\t11303\tAlexandre Bustillo\tSeth M. Sherwood\t90\tHorror,Thriller\nLeatherface\t2017\t5.0\t11303\tJulien Maury\tKim Henkel\t90\tHorror,Thriller\nLeatherface\t2017\t5.0\t11303\tAlexandre Bustillo\tTobe Hooper\t90\tHorror,Thriller\nDeath Note\t2017\t4.6\t57074\tAdam Wingard\tVlas Parlapanides\t101\tAdventure,Crime,Drama\nDeath Note\t2017\t4.6\t57074\tAdam Wingard\tCharley Parlapanides\t101\tAdventure,Crime,Drama\nFifty Shades Darker\t2017\t4.6\t70583\tJames Foley\tE.L. James\t118\tDrama,Romance\nFifty Shades Darker\t2017\t4.6\t70583\tJames Foley\tNiall Leonard\t118\tDrama,Romance\nDeath Note\t2017\t4.6\t57074\tAdam Wingard\tJeremy Slater\t101\tAdventure,Crime,Drama\nDeath Note\t2017\t4.6\t57074\tAdam Wingard\tTsugumi Ôba\t101\tAdventure,Crime,Drama\nDeath Note\t2017\t4.6\t57074\tAdam Wingard\tTakeshi Obata\t101\tAdventure,Crime,Drama\nRings\t2017\t4.5\t29357\tF. Javier Gutiérrez\tAkiva Goldsman\t102\tDrama,Horror\nRings\t2017\t4.5\t29357\tF. Javier Gutiérrez\tKôji Suzuki\t102\tDrama,Horror\nRings\t2017\t4.5\t29357\tF. Javier Gutiérrez\tJacob Estes\t102\tDrama,Horror\nRings\t2017\t4.5\t29357\tF. Javier Gutiérrez\tDavid Loucka\t102\tDrama,Horror\nSnatched\t2017\t4.4\t24787\tJonathan Levine\tKatie Dippold\t90\tAction,Comedy\nSingularity\t2017\t4.3\t10414\tRobert Kouba\tSebastian Cepeda\t92\tAction,Adventure,Drama\nJeepers Creepers III\t2017\t4.3\t11582\tVictor Salva\tVictor Salva\t100\tHorror,Mystery,Thriller\nSingularity\t2017\t4.3\t10414\tRobert Kouba\tRobert Kouba\t92\tAction,Adventure,Drama\nThe Bye Bye Man\t2017\t4.3\t13798\tStacy Title\tRobert Damon Schneck\t97\tHorror,Thriller\nThe Bye Bye Man\t2017\t4.3\t13798\tStacy Title\tJonathan Penner\t97\tHorror,Thriller\nTubelight\t2017\t4.2\t10462\tKabir Khan\tKabir Khan\t136\tDrama,War\nTubelight\t2017\t4.2\t10462\tKabir Khan\tManurishi Chadha\t136\tDrama,War\nTubelight\t2017\t4.2\t10462\tKabir Khan\tParveez Sheikh\t136\tDrama,War\nRecep Ivedik 5\t2017\t3.5\t10253\tTogan Gökbakar\tTogan Gökbakar\t114\tComedy\nRecep Ivedik 5\t2017\t3.5\t10253\tTogan Gökbakar\tSahan Gökbakar\t114\tComedy\nThe Emoji Movie\t2017\t3.1\t38146\tTony Leondis\tMike White\t86\tAdventure,Animation,Comedy\nThe Emoji Movie\t2017\t3.1\t38146\tTony Leondis\tJohn Hoffman\t86\tAdventure,Animation,Comedy\nThe Emoji Movie\t2017\t3.1\t38146\tTony Leondis\tEric Siegel\t86\tAdventure,Animation,Comedy\nThe Emoji Movie\t2017\t3.1\t38146\tTony Leondis\tTony Leondis\t86\tAdventure,Animation,Comedy\nReis\t2017\t1.8\t71385\tHüdaverdi Yavuz\tMurat Özdil\t108\tBiography,Drama\nCumali Ceber: Allah Seni Alsin\t2017\t1.3\t34717\tGökhan Gök\tGiray Demirel\t100\tComedy\nThe Mountain II\t2016\t9.6\t95308\tAlper Caglar\tAlper Caglar\t135\tDrama,War\nAynabaji\t2016\t9.4\t16429\tAmitabh Reza Chowdhury\tAdnan Adib Khan\t147\tCrime,Mystery,Thriller\nAynabaji\t2016\t9.4\t16429\tAmitabh Reza Chowdhury\tSyed Gaosul Alam Shaon\t147\tCrime,Mystery,Thriller\nAynabaji\t2016\t9.4\t16429\tAmitabh Reza Chowdhury\tAnam Biswas\t147\tCrime,Mystery,Thriller\nDangal\t2016\t8.5\t92548\tNitesh Tiwari\tShreyas Jain\t161\tAction,Biography,Drama\nDangal\t2016\t8.5\t92548\tNitesh Tiwari\tNikhil Mehrotra\t161\tAction,Biography,Drama\nDangal\t2016\t8.5\t92548\tNitesh Tiwari\tPiyush Gupta\t161\tAction,Biography,Drama\nDangal\t2016\t8.5\t92548\tNitesh Tiwari\tRajshri Sudhakar\t161\tAction,Biography,Drama\nDangal\t2016\t8.5\t92548\tNitesh Tiwari\tNitesh Tiwari\t161\tAction,Biography,Drama\nYour Name\t2016\t8.4\t89799\tMakoto Shinkai\tClark Cheng\t106\tAnimation,Drama,Fantasy\nYour Name\t2016\t8.4\t89799\tMakoto Shinkai\tMakoto Shinkai\t106\tAnimation,Drama,Fantasy\nBefore the Flood\t2016\t8.3\t20399\tFisher Stevens\tMark Monroe\t96\tDocumentary,News\nA Silent Voice\t2016\t8.2\t15129\tNaoko Yamada\tYoshitoki Oima\t130\tAnimation,Drama,Family\nHacksaw Ridge\t2016\t8.2\t314416\tMel Gibson\tRobert Schenkkan\t139\tBiography,Drama,History\n13th\t2016\t8.2\t16566\tAva DuVernay\tSpencer Averick\t100\tCrime,Documentary,History\nPink\t2016\t8.2\t27401\tAniruddha Roy Chowdhury\tAniruddha Roy Chowdhury\t136\tDrama\nA Silent Voice\t2016\t8.2\t15129\tNaoko Yamada\tReiko Yoshida\t130\tAnimation,Drama,Family\n13th\t2016\t8.2\t16566\tAva DuVernay\tAva DuVernay\t100\tCrime,Documentary,History\nPink\t2016\t8.2\t27401\tAniruddha Roy Chowdhury\tRitesh Shah\t136\tDrama\nA Silent Voice\t2016\t8.2\t15129\tNaoko Yamada\tKiyoshi Shigematsu\t130\tAnimation,Drama,Family\nPink\t2016\t8.2\t27401\tAniruddha Roy Chowdhury\tShoojit Sircar\t136\tDrama\nHacksaw Ridge\t2016\t8.2\t314416\tMel Gibson\tAndrew Knight\t139\tBiography,Drama,History\nA Silent Voice\t2016\t8.2\t15129\tNaoko Yamada\tClark Cheng\t130\tAnimation,Drama,Family\nA Silent Voice\t2016\t8.2\t15129\tNaoko Yamada\tAmanda Winn Lee\t130\tAnimation,Drama,Family\nAirlift\t2016\t8.1\t43916\tRaja Menon\tRaja Menon\t130\tAction,Drama,History\nThe Invisible Guest\t2016\t8.1\t54643\tOriol Paulo\tOriol Paulo\t106\tCrime,Mystery,Thriller\nLa La Land\t2016\t8.1\t367801\tDamien Chazelle\tDamien Chazelle\t128\tComedy,Drama,Music\nLion\t2016\t8.1\t157760\tGarth Davis\tLuke Davies\t118\tBiography,Drama\nAirlift\t2016\t8.1\t43916\tRaja Menon\tRitesh Shah\t130\tAction,Drama,History\nLion\t2016\t8.1\t157760\tGarth Davis\tSaroo Brierley\t118\tBiography,Drama\nAirlift\t2016\t8.1\t43916\tRaja Menon\tSuresh Nair\t130\tAction,Drama,History\nThe Handmaiden\t2016\t8.1\t59607\tChan-wook Park\tSarah Waters\t144\tCrime,Drama,Mystery\nAirlift\t2016\t8.1\t43916\tRaja Menon\tRahul Nangia\t130\tAction,Drama,History\nThe Handmaiden\t2016\t8.1\t59607\tChan-wook Park\tChan-wook Park\t144\tCrime,Drama,Mystery\nThe Handmaiden\t2016\t8.1\t59607\tChan-wook Park\tSeo-kyeong Jeong\t144\tCrime,Drama,Mystery\nDeadpool\t2016\t8.0\t716812\tTim Miller\tJoe Kelly\t108\tAction,Adventure,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tJoe Madureira\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tJared Bush\tJennifer Lee\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tByron Howard\tJennifer Lee\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tJared Bush\tJosie Trinidad\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tJared Bush\tJared Bush\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tGeoff Johns\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tRich Moore\tPhil Johnston\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tJared Bush\tRich Moore\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tEd McGuinness\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tJared Bush\tPhil Johnston\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tFrank Quitely\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tByron Howard\tPhil Johnston\t108\tAdventure,Animation,Comedy\nSing Street\t2016\t8.0\t66279\tJohn Carney\tSimon Carmody\t106\tComedy,Drama,Music\nZootopia\t2016\t8.0\t342206\tByron Howard\tJim Reardon\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tShawn Martinbrough\t108\tAction,Adventure,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tLen Wein\t108\tAction,Adventure,Comedy\nSing Street\t2016\t8.0\t66279\tJohn Carney\tJohn Carney\t106\tComedy,Drama,Music\nDeadpool\t2016\t8.0\t716812\tTim Miller\tDave Cockrum\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tByron Howard\tRich Moore\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tJared Bush\tJim Reardon\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tRich Moore\tRich Moore\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tRich Moore\tJennifer Lee\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tGrant Morrison\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tByron Howard\tJared Bush\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tRich Moore\tJosie Trinidad\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tRob Liefeld\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tRich Moore\tByron Howard\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tByron Howard\tByron Howard\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tJared Bush\tByron Howard\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tRhett Reese\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tRich Moore\tJim Reardon\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tPaul Wernick\t108\tAction,Adventure,Comedy\nZootopia\t2016\t8.0\t342206\tByron Howard\tJosie Trinidad\t108\tAdventure,Animation,Comedy\nZootopia\t2016\t8.0\t342206\tRich Moore\tJared Bush\t108\tAdventure,Animation,Comedy\nDeadpool\t2016\t8.0\t716812\tTim Miller\tFabian Nicieza\t108\tAction,Adventure,Comedy\nCaptain Fantastic\t2016\t7.9\t137510\tMatt Ross\tMatt Ross\t118\tComedy,Drama\n24\t2016\t7.9\t13106\tVikram K. Kumar\tVikram K. Kumar\t164\tAction,Sci-Fi,Thriller\nHunt for the Wilderpeople\t2016\t7.9\t72918\tTaika Waititi\tTe Arepa Kahi\t101\tAdventure,Comedy,Drama\nHunt for the Wilderpeople\t2016\t7.9\t72918\tTaika Waititi\tTaika Waititi\t101\tAdventure,Comedy,Drama\nHunt for the Wilderpeople\t2016\t7.9\t72918\tTaika Waititi\tBarry Crump\t101\tAdventure,Comedy,Drama\nArrival\t2016\t7.9\t444734\tDenis Villeneuve\tEric Heisserer\t116\tDrama,Mystery,Sci-Fi\nI, Daniel Blake\t2016\t7.9\t37217\tKen Loach\tPaul Laverty\t100\tDrama\nArrival\t2016\t7.9\t444734\tDenis Villeneuve\tTed Chiang\t116\tDrama,Mystery,Sci-Fi\nRogue One: A Star Wars Story\t2016\t7.8\t419741\tGareth Edwards\tTony Gilroy\t133\tAction,Adventure,Sci-Fi\nPerfect Strangers\t2016\t7.8\t34094\tPaolo Genovese\tPaola Mammini\t97\tComedy,Drama\nRogue One: A Star Wars Story\t2016\t7.8\t419741\tGareth Edwards\tJohn Knoll\t133\tAction,Adventure,Sci-Fi\nCaptain America: Civil War\t2016\t7.8\t486714\tAnthony Russo\tJack Kirby\t147\tAction,Adventure,Sci-Fi\nMy Life as a Zucchini\t2016\t7.8\t13211\tMichael Sinterniklaas\tGilles Paris\t66\tAnimation,Comedy,Drama\nRogue One: A Star Wars Story\t2016\t7.8\t419741\tGareth Edwards\tGeorge Lucas\t133\tAction,Adventure,Sci-Fi\nMy Life as a Zucchini\t2016\t7.8\t13211\tClaude Barras\tChristian La Monte\t66\tAnimation,Comedy,Drama\nMy Life as a Zucchini\t2016\t7.8\t13211\tClaude Barras\tClaude Barras\t66\tAnimation,Comedy,Drama\nHidden Figures\t2016\t7.8\t147377\tTheodore Melfi\tMargot Lee Shetterly\t127\tBiography,Drama,History\nHidden Figures\t2016\t7.8\t147377\tTheodore Melfi\tAllison Schroeder\t127\tBiography,Drama,History\nPerfect Strangers\t2016\t7.8\t34094\tPaolo Genovese\tRolando Ravello\t97\tComedy,Drama\nPerfect Strangers\t2016\t7.8\t34094\tPaolo Genovese\tFilippo Bologna\t97\tComedy,Drama\nM.S. Dhoni: The Untold Story\t2016\t7.8\t25128\tNeeraj Pandey\tShyam Maheshwari\t184\tBiography,Drama,Sport\nPerfect Strangers\t2016\t7.8\t34094\tPaolo Genovese\tPaolo Costella\t97\tComedy,Drama\nM.S. Dhoni: The Untold Story\t2016\t7.8\t25128\tNeeraj Pandey\tNeeraj Pandey\t184\tBiography,Drama,Sport\nMy Life as a Zucchini\t2016\t7.8\t13211\tMichael Sinterniklaas\tCéline Sciamma\t66\tAnimation,Comedy,Drama\nHidden Figures\t2016\t7.8\t147377\tTheodore Melfi\tTheodore Melfi\t127\tBiography,Drama,History\nManchester by the Sea\t2016\t7.8\t186120\tKenneth Lonergan\tKenneth Lonergan\t137\tDrama\nCaptain America: Civil War\t2016\t7.8\t486714\tAnthony Russo\tMark Millar\t147\tAction,Adventure,Sci-Fi\nKubo and the Two Strings\t2016\t7.8\t91695\tTravis Knight\tShannon Tindle\t101\tAction,Adventure,Animation\nUdta Punjab\t2016\t7.8\t20109\tAbhishek Chaubey\tAbhishek Chaubey\t148\tAction,Crime,Drama\nCaptain America: Civil War\t2016\t7.8\t486714\tAnthony Russo\tSteven McNiven\t147\tAction,Adventure,Sci-Fi\nCaptain America: Civil War\t2016\t7.8\t486714\tAnthony Russo\tJoe Simon\t147\tAction,Adventure,Sci-Fi\nCaptain America: Civil War\t2016\t7.8\t486714\tAnthony Russo\tStephen McFeely\t147\tAction,Adventure,Sci-Fi\nCaptain America: Civil War\t2016\t7.8\t486714\tJoe Russo\tStephen McFeely\t147\tAction,Adventure,Sci-Fi\nRogue One: A Star Wars Story\t2016\t7.8\t419741\tGareth Edwards\tGary Whitta\t133\tAction,Adventure,Sci-Fi\nRogue One: A Star Wars Story\t2016\t7.8\t419741\tGareth Edwards\tChris Weitz\t133\tAction,Adventure,Sci-Fi\nKubo and the Two Strings\t2016\t7.8\t91695\tTravis Knight\tChris Butler\t101\tAction,Adventure,Animation\nThe Salesman\t2016\t7.8\t34130\tAsghar Farhadi\tAsghar Farhadi\t124\tDrama,Thriller\nCaptain America: Civil War\t2016\t7.8\t486714\tJoe Russo\tChristopher Markus\t147\tAction,Adventure,Sci-Fi\nMy Life as a Zucchini\t2016\t7.8\t13211\tMichael Sinterniklaas\tClaude Barras\t66\tAnimation,Comedy,Drama\nMy Life as a Zucchini\t2016\t7.8\t13211\tClaude Barras\tMichael Sinterniklaas\t66\tAnimation,Comedy,Drama\nKapoor & Sons\t2016\t7.8\t17357\tShakun Batra\tShakun Batra\t132\tComedy,Drama,Romance\nMy Life as a Zucchini\t2016\t7.8\t13211\tMichael Sinterniklaas\tGermano Zullo\t66\tAnimation,Comedy,Drama\nMy Life as a Zucchini\t2016\t7.8\t13211\tClaude Barras\tCéline Sciamma\t66\tAnimation,Comedy,Drama\nM.S. Dhoni: The Untold Story\t2016\t7.8\t25128\tNeeraj Pandey\tMohinder Pratap Singh\t184\tBiography,Drama,Sport\nMy Life as a Zucchini\t2016\t7.8\t13211\tClaude Barras\tGermano Zullo\t66\tAnimation,Comedy,Drama\nCaptain America: Civil War\t2016\t7.8\t486714\tJoe Russo\tJack Kirby\t147\tAction,Adventure,Sci-Fi\nI Am Not Your Negro\t2016\t7.8\t11347\tRaoul Peck\tRaoul Peck\t93\tDocumentary\nI Am Not Your Negro\t2016\t7.8\t11347\tRaoul Peck\tJames Baldwin\t93\tDocumentary\nMy Life as a Zucchini\t2016\t7.8\t13211\tMichael Sinterniklaas\tMichael Sinterniklaas\t66\tAnimation,Comedy,Drama\nKapoor & Sons\t2016\t7.8\t17357\tShakun Batra\tAyesha DeVitre\t132\tComedy,Drama,Romance\nCaptain America: Civil War\t2016\t7.8\t486714\tJoe Russo\tSteven McNiven\t147\tAction,Adventure,Sci-Fi\nCaptain America: Civil War\t2016\t7.8\t486714\tJoe Russo\tMark Millar\t147\tAction,Adventure,Sci-Fi\nKubo and the Two Strings\t2016\t7.8\t91695\tTravis Knight\tMarc Haimes\t101\tAction,Adventure,Animation\nCaptain America: Civil War\t2016\t7.8\t486714\tJoe Russo\tJoe Simon\t147\tAction,Adventure,Sci-Fi\nCaptain America: Civil War\t2016\t7.8\t486714\tAnthony Russo\tChristopher Markus\t147\tAction,Adventure,Sci-Fi\nUdta Punjab\t2016\t7.8\t20109\tAbhishek Chaubey\tSudip Sharma\t148\tAction,Crime,Drama\nM.S. Dhoni: The Untold Story\t2016\t7.8\t25128\tNeeraj Pandey\tDilip Jha\t184\tBiography,Drama,Sport\nMy Life as a Zucchini\t2016\t7.8\t13211\tMichael Sinterniklaas\tMorgan Navarro\t66\tAnimation,Comedy,Drama\nMy Life as a Zucchini\t2016\t7.8\t13211\tMichael Sinterniklaas\tChristian La Monte\t66\tAnimation,Comedy,Drama\nPerfect Strangers\t2016\t7.8\t34094\tPaolo Genovese\tPaolo Genovese\t97\tComedy,Drama\nMy Life as a Zucchini\t2016\t7.8\t13211\tClaude Barras\tGilles Paris\t66\tAnimation,Comedy,Drama\nMy Life as a Zucchini\t2016\t7.8\t13211\tClaude Barras\tMorgan Navarro\t66\tAnimation,Comedy,Drama\nDear Zindagi\t2016\t7.7\t27942\tGauri Shinde\tGauri Shinde\t151\tDrama,Romance\nNeerja\t2016\t7.7\t16161\tRam Madhvani\tSanyukta Shaikh Chawla\t122\tBiography,Drama,Thriller\nNeerja\t2016\t7.7\t16161\tRam Madhvani\tSaiwyn Quadras\t122\tBiography,Drama,Thriller\nMoana\t2016\t7.6\t187394\tDon Hall\tJohn Musker\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tChris Williams\tJohn Musker\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tRon Clements\tDon Hall\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tRon Clements\tAaron Kandell\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tJohn Musker\tJared Bush\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tRon Clements\tPamela Ribon\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tDon Hall\tDon Hall\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tChris Williams\tRon Clements\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tRon Clements\tChris Williams\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tChris Williams\tAaron Kandell\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tDon Hall\tJared Bush\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tChris Williams\tJared Bush\t107\tAdventure,Animation,Comedy\nMr. Church\t2016\t7.6\t20138\tBruce Beresford\tSusan McMartin\t104\tComedy,Drama\nMoana\t2016\t7.6\t187394\tJohn Musker\tJohn Musker\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tJohn Musker\tDon Hall\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tJohn Musker\tAaron Kandell\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tRon Clements\tJordan Kandell\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tDon Hall\tJordan Kandell\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tJohn Musker\tPamela Ribon\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tChris Williams\tDon Hall\t107\tAdventure,Animation,Comedy\nAquarius\t2016\t7.6\t13840\tKleber Mendonça Filho\tKleber Mendonça Filho\t146\tDrama\nHell or High Water\t2016\t7.6\t151714\tDavid Mackenzie\tTaylor Sheridan\t102\tCrime,Drama,Thriller\nMoana\t2016\t7.6\t187394\tChris Williams\tJordan Kandell\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tJohn Musker\tRon Clements\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tJohn Musker\tChris Williams\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tJohn Musker\tJordan Kandell\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tDon Hall\tAaron Kandell\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tChris Williams\tChris Williams\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tRon Clements\tRon Clements\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tDon Hall\tRon Clements\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tDon Hall\tChris Williams\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tRon Clements\tJohn Musker\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tDon Hall\tPamela Ribon\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tRon Clements\tJared Bush\t107\tAdventure,Animation,Comedy\nMoana\t2016\t7.6\t187394\tChris Williams\tPamela Ribon\t107\tAdventure,Animation,Comedy\nSully\t2016\t7.5\t175789\tClint Eastwood\tChesley Sullenberger\t96\tBiography,Drama\nToni Erdmann\t2016\t7.5\t33761\tMaren Ade\tMaren Ade\t162\tComedy,Drama\nA Monster Calls\t2016\t7.5\t60482\tJ.A. Bayona\tSiobhan Dowd\t108\tAnimation,Drama,Fantasy\nThe Red Turtle\t2016\t7.5\t20363\tMichael Dudok de Wit\tMichael Dudok de Wit\t80\tAnimation,Fantasy\nMiss Sloane\t2016\t7.5\t40517\tJohn Madden\tJonathan Perera\t132\tDrama,Thriller\nDoctor Strange\t2016\t7.5\t402776\tScott Derrickson\tSteve Ditko\t115\tAction,Adventure,Fantasy\nTrain to Busan\t2016\t7.5\t86601\tSang-ho Yeon\tSang-ho Yeon\t118\tAction,Horror,Thriller\nThe Red Turtle\t2016\t7.5\t20363\tMichael Dudok de Wit\tPascale Ferran\t80\tAnimation,Fantasy\nNocturnal Animals\t2016\t7.5\t175616\tTom Ford\tAustin Wright\t116\tCrime,Drama,Romance\nDoctor Strange\t2016\t7.5\t402776\tScott Derrickson\tC. Robert Cargill\t115\tAction,Adventure,Fantasy\nTrain to Busan\t2016\t7.5\t86601\tSang-ho Yeon\tJoo-Suk Park\t118\tAction,Horror,Thriller\nDoctor Strange\t2016\t7.5\t402776\tScott Derrickson\tScott Derrickson\t115\tAction,Adventure,Fantasy\nDoctor Strange\t2016\t7.5\t402776\tScott Derrickson\tJon Spaihts\t115\tAction,Adventure,Fantasy\nThe Jungle Book\t2016\t7.5\t223593\tJon Favreau\tJustin Marks\t106\tAdventure,Drama,Family\nSully\t2016\t7.5\t175789\tClint Eastwood\tTodd Komarnicki\t96\tBiography,Drama\nA Monster Calls\t2016\t7.5\t60482\tJ.A. Bayona\tPatrick Ness\t108\tAnimation,Drama,Fantasy\nNocturnal Animals\t2016\t7.5\t175616\tTom Ford\tTom Ford\t116\tCrime,Drama,Romance\nThe Jungle Book\t2016\t7.5\t223593\tJon Favreau\tRudyard Kipling\t106\tAdventure,Drama,Family\nSully\t2016\t7.5\t175789\tClint Eastwood\tJeffrey Zaslow\t96\tBiography,Drama\nDoctor Strange\t2016\t7.5\t402776\tScott Derrickson\tStan Lee\t115\tAction,Adventure,Fantasy\nMoonlight\t2016\t7.4\t191399\tBarry Jenkins\tTarell Alvin McCraney\t111\tDrama\nPatriots Day\t2016\t7.4\t64376\tPeter Berg\tJoshua Zetumer\t133\tCrime,Drama,History\nPaterson\t2016\t7.4\t45765\tJim Jarmusch\tRon Padgett\t118\tComedy,Drama,Romance\nEddie the Eagle\t2016\t7.4\t67064\tDexter Fletcher\tSean Macaulay\t106\tBiography,Comedy,Drama\nMe Before You\t2016\t7.4\t143473\tThea Sharrock\tJojo Moyes\t106\tDrama,Romance\nThe Conjuring 2\t2016\t7.4\t165109\tJames Wan\tDavid Leslie Johnson-McGoldrick\t134\tHorror,Mystery,Thriller\nA Street Cat Named Bob\t2016\t7.4\t19771\tRoger Spottiswoode\tGarry Jenkins\t103\tBiography,Comedy,Drama\nTwo Is a Family\t2016\t7.4\t12826\tHugo Gélin\tMathieu Oullion\t118\tComedy,Drama\nA Street Cat Named Bob\t2016\t7.4\t19771\tRoger Spottiswoode\tJames Bowen\t103\tBiography,Comedy,Drama\nMoonlight\t2016\t7.4\t191399\tBarry Jenkins\tBarry Jenkins\t111\tDrama\nPatriots Day\t2016\t7.4\t64376\tPeter Berg\tMatt Cook\t133\tCrime,Drama,History\nPatriots Day\t2016\t7.4\t64376\tPeter Berg\tEric Johnson\t133\tCrime,Drama,History\nPaterson\t2016\t7.4\t45765\tJim Jarmusch\tJim Jarmusch\t118\tComedy,Drama,Romance\nTwo Is a Family\t2016\t7.4\t12826\tHugo Gélin\tLeticia López Margalli\t118\tComedy,Drama\nQueen of Katwe\t2016\t7.4\t10845\tMira Nair\tWilliam Wheeler\t124\tBiography,Drama,Sport\nA Street Cat Named Bob\t2016\t7.4\t19771\tRoger Spottiswoode\tMaria Nation\t103\tBiography,Comedy,Drama\nThe Nice Guys\t2016\t7.4\t212435\tShane Black\tShane Black\t116\tAction,Comedy,Crime\nTwo Is a Family\t2016\t7.4\t12826\tHugo Gélin\tIgor Gotsmanov\t118\tComedy,Drama\nEddie the Eagle\t2016\t7.4\t67064\tDexter Fletcher\tSimon Kelton\t106\tBiography,Comedy,Drama\nTwo Is a Family\t2016\t7.4\t12826\tHugo Gélin\tHugo Gélin\t118\tComedy,Drama\nQueen of Katwe\t2016\t7.4\t10845\tMira Nair\tTim Crothers\t124\tBiography,Drama,Sport\nA Street Cat Named Bob\t2016\t7.4\t19771\tRoger Spottiswoode\tTim John\t103\tBiography,Comedy,Drama\nThe Accountant\t2016\t7.4\t209363\tGavin O'Connor\tBill Dubuque\t128\tAction,Crime,Drama\nThe Conjuring 2\t2016\t7.4\t165109\tJames Wan\tJames Wan\t134\tHorror,Mystery,Thriller\nPaterson\t2016\t7.4\t45765\tJim Jarmusch\tWilliam Carlos Williams\t118\tComedy,Drama,Romance\nPatriots Day\t2016\t7.4\t64376\tPeter Berg\tPeter Berg\t133\tCrime,Drama,History\nTwo Is a Family\t2016\t7.4\t12826\tHugo Gélin\tEugenio Derbez\t118\tComedy,Drama\nThe Nice Guys\t2016\t7.4\t212435\tShane Black\tAnthony Bagarozzi\t116\tAction,Comedy,Crime\nTwo Is a Family\t2016\t7.4\t12826\tHugo Gélin\tGuillermo Ríos\t118\tComedy,Drama\n20th Century Women\t2016\t7.4\t26371\tMike Mills\tMike Mills\t119\tComedy,Drama\nTwo Is a Family\t2016\t7.4\t12826\tHugo Gélin\tJean-André Yerlès\t118\tComedy,Drama\nPatriots Day\t2016\t7.4\t64376\tPeter Berg\tPaul Tamasy\t133\tCrime,Drama,History\nThe Wailing\t2016\t7.4\t26996\tHong-jin Na\tHong-jin Na\t156\tHorror,Mystery,Thriller\nFantastic Beasts and Where to Find Them\t2016\t7.4\t301060\tDavid Yates\tJ.K. Rowling\t133\tAdventure,Family,Fantasy\nThe Edge of Seventeen\t2016\t7.4\t70690\tKelly Fremon Craig\tKelly Fremon Craig\t104\tComedy,Drama\nThe Conjuring 2\t2016\t7.4\t165109\tJames Wan\tCarey W. Hayes\t134\tHorror,Mystery,Thriller\nThe Conjuring 2\t2016\t7.4\t165109\tJames Wan\tChad Hayes\t134\tHorror,Mystery,Thriller\nFinding Dory\t2016\t7.3\t189463\tAndrew Stanton\tAndrew Stanton\t97\tAdventure,Animation,Comedy\nSnowden\t2016\t7.3\t103421\tOliver Stone\tLuke Harding\t134\tBiography,Drama,Thriller\nSplit\t2016\t7.3\t260188\tM. Night Shyamalan\tM. Night Shyamalan\t117\tHorror,Thriller\nThe Fundamentals of Caring\t2016\t7.3\t40309\tRob Burnett\tJonathan Evison\t97\tComedy,Drama\nFinding Dory\t2016\t7.3\t189463\tAndrew Stanton\tBob Peterson\t97\tAdventure,Animation,Comedy\n13 Hours\t2016\t7.3\t91520\tMichael Bay\tChuck Hogan\t144\tAction,Drama,History\nFinding Dory\t2016\t7.3\t189463\tAngus MacLane\tBob Peterson\t97\tAdventure,Animation,Comedy\nFinding Dory\t2016\t7.3\t189463\tAngus MacLane\tAndrew Stanton\t97\tAdventure,Animation,Comedy\nFinding Dory\t2016\t7.3\t189463\tAngus MacLane\tAngus MacLane\t97\tAdventure,Animation,Comedy\nFinding Dory\t2016\t7.3\t189463\tAndrew Stanton\tAngus MacLane\t97\tAdventure,Animation,Comedy\nSnowden\t2016\t7.3\t103421\tOliver Stone\tKieran Fitzgerald\t134\tBiography,Drama,Thriller\nSnowden\t2016\t7.3\t103421\tOliver Stone\tAnatoly Kucherena\t134\tBiography,Drama,Thriller\nSnowden\t2016\t7.3\t103421\tOliver Stone\tOliver Stone\t134\tBiography,Drama,Thriller\nFinding Dory\t2016\t7.3\t189463\tAndrew Stanton\tVictoria Strouse\t97\tAdventure,Animation,Comedy\nFinding Dory\t2016\t7.3\t189463\tAngus MacLane\tVictoria Strouse\t97\tAdventure,Animation,Comedy\n13 Hours\t2016\t7.3\t91520\tMichael Bay\tMitchell Zuckoff\t144\tAction,Drama,History\nThe Fundamentals of Caring\t2016\t7.3\t40309\tRob Burnett\tRob Burnett\t97\tComedy,Drama\nThe Siege of Jadotville\t2016\t7.3\t19570\tRichie Smyth\tKevin Brodbin\t108\tAction,Drama,Thriller\nThe Siege of Jadotville\t2016\t7.3\t19570\tRichie Smyth\tDeclan Power\t108\tAction,Drama,Thriller\n10 Cloverfield Lane\t2016\t7.2\t234394\tDan Trachtenberg\tJosh Campbell\t103\tDrama,Horror,Mystery\nElle\t2016\t7.2\t48029\tPaul Verhoeven\tHarold Manning\t130\tCrime,Drama,Thriller\nFan\t2016\t7.2\t36052\tManeesh Sharma\tSharat Katariya\t138\tAction,Drama,Thriller\nDeepwater Horizon\t2016\t7.2\t117985\tPeter Berg\tStephanie Saul\t107\tAction,Drama,Thriller\nElle\t2016\t7.2\t48029\tPaul Verhoeven\tDavid Birke\t130\tCrime,Drama,Thriller\nAnthropoid\t2016\t7.2\t33194\tSean Ellis\tAnthony Frewin\t120\tBiography,History,Thriller\nDeepwater Horizon\t2016\t7.2\t117985\tPeter Berg\tDavid Barstow\t107\tAction,Drama,Thriller\nDeepwater Horizon\t2016\t7.2\t117985\tPeter Berg\tMatthew Sand\t107\tAction,Drama,Thriller\nElle\t2016\t7.2\t48029\tPaul Verhoeven\tPhilippe Djian\t130\tCrime,Drama,Thriller\n10 Cloverfield Lane\t2016\t7.2\t234394\tDan Trachtenberg\tMatthew Stuecken\t103\tDrama,Horror,Mystery\nSilence\t2016\t7.2\t74316\tMartin Scorsese\tMartin Scorsese\t161\tAdventure,Drama,History\nPelé: Birth of a Legend\t2016\t7.2\t11189\tMichael Zimbalist\tJeff Zimbalist\t107\tBiography,Drama,Sport\nThe Light Between Oceans\t2016\t7.2\t38861\tDerek Cianfrance\tDerek Cianfrance\t133\tDrama,Romance\nSilence\t2016\t7.2\t74316\tMartin Scorsese\tShûsaku Endô\t161\tAdventure,Drama,History\nWazir\t2016\t7.2\t14507\tBejoy Nambiar\tShubhra Marfatia\t103\tAction,Crime,Drama\n10 Cloverfield Lane\t2016\t7.2\t234394\tDan Trachtenberg\tDamien Chazelle\t103\tDrama,Horror,Mystery\nPelé: Birth of a Legend\t2016\t7.2\t11189\tMichael Zimbalist\tMichael Zimbalist\t107\tBiography,Drama,Sport\nPelé: Birth of a Legend\t2016\t7.2\t11189\tJeff Zimbalist\tMichael Zimbalist\t107\tBiography,Drama,Sport\nAnthropoid\t2016\t7.2\t33194\tSean Ellis\tSean Ellis\t120\tBiography,History,Thriller\nWazir\t2016\t7.2\t14507\tBejoy Nambiar\tVidhu Vinod Chopra\t103\tAction,Crime,Drama\nThe Light Between Oceans\t2016\t7.2\t38861\tDerek Cianfrance\tM.L. Stedman\t133\tDrama,Romance\nThe Founder\t2016\t7.2\t80005\tJohn Lee Hancock\tRobert D. Siegel\t115\tBiography,Drama,History\nWazir\t2016\t7.2\t14507\tBejoy Nambiar\tBejoy Nambiar\t103\tAction,Crime,Drama\nDeepwater Horizon\t2016\t7.2\t117985\tPeter Berg\tDavid Rohde\t107\tAction,Drama,Thriller\nFan\t2016\t7.2\t36052\tManeesh Sharma\tHabib Faisal\t138\tAction,Drama,Thriller\nPelé: Birth of a Legend\t2016\t7.2\t11189\tJeff Zimbalist\tJeff Zimbalist\t107\tBiography,Drama,Sport\nFences\t2016\t7.2\t74154\tDenzel Washington\tAugust Wilson\t139\tDrama\nWazir\t2016\t7.2\t14507\tBejoy Nambiar\tAbhijat Joshi\t103\tAction,Crime,Drama\nDeepwater Horizon\t2016\t7.2\t117985\tPeter Berg\tMatthew Michael Carnahan\t107\tAction,Drama,Thriller\nWazir\t2016\t7.2\t14507\tBejoy Nambiar\tGazal Dhaliwal\t103\tAction,Crime,Drama\nFan\t2016\t7.2\t36052\tManeesh Sharma\tManeesh Sharma\t138\tAction,Drama,Thriller\nSilence\t2016\t7.2\t74316\tMartin Scorsese\tJay Cocks\t161\tAdventure,Drama,History\nWazir\t2016\t7.2\t14507\tBejoy Nambiar\tAbhijeet Deshpande\t103\tAction,Crime,Drama\nWazir\t2016\t7.2\t14507\tBejoy Nambiar\tNatasha Sahgal\t103\tAction,Crime,Drama\nAllied\t2016\t7.1\t108947\tRobert Zemeckis\tSteven Knight\t124\tAction,Drama,Romance\nStar Trek: Beyond\t2016\t7.1\t192727\tJustin Lin\tRoberto Orci\t122\tAction,Adventure,Sci-Fi\nKung Fu Panda 3\t2016\t7.1\t102261\tJennifer Yuh Nelson\tGlenn Berger\t95\tAction,Adventure,Animation\nWar Dogs\t2016\t7.1\t135662\tTodd Phillips\tJason Smilovic\t114\tComedy,Crime,Drama\nRustom\t2016\t7.1\t17335\tDharmendra Suresh Desai\tVipul K. Rawal\t148\tCrime,Drama,Thriller\nWar Dogs\t2016\t7.1\t135662\tTodd Phillips\tTodd Phillips\t114\tComedy,Crime,Drama\nRace\t2016\t7.1\t27937\tStephen Hopkins\tJoe Shrapnel\t134\tBiography,Drama,Sport\nBrimstone\t2016\t7.1\t24102\tMartin Koolhoven\tMartin Koolhoven\t148\tThriller,Western\nDon't Breathe\t2016\t7.1\t157326\tFede Alvarez\tFede Alvarez\t88\tCrime,Horror,Thriller\nWar Dogs\t2016\t7.1\t135662\tTodd Phillips\tStephen Chin\t114\tComedy,Crime,Drama\nStar Trek: Beyond\t2016\t7.1\t192727\tJustin Lin\tPatrick McKay\t122\tAction,Adventure,Sci-Fi\nStar Trek: Beyond\t2016\t7.1\t192727\tJustin Lin\tGene Roddenberry\t122\tAction,Adventure,Sci-Fi\nStar Trek: Beyond\t2016\t7.1\t192727\tJustin Lin\tDoug Jung\t122\tAction,Adventure,Sci-Fi\nKung Fu Panda 3\t2016\t7.1\t102261\tAlessandro Carloni\tJonathan Aibel\t95\tAction,Adventure,Animation\nSing\t2016\t7.1\t96891\tGarth Jennings\tGarth Jennings\t108\tAnimation,Comedy,Family\nSultan\t2016\t7.1\t29990\tAli Abbas Zafar\tAli Abbas Zafar\t170\tAction,Drama,Sport\nKung Fu Panda 3\t2016\t7.1\t102261\tJennifer Yuh Nelson\tJonathan Aibel\t95\tAction,Adventure,Animation\nMiracles from Heaven\t2016\t7.1\t14944\tPatricia Riggen\tRandy Brown\t109\tBiography,Drama,Family\nStar Trek: Beyond\t2016\t7.1\t192727\tJustin Lin\tSimon Pegg\t122\tAction,Adventure,Sci-Fi\nWar Dogs\t2016\t7.1\t135662\tTodd Phillips\tGuy Lawson\t114\tComedy,Crime,Drama\nDon't Breathe\t2016\t7.1\t157326\tFede Alvarez\tRodo Sayagues\t88\tCrime,Horror,Thriller\nJulieta\t2016\t7.1\t21455\tPedro Almodóvar\tAlice Munro\t99\tDrama,Mystery,Romance\nJulieta\t2016\t7.1\t21455\tPedro Almodóvar\tPedro Almodóvar\t99\tDrama,Mystery,Romance\nMiracles from Heaven\t2016\t7.1\t14944\tPatricia Riggen\tChristy Beam\t109\tBiography,Drama,Family\nSing\t2016\t7.1\t96891\tChristophe Lourdelet\tGarth Jennings\t108\tAnimation,Comedy,Family\nRace\t2016\t7.1\t27937\tStephen Hopkins\tAnna Waterhouse\t134\tBiography,Drama,Sport\nStar Trek: Beyond\t2016\t7.1\t192727\tJustin Lin\tJohn D. Payne\t122\tAction,Adventure,Sci-Fi\nKung Fu Panda 3\t2016\t7.1\t102261\tAlessandro Carloni\tGlenn Berger\t95\tAction,Adventure,Animation\nSwiss Army Man\t2016\t7.0\t79349\tDan Kwan\tDaniel Scheinert\t97\tAdventure,Comedy,Drama\nAmanda Knox\t2016\t7.0\t13257\tRod Blackhurst\tBrian McGinn\t92\tCrime,Documentary\nLoving\t2016\t7.0\t24673\tJeff Nichols\tJeff Nichols\t123\tBiography,Drama,Romance\nX-Men: Apocalypse\t2016\t7.0\t316156\tBryan Singer\tBryan Singer\t144\tAction,Adventure,Sci-Fi\nX-Men: Apocalypse\t2016\t7.0\t316156\tBryan Singer\tMichael Dougherty\t144\tAction,Adventure,Sci-Fi\nRaw\t2016\t7.0\t38018\tJulia Ducournau\tJulia Ducournau\t99\tDrama,Horror\nAmanda Knox\t2016\t7.0\t13257\tBrian McGinn\tBrian McGinn\t92\tCrime,Documentary\nPassengers\t2016\t7.0\t270827\tMorten Tyldum\tJon Spaihts\t116\tDrama,Sci-Fi,Thriller\nSwiss Army Man\t2016\t7.0\t79349\tDan Kwan\tDan Kwan\t97\tAdventure,Comedy,Drama\nAmerican Honey\t2016\t7.0\t26823\tAndrea Arnold\tAndrea Arnold\t163\tAdventure,Drama,Romance\nEverybody Wants Some!!\t2016\t7.0\t43565\tRichard Linklater\tRichard Linklater\t117\tComedy\nX-Men: Apocalypse\t2016\t7.0\t316156\tBryan Singer\tSimon Kinberg\t144\tAction,Adventure,Sci-Fi\nX-Men: Apocalypse\t2016\t7.0\t316156\tBryan Singer\tStan Lee\t144\tAction,Adventure,Sci-Fi\nSwiss Army Man\t2016\t7.0\t79349\tDaniel Scheinert\tDaniel Scheinert\t97\tAdventure,Comedy,Drama\nX-Men: Apocalypse\t2016\t7.0\t316156\tBryan Singer\tJack Kirby\t144\tAction,Adventure,Sci-Fi\nAmanda Knox\t2016\t7.0\t13257\tBrian McGinn\tMatthew Hamachek\t92\tCrime,Documentary\nSwiss Army Man\t2016\t7.0\t79349\tDaniel Scheinert\tDan Kwan\t97\tAdventure,Comedy,Drama\nAmanda Knox\t2016\t7.0\t13257\tRod Blackhurst\tMatthew Hamachek\t92\tCrime,Documentary\nThe Infiltrator\t2016\t7.0\t55602\tBrad Furman\tEllen Sue Brown\t127\tBiography,Crime,Drama\nX-Men: Apocalypse\t2016\t7.0\t316156\tBryan Singer\tDan Harris\t144\tAction,Adventure,Sci-Fi\nThe Infiltrator\t2016\t7.0\t55602\tBrad Furman\tRobert Mazur\t127\tBiography,Crime,Drama\nThe Magnificent Seven\t2016\t6.9\t151567\tAntoine Fuqua\tNic Pizzolatto\t132\tAction,Adventure,Western\nWarcraft\t2016\t6.9\t208946\tDuncan Jones\tDuncan Jones\t123\tAction,Adventure,Fantasy\nFree State of Jones\t2016\t6.9\t38318\tGary Ross\tLeonard Hartman\t139\tAction,Biography,Drama\nLady Macbeth\t2016\t6.9\t11536\tWilliam Oldroyd\tAlice Birch\t89\tDrama,Romance\nFree State of Jones\t2016\t6.9\t38318\tGary Ross\tGary Ross\t139\tAction,Biography,Drama\nThe Magnificent Seven\t2016\t6.9\t151567\tAntoine Fuqua\tHideo Oguni\t132\tAction,Adventure,Western\nThe Magnificent Seven\t2016\t6.9\t151567\tAntoine Fuqua\tRichard Wenk\t132\tAction,Adventure,Western\nFlorence Foster Jenkins\t2016\t6.9\t39796\tStephen Frears\tNicholas Martin\t111\tBiography,Comedy,Drama\nWarcraft\t2016\t6.9\t208946\tDuncan Jones\tCharles Leavitt\t123\tAction,Adventure,Fantasy\nLady Macbeth\t2016\t6.9\t11536\tWilliam Oldroyd\tNikolai Leskov\t89\tDrama,Romance\nUnder the Shadow\t2016\t6.9\t15269\tBabak Anvari\tBabak Anvari\t84\tDrama,Horror,Thriller\nIt's Only the End of the World\t2016\t6.9\t15432\tXavier Dolan\tXavier Dolan\t97\tDrama\nIt's Only the End of the World\t2016\t6.9\t15432\tXavier Dolan\tJean-Luc Lagarce\t97\tDrama\nThe Magnificent Seven\t2016\t6.9\t151567\tAntoine Fuqua\tAkira Kurosawa\t132\tAction,Adventure,Western\nThe Magnificent Seven\t2016\t6.9\t151567\tAntoine Fuqua\tShinobu Hashimoto\t132\tAction,Adventure,Western\nLeap!\t2016\t6.8\t13219\tMimi Maynard\tEric Summer\t89\tAdventure,Animation,Comedy\nThe Finest Hours\t2016\t6.8\t51571\tCraig Gillespie\tEric Johnson\t117\tAction,Drama,History\nStorks\t2016\t6.8\t45257\tDoug Sweetland\tNicholas Stoller\t87\tAdventure,Animation,Comedy\nStorks\t2016\t6.8\t45257\tNicholas Stoller\tNicholas Stoller\t87\tAdventure,Animation,Comedy\nThe Finest Hours\t2016\t6.8\t51571\tCraig Gillespie\tPaul Tamasy\t117\tAction,Drama,History\nLeap!\t2016\t6.8\t13219\tPaulette Victor-Lifton\tLaurent Zeitoun\t89\tAdventure,Animation,Comedy\nThe Autopsy of Jane Doe\t2016\t6.8\t59907\tAndré Øvredal\tIan Goldberg\t86\tHorror,Mystery,Thriller\nLeap!\t2016\t6.8\t13219\tEric Summer\tCarol Noble\t89\tAdventure,Animation,Comedy\nThe Finest Hours\t2016\t6.8\t51571\tCraig Gillespie\tMichael J. Tougias\t117\tAction,Drama,History\nKingsglaive: Final Fantasy XV\t2016\t6.8\t16947\tTakeshi Nozue\tTakashi Hasegawa\t110\tAction,Adventure,Animation\nTheir Finest\t2016\t6.8\t12367\tLone Scherfig\tGaby Chiappe\t117\tComedy,Drama,Romance\nBleed for This\t2016\t6.8\t18468\tBen Younger\tPippa Bianco\t117\tBiography,Drama,Sport\nDon't Think Twice\t2016\t6.8\t13625\tMike Birbiglia\tMike Birbiglia\t92\tComedy,Drama\nLeap!\t2016\t6.8\t13219\tÉric Warin\tEric Summer\t89\tAdventure,Animation,Comedy\nThe Finest Hours\t2016\t6.8\t51571\tCraig Gillespie\tCasey Sherman\t117\tAction,Drama,History\nThe Finest Hours\t2016\t6.8\t51571\tCraig Gillespie\tScott Silver\t117\tAction,Drama,History\nLeap!\t2016\t6.8\t13219\tMimi Maynard\tLaurent Zeitoun\t89\tAdventure,Animation,Comedy\nA United Kingdom\t2016\t6.8\t10136\tAmma Asante\tSusan Williams\t111\tBiography,Drama,Romance\nLeap!\t2016\t6.8\t13219\tPaulette Victor-Lifton\tCarol Noble\t89\tAdventure,Animation,Comedy\nLeap!\t2016\t6.8\t13219\tPaulette Victor-Lifton\tEric Summer\t89\tAdventure,Animation,Comedy\nLeap!\t2016\t6.8\t13219\tÉric Warin\tLaurent Zeitoun\t89\tAdventure,Animation,Comedy\nTheir Finest\t2016\t6.8\t12367\tLone Scherfig\tLissa Evans\t117\tComedy,Drama,Romance\nBleed for This\t2016\t6.8\t18468\tBen Younger\tBen Younger\t117\tBiography,Drama,Sport\nBleed for This\t2016\t6.8\t18468\tBen Younger\tAngelo Pizzo\t117\tBiography,Drama,Sport\nA United Kingdom\t2016\t6.8\t10136\tAmma Asante\tGuy Hibbert\t111\tBiography,Drama,Romance\nThe Autopsy of Jane Doe\t2016\t6.8\t59907\tAndré Øvredal\tRichard Naing\t86\tHorror,Mystery,Thriller\nLeap!\t2016\t6.8\t13219\tMimi Maynard\tCarol Noble\t89\tAdventure,Animation,Comedy\nLeap!\t2016\t6.8\t13219\tEric Summer\tLaurent Zeitoun\t89\tAdventure,Animation,Comedy\nLeap!\t2016\t6.8\t13219\tEric Summer\tEric Summer\t89\tAdventure,Animation,Comedy\nCollateral Beauty\t2016\t6.8\t67914\tDavid Frankel\tAllan Loeb\t97\tDrama,Romance\nLeap!\t2016\t6.8\t13219\tÉric Warin\tCarol Noble\t89\tAdventure,Animation,Comedy\nPete's Dragon\t2016\t6.7\t44667\tDavid Lowery\tMalcolm Marmorstein\t102\tAction,Adventure,Comedy\nGold\t2016\t6.7\t42945\tStephen Gaghan\tPatrick Massett\t120\tAdventure,Drama,Thriller\nThe Girl with All the Gifts\t2016\t6.7\t39041\tColm McCarthy\tMike Carey\t111\tDrama,Horror,Thriller\nJackie\t2016\t6.7\t58889\tPablo Larraín\tNoah Oppenheim\t100\tBiography,Drama,History\nPopstar: Never Stop Never Stopping\t2016\t6.7\t39524\tAkiva Schaffer\tAkiva Schaffer\t87\tComedy,Music\nPopstar: Never Stop Never Stopping\t2016\t6.7\t39524\tAkiva Schaffer\tAndy Samberg\t87\tComedy,Music\nShin Godzilla\t2016\t6.7\t14483\tShinji Higuchi\tSean Whitley\t120\tAction,Adventure,Drama\nMiss Peregrine's Home for Peculiar Children\t2016\t6.7\t127313\tTim Burton\tRansom Riggs\t127\tAdventure,Drama,Family\nGold\t2016\t6.7\t42945\tStephen Gaghan\tJohn Zinman\t120\tAdventure,Drama,Thriller\nPopstar: Never Stop Never Stopping\t2016\t6.7\t39524\tJorma Taccone\tAndy Samberg\t87\tComedy,Music\nPete's Dragon\t2016\t6.7\t44667\tDavid Lowery\tDavid Lowery\t102\tAction,Adventure,Comedy\nPete's Dragon\t2016\t6.7\t44667\tDavid Lowery\tToby Halbrooks\t102\tAction,Adventure,Comedy\nPopstar: Never Stop Never Stopping\t2016\t6.7\t39524\tJorma Taccone\tAkiva Schaffer\t87\tComedy,Music\nShin Godzilla\t2016\t6.7\t14483\tHideaki Anno\tSean Whitley\t120\tAction,Adventure,Drama\nPopstar: Never Stop Never Stopping\t2016\t6.7\t39524\tAkiva Schaffer\tJorma Taccone\t87\tComedy,Music\nMiss Peregrine's Home for Peculiar Children\t2016\t6.7\t127313\tTim Burton\tJane Goldman\t127\tAdventure,Drama,Family\nTallulah\t2016\t6.7\t12722\tSian Heder\tSian Heder\t111\tComedy,Drama,Romance\nPopstar: Never Stop Never Stopping\t2016\t6.7\t39524\tJorma Taccone\tJorma Taccone\t87\tComedy,Music\nPete's Dragon\t2016\t6.7\t44667\tDavid Lowery\tS.S. Field\t102\tAction,Adventure,Comedy\nShin Godzilla\t2016\t6.7\t14483\tHideaki Anno\tHideaki Anno\t120\tAction,Adventure,Drama\nPete's Dragon\t2016\t6.7\t44667\tDavid Lowery\tSeton I. Miller\t102\tAction,Adventure,Comedy\nShin Godzilla\t2016\t6.7\t14483\tShinji Higuchi\tHideaki Anno\t120\tAction,Adventure,Drama\n<!--TABLE_COMMENT-->\n<font color=red>Results are limited by 1000.</font>\n"}]},"apps":[],"jobName":"paragraph_1525239781840_-1659388152","id":"20180425-234128_1425325862","dateCreated":"2018-05-02T05:43:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:110","user":"anonymous","dateFinished":"2018-05-02T06:10:05+0000","dateStarted":"2018-05-02T06:07:20+0000"},{"text":"%pyspark\n\nfinalOutput.repartition(1).write.format(\"com.databricks.spark.csv\").option(\"header\", \"true\").save(\"/shared/users/avi/desktop/test/2000-18\")","dateUpdated":"2018-05-02T05:43:49+0000","config":{"colWidth":12,"editorMode":"ace/mode/python","results":{},"enabled":true,"editorSetting":{"language":"python"}},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[]},"apps":[],"jobName":"paragraph_1525239781841_-1659772901","id":"20180426-003719_100600887","dateCreated":"2018-05-02T05:43:01+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:111"},{"text":"%pyspark\n","dateUpdated":"2018-05-02T05:43:01+0000","config":{"colWidth":12,"editorMode":"ace/mode/python","results":{},"enabled":true,"editorSetting":{"language":"python"}},"settings":{"params":{},"forms":{}},"apps":[],"jobName":"paragraph_1525239781841_-1659772901","id":"20180502-005124_2147397326","dateCreated":"2018-05-02T05:43:01+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:112"}],"name":"Movie Rating Prediction Model","id":"2DBU6M9Z6","angularObjects":{"2DDFPQZZK:shared_process":[],"2DE6JACDG:shared_process":[],"2DDEMSS3V:shared_process":[],"2DCWRTS3Y:shared_process":[],"2DEA3Q68F:shared_process":[],"2DE8ZJAKA:shared_process":[],"2DD9PHCHX:shared_process":[],"2DCYE1F38:shared_process":[],"2DDBGEQKJ:shared_process":[],"2DBN5VQAZ:shared_process":[],"2DDTZ33HU:shared_process":[],"2DD9GFVB2:shared_process":[],"2DE8MRKTJ:shared_process":[],"2DDHMAEA4:shared_process":[],"2DEQF5WXC:shared_process":[],"2DEXXR7PE:shared_process":[],"2DBP1ZQR4:shared_process":[],"2DEYJBD3B:shared_process":[],"2DEYWKVZK:shared_process":[]},"config":{"looknfeel":"default","personalizedMode":"false"},"info":{}}