{ "cells": [ { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "######

\n", " Week 4 Notes\n", "

\n", "
Video 3ish URL: Data Ingestion\n", "
Video 4ish URL: Data Ingestion 2\n", "
Video 5ish URL: Descriptive Statistics\n", "
Video ?ish URL: Data Ingestion\n", "
Video ?ish URL: Data Ingestion\n", "
Video ?ish URL: Data Ingestion

\n", "

\n", " Table of Contents\n", "

\n", "\n", "1. Merging Data Frames\n", "\n", "2. Importing Data with Pandas\n", "\n", "3. Live Coding Section\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "

Part 1: Merging Data Frames

\n", "\n", "
\n",
    "    * Similar to a join operation\n",
    "    * Explain that data is usually distributed across multiple locations and tables\n",
    "    * Combine data from distinct Data Frames\n",
    "    * Obtain the big picture\n",
    "
\n", "\n", "

Part 1.1 List of Functions:

\n", "\n", "
\n", " Concat function\n", "
\n", "\n", "* Concat function in Panda can merge 2 data frames with similar headings and columns\n", "\n", "* If it has similar headings it may make 2 copies \n", "\n", "
\n", " Inner Join\n", "
\n", "\n", "* An inner join can solve that problem by putting similar data columns next to each other instead\n", "\n", "* not perfect either, because columns can be duplicated under same rows\n", "\n", "
\n", " Append()\n", "
\n", "\n", "* An alternative to concat is append which just adds together\n", "\n", "* An alternative to that is merge()\n", "\n", "* merge can eliminate duplicate columns between data frames\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "

Part 1.2 Code Examples:

" ] }, { "cell_type": "code", "execution_count": 179, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ "import pandas as pd" ] }, { "cell_type": "code", "execution_count": 180, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ "tags = pd.read_csv('./movielens/tags.csv', sep=',')\n", "movies = pd.read_csv('./movielens/movies.csv', sep=',')\n" ] }, { "cell_type": "code", "execution_count": 181, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
userIdmovieIdtagtimestamp
0260756funny1445714994
1260756Highly quotable1445714996
2260756will ferrell1445714992
3289774Boxing story1445715207
4289774MMA1445715200
\n", "
" ] }, "execution_count": 181, "metadata": { }, "output_type": "execute_result" } ], "source": [ "tags.head()" ] }, { "cell_type": "code", "execution_count": 182, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
movieIdtitlegenres
01Toy Story (1995)Adventure|Animation|Children|Comedy|Fantasy
12Jumanji (1995)Adventure|Children|Fantasy
23Grumpier Old Men (1995)Comedy|Romance
34Waiting to Exhale (1995)Comedy|Drama|Romance
45Father of the Bride Part II (1995)Comedy
\n", "
" ] }, "execution_count": 182, "metadata": { }, "output_type": "execute_result" } ], "source": [ "movies.head()" ] }, { "cell_type": "code", "execution_count": 183, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
movieIdtitlegenresuserIdtagtimestamp
01Toy Story (1995)Adventure|Animation|Children|Comedy|Fantasy336pixar1139045764
11Toy Story (1995)Adventure|Animation|Children|Comedy|Fantasy474pixar1137206825
21Toy Story (1995)Adventure|Animation|Children|Comedy|Fantasy567fun1525286013
32Jumanji (1995)Adventure|Children|Fantasy62fantasy1528843929
42Jumanji (1995)Adventure|Children|Fantasy62magic board game1528843932
\n", "
" ] }, "execution_count": 183, "metadata": { }, "output_type": "execute_result" } ], "source": [ "# This is the merge function\n", "t = movies.merge(tags, on='movieId', how = 'inner')\n", "t.head()" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "\n", "\n", "\n", "\n", " \n", " \n", "\n", "\n", "\n", "

\n", "

Part 2: Importing Data with Pandas

\n", "

\n", "
\n",
    "* Data can be imported from a file such as .csv file, html file, or from a webpage or a variety of other sources.\n",
    "* Data is converted to a DataFrame (i.e. a table in Pandas)\n",
    "
\n", "\n", "

\n", "Part 2.1 Methods\n", "

\n", " \n", "read_csv comma separated values (.csv files)
\n", "\n", "* Input : A path to a Comma Separated File (.csv)\n", "* Output : A Pandas DataFrame object containing the contents of the file.\n", "\n", "read_json Javascript Object Notation stored as a list of Pandas DataFrames.
\n", "\n", "* Input : A path to a JSON file, or a valid JSON String.\n", "* Output : A Pandas DataFrame or a Series object that contains the contents.\n", "\n", "HTML Web Page data stored as a list of Pandas DataFrames.
\n", " \n", "* Input : A URL of a file, or a raw HTML string\n", "* Output : A list of Pandas DataFrames.\n", " \n", "read_sql_query
\n", "\n", "* Input1 : A SQL Query\n", "* Input2 : Database Connection\n", "* Output : A Pandas DataFrame object that contains the contents of the file.\n", "\n", "read_sql_table\n", " \n", "* Input1 : Name of a SQL table in database\n", "* Input2 : A database connection\n", "* Output : Pandas DataFrame Object that contains the contents of the table\n", "\n", "Additional Definitions\n", "\n", "* Pandas DataFrame Object: A 2-D labeled data structure that has columns of potentially different types.\n", " Can think of this as a spreadsheet or SQL table.\n", "\n", "
\n", "

Summary

\n", "None of which was covered in the video.\n", "

\n", " \n", "* Google Big Query\n", "* SAS Files\n", "* Excel Tables\n", "* Clipboard contents\n", "* Pickle Files\n", "* http://pandas.pydata.org/pandas-docs/stable/api.html#input-output\n", " \n", "\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "

Part 3: Live Coding Section

\n", "Files Required:
\n", "These are all .csv data failes from the Movielens website
\n", "movies.csv
\n", "tags.csv
\n", "movies.csv

" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "

Part 3.1: Live Code: Data Ingestion

\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "\n", "
Part 3.1.1 Reading the Dataset
" ] }, { "cell_type": "code", "execution_count": 184, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "README.txt genome-tags.csv links.csv\tmovies.csv ratings.csv tags.csv\r\n" ] } ], "source": [ "# Displays contents of the movielens directory.\n", "# Shows us that we have several .csv files in this directory.\n", "# We will be using several of these files for the live coding.\n", "\n", "!ls ./movielens" ] }, { "cell_type": "code", "execution_count": 185, "metadata": { "collapsed": false, "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "WARNING: some intermediate output was truncated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: 1 intermediate output message was discarded.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Troy (2003),Action|Adventure|Drama|Romance\r\n", "27716,\"Green Butchers, The (Grønne slagtere, De) (2003)\",Comedy|Crime|Drama|Romance\r\n", "27721,\"Very Long Engagement, A (Un long dimanche de fiançailles) (2004)\",Drama|Mystery|Romance|War\r\n", "27722,Last Life in the Universe (Ruang rak noi nid mahasan) (2003),Drama|Romance\r\n", "27728,Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004),Action|Animation|Drama|Sci-Fi|Thriller\r\n", "27731,\"Cat Returns, The (Neko no ongaeshi) (2002)\",Adventure|Animation|Children|Fantasy\r\n", "27741,\"Twilight Samurai, The (Tasogare Seibei) (2002)\",Drama|Romance\r\n", "27744,\"Facing Windows (Finestra di fronte, La) (2003)\",Drama|Romance\r\n", "27746,Ginger Snaps: Unleashed (2004),Horror|Thriller\r\n", "27751,'Salem's Lot (2004),Drama|Horror|Mystery|Thriller\r\n", "27762,Comic Book: The Movie (2004),Comedy\r\n", "27768,Intimate Strangers (Confidences trop intimes) (2004),Drama\r\n", "27769,Down to the Bone (2004),Drama\r\n", "27772,Ju-on: The Grudge (2002),Horror\r\n", "27773,Old Boy (2003),Mystery|Thriller\r\n", "27776,Red Lights (Feux rouges) (2004),Drama\r\n", "27778,Ginger Snaps Back: The Beginning (2004),Fantasy|Horror\r\n", "27784,One Missed Call (Chakushin ari) (2003),Horror|Mystery\r\n", "27788,\"Jacket, The (2005)\",Drama|Mystery|Sci-Fi|Thriller\r\n", "27790,Millions (2004),Children|Comedy|Crime|Drama|Fantasy\r\n", "27793,Starship Troopers 2: Hero of the Federation (2004),Action|Horror|Sci-Fi|War\r\n", "27801,Ong-Bak: The Thai Warrior (Ong Bak) (2003),Action|Thriller\r\n", "27802,Infernal Affairs 2 (Mou gaan dou II) (2003),Action|Crime|Drama|Thriller\r\n", "27803,\"Sea Inside, The (Mar adentro) (2004)\",Drama\r\n", "27808,Spanglish (2004),Comedy|Drama|Romance\r\n", "27815,\"Chorus, The (Choristes, Les) (2004)\",Drama\r\n", "27816,Saints and Soldiers (2003),Action|Adventure|Drama|War\r\n", "27820,\"Story of the Weeping Camel, The (Geschichte vom weinenden Kamel, Die) (2003)\",Documentary|Drama\r\n", "27821,\"Interpreter, The (2005)\",Drama|Thriller\r\n", "27822,Open Water (2003),Drama|Thriller\r\n", "27826,Touch of Pink (2004),Comedy|Drama|Romance\r\n", "27829,Slasher (2004),Documentary\r\n", "27830,\"Bobby Jones, Stroke of Genius (2004)\",Drama\r\n", "27831,Layer Cake (2004),Crime|Drama|Thriller\r\n", "27834,\"Return, The (Vozvrashcheniye) (2003)\",Drama\r\n", "27837,Flight of the Phoenix (2004),Action|Adventure\r\n", "27838,Mean Creek (2004),Drama|Thriller\r\n", "27839,\"Ring Two, The (2005)\",Drama|Horror|Mystery|Thriller\r\n", "27846,\"Corporation, The (2003)\",Documentary\r\n", "27850,\"Yes Men, The (2003)\",Documentary\r\n", "27865,Azumi (2003),Action|Adventure|Drama|Thriller\r\n", "27866,In My Father's Den (2004),Drama\r\n", "27869,Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004),Action|Drama|War\r\n", "27873,Metallica: Some Kind of Monster (2004),Documentary\r\n", "27878,Born into Brothels (2004),Documentary\r\n", "27879,DiG! (2004),Documentary\r\n", "27882,Riding Giants (2004),Documentary\r\n", "27899,What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004),Comedy|Documentary|Drama\r\n", "27904,\"Scanner Darkly, A (2006)\",Animation|Drama|Mystery|Sci-Fi|Thriller\r\n", "27905,Casshern (2004),Action|Drama|Fantasy|Sci-Fi\r\n", "27912,Outfoxed: Rupert Murdoch's War on Journalism (2004),Documentary\r\n", "30707,Million Dollar Baby (2004),Drama\r\n", "30745,Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003),Comedy|Crime|Drama|Horror|Mystery\r\n", "30749,Hotel Rwanda (2004),Drama|War\r\n", "30793,Charlie and the Chocolate Factory (2005),Adventure|Children|Comedy|Fantasy|IMAX\r\n", "30803,3-Iron (Bin-jip) (2004),Drama|Romance\r\n", "30810,\"Life Aquatic with Steve Zissou, The (2004)\",Adventure|Comedy|Fantasy\r\n", "30812,\"Aviator, The (2004)\",Drama\r\n", "30816,\"Phantom of the Opera, The (2004)\",Drama|Musical|Romance\r\n", "30818,Beyond the Sea (2004),Drama|Musical\r\n", "30820,\"Woodsman, The (2004)\",Drama\r\n", "30822,In Good Company (2004),Comedy|Drama\r\n", "30825,Meet the Fockers (2004),Comedy\r\n", "30846,\"Assassination of Richard Nixon, The (2004)\",Crime|Drama|Thriller\r\n", "30848,\"Love Song for Bobby Long, A (2004)\",Drama\r\n", "30850,\"Merchant of Venice, The (2004)\",Drama\r\n", "30883,Fat Albert (2004),Comedy|Fantasy\r\n", "30890,\"Keys to the House, The (Chiavi di casa, Le) (2004)\",Drama\r\n", "30892,In the Realms of the Unreal (2004),Animation|Documentary\r\n", "30894,White Noise (2005),Drama|Horror|Mystery|Sci-Fi|Thriller\r\n", "30898,\"Upside of Anger, The (2005)\",Comedy|Drama|Romance\r\n", "30994,Little Miss Marker (1980),Comedy|Drama\r\n", "31000,Sweet Liberty (1986),Comedy\r\n", "31030,I Remember Mama (1948),Children|Drama\r\n", "31038,Smooth Talk (1985),Drama|Romance\r\n", "31049,Out Cold (1989),Comedy|Thriller\r\n", "31083,Man Trouble (1992),Comedy|Romance\r\n", "31086,Battles Without Honor & Humanity (Jingi naki tatakai) (1973),Crime|Drama\r\n", "31101,Stander (2003),Action|Crime|Drama\r\n", "31114,Imaginary Heroes (2004),Comedy|Drama\r\n", "31116,Sergeant York (1941),Drama|War\r\n", "31123,Ruby & Quentin (Tais-toi!) (2003),Comedy|Crime\r\n", "31150,Wizards (1977),Animation|Fantasy|Sci-Fi|War\r\n", "31162,\"Life and Death of Peter Sellers, The (2004)\",Comedy|Drama\r\n", "31184,Appleseed (Appurushîdo) (2004),Action|Animation|Fantasy|Sci-Fi\r\n", "31193,\"Many Adventures of Winnie the Pooh, The (1977)\",Animation|Children|Musical\r\n", "31221,Elektra (2005),Action|Adventure|Crime|Drama\r\n", "31223,Racing Stripes (2005),Children|Comedy\r\n", "31225,Coach Carter (2005),Drama\r\n", "31260,Boys Town (1938),Drama\r\n", "31297,Gold Diggers of 1935 (1935),Comedy|Musical\r\n", "31309,Rocco and His Brothers (Rocco e i suoi fratelli) (1960),Crime|Drama\r\n", "31364,Memories of Murder (Salinui chueok) (2003),Crime|Drama|Mystery|Thriller\r\n", "31367,\"Chase, The (1994)\",Action|Adventure|Comedy|Crime|Romance|Thriller\r\n", "31410,\"Downfall (Untergang, Der) (2004)\",Drama|War\r\n", "31420,Assault on Precinct 13 (2005),Action|Crime|Drama|Thriller\r\n", "31422,Are We There Yet? (2005),Children|Comedy\r\n", "31424,Alone in the Dark (2005),Action|Horror|Sci-Fi|Thriller\r\n", "31427,Hide and Seek (2005),Horror|Mystery|Thriller\r\n", "31431,Boogeyman (2005),Drama|Horror|Mystery|Thriller\r\n", "31433,\"Wedding Date, The (2005)\",Comedy|Romance\r\n", "31435,Rory O'Shea Was Here (Inside I'm Dancing) (2004),Drama\r\n", "31437,Nobody Knows (Dare mo shiranai) (2004),Drama\r\n", "31445,Employee of the Month (2004),Comedy|Drama\r\n", "31522,\"Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)\",Drama\r\n", "31545,\"Trou, Le (Hole, The) (Night Watch, The) (1960)\",Crime|Film-Noir\r\n", "31553,Double Dragon (1994),Action|Adventure|Sci-Fi\r\n", "31590,Hands Off the Loot (Touchez pas au grisbi) (1954),Crime|Drama|Thriller\r\n", "31610,Purple Butterfly (Zi hudie) (2003),Drama\r\n", "31617,El Cid (1961),Action|Adventure|Drama|Romance|War\r\n", "31658,Howl's Moving Castle (Hauru no ugoku shiro) (2004),Adventure|Animation|Fantasy|Romance\r\n", "31660,Steamboy (Suchîmubôi) (2004),Action|Animation|Drama|Sci-Fi\r\n", "31664,Gorgeous (Boh lee chun) (1999),Action|Comedy|Romance\r\n", "31685,Hitch (2005),Comedy|Romance\r\n", "31692,Uncle Nino (2003),Comedy\r\n", "31694,Bride & Prejudice (2004),Comedy|Musical|Romance\r\n", "31696,Constantine (2005),Action|Fantasy|Horror|Thriller\r\n", "31698,Son of the Mask (2005),Adventure|Children|Comedy|Fantasy\r\n", "31700,Because of Winn-Dixie (2005),Children|Comedy|Drama\r\n", "31702,Turtles Can Fly (Lakposhtha hâm parvaz mikonand) (2004),Drama|War\r\n", "31737,Bunny Lake Is Missing (1965),Mystery|Thriller\r\n", "31804,Night Watch (Nochnoy dozor) (2004),Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller\r\n", "31851,Sons of the Desert (1933),Comedy\r\n", "31867,Man of the House (2005),Action|Comedy\r\n", "31878,Kung Fu Hustle (Gong fu) (2004),Action|Comedy\r\n", "31903,Zelary (2003),Drama|Romance\r\n", "31909,Dr. Giggles (1992),Comedy|Horror\r\n", "31921,\"Seven-Per-Cent Solution, The (1976)\",Adventure|Comedy|Crime|Drama|Mystery|Thriller\r\n", "31923,\"Three Musketeers, The (1973)\",Action|Adventure|Comedy\r\n", "31925,Royal Flash (1975),Adventure|Comedy|Romance\r\n", "31952,Control (Kontroll) (2003),Comedy|Crime|Drama|Mystery\r\n", "31973,Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948),Drama|War\r\n", "32009,Tyler Perry's Diary of a Mad Black Woman (2005),Comedy|Drama|Romance\r\n", "32011,Cursed (2005),Horror|Thriller\r\n", "32017,\"Pacifier, The (2005)\",Action|Comedy\r\n", "32019,Be Cool (2005),Comedy|Crime|Musical\r\n", "32022,Gunner Palace (2004),Documentary|War\r\n", "32029,Hostage (2005),Action|Crime|Drama|Thriller\r\n", "32031,Robots (2005),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX\r\n", "32058,Class Action (1991),Drama\r\n", "32060,\"Cat and the Canary, The (1927)\",Horror|Mystery\r\n", "32116,\"Oh, God! You Devil (1984)\",Comedy\r\n", "32139,\"Agony and the Ecstasy, The (1965)\",Drama\r\n", "32160,Twentieth Century (1934),Comedy\r\n", "32179,Elevator to the Gallows (a.k.a. Frantic) (Ascenseur pour l'échafaud) (1958),Crime|Drama|Thriller\r\n", "32213,Cube Zero (2004),Horror|Mystery|Sci-Fi|Thriller\r\n", "32234,Julia (1977),Drama\r\n", "32243,Stealing Rembrandt (Rembrandt) (2003),Action|Comedy|Crime\r\n", "32289,Ice Princess (2005),Children|Comedy|Drama\r\n", "32291,Melinda and Melinda (2004),Comedy|Drama\r\n", "32294,Milk and Honey (2003),Drama\r\n", "32296,Miss Congeniality 2: Armed and Fabulous (2005),Adventure|Comedy|Crime\r\n", "32298,Guess Who (2005),Comedy|Romance\r\n", "32300,D.E.B.S. (2004),Action|Comedy\r\n", "32302,\"League of Ordinary Gentlemen, A (2004)\",Documentary\r\n", "32314,Incident at Loch Ness (2004),Adventure|Comedy|Documentary\r\n", "32371,Call Northside 777 (1948),Crime|Drama|Film-Noir\r\n", "32387,\"Sword of Doom, The (Dai-bosatsu tôge) (1966)\",Action|Drama\r\n", "32392,800 Bullets (800 Balas) (2002),Comedy|Crime|Drama|Western\r\n", "32440,If Looks Could Kill (1991),Action|Comedy\r\n", "32442,Greedy (1994),Comedy\r\n", "32456,\"Pom Poko (a.k.a. Raccoon War, The) (Heisei tanuki gassen pompoko) (1994)\",Animation|Comedy|Drama|Fantasy\r\n", "32460,Knockin' on Heaven's Door (1997),Action|Comedy|Crime|Drama\r\n", "32469,We're No Angels (1955),Comedy|Crime|Drama\r\n", "32511,\"Touch of Zen, A (Xia nu) (1971)\",Action|Adventure\r\n", "32515,Walker (1987),Adventure|Drama|War|Western\r\n", "32554,Memories (Memorîzu) (1995),Animation|Fantasy|Sci-Fi|Thriller\r\n", "32582,\"Wild Parrots of Telegraph Hill, The (2003)\",Documentary\r\n", "32584,\"Ballad of Jack and Rose, The (2005)\",Drama\r\n", "32587,Sin City (2005),Action|Crime|Film-Noir|Mystery|Thriller\r\n", "32589,Beauty Shop (2005),Comedy\r\n", "32596,Sahara (2005),Action|Adventure|Comedy\r\n", "32598,Fever Pitch (2005),Comedy|Romance\r\n", "32600,Eros (2004),Drama\r\n", "32620,Not on the Lips (Pas sur la bouche) (2003),Comedy|Musical|Romance\r\n", "32632,Electra Glide in Blue (1973),Action|Crime\r\n", "32649,\"Special Day, A (Giornata particolare, Una) (1977)\",Drama|War\r\n", "32657,\"Man Who Planted Trees, The (Homme qui plantait des arbres, L') (1987)\",Animation|Drama\r\n", "32659,Tanguy (2001),Comedy\r\n", "32666,National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003),Comedy\r\n", "32728,\"Little Girl Who Lives Down the Lane, The (1976)\",Drama|Mystery|Thriller\r\n", "32743,Ringu 0: Bâsudei (2000),Drama|Horror|Thriller\r\n", "32770,Brothers (Brødre) (2004),Drama\r\n", "32799,Maidens in Uniform (Mädchen in Uniform) (1931),Drama|Romance\r\n", "32862,With Six You Get Eggroll (1968),Comedy|Romance\r\n", "32875,Holiday (Jour de fête) (1949),Comedy\r\n", "32892,Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962),Drama|War\r\n", "32898,\"Trip to the Moon, A (Voyage dans la lune, Le) (1902)\",Action|Adventure|Fantasy|Sci-Fi\r\n", "32906,\"Ascent, The (Voskhozhdeniye) (1977)\",Drama|War\r\n", "32914,Carrie (2002),Drama|Horror|Thriller\r\n", "32917,Boccaccio '70 (1962),Comedy|Fantasy|Romance\r\n", "33004,\"Hitchhiker's Guide to the Galaxy, The (2005)\",Adventure|Comedy|Sci-Fi\r\n", "33085,\"Amityville Horror, The (2005)\",Horror|Thriller\r\n", "33090,Mutant Aliens (2001),Animation|Comedy|Sci-Fi\r\n", "33124,Before the Fall (NaPolA - Elite für den Führer) (2004),Drama|War\r\n", "33126,\"Frisco Kid, The (1979)\",Comedy|Western\r\n", "33132,State Property 2 (2005),Action|Crime|Drama\r\n", "33138,Palindromes (2004),Adventure|Comedy|Drama\r\n", "33145,\"Lot Like Love, A (2005)\",Comedy|Drama|Romance\r\n", "33148,King's Ransom (2005),Comedy|Crime\r\n", "33154,Enron: The Smartest Guys in the Room (2005),Documentary\r\n", "33158,xXx: State of the Union (2005),Action|Crime|Thriller\r\n", "33162,Kingdom of Heaven (2005),Action|Drama|Romance|War\r\n", "33164,House of Wax (2005),Horror|Thriller\r\n", "33166,Crash (2004),Crime|Drama\r\n", "33171,Mysterious Skin (2004),Drama|Mystery\r\n", "33188,Mischief (1985),Comedy|Romance\r\n", "33201,Between Your Legs (Entre las piernas) (1999),Drama|Mystery|Romance|Thriller\r\n", "33237,San Francisco (1936),Drama|Musical|Romance\r\n", "33294,Vampire Hunter D (1985),Animation|Fantasy|Horror\r\n", "33310,\"Common Thread, A (a.k.a. Sequins) (Brodeuses) (2004)\",Drama|Romance\r\n", "33312,\"Cocoanuts, The (1929)\",Comedy|Musical\r\n", "33421,Dear Wendy (2005),Drama\r\n", "33435,Los Angeles Plays Itself (2003),Documentary\r\n", "33437,Unleashed (Danny the Dog) (2005),Action|Crime|Drama|Thriller\r\n", "33493,Star Wars: Episode III - Revenge of the Sith (2005),Action|Adventure|Sci-Fi\r\n", "33495,Kicking & Screaming (2005),Comedy\r\n", "33499,Monster-in-Law (2005),Comedy|Romance\r\n", "33558,\"Snow Walker, The (2003)\",Adventure|Drama\r\n", "33564,Divorce - Italian Style (Divorzio all'italiana) (1961),Comedy\r\n", "33615,Madagascar (2005),Adventure|Animation|Children|Comedy\r\n", "33629,Airborne (1993),Adventure|Comedy\r\n", "33639,Mad Hot Ballroom (2005),Children|Documentary\r\n", "33644,Dominion: Prequel to the Exorcist (2005),Horror|Thriller\r\n", "33646,\"Longest Yard, The (2005)\",Comedy|Drama\r\n", "33649,Saving Face (2004),Comedy|Drama|Romance\r\n", "33660,Cinderella Man (2005),Drama|Romance\r\n", "33669,\"Sisterhood of the Traveling Pants, The (2005)\",Adventure|Comedy|Drama\r\n", "33672,Lords of Dogtown (2005),Action|Comedy|Drama\r\n", "33677,Rock School (2005),Documentary\r\n", "33679,Mr. & Mrs. Smith (2005),Action|Adventure|Comedy|Romance\r\n", "33681,\"Adventures of Sharkboy and Lavagirl 3-D, The (2005)\",Action|Adventure|Children|Fantasy\r\n", "33683,High Tension (Haute tension) (Switchblade Romance) (2003),Horror|Thriller\r\n", "33725,It's All Gone Pete Tong (2004),Comedy|Drama|Musical\r\n", "33779,Eddie Izzard: Dress to Kill (1999),Comedy\r\n", "33781,Quo Vadis (1951),Drama|Romance\r\n", "33794,Batman Begins (2005),Action|Crime|IMAX\r\n", "33801,Godzilla: Final Wars (Gojira: Fainaru uôzu) (2004),Action|Adventure|Fantasy|Sci-Fi\r\n", "33815,\"Perfect Man, The (2005)\",Comedy|Drama|Romance\r\n", "33826,Saint Ralph (2004),Comedy|Drama\r\n", "33830,Herbie: Fully Loaded (2005),Adventure|Comedy|Romance\r\n", "33834,Land of the Dead (2005),Action|Horror|Thriller\r\n", "33836,Bewitched (2005),Comedy|Fantasy|Romance\r\n", "33838,Rize (2005),Documentary\r\n", "33880,Me and You and Everyone We Know (2005),Comedy|Drama\r\n", "33893,\"Perfect Crime, The (Crimen Ferpecto) (Ferpect Crime) (2004)\",Comedy|Crime|Thriller\r\n", "33896,3 Extremes (Three... Extremes) (Saam gaang yi) (2004),Horror\r\n", "33903,\"Edukators, The (Die Fetten Jahre sind vorbei) (2004)\",Comedy|Crime|Drama|Romance\r\n", "33966,Cop and ½ (1993),Comedy\r\n", "34018,At the Circus (1939),Comedy|Musical\r\n", "34048,War of the Worlds (2005),Action|Adventure|Sci-Fi|Thriller\r\n", "34072,\"March of the Penguins (Marche de l'empereur, La) (2005)\",Documentary\r\n", "34129,Rebound (2005),Comedy\r\n", "34143,Dark Water (2005),Drama|Horror|Thriller\r\n", "34148,\"Beat That My Heart Skipped, The (battre mon coeur s'est arrêté, De) (2005)\",Drama\r\n", "34150,Fantastic Four (2005),Action|Adventure|Sci-Fi\r\n", "34153,Murderball (2005),Documentary\r\n", "34162,Wedding Crashers (2005),Comedy|Romance\r\n", "34164,Happy Endings (2005),Comedy|Drama\r\n", "34271,Hustle & Flow (2005),Crime|Drama\r\n", "34292,Hardware (1990),Action|Horror|Sci-Fi\r\n", "34312,\"Calcium Kid, The (2004)\",Comedy\r\n", "34319,\"Island, The (2005)\",Action|Sci-Fi|Thriller\r\n", "34321,Bad News Bears (2005),Children|Comedy\r\n", "34323,\"Devil's Rejects, The (2005)\",Action|Crime|Horror\r\n", "34326,Last Days (2005),Drama\r\n", "34330,November (2004),Drama|Mystery\r\n", "34332,Sky High (2005),Action|Adventure|Children|Comedy\r\n", "34334,Stealth (2005),Action|Adventure|Sci-Fi|Thriller\r\n", "34336,Must Love Dogs (2005),Comedy|Romance\r\n", "34338,\"Aristocrats, The (2005)\",Comedy|Documentary\r\n", "34359,Georgy Girl (1966),Comedy\r\n", "34397,\"Order, The (2001)\",Action|Adventure|Drama|Thriller\r\n", "34405,Serenity (2005),Action|Adventure|Sci-Fi\r\n", "34437,Broken Flowers (2005),Comedy|Drama\r\n", "34450,Miracles - Mr. Canton and Lady Rose (1989),Action|Comedy|Crime|Drama\r\n", "34482,\"Browning Version, The (1951)\",Drama\r\n", "34520,\"Dukes of Hazzard, The (2005)\",Action|Adventure|Comedy\r\n", "34523,The Chumscrubber (2005),Comedy|Drama\r\n", "34528,Junebug (2005),Comedy|Drama\r\n", "34530,Deuce Bigalow: European Gigolo (2005),Comedy\r\n", "34532,\"Skeleton Key, The (2005)\",Drama|Horror|Mystery|Thriller\r\n", "34534,Four Brothers (2005),Action|Crime|Drama\r\n", "34536,The Great Raid (2005),Action|Drama|War\r\n", "34540,Pretty Persuasion (2005),Comedy|Drama\r\n", "34542,Grizzly Man (2005),Documentary\r\n", "34800,Private Resort (1985),Comedy\r\n", "34811,Pusher II: With Blood on My Hands (2004),Action|Crime|Drama|Thriller\r\n", "35015,Duma (2005),Adventure|Drama\r\n", "35347,Animal Farm (1954),Animation|Drama\r\n", "35807,\"Teahouse of the August Moon, The (1956)\",Comedy\r\n", "35836,\"40-Year-Old Virgin, The (2005)\",Comedy|Romance\r\n", "35957,Red Eye (2005),Horror|Thriller\r\n", "36276,Hidden (a.k.a. Cache) (Caché) (2005),Drama|Mystery|Thriller\r\n", "36289,Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999),Adventure|Children|Comedy|Fantasy\r\n", "36363,Kin-Dza-Dza! (1986),Comedy|Drama|Sci-Fi\r\n", "36397,Valiant (2005),Adventure|Animation|Children|Comedy|Fantasy|War\r\n", "36401,\"Brothers Grimm, The (2005)\",Comedy|Fantasy|Horror|Thriller\r\n", "36477,\"Baxter, The (2005)\",Comedy|Drama|Romance\r\n", "36509,\"Cave, The (2005)\",Action|Adventure|Horror|Mystery|Sci-Fi|Thriller\r\n", "36517,\"Constant Gardener, The (2005)\",Drama|Thriller\r\n", "36519,Transporter 2 (2005),Action|Crime|Thriller\r\n", "36525,Just Like Heaven (2005),Comedy|Fantasy|Romance\r\n", "36527,Proof (2005),Drama\r\n", "36529,Lord of War (2005),Action|Crime|Drama|Thriller|War\r\n", "36533,Cry_Wolf (a.k.a. Cry Wolf) (2005),Drama|Horror|Mystery|Thriller\r\n", "36535,Everything Is Illuminated (2005),Comedy|Drama\r\n", "36537,Thumbsucker (2005),Comedy|Drama\r\n", "36708,Family Guy Presents Stewie Griffin: The Untold Story (2005),Adventure|Animation|Comedy\r\n", "36850,Police Story 2 (Ging chaat goo si juk jaap) (1988),Action|Comedy|Crime|Thriller\r\n", "36931,New Police Story (Xin jing cha gu shi) (2004),Action|Crime|Drama\r\n", "37211,Go West (1940),Comedy|Musical|Western\r\n", "37240,Why We Fight (2005),Documentary\r\n", "37380,Doom (2005),Action|Horror|Sci-Fi\r\n", "37382,Domino (2005),Crime|Drama|Thriller\r\n", "37384,Waiting... (2005),Comedy\r\n", "37386,Aeon Flux (2005),Action|Sci-Fi\r\n", "37444,Frankenstein 90 (1984),Comedy|Horror|Romance\r\n", "37475,\"Unfinished Life, An (2005)\",Drama\r\n", "37477,\"Man, The (2005)\",Action|Comedy|Crime\r\n", "37495,Survive Style 5+ (2004),Fantasy|Mystery|Romance|Thriller\r\n", "37545,Woyzeck (1979),Drama\r\n", "37720,\"Exorcism of Emily Rose, The (2005)\",Crime|Drama|Horror|Thriller\r\n", "37727,Flightplan (2005),Action|Drama|Thriller\r\n", "37729,Corpse Bride (2005),Animation|Comedy|Fantasy|Musical|Romance\r\n", "37731,Green Street Hooligans (a.k.a. Hooligans) (2005),Crime|Drama\r\n", "37733,\"History of Violence, A (2005)\",Action|Crime|Drama|Thriller\r\n", "37736,Oliver Twist (2005),Drama\r\n", "37739,\"Greatest Game Ever Played, The (2005)\",Drama\r\n", "37741,Capote (2005),Crime|Drama\r\n", "37830,Final Fantasy VII: Advent Children (2004),Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "37844,Roll Bounce (2005),Comedy|Drama|Romance\r\n", "37853,Into the Blue (2005),Action|Adventure|Crime|Thriller\r\n", "37857,MirrorMask (2005),Adventure|Children|Drama|Fantasy\r\n", "38038,Wallace & Gromit in The Curse of the Were-Rabbit (2005),Adventure|Animation|Children|Comedy\r\n", "38061,Kiss Kiss Bang Bang (2005),Comedy|Crime|Mystery|Thriller\r\n", "38095,\"Bittersweet Life, A (Dalkomhan insaeng) (2005)\",Action|Crime|Drama\r\n", "38159,\"Short Film About Love, A (Krótki film o milosci) (1988)\",Drama|Romance\r\n", "38164,\"All This, and Heaven Too (1940)\",Drama|Romance\r\n", "38198,Darwin's Nightmare (2004),Documentary\r\n", "38294,Beowulf & Grendel (2005),Action|Adventure|Drama|Fantasy\r\n", "38304,No Direction Home: Bob Dylan (2005),Documentary\r\n", "38388,Goal! The Dream Begins (Goal!) (2005),Drama\r\n", "38583,\"Wraith, The (1986)\",Action|Horror|Sci-Fi|Thriller\r\n", "38798,In Her Shoes (2005),Comedy|Drama\r\n", "38886,\"Squid and the Whale, The (2005)\",Comedy|Drama\r\n", "38992,Two for the Money (2005),Drama\r\n", "39183,Brokeback Mountain (2005),Drama|Romance\r\n", "39231,Elizabethtown (2005),Comedy|Drama|Romance\r\n", "39234,North Country (2005),Drama\r\n", "39292,\"Good Night, and Good Luck. (2005)\",Crime|Drama\r\n", "39307,Dreamer: Inspired by a True Story (2005),Children|Drama\r\n", "39381,\"Proposition, The (2005)\",Crime|Drama|Western\r\n", "39400,\"Fog, The (2005)\",Action|Horror|Mystery|Thriller\r\n", "39414,Shopgirl (2005),Comedy|Drama|Romance\r\n", "39427,Stay (2005),Thriller\r\n", "39435,\"Legend of Zorro, The (2005)\",Action|Adventure|Drama|Western\r\n", "39444,\"Weather Man, The (2005)\",Comedy|Drama\r\n", "39446,Saw II (2005),Horror|Thriller\r\n", "39449,Prime (2005),Comedy|Drama|Romance\r\n", "39516,Don't Move (Non ti muovere) (2004),Drama\r\n", "39715,American Pie Presents: Band Camp (American Pie 4: Band Camp) (2005),Comedy\r\n", "39801,\"Great Yokai War, The (Yôkai daisensô) (2005)\",Adventure|Comedy|Fantasy|Horror\r\n", "39869,Manderlay (2005),Drama\r\n", "40148,Revolver (2005),Crime|Drama|Thriller\r\n", "40278,Jarhead (2005),Action|Drama|War\r\n", "40339,Chicken Little (2005),Action|Adventure|Animation|Children|Comedy|Sci-Fi\r\n", "40412,Dead Man's Shoes (2004),Crime|Thriller\r\n", "40414,Joyeux Noël (Merry Christmas) (2005),Drama|War\r\n", "40478,Night of the Lepus (1972),Horror|Sci-Fi|Thriller\r\n", "40491,\"Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)\",Comedy|Drama\r\n", "40578,Sword of the Beast (Kedamono no ken) (1965),Action|Drama\r\n", "40581,Just Friends (2005),Comedy|Romance\r\n", "40583,Syriana (2005),Drama|Thriller\r\n", "40597,One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002),Comedy|Drama\r\n", "40614,Derailed (2005),Drama|Thriller\r\n", "40617,Creep (2004),Horror|Thriller\r\n", "40629,Pride & Prejudice (2005),Drama|Romance\r\n", "40697,Babylon 5,Sci-Fi\r\n", "40723,Wolf Creek (2005),Crime|Horror|Thriller\r\n", "40732,\"Descent, The (2005)\",Adventure|Drama|Horror|Thriller\r\n", "40815,Harry Potter and the Goblet of Fire (2005),Adventure|Fantasy|Thriller|IMAX\r\n", "40819,Walk the Line (2005),Drama|Musical|Romance\r\n", "40826,Rent (2005),Drama|Musical|Romance\r\n", "40851,Zathura (2005),Action|Adventure|Children|Fantasy\r\n", "40870,C.R.A.Z.Y. (2005),Drama\r\n", "40946,Sarah Silverman: Jesus Is Magic (2005),Comedy|Musical\r\n", "40955,Breakfast on Pluto (2005),Comedy|Drama\r\n", "40959,\"Ice Harvest, The (2005)\",Action|Comedy|Crime|Thriller\r\n", "40962,\"Yours, Mine and Ours (2005)\",Comedy|Romance\r\n", "40966,\"Libertine, The (2004)\",Drama\r\n", "41014,\"Bird with the Crystal Plumage, The (Uccello dalle piume di cristallo, L') (1970)\",Crime|Horror|Mystery|Thriller\r\n", "41285,Match Point (2005),Crime|Drama|Romance\r\n", "41527,Paradise Now (2005),Crime|Drama|Thriller|War\r\n", "41566,\"Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)\",Adventure|Children|Fantasy\r\n", "41569,King Kong (2005),Action|Adventure|Drama|Fantasy|Thriller\r\n", "41571,Memoirs of a Geisha (2005),Drama|Romance\r\n", "41573,\"Family Stone, The (2005)\",Comedy|Drama|Romance\r\n", "41617,Havoc (2005),Crime|Drama|Romance\r\n", "41627,Samurai Rebellion (Jôi-uchi: Hairyô tsuma shimatsu) (1967),Action|Drama\r\n", "41712,\"Room for Romeo Brass, A (1999)\",Comedy|Drama\r\n", "41716,\"Matador, The (2005)\",Comedy|Drama|Thriller\r\n", "41724,Wal-Mart: The High Cost of Low Price (2005),Documentary\r\n", "41769,Mozart and the Whale (2005),Comedy|Drama|Romance\r\n", "41828,Don't Look Now: We're Being Shot At (La grande vadrouille) (1966),Comedy|War\r\n", "41863,\"Three Burials of Melquiades Estrada, The (2006)\",Adventure|Crime|Drama\r\n", "41997,Munich (2005),Action|Crime|Drama|Thriller\r\n", "42002,\"Producers, The (2005)\",Comedy|Musical\r\n", "42004,Transamerica (2005),Adventure|Comedy|Drama\r\n", "42007,Rumor Has It... (2005),Comedy|Drama|Romance\r\n", "42009,Cheaper by the Dozen 2 (2005),Adventure|Comedy\r\n", "42011,Fun with Dick and Jane (2005),Comedy|Crime\r\n", "42013,\"Ringer, The (2005)\",Comedy\r\n", "42015,Casanova (2005),Action|Adventure|Comedy|Drama|Romance\r\n", "42018,Mrs. Henderson Presents (2005),Comedy|Drama\r\n", "42176,\"Ear, The (Ucho) (1970)\",Drama|Thriller\r\n", "42191,Luxo Jr. (1986),Animation|Children\r\n", "42285,\"Dentist, The (1996)\",Horror|Thriller\r\n", "42418,\"New World, The (2005)\",Adventure|Drama|Romance\r\n", "42422,Voices of a Distant Star (Hoshi no koe) (2003),Animation|Drama|Romance|Sci-Fi\r\n", "42556,7 Faces of Dr. Lao (1964),Fantasy|Mystery|Western\r\n", "42559,Samurai Assassin (Samurai) (1965),Action|Adventure|Drama\r\n", "42602,\"Boys of Baraka, The (2005)\",Documentary\r\n", "42632,Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005),Crime|Drama|Mystery|Thriller\r\n", "42638,Grand Theft Parsons (2003),Comedy|Drama\r\n", "42718,District 13 (Banlieue 13) (2004),Action|Crime|Sci-Fi\r\n", "42723,Hostel (2005),Horror\r\n", "42725,Grandma's Boy (2006),Comedy\r\n", "42728,Tristan & Isolde (2006),Drama|Romance\r\n", "42730,Glory Road (2006),Drama\r\n", "42732,Last Holiday (2006),Comedy\r\n", "42734,Hoodwinked! (2005),Animation|Children|Comedy\r\n", "42738,Underworld: Evolution (2006),Action|Fantasy|Horror\r\n", "42740,Looking for Comedy in the Muslim World (2005),Comedy\r\n", "42761,Casper Meets Wendy (1998),Adventure|Children|Comedy|Fantasy\r\n", "42943,Revolution (1985),Adventure|Drama|War\r\n", "42946,Project A ('A' gai waak) (1983),Action|Comedy\r\n", "43289,\"Bird People in China, The (Chûgoku no chôjin) (1998)\",Adventure|Comedy|Drama|Fantasy\r\n", "43333,Water (2005),Drama|Romance\r\n", "43376,Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005),Drama|War\r\n", "43396,\"World's Fastest Indian, The (2005)\",Drama\r\n", "43419,Bandidas (2006),Action|Comedy|Crime|Western\r\n", "43460,Tristram Shandy: A Cock and Bull Story (2005),Comedy|Drama\r\n", "43549,Helter Skelter (2004),Action|Crime|Drama|Horror\r\n", "43556,Annapolis (2006),Drama\r\n", "43558,Big Momma's House 2 (2006),Action|Comedy|Crime\r\n", "43560,Nanny McPhee (2005),Children|Comedy|Fantasy\r\n", "43677,\"Tuskegee Airmen, The (1995)\",Drama|War\r\n", "43679,Final Destination 3 (2006),Horror|Mystery|Thriller\r\n", "43684,Something New (2006),Comedy|Drama|Romance\r\n", "43708,Block Party (a.k.a. Dave Chappelle's Block Party) (2005),Comedy|Documentary\r\n", "43744,Imagine Me & You (2005),Comedy|Drama|Romance\r\n", "43836,\"Pink Panther, The (2006)\",Adventure|Comedy|Crime\r\n", "43869,Curious George (2006),Adventure|Animation|Children|Comedy\r\n", "43871,Firewall (2006),Crime|Drama|Thriller\r\n", "43904,When a Stranger Calls (2006),Horror|Thriller\r\n", "43908,London (2005),Drama\r\n", "43912,Freedomland (2006),Crime|Drama\r\n", "43914,Winter Passing (2005),Drama\r\n", "43917,Eight Below (2006),Action|Adventure|Drama|Romance\r\n", "43919,Date Movie (2006),Comedy|Romance\r\n", "43921,Running Scared (2006),Action|Crime|Thriller\r\n", "43928,Ultraviolet (2006),Action|Fantasy|Sci-Fi|Thriller\r\n", "43930,Just My Luck (2006),Comedy|Romance\r\n", "43932,Pulse (2006),Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller\r\n", "43936,16 Blocks (2006),Crime|Thriller\r\n", "44004,Failure to Launch (2006),Comedy|Romance\r\n", "44020,Ultimate Avengers (2006),Action|Animation|Children|Sci-Fi\r\n", "44022,Ice Age 2: The Meltdown (2006),Adventure|Animation|Children|Comedy\r\n", "44189,Ask the Dust (2006),Drama|Romance\r\n", "44191,V for Vendetta (2006),Action|Sci-Fi|Thriller|IMAX\r\n", "44193,She's the Man (2006),Comedy|Romance\r\n", "44195,Thank You for Smoking (2006),Comedy|Drama\r\n", "44197,Find Me Guilty (2006),Comedy|Crime|Drama\r\n", "44199,Inside Man (2006),Crime|Drama|Thriller\r\n", "44204,Tsotsi (2005),Crime|Drama\r\n", "44225,Aquamarine (2006),Children|Comedy|Fantasy\r\n", "44238,Leprechaun 2 (1994),Comedy|Fantasy|Horror\r\n", "44241,Leprechaun 3 (1995),Comedy|Fantasy|Horror\r\n", "44243,Leprechaun 4: In Space (1997),Comedy|Fantasy|Horror|Sci-Fi\r\n", "44301,Lights in the Dusk (Laitakaupungin valot) (2006),Crime|Drama\r\n", "44397,\"Hills Have Eyes, The (2006)\",Drama|Horror|Thriller\r\n", "44399,\"Shaggy Dog, The (2006)\",Adventure|Children|Comedy|Fantasy\r\n", "44511,Unknown White Male (2005),Documentary\r\n", "44555,\"Lives of Others, The (Das leben der Anderen) (2006)\",Drama|Romance|Thriller\r\n", "44597,Youth of the Beast (Yaju no seishun) (1963),Action|Crime|Mystery\r\n", "44613,Take the Lead (2006),Drama\r\n", "44633,\"Devil and Daniel Johnston, The (2005)\",Documentary\r\n", "44657,Mouchette (1967),Drama\r\n", "44665,Lucky Number Slevin (2006),Crime|Drama|Mystery\r\n", "44694,Volver (2006),Comedy|Drama\r\n", "44709,Akeelah and the Bee (2006),Drama\r\n", "44719,Brainstorm (2001),Drama\r\n", "44731,Stay Alive (2006),Horror|Sci-Fi|Thriller\r\n", "44759,Basic Instinct 2 (2006),Crime|Drama|Mystery|Thriller\r\n", "44761,Brick (2005),Crime|Drama|Film-Noir|Mystery\r\n", "44773,\"Dead Hate the Living!, The (2000)\",Comedy|Horror\r\n", "44777,Evil Aliens (2005),Comedy|Horror|Sci-Fi\r\n", "44788,This Film Is Not Yet Rated (2006),Documentary\r\n", "44828,Slither (2006),Comedy|Horror|Sci-Fi\r\n", "44840,\"Benchwarmers, The (2006)\",Comedy\r\n", "44849,Renaissance (2006),Action|Animation|Film-Noir|Sci-Fi|Thriller\r\n", "44851,Go for Zucker! (Alles auf Zucker!) (2004),Comedy\r\n", "44864,Friends with Money (2006),Comedy|Drama|Romance\r\n", "44889,Reefer Madness: The Movie Musical (2005),Comedy|Drama|Musical\r\n", "44929,Candy (2006),Drama|Romance\r\n", "44931,Secrets of a Soul (Geheimnisse einer Seele) (1926),Drama\r\n", "44937,\"Child, The (L'enfant) (2005)\",Crime|Drama\r\n", "44943,9/11 (2002),Documentary\r\n", "44972,Scary Movie 4 (2006),Comedy|Horror\r\n", "44974,Hard Candy (2005),Drama|Thriller\r\n", "45028,\"Prairie Home Companion, A (2006)\",Comedy|Drama|Musical\r\n", "45062,\"Sentinel, The (2006)\",Crime|Drama|Thriller\r\n", "45074,\"Wild, The (2006)\",Adventure|Animation|Children|Comedy|Fantasy\r\n", "45081,Silent Hill (2006),Fantasy|Horror|Thriller\r\n", "45106,American Dreamz (2006),Comedy|Drama\r\n", "45175,Kinky Boots (2005),Comedy|Drama\r\n", "45183,\"Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)\",Action|Comedy|Crime|Thriller\r\n", "45186,Mission: Impossible III (2006),Action|Adventure|Thriller\r\n", "45208,RV (2006),Adventure|Children|Comedy\r\n", "45210,United 93 (2006),Crime|Drama\r\n", "45221,Stick It (2006),Comedy\r\n", "45361,\"American Haunting, An (2005)\",Drama|Horror|Mystery|Thriller\r\n", "45382,Down in the Valley (2005),Drama|Romance\r\n", "45431,Over the Hedge (2006),Adventure|Animation|Children|Comedy\r\n", "45440,Art School Confidential (2006),Comedy|Drama\r\n", "45442,Poseidon (2006),Action|Adventure|Thriller|IMAX\r\n", "45447,\"Da Vinci Code, The (2006)\",Drama|Mystery|Thriller\r\n", "45499,X-Men: The Last Stand (2006),Action|Sci-Fi|Thriller\r\n", "45501,\"Break-Up, The (2006)\",Comedy|Drama|Romance\r\n", "45503,Peaceful Warrior (2006),Drama\r\n", "45517,Cars (2006),Animation|Children|Comedy\r\n", "45635,\"Notorious Bettie Page, The (2005)\",Drama\r\n", "45648,Game 6 (2005),Comedy|Drama\r\n", "45658,On a Clear Day (2005),Drama\r\n", "45662,\"Omen, The (2006)\",Horror|Thriller\r\n", "45666,Nacho Libre (2006),Comedy\r\n", "45668,\"Lake House, The (2006)\",Drama|Fantasy|Romance\r\n", "45672,Click (2006),Adventure|Comedy|Drama|Fantasy|Romance\r\n", "45720,\"Devil Wears Prada, The (2006)\",Comedy|Drama\r\n", "45722,Pirates of the Caribbean: Dead Man's Chest (2006),Action|Adventure|Fantasy\r\n", "45726,\"You, Me and Dupree (2006)\",Comedy\r\n", "45728,Clerks II (2006),Comedy\r\n", "45730,Lady in the Water (2006),Drama|Fantasy|Mystery\r\n", "45732,My Super Ex-Girlfriend (2006),Comedy|Fantasy|Romance\r\n", "45880,Marie Antoinette (2006),Drama|Romance\r\n", "45928,Who Killed the Electric Car? (2006),Documentary\r\n", "45950,\"Inconvenient Truth, An (2006)\",Documentary\r\n", "45969,Career Opportunities (1991),Comedy|Romance\r\n", "46062,High School Musical (2006),Children|Comedy|Drama|Musical|Romance\r\n", "46105,I Am a Sex Addict (2005),Comedy|Documentary|Romance\r\n", "46231,Stoned (2005),Drama\r\n", "46322,Jet Li's Fearless (Huo Yuan Jia) (2006),Action|Drama\r\n", "46335,\"Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)\",Action|Crime|Drama|Thriller\r\n", "46337,Garfield: A Tail of Two Kitties (2006),Animation|Children|Comedy\r\n", "46347,Metal: A Headbanger's Journey (2005),Documentary\r\n", "46367,\"Public Eye, The (1992)\",Crime|Thriller\r\n", "46530,Superman Returns (2006),Action|Adventure|Sci-Fi|IMAX\r\n", "46559,\"Road to Guantanamo, The (2006)\",Drama|War\r\n", "46572,Edmond (2005),Drama|Thriller\r\n", "46574,\"OH in Ohio, The (2006)\",Comedy\r\n", "46578,Little Miss Sunshine (2006),Adventure|Comedy|Drama\r\n", "46664,\"Fallen Idol, The (1948)\",Drama|Mystery|Thriller\r\n", "46723,Babel (2006),Drama|Thriller\r\n", "46772,Strangers with Candy (2005),Comedy\r\n", "46850,Wordplay (2006),Documentary\r\n", "46855,Army of Shadows (L'armée des ombres) (1969),Action|Drama|Thriller|War\r\n", "46862,Orchestra Rehearsal (Prova d'orchestra) (1978),Drama\r\n", "46865,Little Man (2006),Comedy\r\n", "46948,Monster House (2006),Animation|Children|Fantasy|Mystery\r\n", "46965,Snakes on a Plane (2006),Action|Comedy|Horror|Thriller\r\n", "46967,Scoop (2006),Comedy|Fantasy|Mystery\r\n", "46970,Talladega Nights: The Ballad of Ricky Bobby (2006),Action|Comedy\r\n", "46972,Night at the Museum (2006),Action|Comedy|Fantasy|IMAX\r\n", "46974,World Trade Center (2006),Drama\r\n", "46976,Stranger than Fiction (2006),Comedy|Drama|Fantasy|Romance\r\n", "47044,Miami Vice (2006),Action|Crime|Drama|Thriller\r\n", "47099,\"Pursuit of Happyness, The (2006)\",Drama\r\n", "47122,John Tucker Must Die (2006),Comedy|Romance\r\n", "47124,\"Ant Bully, The (2006)\",Adventure|Animation|Children|Comedy|Fantasy|IMAX\r\n", "47200,Crank (2006),Action|Thriller\r\n", "47202,\"Secret Life of Words, The (2005)\",Drama|Romance\r\n", "47254,Chaos (2005),Action|Crime|Drama|Thriller\r\n", "47261,\"Night Listener, The (2006)\",Fantasy|Mystery|Thriller\r\n", "47382,Step Up (2006),Drama|Romance\r\n", "47384,Zoom (2006),Adventure|Comedy|Drama|Fantasy\r\n", "47404,Mind Game (2004),Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi\r\n", "47423,Half Nelson (2006),Drama\r\n", "47446,\"Moustache, La (2005)\",Drama|Mystery|Thriller\r\n", "47465,Tideland (2005),Drama|Fantasy|Thriller\r\n", "47491,Adam's Apples (Adams æbler) (2005),Comedy|Drama\r\n", "47516,Material Girls (2006),Children|Comedy|Drama\r\n", "47518,Accepted (2006),Comedy\r\n", "47538,Crime Busters (1977),Action|Adventure|Comedy|Crime\r\n", "47566,Born to Kill (1947),Crime|Drama|Film-Noir\r\n", "47610,\"Illusionist, The (2006)\",Drama|Fantasy|Mystery|Romance\r\n", "47629,The Queen (2006),Drama\r\n", "47640,Beerfest (2006),Comedy\r\n", "47644,Invincible (2006),Drama\r\n", "47646,Idlewild (2006),Crime|Drama|Musical\r\n", "47721,\"Red Balloon, The (Ballon rouge, Le) (1956)\",Children|Fantasy\r\n", "47725,Angel-A (2005),Comedy|Drama|Fantasy|Romance\r\n", "47736,\"Chump at Oxford, A (1940)\",Comedy\r\n", "47774,\"Icicle Thief, The (Ladri di saponette) (1989)\",Comedy|Fantasy\r\n", "47793,\"Puffy Chair, The (2006)\",Drama|Romance\r\n", "47810,\"Wicker Man, The (2006)\",Horror|Mystery|Thriller\r\n", "47894,\"Wind That Shakes the Barley, The (2006)\",Drama|War\r\n", "47937,Severance (2006),Comedy|Horror|Thriller\r\n", "47950,Hollywoodland (2006),Crime|Drama|Mystery|Thriller\r\n", "47952,\"Covenant, The (2006)\",Action|Horror|Thriller\r\n", "47970,\"Last Kiss, The (2006)\",Comedy|Drama\r\n", "47978,SherryBaby (2006),Drama\r\n", "47997,Idiocracy (2006),Adventure|Comedy|Sci-Fi|Thriller\r\n", "47999,Jesus Camp (2006),Documentary|Drama\r\n", "48001,\"Bow, The (Hwal) (2005)\",Drama|Romance\r\n", "48032,\"Tiger and the Snow, The (La tigre e la neve) (2005)\",Comedy|Drama|Romance|War\r\n", "48043,\"Fountain, The (2006)\",Drama|Fantasy|Romance\r\n", "48045,Fear City: A Family-Style Comedy (La cité de la peur) (1994),Comedy\r\n", "48082,\"Science of Sleep, The (La science des rêves) (2006)\",Comedy|Drama|Fantasy|Romance\r\n", "48142,\"Black Dahlia, The (2006)\",Crime|Drama|Mystery|Thriller\r\n", "48150,\"Woods, The (2006)\",Horror\r\n", "48161,Gridiron Gang (2006),Drama\r\n", "48214,Land of Plenty (Angst and Alienation in America) (2004),Drama\r\n", "48262,\"Bridge, The (2006)\",Documentary\r\n", "48304,Apocalypto (2006),Adventure|Drama|Thriller\r\n", "48319,Flyboys (2006),Action|Adventure|Drama|War\r\n", "48322,Jackass Number Two (2006),Comedy|Documentary\r\n", "48326,All the King's Men (2006),Drama\r\n", "48342,Conversations with Other Women (2005),Comedy|Drama|Romance\r\n", "48385,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006),Comedy\r\n", "48394,\"Pan's Labyrinth (Laberinto del fauno, El) (2006)\",Drama|Fantasy|Thriller\r\n", "48412,\"Guardian, The (2006)\",Action|Adventure|Drama\r\n", "48414,Open Season (2006),Adventure|Animation|Children|Comedy|IMAX\r\n", "48416,School for Scoundrels (2006),Comedy|Crime\r\n", "48516,\"Departed, The (2006)\",Crime|Drama|Thriller\r\n", "48518,\"Texas Chainsaw Massacre: The Beginning, The (2006)\",Horror|Thriller\r\n", "48520,Employee of the Month (2006),Comedy\r\n", "48560,Running With Scissors (2006),Comedy|Drama\r\n", "48593,Man of the Year (2006),Comedy|Thriller\r\n", "48596,\"Marine, The (2006)\",Action|Drama|Thriller\r\n", "48598,Infamous (2006),Drama\r\n", "48638,Fellini's Casanova (Il Casanova di Federico Fellini) (1976),Drama|Romance\r\n", "48649,Chapayev (1934),Drama|War\r\n", "48678,Feast (2005),Action|Comedy|Horror|Thriller\r\n", "48696,Little Children (2006),Drama|Romance\r\n", "48698,Deliver Us from Evil (2006),Documentary\r\n", "48738,\"Last King of Scotland, The (2006)\",Drama|Thriller\r\n", "48741,\"U.S. vs. John Lennon, The (2006)\",Documentary\r\n", "48744,Shortbus (2006),Comedy|Drama|Romance\r\n", "48774,Children of Men (2006),Action|Adventure|Drama|Sci-Fi|Thriller\r\n", "48780,\"Prestige, The (2006)\",Drama|Mystery|Sci-Fi|Thriller\r\n", "48783,Flags of Our Fathers (2006),Drama|War\r\n", "48872,13 Tzameti (2005),Film-Noir|Thriller\r\n", "48877,Saw III (2006),Crime|Horror|Thriller\r\n", "48879,Catch a Fire (2006),Drama|Thriller\r\n", "48883,Death of a President (2006),Crime|Drama|Mystery|Thriller\r\n", "48982,Flushed Away (2006),Animation|Comedy\r\n", "48997,Perfume: The Story of a Murderer (2006),Crime|Drama|Thriller\r\n", "49013,\"Santa Clause 3: The Escape Clause, The (2006)\",Comedy|Fantasy\r\n", "49110,Mom and Dad Save the World (1992),Comedy|Sci-Fi\r\n", "49130,\"Good Year, A (2006)\",Comedy|Drama|Romance\r\n", "49132,Shut Up & Sing (2006),Documentary\r\n", "49220,For Your Consideration (2006),Comedy\r\n", "49263,Fuck (2005),Comedy|Documentary\r\n", "49265,Shooting Dogs (a.k.a. Beyond the Gates) (2005),Documentary|Drama|War\r\n", "49272,Casino Royale (2006),Action|Adventure|Thriller\r\n", "49274,Happy Feet (2006),Adventure|Animation|Children|Comedy|IMAX\r\n", "49276,Let's Go to Prison (2006),Comedy\r\n", "49278,Déjà Vu (Deja Vu) (2006),Action|Sci-Fi|Thriller\r\n", "49280,Bobby (2006),Drama\r\n", "49284,10 Items or Less (2006),Comedy|Drama|Romance\r\n", "49286,\"Holiday, The (2006)\",Comedy|Romance\r\n", "49314,Harsh Times (2006),Action|Crime|Drama\r\n", "49347,Fast Food Nation (2006),Drama\r\n", "49389,The Great Train Robbery (1903),Crime|Western\r\n", "49396,Tenacious D in The Pick of Destiny (2006),Adventure|Comedy|Musical\r\n", "49524,\"Nativity Story, The (2006)\",Drama\r\n", "49530,Blood Diamond (2006),Action|Adventure|Crime|Drama|Thriller|War\r\n", "49647,Charlotte's Web (2006),Children|Comedy|Drama|Fantasy\r\n", "49649,Eragon (2006),Action|Adventure|Fantasy\r\n", "49651,Rocky Balboa (2006),Action|Drama\r\n", "49666,Fur: An Imaginary Portrait of Diane Arbus (2006),Drama|Fantasy|Romance\r\n", "49688,\"Dam Busters, The (1955)\",Action|Drama|War\r\n", "49735,Another Gay Movie (2006),Comedy\r\n", "49772,\"Painted Veil, The (2006)\",Drama|Romance\r\n", "49793,We Are Marshall (2006),Drama\r\n", "49822,\"Good Shepherd, The (2006)\",Drama|Thriller\r\n", "49824,Dreamgirls (2006),Drama|Musical\r\n", "49910,Freedom Writers (2007),Drama\r\n", "49917,When the Levees Broke: A Requiem in Four Acts (2006),Documentary\r\n", "49932,Inland Empire (2006),Drama|Mystery|Thriller\r\n", "49957,\"History Boys, The (2006)\",Comedy|Drama\r\n", "49961,Notes on a Scandal (2006),Drama\r\n", "50003,DOA: Dead or Alive (2006),Action|Adventure\r\n", "50005,Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006),Action|Drama\r\n", "50064,\"Good German, The (2006)\",Drama|Mystery|Thriller\r\n", "50068,Letters from Iwo Jima (2006),Drama|War\r\n", "50147,Black Christmas (2006),Action|Horror|Thriller\r\n", "50158,Stomp the Yard (2007),Drama|Musical\r\n", "50160,Miss Potter (2006),Drama\r\n", "50189,American Pie Presents The Naked Mile (American Pie 5: The Naked Mile) (2006),Comedy|Romance\r\n", "50274,Venus (2006),Drama|Romance\r\n", "50354,The Return of Don Camillo (1953),Comedy\r\n", "50356,The Little World of Don Camillo (1952),Comedy\r\n", "50440,Primeval (2007),Horror|Thriller\r\n", "50442,Alpha Dog (2007),Crime|Drama\r\n", "50445,\"Hitcher, The (2007)\",Action|Horror|Thriller\r\n", "50514,After the Wedding (Efter brylluppet) (2006),Drama\r\n", "50601,Bridge to Terabithia (2007),Adventure|Children|Fantasy\r\n", "50610,Beer League (2006),Comedy\r\n", "50613,Dead Meat (2004),Horror\r\n", "50658,49 Up (2005),Documentary\r\n", "50685,Waitress (2007),Comedy|Drama|Romance\r\n", "50740,Seven Up! (1964),Documentary\r\n", "50792,Catch and Release (2006),Comedy|Drama|Romance\r\n", "50794,Smokin' Aces (2006),Action|Crime|Drama|Thriller\r\n", "50796,Blood and Chocolate (2007),Drama|Fantasy|Horror|Romance\r\n", "50798,Epic Movie (2007),Adventure|Comedy\r\n", "50800,\"Messengers, The (2007)\",Drama|Horror|Thriller\r\n", "50802,Because I Said So (2007),Comedy|Drama|Romance\r\n", "50804,Hannibal Rising (2007),Drama|Horror|Thriller\r\n", "50806,Norbit (2007),Comedy|Romance\r\n", "50842,\"Boss of It All, The (Direktøren for det hele) (2006)\",Comedy|Drama\r\n", "50851,Cocaine Cowboys (2006),Documentary\r\n", "50872,Ratatouille (2007),Animation|Children|Drama\r\n", "50912,\"Paris, I Love You (Paris, je t'aime) (2006)\",Romance\r\n", "50923,\"Astronaut Farmer, The (2007)\",Drama\r\n", "50942,\"Wake Up, Ron Burgundy (2004)\",Comedy\r\n", "50954,It's a Boy Girl Thing (2006),Comedy|Romance\r\n", "50999,\"Ugly Duckling and Me!, The (2006)\",Animation|Comedy\r\n", "51024,The Odyssey (1997),Adventure|Drama|Fantasy\r\n", "51037,Unknown (2006),Drama|Mystery|Thriller\r\n", "51077,Ghost Rider (2007),Action|Fantasy|Thriller\r\n", "51080,Breach (2007),Drama|Thriller\r\n", "51082,Tyler Perry's Daddy's Little Girls (2007),Comedy|Romance\r\n", "51084,Music and Lyrics (2007),Comedy|Romance\r\n", "51086,\"Number 23, The (2007)\",Drama|Mystery|Thriller\r\n", "51088,Reno 911!: Miami (2007),Comedy\r\n", "51091,Black Snake Moan (2006),Drama\r\n", "51167,My Father and My Son (Babam ve oglum) (2005),Drama\r\n", "51174,Factory Girl (2006),Drama\r\n", "51255,Hot Fuzz (2007),Action|Comedy|Crime|Mystery\r\n", "51314,Golden Door (Nuovomondo) (2006),Adventure|Drama|Romance\r\n", "51357,Citizen X (1995),Crime|Drama|Thriller\r\n", "51412,Next (2007),Action|Sci-Fi|Thriller\r\n", "51471,Amazing Grace (2006),Drama|Romance\r\n", "51498,2001 Maniacs (2005),Comedy|Horror\r\n", "51540,Zodiac (2007),Crime|Drama|Thriller\r\n", "51545,Pusher III: I'm the Angel of Death (2005),Action|Comedy|Drama|Horror|Thriller\r\n", "51562,Babylon 5: The Gathering (1993),Sci-Fi\r\n", "51573,Meshes of the Afternoon (1943),Fantasy\r\n", "51575,Wild Hogs (2007),Adventure|Comedy\r\n", "51662,300 (2007),Action|Fantasy|War|IMAX\r\n", "51666,\"Abandoned, The (2006)\",Horror|Mystery|Thriller\r\n", "51694,Starter for 10 (2006),Drama|Romance\r\n", "51698,\"Last Mimzy, The (2007)\",Adventure|Children|Sci-Fi\r\n", "51705,Priceless (Hors de prix) (2006),Comedy|Romance\r\n", "51709,\"Host, The (Gwoemul) (2006)\",Comedy|Drama|Horror|Sci-Fi|Thriller\r\n", "51834,Becoming Jane (2007),Drama|Romance\r\n", "51884,\"Namesake, The (2006)\",Drama|Romance\r\n", "51903,I Think I Love My Wife (2007),Comedy|Drama|Romance\r\n", "51925,Premonition (2007),Drama|Fantasy|Mystery|Thriller\r\n", "51927,Dead Silence (2007),Horror|Mystery|Thriller\r\n", "51931,Reign Over Me (2007),Drama\r\n", "51933,Pride (2007),Drama\r\n", "51935,Shooter (2007),Action|Drama|Thriller\r\n", "51937,\"Hills Have Eyes II, The (2007)\",Horror|Thriller\r\n", "51939,TMNT (Teenage Mutant Ninja Turtles) (2007),Action|Adventure|Animation|Children|Comedy|Fantasy\r\n", "52042,Black Book (Zwartboek) (2006),Drama|Thriller|War\r\n", "52241,\"Lookout, The (2007)\",Crime|Drama|Thriller\r\n", "52245,Blades of Glory (2007),Comedy|Romance\r\n", "52279,Are We Done Yet? (2007),Comedy\r\n", "52281,Grindhouse (2007),Action|Crime|Horror|Sci-Fi|Thriller\r\n", "52283,\"Reaping, The (2007)\",Horror|Thriller\r\n", "52287,Meet the Robinsons (2007),Action|Adventure|Animation|Children|Comedy|Sci-Fi\r\n", "52299,American Hardcore (2006),Documentary\r\n", "52319,Inglorious Bastards (Quel maledetto treno blindato) (1978),Action|Adventure|Drama|War\r\n", "52328,Sunshine (2007),Adventure|Drama|Sci-Fi|Thriller\r\n", "52375,\"Hoax, The (2007)\",Crime|Drama\r\n", "52435,How the Grinch Stole Christmas! (1966),Animation|Comedy|Fantasy|Musical\r\n", "52458,Disturbia (2007),Drama|Thriller\r\n", "52462,Aqua Teen Hunger Force Colon Movie Film for Theaters (2007),Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi\r\n", "52579,\"Vie en Rose, La (Môme, La) (2007)\",Drama|Musical\r\n", "52604,Fracture (2007),Crime|Drama|Mystery|Thriller\r\n", "52644,Vacancy (2007),Horror|Thriller\r\n", "52668,In the Land of Women (2007),Comedy|Drama|Romance\r\n", "52694,Mr. Bean's Holiday (2007),Comedy\r\n", "52712,\"Invisible, The (2007)\",Crime|Drama|Fantasy|Mystery|Thriller\r\n", "52715,Kickin It Old Skool (2007),Comedy\r\n", "52722,Spider-Man 3 (2007),Action|Adventure|Sci-Fi|Thriller|IMAX\r\n", "52724,Lucky You (2007),Comedy|Drama\r\n", "52730,It's a Very Merry Muppet Christmas Movie (2002),Children|Comedy\r\n", "52767,21 Up (1977),Documentary\r\n", "52784,Sharkwater (2006),Documentary\r\n", "52831,Maniac Cop (1988),Action|Crime|Horror|Thriller\r\n", "52867,\"Ex, The (2007)\",Comedy|Romance\r\n", "52885,Paprika (Papurika) (2006),Animation|Mystery|Sci-Fi\r\n", "52950,Day Watch (Dnevnoy dozor) (2006),Action|Fantasy|Horror|Thriller\r\n", "52952,This Is England (2006),Drama\r\n", "52967,Away from Her (2006),Drama\r\n", "52973,Knocked Up (2007),Comedy|Drama|Romance\r\n", "52975,Hairspray (2007),Comedy|Drama|Musical\r\n", "53000,28 Weeks Later (2007),Horror|Sci-Fi|Thriller\r\n", "53022,Wheels on Meals (Kuai can che) (1984),Action|Comedy|Crime|Romance\r\n", "53024,Jonestown: The Life and Death of Peoples Temple (2006),Documentary\r\n", "53121,Shrek the Third (2007),Adventure|Animation|Children|Comedy|Fantasy\r\n", "53123,Once (2006),Drama|Musical|Romance\r\n", "53125,Pirates of the Caribbean: At World's End (2007),Action|Adventure|Comedy|Fantasy\r\n", "53127,Bug (2007),Drama|Horror|Thriller\r\n", "53129,Mr. Brooks (2007),Crime|Drama|Thriller\r\n", "53138,\"Librarian: Return to King Solomon's Mines, The (2006)\",Action|Adventure|Fantasy\r\n", "53140,\"Librarian: Quest for the Spear, The (2004)\",Action|Adventure|Comedy|Fantasy|Romance\r\n", "53143,Fay Grim (2006),Action|Thriller\r\n", "53161,\"I'm a Cyborg, But That's OK (Saibogujiman kwenchana) (2006)\",Comedy|Drama|Romance|Sci-Fi\r\n", "53280,\"Breed, The (2006)\",Horror|Thriller\r\n", "53318,Cashback (2006),Comedy|Drama|Romance\r\n", "53322,Ocean's Thirteen (2007),Crime|Thriller\r\n", "53326,Them (Ils) (2006),Horror\r\n", "53355,Sun Alley (Sonnenallee) (1999),Comedy|Romance\r\n", "53435,Hostel: Part II (2007),Crime|Horror|Thriller\r\n", "53447,Paranoid Park (2007),Crime|Drama\r\n", "53450,\"Legend of Sleepy Hollow, The (1980)\",Comedy|Fantasy|Horror\r\n", "53453,Starcrash (a.k.a. Star Crash) (1978),Action|Adventure|Fantasy|Sci-Fi\r\n", "53460,Surf's Up (2007),Animation|Children|Comedy\r\n", "53464,Fantastic Four: Rise of the Silver Surfer (2007),Action|Adventure|Sci-Fi\r\n", "53466,Nancy Drew (2007),Adventure|Crime|Thriller\r\n", "53468,Fido (2006),Comedy|Horror|Thriller\r\n", "53519,Death Proof (2007),Action|Adventure|Crime|Horror|Thriller\r\n", "53550,Rescue Dawn (2006),Action|Adventure|Drama|War\r\n", "53574,\"TV Set, The (2006)\",Comedy|Drama\r\n", "53578,\"Valet, The (La doublure) (2006)\",Comedy\r\n", "53808,Bring It On: All or Nothing (2006),Comedy\r\n", "53883,\"Power of Nightmares, The: The Rise of the Politics of Fear (2004)\",Documentary\r\n", "53894,Sicko (2007),Documentary|Drama\r\n", "53921,\"Mighty Heart, A (2007)\",Drama|Thriller\r\n", "53953,1408 (2007),Drama|Horror|Thriller\r\n", "53956,Death at a Funeral (2007),Comedy\r\n", "53972,Live Free or Die Hard (2007),Action|Adventure|Crime|Thriller\r\n", "53974,License to Wed (2007),Comedy|Romance\r\n", "53993,Evan Almighty (2007),Comedy|Fantasy\r\n", "53996,Transformers (2007),Action|Sci-Fi|Thriller|IMAX\r\n", "54001,Harry Potter and the Order of the Phoenix (2007),Adventure|Drama|Fantasy|IMAX\r\n", "54004,I Now Pronounce You Chuck and Larry (2007),Comedy|Romance\r\n", "54116,First Snow (2006),Drama|Thriller\r\n", "54121,Broken Arrow (1950),Drama|Romance|Western\r\n", "54185,Manufactured Landscapes (2006),Documentary\r\n", "54190,Across the Universe (2007),Drama|Fantasy|Musical|Romance\r\n", "54256,Hot Rod (2007),Comedy\r\n", "54259,Stardust (2007),Adventure|Comedy|Fantasy|Romance\r\n", "54272,\"Simpsons Movie, The (2007)\",Animation|Comedy\r\n", "54274,I Know Who Killed Me (2007),Crime|Drama|Thriller\r\n", "54276,No Reservations (2007),Comedy|Drama|Romance\r\n", "54281,Charlie Bartlett (2007),Comedy|Drama\r\n", "54286,\"Bourne Ultimatum, The (2007)\",Action|Crime|Thriller\r\n", "54354,China Blue (2005),Documentary\r\n", "54372,Tell No One (Ne le dis à personne) (2006),Crime|Drama|Mystery|Thriller\r\n", "54503,Superbad (2007),Comedy\r\n", "54617,\"Brice Man, The (Brice de Nice) (2005)\",Comedy\r\n", "54648,Rush Hour 3 (2007),Action|Comedy|Crime|Thriller\r\n", "54686,\"Last Legion, The (2007)\",Action|Adventure|Fantasy|War\r\n", "54732,Balls of Fury (2007),Comedy\r\n", "54734,Sydney White (2007),Comedy\r\n", "54736,\"Kingdom, The (2007)\",Action|Drama|Thriller\r\n", "54745,Rocket Science (2007),Comedy|Drama\r\n", "54768,Daddy Day Camp (2007),Children|Comedy\r\n", "54771,\"Invasion, The (2007)\",Action|Drama|Horror|Sci-Fi|Thriller\r\n", "54780,\"Nanny Diaries, The (2007)\",Comedy|Drama|Romance\r\n", "54785,Halloween (2007),Horror\r\n", "54787,Death Sentence (2007),Drama|Thriller\r\n", "54796,2 Days in Paris (2007),Comedy|Drama|Romance\r\n", "54881,\"King of Kong, The (2007)\",Documentary\r\n", "54908,Taxi 4 (2007),Action|Comedy\r\n", "54910,Behind the Mask: The Rise of Leslie Vernon (2006),Comedy|Horror|Thriller\r\n", "54934,\"Brothers Solomon, The (2007)\",Comedy\r\n", "54962,\"Nines, The (2007)\",Drama|Mystery\r\n", "54995,Planet Terror (2007),Action|Horror|Sci-Fi\r\n", "54997,3:10 to Yuma (2007),Action|Crime|Drama|Western\r\n", "54999,Shoot 'Em Up (2007),Action|Comedy|Crime\r\n", "55020,\"Ten, The (2007)\",Comedy\r\n", "55036,Gotti (1996),Crime|Drama\r\n", "55052,Atonement (2007),Drama|Romance|War\r\n", "55061,Electroma (2006),Drama|Sci-Fi\r\n", "55067,Requiem (2006),Drama|Thriller\r\n", "55069,\"4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)\",Drama\r\n", "55071,No End in Sight (2007),Documentary\r\n", "55080,\"Brave One, The (2007)\",Crime|Drama|Thriller\r\n", "55094,In the Valley of Elah (2007),Drama|Mystery\r\n", "55110,December Boys (2007),Drama\r\n", "55112,Shanghai Kiss (2007),Comedy|Drama|Romance\r\n", "55116,\"Hunting Party, The (2007)\",Action|Adventure|Comedy|Drama|Thriller\r\n", "55118,Eastern Promises (2007),Crime|Drama|Thriller\r\n", "55156,\"Unreasonable Man, An (2006)\",Documentary\r\n", "55167,Tekkonkinkreet (Tekkon kinkurîto) (2006),Action|Adventure|Animation|Crime|Fantasy\r\n", "55190,Love and Other Disasters (2006),Comedy|Romance\r\n", "55205,Interview (2007),Drama\r\n", "55207,Cashback (2004),Comedy|Drama\r\n", "55232,Resident Evil: Extinction (2007),Action|Horror|Sci-Fi|Thriller\r\n", "55241,Mr. Woodcock (2007),Comedy\r\n", "55245,Good Luck Chuck (2007),Comedy|Romance\r\n", "55247,Into the Wild (2007),Action|Adventure|Drama\r\n", "55250,\"Game Plan, The (2007)\",Comedy\r\n", "55253,\"Lust, Caution (Se, jie) (2007)\",Drama|Romance|Thriller|War\r\n", "55259,\"Seeker: The Dark Is Rising, The (2007)\",Action|Adventure|Drama|Fantasy\r\n", "55261,\"Heartbreak Kid, The (2007)\",Comedy|Drama|Romance\r\n", "55267,Dan in Real Life (2007),Comedy|Drama|Romance\r\n", "55269,\"Darjeeling Limited, The (2007)\",Adventure|Comedy|Drama\r\n", "55272,We Own the Night (2007),Crime|Drama\r\n", "55274,Elizabeth: The Golden Age (2007),Drama\r\n", "55276,Michael Clayton (2007),Drama|Thriller\r\n", "55278,Sleuth (2007),Drama|Mystery|Thriller\r\n", "55280,Lars and the Real Girl (2007),Comedy|Drama\r\n", "55282,30 Days of Night (2007),Horror|Thriller\r\n", "55290,Gone Baby Gone (2007),Crime|Drama|Mystery\r\n", "55292,\"Comebacks, The (2007)\",Comedy\r\n", "55294,Weirdsville (2007),Comedy|Crime|Drama\r\n", "55363,\"Assassination of Jesse James by the Coward Robert Ford, The (2007)\",Crime|Drama|Western\r\n", "55391,10th & Wolf (2006),Crime|Drama|Thriller\r\n", "55442,Persepolis (2007),Animation|Drama\r\n", "55444,Control (2007),Drama\r\n", "55451,The Jane Austen Book Club (2007),Comedy|Drama|Romance\r\n", "55492,\"Last Winter, The (2006)\",Horror\r\n", "55553,Black Sheep (2006),Comedy|Horror\r\n", "55555,\"Edge of Heaven, The (Auf der anderen Seite) (2007)\",Drama\r\n", "55577,Saw IV (2007),Crime|Horror|Thriller\r\n", "55620,For the Bible Tells Me So (2007),Documentary\r\n", "55687,My Kid Could Paint That (2007),Documentary\r\n", "55721,Elite Squad (Tropa de Elite) (2007),Action|Crime|Drama|Thriller\r\n", "55729,King of California (2007),Comedy\r\n", "55765,American Gangster (2007),Crime|Drama|Thriller\r\n", "55768,Bee Movie (2007),Animation|Comedy\r\n", "55805,Before the Devil Knows You're Dead (2007),Crime|Drama|Thriller\r\n", "55814,\"Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)\",Drama\r\n", "55820,No Country for Old Men (2007),Crime|Drama\r\n", "55830,Be Kind Rewind (2008),Comedy\r\n", "55844,Itty Bitty Titty Committee (2007),Comedy|Drama|Romance\r\n", "55854,\"Fugitive, The (1947)\",Drama\r\n", "55872,August Rush (2007),Drama|Musical\r\n", "55908,\"Man from Earth, The (2007)\",Drama|Sci-Fi\r\n", "55946,Lions For Lambs (2007),Drama|Thriller|War\r\n", "55995,Beowulf (2007),Action|Adventure|Animation|Fantasy|IMAX\r\n", "56003,Southland Tales (2006),Comedy|Drama|Sci-Fi|Thriller\r\n", "56012,\"Evening with Kevin Smith 2: Evening Harder, An (2006)\",Comedy|Documentary\r\n", "56022,Harrison Bergeron (1995),Drama|Sci-Fi\r\n", "56060,I Served the King of England (Obsluhoval jsem anglického krále) (2006),Comedy|Drama|Romance|War\r\n", "56145,\"Mist, The (2007)\",Horror|Sci-Fi\r\n", "56152,Enchanted (2007),Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance\r\n", "56156,Hitman (2007),Action|Crime|Thriller\r\n", "56169,Awake (2007),Drama|Thriller\r\n", "56171,\"Golden Compass, The (2007)\",Adventure|Children|Fantasy\r\n", "56174,I Am Legend (2007),Action|Horror|Sci-Fi|Thriller|IMAX\r\n", "56176,Alvin and the Chipmunks (2007),Children|Comedy\r\n", "56251,Futurama: Bender's Big Score (2007),Animation|Comedy|Sci-Fi\r\n", "56274,Margot at the Wedding (2007),Drama\r\n", "56286,I'm Not There (2007),Drama\r\n", "56333,\"Savages, The (2007)\",Comedy|Drama\r\n", "56336,Wrong Turn 2: Dead End (2007),Action|Horror|Thriller\r\n", "56339,\"Orphanage, The (Orfanato, El) (2007)\",Drama|Horror|Mystery|Thriller\r\n", "56367,Juno (2007),Comedy|Drama|Romance\r\n", "56379,\"Maxed Out: Hard Times, Easy Credit and the Era of Predatory Lenders (2006)\",Documentary\r\n", "56389,My Blueberry Nights (2007),Drama|Romance\r\n", "56563,Helvetica (2007),Documentary\r\n", "56587,\"Bucket List, The (2007)\",Comedy|Drama\r\n", "56607,\"Kite Runner, The (2007)\",Drama\r\n", "56620,\"Deaths of Ian Stone, The (2007)\",Horror|Thriller\r\n", "56715,Wristcutters: A Love Story (2006),Drama|Fantasy|Romance\r\n", "56757,Sweeney Todd: The Demon Barber of Fleet Street (2007),Drama|Horror|Musical|Thriller\r\n", "56775,National Treasure: Book of Secrets (2007),Action|Adventure\r\n", "56782,There Will Be Blood (2007),Drama|Western\r\n", "56788,Charlie Wilson's War (2007),Comedy|Drama|War\r\n", "56801,AVPR: Aliens vs. Predator - Requiem (2007),Action|Horror|Sci-Fi\r\n", "56805,Walk Hard: The Dewey Cox Story (2007),Comedy|Musical\r\n", "56837,As You Like It (2006),Comedy|Drama|Romance\r\n", "56869,Drained (O cheiro do Ralo) (2006),Comedy\r\n", "56908,Dedication (2007),Comedy|Drama|Romance\r\n", "56915,\"Water Horse: Legend of the Deep, The (2007)\",Adventure|Children|Fantasy\r\n", "56921,Battlestar Galactica: Razor (2007),Action|Drama|Sci-Fi|Thriller\r\n", "56941,P.S. I Love You (2007),Comedy|Drama|Romance\r\n", "56949,27 Dresses (2008),Comedy|Romance\r\n", "57147,Cassandra's Dream (2007),Crime|Drama|Thriller\r\n", "57183,Like Stars on Earth (Taare Zameen Par) (2007),Drama\r\n", "57243,\"Band's Visit, The (Bikur Ha-Tizmoret) (2007)\",Comedy|Drama\r\n", "57274,[REC] (2007),Drama|Horror|Thriller\r\n", "57326,In the Name of the King: A Dungeon Siege Tale (2008),Action|Adventure|Fantasy\r\n", "57368,Cloverfield (2008),Action|Mystery|Sci-Fi|Thriller\r\n", "57421,Hatchet (2006),Comedy|Horror\r\n", "57499,Heaven and Earth (Ten to Chi to) (1990),Action|Adventure|Drama|War\r\n", "57502,Cat Soup (Nekojiru-so) (2001),Adventure|Animation|Drama|Horror\r\n", "57504,\"Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)\",Animation|Comedy|Drama|Romance|Sci-Fi\r\n", "57522,First Sunday (2008),Comedy|Crime\r\n", "57526,Untraceable (2008),Crime|Thriller\r\n", "57528,Rambo (Rambo 4) (2008),Action|Drama|Thriller|War\r\n", "57532,Meet the Spartans (2008),Comedy\r\n", "57536,Strange Wilderness (2008),Comedy\r\n", "57637,\"Signal, The (2007)\",Horror|Sci-Fi|Thriller\r\n", "57640,Hellboy II: The Golden Army (2008),Action|Adventure|Fantasy|Sci-Fi\r\n", "57669,In Bruges (2008),Comedy|Crime|Drama|Thriller\r\n", "57772,World on a Wire (Welt am Draht) (1973),Crime|Sci-Fi\r\n", "57843,Rise of the Footsoldier (2007),Action|Crime|Drama\r\n", "57910,Teeth (2007),Comedy|Horror\r\n", "57951,Fool's Gold (2008),Action|Adventure|Comedy|Romance\r\n", "58025,Jumper (2008),Action|Adventure|Drama|Sci-Fi|Thriller\r\n", "58047,\"Definitely, Maybe (2008)\",Comedy|Drama|Romance\r\n", "58078,\"Air I Breathe, The (2007)\",Crime|Drama|Romance|Thriller\r\n", "58103,Vantage Point (2008),Action|Drama|Thriller\r\n", "58105,\"Spiderwick Chronicles, The (2008)\",Adventure|Children|Drama|Fantasy|IMAX\r\n", "58107,Step Up 2 the Streets (2008),Drama|Musical|Romance\r\n", "58154,\"Other Boleyn Girl, The (2008)\",Drama|Romance\r\n", "58156,Semi-Pro (2008),Comedy\r\n", "58162,Run Fatboy Run (2007),Comedy|Romance\r\n", "58191,Taxi to the Dark Side (2007),Documentary\r\n", "58287,Descent (2007),Drama|Thriller\r\n", "58291,College Road Trip (2008),Comedy\r\n", "58293,\"10,000 BC (2008)\",Adventure|Romance|Thriller\r\n", "58295,\"Bank Job, The (2008)\",Action|Crime|Thriller\r\n", "58297,Doomsday (2008),Action|Drama|Sci-Fi|Thriller\r\n", "58299,Horton Hears a Who! (2008),Adventure|Animation|Children|Comedy\r\n", "58301,Funny Games U.S. (2007),Drama|Thriller\r\n", "58303,\"Counterfeiters, The (Die Fälscher) (2007)\",Crime|Drama|War\r\n", "58306,Mongol (2007),Drama|War\r\n", "58309,War Dance (2007),Documentary\r\n", "58315,\"Love Guru, The (2008)\",Comedy\r\n", "58332,Diary of the Dead (2007),Horror|Sci-Fi\r\n", "58347,Penelope (2006),Comedy|Fantasy|Romance\r\n", "58351,City of Men (Cidade dos Homens) (2007),Drama\r\n", "58376,Zeitgeist: The Movie (2007),Documentary|War\r\n", "58404,Justice League: The New Frontier (2008) ,Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "58425,Heima (2007),Documentary\r\n", "58492,Snow Angels (2007),Drama\r\n", "58554,\"Class, The (Klass) (2007)\",Drama\r\n", "58559,\"Dark Knight, The (2008)\",Action|Crime|Drama|IMAX\r\n", "58627,Never Back Down (2008),Action\r\n", "58655,Drillbit Taylor (2008),Comedy\r\n", "58783,Youth Without Youth (2007),Drama|Romance|Sci-Fi\r\n", "58803,21 (2008),Crime|Drama|Romance|Thriller\r\n", "58806,Smart People (2008),Comedy|Drama|Romance\r\n", "58826,\"Shepherd: Border Patrol, The (2008)\",Action|Crime|Thriller\r\n", "58839,Leatherheads (2008),Comedy|Drama|Romance\r\n", "58842,Assembly (Ji jie hao) (2007) ,Action|Drama|War\r\n", "58870,Zebraman (2004),Comedy\r\n", "58876,Stop-Loss (2008),Drama|War\r\n", "58879,Shine a Light (2008),Documentary|Musical|IMAX\r\n", "58964,Inside (À l'intérieur) (2007),Horror|Thriller\r\n", "58972,Nim's Island (2008),Adventure|Comedy|Fantasy\r\n", "58975,\"Ruins, The (2008)\",Horror|Thriller\r\n", "58998,Forgetting Sarah Marshall (2008),Comedy|Romance\r\n", "59014,Superhero Movie (2008),Action|Comedy|Sci-Fi\r\n", "59016,Street Kings (2008),Crime|Drama|Thriller\r\n", "59018,\"Visitor, The (2007)\",Drama|Romance\r\n", "59022,Harold & Kumar Escape from Guantanamo Bay (2008),Adventure|Comedy\r\n", "59026,99 francs (2007),Comedy\r\n", "59037,Speed Racer (2008),Action|Children|Sci-Fi|IMAX\r\n", "59103,\"Forbidden Kingdom, The (2008)\",Action|Adventure|Comedy|Fantasy\r\n", "59118,Happy-Go-Lucky (2008),Comedy|Drama\r\n", "59126,Religulous (2008),Comedy|Documentary\r\n", "59129,Outpost (2008),Action|Horror\r\n", "59131,Are You Scared? (2006),Horror\r\n", "59141,Son of Rambow (2007),Children|Comedy|Drama\r\n", "59143,Super High Me (2007),Comedy|Documentary\r\n", "59220,Outsourced (2006),Comedy|Romance\r\n", "59258,Baby Mama (2008),Comedy\r\n", "59295,Expelled: No Intelligence Allowed (2008),Documentary\r\n", "59306,Prom Night (2008),Horror|Mystery|Thriller\r\n", "59315,Iron Man (2008),Action|Adventure|Sci-Fi\r\n", "59333,Made of Honor (2008),Comedy|Romance\r\n", "59336,Redbelt (2008),Action|Drama\r\n", "59369,Taken (2008),Action|Crime|Drama|Thriller\r\n", "59387,\"Fall, The (2006)\",Adventure|Drama|Fantasy\r\n", "59421,What Happens in Vegas... (2008),Comedy|Romance\r\n", "59429,American Pie Presents Beta House (American Pie 6: Beta House) (2007),Comedy\r\n", "59440,Bella (2006),Drama|Romance\r\n", "59501,\"Chronicles of Narnia: Prince Caspian, The (2008)\",Adventure|Children|Fantasy\r\n", "59549,Shelter (2007),Drama|Romance\r\n", "59604,\"Girl Next Door, The (2007)\",Crime|Drama|Horror|Thriller\r\n", "59615,Indiana Jones and the Kingdom of the Crystal Skull (2008),Action|Adventure|Comedy|Sci-Fi\r\n", "59667,Nina's Heavenly Delights (2006),Comedy\r\n", "59725,Sex and the City (2008),Comedy|Romance\r\n", "59727,\"Strangers, The (2008)\",Horror|Thriller\r\n", "59731,\"Bigger, Stronger, Faster* (2008)\",Documentary\r\n", "59738,All the Boys Love Mandy Lane (2006),Horror|Mystery|Thriller\r\n", "59784,Kung Fu Panda (2008),Action|Animation|Children|Comedy|IMAX\r\n", "59810,Recount (2008),Drama\r\n", "59814,Ex Drummer (2007),Comedy|Crime|Drama|Horror\r\n", "59900,You Don't Mess with the Zohan (2008),Comedy\r\n", "59915,Stuck (2007),Horror|Thriller\r\n", "59947,\"Protector, The (1985)\",Action|Comedy|Drama|Thriller\r\n", "59985,Chaos Theory (2007),Comedy|Drama|Romance\r\n", "59995,Boy A (2007),Crime|Drama\r\n", "60030,Spiral (2007),Drama|Horror|Thriller\r\n", "60037,\"Happening, The (2008)\",Drama|Sci-Fi|Thriller\r\n", "60040,\"Incredible Hulk, The (2008)\",Action|Sci-Fi\r\n", "60046,\"Children of Huang Shi, The (2008)\",Drama|War\r\n", "60069,WALL·E (2008),Adventure|Animation|Children|Romance|Sci-Fi\r\n", "60072,Wanted (2008),Action|Thriller\r\n", "60074,Hancock (2008),Action|Adventure|Comedy|Crime|Fantasy\r\n", "60126,Get Smart (2008),Action|Comedy\r\n", "60128,Young People Fucking (a.k.a. YPF) (2007),Comedy\r\n", "60141,St. Trinian's (2007),Children|Comedy\r\n", "60161,Futurama: The Beast with a Billion Backs (2008),Action|Animation|Comedy|Romance|Sci-Fi\r\n", "60289,Kit Kittredge: An American Girl (2008),Children|Comedy|Drama|Mystery\r\n", "60291,Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008),Documentary\r\n", "60293,\"Wackness, The (2008)\",Comedy|Drama|Romance\r\n", "60303,Strange Circus (Kimyô na sâkasu) (2005),Horror|Mystery|Thriller\r\n", "60333,Encounters at the End of the World (2008),Documentary\r\n", "60363,Zombie Strippers! (2008),Comedy|Horror\r\n", "60365,Frosty the Snowman (1969),Animation|Children|Comedy|Fantasy|Musical\r\n", "60389,Battle for Haditha (2007),War\r\n", "60397,Mamma Mia! (2008),Comedy|Musical|Romance\r\n", "60408,Welcome to the Sticks (Bienvenue chez les Ch'tis) (2008),Comedy\r\n", "60471,Rogue (2007),Action|Adventure|Horror|Sci-Fi|Thriller\r\n", "60487,\"It's the Great Pumpkin, Charlie Brown (1966)\",Animation|Children|Comedy\r\n", "60514,Journey to the Center of the Earth (2008),Action|Adventure|Sci-Fi\r\n", "60516,Meet Dave (2008),Adventure|Children|Comedy|Romance|Sci-Fi\r\n", "60522,\"Machine Girl, The (Kataude mashin gâru) (2008)\",Action|Comedy|Fantasy|Horror|Thriller\r\n", "60538,Shrooms (2007),Horror|Thriller\r\n", "60647,Transsiberian (2008),Crime|Drama|Thriller\r\n", "60674,Stargate: Continuum (2008),Sci-Fi\r\n", "60684,Watchmen (2009),Action|Drama|Mystery|Sci-Fi|Thriller|IMAX\r\n", "60735,Shotgun Stories (2007),Drama|Thriller\r\n", "60737,Watching the Detectives (2007),Comedy|Romance\r\n", "60753,Felon (2008),Crime|Drama\r\n", "60756,Step Brothers (2008),Comedy\r\n", "60760,\"X-Files: I Want to Believe, The (2008)\",Drama|Mystery|Sci-Fi|Thriller\r\n", "60766,Man on Wire (2008),Documentary\r\n", "60803,\"Little Drummer Boy, The (1968)\",Animation|Children|Musical\r\n", "60818,Hogfather (Terry Pratchett's Hogfather) (2006),Adventure|Fantasy|Thriller\r\n", "60832,Pathology (2008),Crime|Horror|Thriller\r\n", "60857,\"Tracey Fragments, The (2007)\",Drama\r\n", "60885,\"Zone, The (La Zona) (2007)\",Drama|Thriller\r\n", "60894,\"Edge of Love, The (2008)\",Drama|Romance|War\r\n", "60904,Heart of a Dog (Sobachye serdtse) (1988),Comedy|Drama|Sci-Fi\r\n", "60937,\"Mummy: Tomb of the Dragon Emperor, The (2008)\",Action|Adventure|Fantasy|Thriller\r\n", "60941,\"Midnight Meat Train, The (2008)\",Horror|Mystery|Thriller\r\n", "60943,Frozen River (2008),Drama\r\n", "60950,Vicky Cristina Barcelona (2008),Comedy|Drama|Romance\r\n", "60979,Batman: Gotham Knight (2008),Action|Animation|Crime\r\n", "61011,\"Walker, The (2007)\",Drama|Mystery\r\n", "61024,Pineapple Express (2008),Action|Comedy|Crime\r\n", "61026,Red Cliff (Chi bi) (2008),Action|Adventure|Drama|War\r\n", "61071,\"Sisterhood of the Traveling Pants 2, The (2008)\",Adventure|Comedy|Drama|Romance\r\n", "61073,Hell Ride (2008),Action|Drama|Thriller\r\n", "61123,High School Musical 2 (2007),Comedy|Drama|Musical|Romance\r\n", "61132,Tropic Thunder (2008),Action|Adventure|Comedy|War\r\n", "61160,Star Wars: The Clone Wars (2008),Action|Adventure|Animation|Sci-Fi\r\n", "61167,Henry Poole is Here (2008),Drama|Mystery\r\n", "61210,Mutant Chronicles (2008),Action|Adventure|Sci-Fi\r\n", "61236,Waltz with Bashir (Vals im Bashir) (2008),Animation|Documentary|Drama|War\r\n", "61240,Let the Right One In (Låt den rätte komma in) (2008),Drama|Fantasy|Horror|Romance\r\n", "61246,Hamlet 2 (2008),Comedy\r\n", "61248,Death Race (2008),Action|Adventure|Sci-Fi|Thriller\r\n", "61250,\"House Bunny, The (2008)\",Comedy\r\n", "61255,\"Rocker, The (2008)\",Comedy\r\n", "61257,I.O.U.S.A. (a.k.a. IOUSA) (2008),Documentary\r\n", "61262,Mirrors (2008),Horror|Mystery|Thriller\r\n", "61289,Sukiyaki Western Django (2008),Action|Western\r\n", "61319,Somers Town (2008),Drama\r\n", "61323,Burn After Reading (2008),Comedy|Crime|Drama\r\n", "61348,Disaster Movie (2008),Comedy\r\n", "61350,Babylon A.D. (2008),Action|Adventure|Sci-Fi|Thriller\r\n", "61352,Traitor (2008),Crime|Drama|Thriller\r\n", "61394,\"Onion Movie, The (2008)\",Comedy\r\n", "61401,\"Spirit, The (2008)\",Action|Comedy|Fantasy|Thriller\r\n", "61406,John Adams (2008),Drama\r\n", "61465,Bangkok Dangerous (2008),Action|Crime|Thriller\r\n", "61628,Sunflower (Xiang ri kui) (2005),Drama\r\n", "61692,Altered (2006),Horror|Sci-Fi|Thriller\r\n", "61697,Righteous Kill (2008),Crime|Mystery|Thriller\r\n", "61705,Lakeview Terrace (2008),Drama|Thriller\r\n", "61729,Ghost Town (2008),Comedy|Fantasy|Romance\r\n", "61818,\"Crow, The: Wicked Prayer (2005)\",Action|Adventure|Fantasy|Thriller\r\n", "61986,Appaloosa (2008),Western\r\n", "62008,Dead Fury (2008),Action|Animation|Comedy|Horror\r\n", "62081,Eagle Eye (2008),Action|Crime|Thriller|IMAX\r\n", "62113,How to Lose Friends & Alienate People (2008),Comedy\r\n", "62155,Nick and Norah's Infinite Playlist (2008),Comedy|Drama|Romance\r\n", "62208,\"Sound of the Mountain (Thunder of the Mountain, The) (Yama no oto) (1954)\",Drama\r\n", "62250,Gomorrah (Gomorra) (2008),Crime|Drama\r\n", "62293,\"Duchess, The (2008)\",Drama|Romance\r\n", "62299,Alone in the Dark II (2008),Action|Horror\r\n", "62336,FLCL (2000),Animation|Comedy|Fantasy|Sci-Fi\r\n", "62344,Rachel Getting Married (2008),Drama|Romance\r\n", "62374,Body of Lies (2008),Action|Drama|Thriller\r\n", "62376,City of Ember (2008),Adventure|Children|Sci-Fi\r\n", "62383,\"20,000 Leagues Under the Sea (1916)\",Action|Adventure|Sci-Fi\r\n", "62394,Max Payne (2008),Action|Crime|Drama|Thriller\r\n", "62434,Zack and Miri Make a Porno (2008),Comedy|Drama|Romance\r\n", "62437,W. (2008),Drama\r\n", "62439,My Best Friend's Girl (2008),Comedy|Romance\r\n", "62511,\"Synecdoche, New York (2008)\",Comedy|Drama\r\n", "62553,\"Secret Life of Bees, The (2008)\",Drama\r\n", "62586,\"American Carol, An (2008)\",Comedy|Fantasy\r\n", "62644,\"Wave, The (Welle, Die) (2008)\",Drama\r\n", "62662,Tokyo-Ga (1985),Documentary\r\n", "62718,\"Angus, Thongs and Perfect Snogging (2008)\",Comedy|Romance\r\n", "62792,Pride and Glory (2008),Crime|Drama\r\n", "62799,\"Express, The (2008)\",Drama\r\n", "62834,Babylon 5: The Legend of the Rangers: To Live and Die in Starlight (2002),Sci-Fi\r\n", "62836,Babylon 5: The Lost Tales - Voices in the Dark (2007),Sci-Fi\r\n", "62849,RocknRolla (2008),Action|Crime\r\n", "62956,Futurama: Bender's Game (2008),Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi\r\n", "62970,Tin Man (2007),Adventure|Fantasy|Sci-Fi\r\n", "62999,Madagascar: Escape 2 Africa (2008),Action|Adventure|Animation|Children|Comedy|IMAX\r\n", "63033,Blindness (2008),Drama|Mystery|Romance|Thriller\r\n", "63062,Changeling (2008),Crime|Drama|Mystery\r\n", "63072,\"Road, The (2009)\",Adventure|Drama|Thriller\r\n", "63082,Slumdog Millionaire (2008),Crime|Drama|Romance\r\n", "63113,Quantum of Solace (2008),Action|Adventure|Thriller\r\n", "63131,Role Models (2008),Comedy\r\n", "63179,Tokyo! (2008),Drama\r\n", "63222,JCVD (2008),Action|Drama|Thriller\r\n", "63239,Cinderella (1997),Children|Fantasy|Musical|Romance\r\n", "63276,Crows Zero (Kurôzu zero) (2007),Action\r\n", "63312,Krabat (2008),Drama|Fantasy\r\n", "63393,Camp Rock (2008),Comedy|Musical|Romance\r\n", "63433,Farscape: The Peacekeeper Wars (2004),Action|Adventure|Sci-Fi\r\n", "63436,Saw V (2008),Crime|Horror|Thriller\r\n", "63479,Sex Drive (2008),Comedy\r\n", "63515,The Island (2006),Drama|Mystery\r\n", "63540,Beverly Hills Chihuahua (2008),Adventure|Children|Comedy\r\n", "63768,Tattooed Life (Irezumi ichidai) (1965),Crime|Drama\r\n", "63808,\"Class, The (Entre les murs) (2008)\",Drama\r\n", "63826,Splinter (2008),Action|Horror|Thriller\r\n", "63853,Australia (2008),Adventure|Drama|War|Western\r\n", "63859,Bolt (2008),Action|Adventure|Animation|Children|Comedy\r\n", "63876,Milk (2008),Drama\r\n", "63992,Twilight (2008),Drama|Fantasy|Romance|Thriller\r\n", "64010,\"Children, The (2008)\",Horror\r\n", "64030,Transporter 3 (2008),Action|Adventure|Crime|Thriller\r\n", "64032,Four Christmases (2008),Comedy\r\n", "64034,\"Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)\",Drama|War\r\n", "64114,Fireproof (2008),Drama|Romance\r\n", "64116,Igor (2008),Animation|Comedy\r\n", "64167,Dinotopia (2002),Adventure|Fantasy\r\n", "64197,Hunger (2008),Drama\r\n", "64231,Punisher: War Zone (2008),Action|Crime|Drama|Thriller\r\n", "64249,Shrek the Halls (2007),Adventure|Animation|Comedy|Fantasy\r\n", "64278,\"Pervert's Guide to Cinema, The (2006)\",Documentary\r\n", "64285,Wallace and Gromit in 'A Matter of Loaf and Death' (2008),Animation|Comedy\r\n", "64497,\"Day the Earth Stood Still, The (2008)\",Drama|Sci-Fi|Thriller|IMAX\r\n", "64499,Che: Part One (2008),Drama|War\r\n", "64501,Che: Part Two (2008),Drama|War\r\n", "64575,Doubt (2008),Drama|Mystery\r\n", "64614,Gran Torino (2008),Crime|Drama\r\n", "64620,Frost/Nixon (2008),Drama\r\n", "64622,\"Reader, The (2008)\",Drama|Romance\r\n", "64695,Sword of the Stranger (Sutorejia: Mukô hadan) (2007),Action|Adventure|Animation\r\n", "64716,Seven Pounds (2008),Drama\r\n", "64839,\"Wrestler, The (2008)\",Drama\r\n", "64957,\"Curious Case of Benjamin Button, The (2008)\",Drama|Fantasy|Mystery|Romance\r\n", "64969,Yes Man (2008),Comedy\r\n", "64983,Valkyrie (2008),Drama|Thriller|War\r\n", "64993,5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007),Animation|Drama|Romance\r\n", "64997,War of the Worlds (2005),Action|Sci-Fi\r\n", "65037,Ben X (2007),Drama\r\n", "65088,Bedtime Stories (2008),Adventure|Children|Comedy\r\n", "65126,Choke (2008),Comedy|Drama\r\n", "65130,Revolutionary Road (2008),Drama|Romance\r\n", "65133,Blackadder Back & Forth (1999),Comedy\r\n", "65135,Blackadder's Christmas Carol (1988),Comedy\r\n", "65188,Dear Zachary: A Letter to a Son About His Father (2008),Documentary\r\n", "65193,Wild Child (2008),Drama|Romance\r\n", "65216,Defiance (2008),Drama|Thriller|War\r\n", "65225,Zeitgeist: Addendum (2008),Documentary\r\n", "65230,Marley & Me (2008),Comedy|Drama\r\n", "65261,Ponyo (Gake no ue no Ponyo) (2008),Adventure|Animation|Children|Fantasy\r\n", "65350,\"General Died at Dawn, The (1936)\",Adventure|Crime|Thriller\r\n", "65359,Earthsea (Legend of Earthsea) (2004),Adventure|Drama|Fantasy\r\n", "65514,Ip Man (2008),Action|Drama|War\r\n", "65577,\"Tale of Despereaux, The (2008)\",Adventure|Animation|Children|Comedy|Fantasy\r\n", "65585,Bride Wars (2009),Comedy|Romance\r\n", "65588,\"Gamers, The: Dorkness Rising (2008)\",Action|Adventure|Comedy|Fantasy\r\n", "65596,Mesrine: Killer Instinct (L'instinct de mort) (2008),Action|Crime|Drama|Thriller\r\n", "65601,My Bloody Valentine 3-D (2009),Horror|Thriller\r\n", "65631,Battle in Seattle (2007),Action|Drama\r\n", "65642,\"Timecrimes (Cronocrímenes, Los) (2007)\",Sci-Fi|Thriller\r\n", "65651,Fire and Ice (2008),Adventure|Fantasy\r\n", "65682,Underworld: Rise of the Lycans (2009),Action|Fantasy|Horror|Thriller\r\n", "65685,Inkheart (2008),Adventure|Fantasy\r\n", "65738,Revenge of the Nerds III: The Next Generation (1992),Comedy\r\n", "65740,Revenge of the Nerds IV: Nerds in Love (1994),Comedy|Romance\r\n", "65802,Paul Blart: Mall Cop (2009),Action|Comedy|Crime\r\n", "65810,Notorious (2009),Drama|Musical\r\n", "65882,\"Uninvited, The (2009)\",Drama|Horror|Mystery|Thriller\r\n", "65982,Outlander (2008),Action|Adventure|Sci-Fi\r\n", "66090,Eden Lake (2008),Horror|Thriller\r\n", "66097,Coraline (2009),Animation|Fantasy|Thriller\r\n", "66171,Push (2009),Sci-Fi|Thriller\r\n", "66198,\"International, The (2009)\",Drama|Thriller\r\n", "66203,He's Just Not That Into You (2009),Comedy|Drama|Romance\r\n", "66240,Dead Like Me: Life After Death (2009),Comedy|Fantasy\r\n", "66297,Futurama: Into the Wild Green Yonder (2009),Action|Animation|Comedy|Sci-Fi\r\n", "66310,Frontière(s) (2007),Drama|Horror|Thriller\r\n", "66320,\"11th Hour, The (2007)\",Documentary\r\n", "66335,Afro Samurai: Resurrection (2009),Animation\r\n", "66371,Departures (Okuribito) (2008),Drama\r\n", "66427,My Name Is Bruce (2007),Comedy|Horror\r\n", "66509,Funny People (2009),Comedy|Drama\r\n", "66511,Berlin Calling (2008),Comedy|Drama\r\n", "66544,Nuremberg (2000),Drama|War\r\n", "66665,Away We Go (2009),Comedy|Drama|Romance\r\n", "66744,\"Divo, Il (2008)\",Drama\r\n", "66783,Friday the 13th (2009),Horror\r\n", "66785,\"Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)\",Action|Adventure|Comedy|Western\r\n", "66798,\"Pink Panther 2, The (2009)\",Adventure|Comedy|Mystery\r\n", "66915,Rock-A-Doodle (1991),Adventure|Animation|Children|Musical\r\n", "66934,Dr. Horrible's Sing-Along Blog (2008),Comedy|Drama|Musical|Sci-Fi\r\n", "66943,\"Cottage, The (2008)\",Comedy|Crime|Horror|Thriller\r\n", "67087,\"I Love You, Man (2009)\",Comedy\r\n", "67168,Dance of the Dead (2008),Adventure|Comedy|Horror\r\n", "67186,\"Haunting in Connecticut, The (2009)\",Horror|Thriller\r\n", "67193,Duplicity (2009),Crime|Romance|Thriller\r\n", "67197,Knowing (2009),Action|Drama|Mystery|Sci-Fi|Thriller\r\n", "67255,\"Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)\",Crime|Drama|Mystery|Thriller\r\n", "67267,Sunshine Cleaning (2008),Comedy|Drama\r\n", "67295,Kung Fu Panda: Secrets of the Furious Five (2008),Action|Animation|Children|Comedy\r\n", "67361,Echelon Conspiracy (2009),Action|Mystery|Thriller\r\n", "67408,Monsters vs. Aliens (2009),Animation|Sci-Fi|IMAX\r\n", "67508,\"Baader Meinhof Komplex, Der (2008)\",Action|Crime|Drama|Thriller\r\n", "67534,Big Stan (2007),Comedy\r\n", "67618,Strictly Sexual (2008),Comedy|Drama|Romance\r\n", "67665,Anvil! The Story of Anvil (2008),Documentary|Musical\r\n", "67695,Observe and Report (2009),Action|Comedy\r\n", "67734,Adventureland (2009),Comedy|Drama\r\n", "67788,Confessions of a Shopaholic (2009),Comedy|Romance\r\n", "67799,The Butterfly Effect 3: Revelations (2009),Drama|Fantasy|Sci-Fi|Thriller\r\n", "67888,Man on the Flying Trapeze (1935),Comedy\r\n", "67923,\"Fast & Furious (Fast and the Furious 4, The) (2009)\",Action|Crime|Drama|Thriller\r\n", "67997,In the Loop (2009),Comedy\r\n", "68073,Pirate Radio (2009),Comedy|Drama\r\n", "68135,17 Again (2009),Comedy|Drama\r\n", "68157,Inglourious Basterds (2009),Action|Drama|War\r\n", "68159,State of Play (2009),Crime|Drama|Thriller\r\n", "68194,\"Damned United, The (2009)\",Drama\r\n", "68205,Crank: High Voltage (2009),Action|Comedy|Crime\r\n", "68237,Moon (2009),Drama|Mystery|Sci-Fi|Thriller\r\n", "68269,\"Young Victoria, The (2009)\",Drama|Romance\r\n", "68319,X-Men Origins: Wolverine (2009),Action|Sci-Fi|Thriller\r\n", "68347,Sin Nombre (2009),Crime|Drama|Thriller\r\n", "68358,Star Trek (2009),Action|Adventure|Sci-Fi|IMAX\r\n", "68444,\"Great Buck Howard, The (2008)\",Comedy\r\n", "68480,Flatfoot on the Nile (Piedone d'Egitto) (1980),Action|Comedy|Crime\r\n", "68486,Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009),Action|Drama|War\r\n", "68522,Earth (2007),Documentary\r\n", "68536,Stanley Kubrick: A Life in Pictures (2001),Documentary\r\n", "68552,Crossing Over (2009),Drama\r\n", "68554,Angels & Demons (2009),Crime|Drama|Mystery|Thriller\r\n", "68597,Scorpio (1973),Action|Drama|Thriller\r\n", "68600,Balls Out: Gary the Tennis Coach (2009),Comedy\r\n", "68650,Powder Blue (2009),Drama\r\n", "68659,Fanboys (2009),Adventure|Comedy|Drama\r\n", "68791,Terminator Salvation (2009),Action|Adventure|Sci-Fi|Thriller\r\n", "68793,Night at the Museum: Battle of the Smithsonian (2009),Action|Comedy|IMAX\r\n", "68835,Were the World Mine (2008),Adventure|Fantasy|Musical|Romance\r\n", "68848,\"Brothers Bloom, The (2008)\",Adventure|Comedy|Crime|Romance\r\n", "68872,Paisan (Paisà) (1946),Drama|War\r\n", "68886,I Do: How to Get Married and Stay Single (Prête-moi ta main) (2006),Comedy|Romance\r\n", "68932,\"Soloist, The (2009)\",Drama|Musical\r\n", "68945,Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei) (1997),Action|Animation|Mystery|Sci-Fi\r\n", "68952,Drag Me to Hell (2009),Comedy|Horror\r\n", "68954,Up (2009),Adventure|Animation|Children|Drama\r\n", "68959,Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005),Action|Adventure|Animation|Drama\r\n", "69069,Fired Up (2009),Comedy\r\n", "69118,In the Electric Mist (2009),Drama|Mystery\r\n", "69122,\"Hangover, The (2009)\",Comedy|Crime\r\n", "69131,Killshot (2008),Action|Crime|Drama|Thriller\r\n", "69134,Antichrist (2009),Drama|Fantasy\r\n", "69140,Sweeney Todd (2006),Crime|Drama|Horror|Thriller\r\n", "69211,Boy Eats Girl (2005),Comedy|Horror\r\n", "69224,Marius and Jeanette (Marius et Jeannette) (1997),Comedy|Drama|Romance\r\n", "69227,Ernest Rides Again (1993),Children|Comedy\r\n", "69251,Special (2006),Drama|Fantasy\r\n", "69275,Dead Snow (Død snø) (2009),Action|Adventure|Comedy|Horror\r\n", "69278,Land of the Lost (2009),Action|Adventure|Comedy|Sci-Fi\r\n", "69304,Imagine That (2009),Comedy|Drama|Fantasy\r\n", "69306,\"Taking of Pelham 1 2 3, The (2009)\",Crime|Drama|Thriller\r\n", "69394,\"Stoning of Soraya M., The (2008)\",Crime|Drama\r\n", "69406,\"Proposal, The (2009)\",Comedy|Romance\r\n", "69436,Year One (2009),Adventure|Comedy\r\n", "69453,\"Land That Time Forgot, The (1975)\",Adventure|Sci-Fi\r\n", "69469,Garfield's Pet Force (2009),Animation\r\n", "69481,\"Hurt Locker, The (2008)\",Action|Drama|Thriller|War\r\n", "69495,Breakfast with Scot (2007),Drama|Romance\r\n", "69516,\"Limits of Control, The (2009)\",Crime|Drama|Film-Noir\r\n", "69524,Raiders of the Lost Ark: The Adaptation (1989),Action|Adventure|Thriller\r\n", "69526,Transformers: Revenge of the Fallen (2009),Action|Adventure|Sci-Fi|IMAX\r\n", "69529,Home (2009),Documentary\r\n", "69604,Whatever Works (2009),Comedy|Romance\r\n", "69606,Ghosts of Girlfriends Past (2009),Comedy|Fantasy|Romance\r\n", "69640,Public Enemies (2009),Crime|Drama|Thriller\r\n", "69644,Ice Age: Dawn of the Dinosaurs (2009),Action|Adventure|Animation|Children|Comedy|Romance\r\n", "69654,Prison Break: The Final Break (2009),Action|Drama|Thriller\r\n", "69685,Daria: Is It College Yet? (2002),Animation|Comedy\r\n", "69712,My Sister's Keeper (2009),Drama\r\n", "69720,Hood of Horror (2006),Comedy|Drama|Horror\r\n", "69746,Watchmen: Tales of the Black Freighter (2009),Action|Adventure|Animation|Horror\r\n", "69757,(500) Days of Summer (2009),Comedy|Drama|Romance\r\n", "69784,Brüno (Bruno) (2009),Comedy\r\n", "69805,\"Librarian, The: The Curse of the Judas Chalice (2008)\",Action|Adventure|Fantasy\r\n", "69844,Harry Potter and the Half-Blood Prince (2009),Adventure|Fantasy|Mystery|Romance|IMAX\r\n", "69849,Roots (1977),Drama|War\r\n", "69860,Eichmann (2007),Drama|War\r\n", "69904,Open Water 2: Adrift (2006),Drama|Thriller\r\n", "69951,\"Imaginarium of Doctor Parnassus, The (2009)\",Drama|Fantasy\r\n", "69953,9to5: Days in Porn (a.k.a. 9 to 5: Days in Porn) (2008),Documentary\r\n", "69988,Humpday (2009),Comedy\r\n", "70015,Polytechnique (2009),Crime|Drama\r\n", "70159,Orphan (2009),Drama|Horror|Mystery|Thriller\r\n", "70183,\"Ugly Truth, The (2009)\",Comedy|Drama|Romance\r\n", "70206,\"Collector, The (2009)\",Crime|Horror|Thriller\r\n", "70208,\"Perfect Getaway, A (2009)\",Horror|Thriller\r\n", "70286,District 9 (2009),Mystery|Sci-Fi|Thriller\r\n", "70293,Julie & Julia (2009),Comedy|Drama|Romance\r\n", "70301,Obsessed (2009),Crime|Drama|Thriller\r\n", "70305,Race to Witch Mountain (2009),Adventure|Children|Fantasy|Sci-Fi|Thriller\r\n", "70334,Hannah Montana: The Movie (2009),Comedy|Drama|Musical|Romance\r\n", "70336,G.I. Joe: The Rise of Cobra (2009),Action|Adventure|Sci-Fi|Thriller\r\n", "70361,12 Rounds (2009),Action|Thriller\r\n", "70451,Max Manus (2008),Action|Drama|War\r\n", "70492,Winds of the Wasteland (1936),Western\r\n", "70521,Lost in Austen (2008),Drama|Fantasy|Romance|Sci-Fi\r\n", "70533,Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007),Action|Animation|Sci-Fi\r\n", "70545,\"Deal, The (2008)\",Comedy\r\n", "70565,\"Goods: Live Hard, Sell Hard, The (2009)\",Comedy\r\n", "70599,\"Time Traveler's Wife, The (2009)\",Drama|Romance|Sci-Fi\r\n", "70637,I Can't Think Straight (2007),Drama|Romance\r\n", "70641,Miss March (2009),Comedy\r\n", "70663,\"I Love You, Beth Cooper (2009)\",Comedy|Romance\r\n", "70687,Paper Heart (2009),Comedy|Documentary|Drama|Romance\r\n", "70697,G-Force (2009),Action|Adventure|Children|Fantasy\r\n", "70703,Christopher Columbus: The Discovery (1992),Adventure\r\n", "70708,Tetro (2009),Drama|Mystery\r\n", "70728,Bronson (2009),Action|Comedy|Drama|Thriller\r\n", "70862,It Might Get Loud (2008),Documentary\r\n", "70932,My Life in Ruins (2009),Comedy\r\n", "70946,Troll 2 (1990),Fantasy|Horror\r\n", "70984,Taking Woodstock (2009),Comedy\r\n", "70990,If These Walls Could Talk (1996),Drama\r\n", "70994,Halloween II (2009),Horror|Thriller\r\n", "71033,\"Secret in Their Eyes, The (El secreto de sus ojos) (2009)\",Crime|Drama|Mystery|Romance|Thriller\r\n", "71057,9 (2009),Adventure|Animation|Sci-Fi\r\n", "71106,Frequently Asked Questions About Time Travel (2009),Comedy|Sci-Fi\r\n", "71108,\"White Ribbon, The (Das weiße Band) (2009)\",Drama|Mystery\r\n", "71129,Green Lantern: First Flight (2009),Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "71131,\"Most Hated Family in America, The (2007)\",Documentary\r\n", "71135,Pandorum (2009),Horror|Sci-Fi|Thriller\r\n", "71147,Death of a Cyclist (Muerte de un ciclista) (1955),Drama\r\n", "71156,\"Men Who Stare at Goats, The (2009)\",Action|Comedy|Drama\r\n", "71160,\"Hunt For Gollum, The (2009)\",Action|Adventure|Fantasy\r\n", "71205,Jennifer's Body (2009),Comedy|Horror|Sci-Fi|Thriller\r\n", "71211,\"Informant!, The (2009)\",Comedy|Crime|Drama|Thriller\r\n", "71248,Extract (2009),Comedy\r\n", "71252,\"Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)\",Horror|Thriller\r\n", "71254,Gamer (2009),Action|Sci-Fi|Thriller\r\n", "71264,Cloudy with a Chance of Meatballs (2009),Animation|Children|Fantasy|IMAX\r\n", "71268,Tyler Perry's I Can Do Bad All by Myself (2009),Comedy|Drama\r\n", "71282,\"Food, Inc. (2008)\",Documentary\r\n", "71302,Attack of the 50 Foot Woman (1958),Comedy|Sci-Fi\r\n", "71304,Thirst (Bakjwi) (2009),Drama|Horror\r\n", "71327,Bright Star (2009),Drama|Romance\r\n", "71341,Blood Creek (a.k.a. Town Creek) (2009),Horror\r\n", "71379,Paranormal Activity (2009),Horror|Thriller\r\n", "71429,World's Greatest Dad (2009),Comedy|Drama\r\n", "71438,Still Walking (Aruitemo aruitemo) (2008),Drama\r\n", "71453,\"Blood of the Beasts (Sang des bêtes, Le) (1949)\",Documentary|Drama\r\n", "71462,\"Cove, The (2009)\",Documentary\r\n", "71464,\"Serious Man, A (2009)\",Comedy|Drama\r\n", "71466,City Island (2009),Comedy|Drama\r\n", "71468,Ink (2009),Action|Fantasy|Sci-Fi\r\n", "71484,Metropia (2009),Animation|Sci-Fi\r\n", "71494,\"Haunted World of El Superbeasto, The (2009)\",Action|Animation|Comedy|Horror|Thriller\r\n", "71500,Trick 'r Treat (2007),Comedy|Horror|Thriller\r\n", "71518,Whip It (2009),Comedy|Drama\r\n", "71520,\"Invention of Lying, The (2009)\",Comedy\r\n", "71530,Surrogates (2009),Action|Sci-Fi|Thriller\r\n", "71535,Zombieland (2009),Action|Comedy|Horror\r\n", "71550,Assassination of a High School President (2008),Comedy|Drama|Mystery\r\n", "71579,\"Education, An (2009)\",Drama|Romance\r\n", "71619,Coco Before Chanel (Coco avant Chanel) (2009),Drama\r\n", "71640,Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008),Documentary\r\n", "71668,Couples Retreat (2009),Comedy|Romance\r\n", "71732,I Sell the Dead (2008),Comedy|Horror\r\n", "71745,Where the Wild Things Are (2009),Adventure|Children|Drama|Fantasy|IMAX\r\n", "71810,Legionnaire (1998),Action|Adventure|Drama|War\r\n", "71823,\"New York, I Love You (2009)\",Drama|Romance\r\n", "71838,Law Abiding Citizen (2009),Drama|Thriller\r\n", "71867,\"Misfortunates, The (De helaasheid der dingen) (2009)\",Drama\r\n", "71899,Mary and Max (2009),Animation|Comedy|Drama\r\n", "71902,Spread (2009),Drama|Romance\r\n", "71910,\"Tournament, The (2009)\",Action\r\n", "71970,\"Princess and the Pirate, The (1944)\",Adventure|Comedy|Romance\r\n", "71999,Aelita: The Queen of Mars (Aelita) (1924),Action|Adventure|Drama|Fantasy|Romance|Sci-Fi|Thriller\r\n", "72011,Up in the Air (2009),Drama|Romance\r\n", "72104,Balance (1989),Animation|Drama|Mystery|Sci-Fi|Thriller\r\n", "72129,Saw VI (2009),Crime|Horror|Mystery|Thriller\r\n", "72142,Love Exposure (Ai No Mukidashi) (2008),Action|Comedy|Drama|Romance\r\n", "72165,Cirque du Freak: The Vampire's Assistant (2009),Action|Adventure|Comedy|Fantasy|Horror|Thriller\r\n", "72167,\"Boondock Saints II: All Saints Day, The (2009)\",Action|Crime|Drama|Thriller\r\n", "72171,Black Dynamite (2009),Action|Comedy\r\n", "72178,Welcome to Dongmakgol (2005),Comedy|Drama|War\r\n", "72224,Gentlemen Broncos (2009),Comedy\r\n", "72226,Fantastic Mr. Fox (2009),Adventure|Animation|Children|Comedy|Crime\r\n", "72294,\"Christmas Carol, A (2009)\",Animation|Children|Drama|Fantasy|IMAX\r\n", "72308,Battlestar Galactica: The Plan (2009),Action|Adventure|Drama|Sci-Fi\r\n", "72330,\"Private Lives of Pippa Lee, The (2009)\",Drama\r\n", "72356,Partly Cloudy (2009),Animation|Children|Comedy|Fantasy\r\n", "72378,2012 (2009),Action|Drama|Sci-Fi|Thriller\r\n", "72395,Precious (2009),Drama\r\n", "72405,Bad Lieutenant: Port of Call New Orleans (2009),Crime|Drama\r\n", "72407,\"Twilight Saga: New Moon, The (2009)\",Drama|Fantasy|Horror|Romance|Thriller\r\n", "72424,Derailed (2002),Action|Thriller\r\n", "72479,\"Messenger, The (2009)\",Drama|Romance|War\r\n", "72489,Ninja Assassin (2009),Action|Crime|Drama|Thriller\r\n", "72554,Cell 211 (Celda 211) (2009),Action|Drama\r\n", "72591,\"Patriot, The (1998)\",Action|Thriller\r\n", "72601,Teenage Mutant Ninja Turtles: Turtles Forever (2009),Action|Adventure|Animation|Comedy|Thriller\r\n", "72603,Merry Madagascar (2009),Animation\r\n", "72605,Brothers (2009),Drama|Thriller|War\r\n", "72624,Garage (2007),Drama\r\n", "72641,\"Blind Side, The (2009)\",Drama\r\n", "72692,Mickey's Once Upon a Christmas (1999),Animation|Comedy|Fantasy\r\n", "72694,Shrink (2009),Drama\r\n", "72696,Old Dogs (2009),Comedy\r\n", "72701,Planet 51 (2009),Adventure|Animation|Children|Comedy|Sci-Fi\r\n", "72714,Earthlings (2006),Documentary\r\n", "72720,\"Single Man, A (2009)\",Drama\r\n", "72731,\"Lovely Bones, The (2009)\",Crime|Drama|Fantasy|Horror|Thriller\r\n", "72733,Invictus (2009),Drama\r\n", "72737,\"Princess and the Frog, The (2009)\",Animation|Children|Fantasy|Musical|Romance\r\n", "72874,\"Peacekeeper, The (1997)\",Action\r\n", "72919,Did You Hear About the Morgans? (2009),Comedy|Crime|Drama|Romance\r\n", "72921,Snow White (1916),Fantasy|Romance\r\n", "72982,Alice (2009),Action|Adventure|Fantasy\r\n", "72998,Avatar (2009),Action|Adventure|Sci-Fi|IMAX\r\n", "73015,It's Complicated (2009),Comedy|Romance\r\n", "73017,Sherlock Holmes (2009),Action|Crime|Mystery|Thriller\r\n", "73023,Crazy Heart (2009),Drama|Romance\r\n", "73042,Alvin and the Chipmunks: The Squeakquel (2009),Animation|Children|Comedy|Musical\r\n", "73106,American Pie Presents: The Book of Love (American Pie 7: The Book of Love) (2009),Comedy\r\n", "73160,Sorority Babes in the Slimeball Bowl-O-Rama (1988),Comedy|Horror\r\n", "73211,Pontypool (2008),Horror|Thriller\r\n", "73266,Youth in Revolt (2009),Comedy|Drama|Romance\r\n", "73268,Daybreakers (2010),Action|Drama|Horror|Thriller\r\n", "73290,Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009),Drama\r\n", "73319,Leap Year (2010),Comedy|Romance\r\n", "73321,\"Book of Eli, The (2010)\",Action|Adventure|Drama\r\n", "73323,\"Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)\",Action|Crime|Mystery\r\n", "73344,\"Prophet, A (Un Prophète) (2009)\",Crime|Drama\r\n", "73386,Staten Island (2009),Crime|Drama\r\n", "73431,\"Maiden Heist, The (2009)\",Comedy|Crime\r\n", "73488,Blood: The Last Vampire (2009),Action|Horror|Thriller\r\n", "73499,MacGyver: Lost Treasure of Atlantis (1994),Action|Adventure\r\n", "73501,Pekka ja Pätkä Suezilla (1958),Comedy\r\n", "73515,Bart Got a Room (2008),Comedy|Romance\r\n", "73569,Project A 2 ('A' gai wak juk jap) (1987),Action|Comedy|Crime\r\n", "73676,Robin-B-Hood (Bo bui gai wak) (2006),Action|Comedy|Drama\r\n", "73681,\"Concert, Le (2009)\",Comedy|Drama\r\n", "73741,Ninja (2009),Action|Crime|Drama|Thriller\r\n", "73804,Asterix at the Olympic Games (Astérix aux jeux olympiques) (2008),Adventure|Children|Comedy|Fantasy\r\n", "73808,\"Chaser, The (Chugyeogja) (2008)\",Crime|Drama|Thriller\r\n", "73822,Meantime (1984),Comedy|Drama\r\n", "73854,\"Rudolph, the Red-Nosed Reindeer (1964)\",Adventure|Animation|Children|Fantasy|Musical\r\n", "73858,\"Dennis the Menace Christmas, A (2007)\",Comedy\r\n", "73876,Undisputed II: Last Man Standing (2006),Action|Crime|Drama\r\n", "73881,3 Idiots (2009),Comedy|Drama|Romance\r\n", "73929,Legion (2010),Action|Fantasy|Horror|Thriller\r\n", "74075,Stan Helsing (2009),Comedy|Horror\r\n", "74089,Peter Pan (1960),Children|Fantasy|Musical\r\n", "74095,Wicked City (Yôjû toshi) (1987),Animation|Fantasy|Horror|Sci-Fi\r\n", "74154,When in Rome (2010),Comedy|Romance\r\n", "74226,\"Dream of Light (a.k.a. Quince Tree Sun, The) (Sol del membrillo, El) (1992)\",Documentary|Drama\r\n", "74228,Triangle (2009),Drama|Horror|Mystery|Thriller\r\n", "74275,I Love You Phillip Morris (2009),Comedy|Drama|Romance\r\n", "74282,Anne of Green Gables: The Sequel (a.k.a. Anne of Avonlea) (1987),Children|Drama|Romance\r\n", "74324,Temple Grandin (2010),Drama\r\n", "74342,\"Captain Newman, M.D. (1963)\",Comedy|Drama|War\r\n", "74370,\"House of the Devil, The (2009)\",Horror|Thriller\r\n", "74450,Valentine's Day (2010),Comedy|Romance\r\n", "74452,\"Wolfman, The (2010)\",Horror|Thriller\r\n", "74458,Shutter Island (2010),Drama|Mystery|Thriller\r\n", "74508,Persuasion (2007),Drama|Romance\r\n", "74510,\"Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)\",Action|Crime|Drama|Mystery|Thriller\r\n", "74530,Percy Jackson & the Olympians: The Lightning Thief (2010),Adventure|Fantasy\r\n", "74532,Cop Out (2010),Action|Comedy|Crime\r\n", "74545,\"Ghost Writer, The (2010)\",Drama|Mystery|Thriller\r\n", "74553,\"Secret of Kells, The (2009)\",Animation|Fantasy\r\n", "74580,\"Spy Next Door, The (2010)\",Action|Children|Comedy\r\n", "74624,Agora (2009),Adventure|Drama|Romance\r\n", "74647,Motherhood (2009),Comedy\r\n", "74668,District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009),Action|Sci-Fi\r\n", "74677,\"Yes Men Fix the World, The (2009)\",Documentary\r\n", "74683,Mike Bassett: England Manager (2001),Comedy\r\n", "74685,\"Crazies, The (2010)\",Action|Drama|Horror|Sci-Fi|Thriller\r\n", "74688,Dear John (2010),Drama|Romance|War\r\n", "74696,Last Train Home (2009),Documentary|Drama\r\n", "74698,Tooth Fairy (2010),Comedy|Fantasy\r\n", "74727,Gentlemen of Fortune (Dzhentlmeny udachi) (1972),Comedy|Crime|Drama|Mystery\r\n", "74750,[REC]² (2009),Horror|Thriller\r\n", "74754,\"Room, The (2003)\",Comedy|Drama|Romance\r\n", "74789,Alice in Wonderland (2010),Adventure|Fantasy|IMAX\r\n", "74791,\"Town Called Panic, A (Panique au village) (2009)\",Animation\r\n", "74795,Green Zone (2010),Action|Drama|Thriller|War\r\n", "74851,From Paris with Love (2010),Action|Crime\r\n", "74868,Dorian Gray (2009),Drama|Horror|Sci-Fi\r\n", "74916,Greenberg (2010),Comedy|Drama\r\n", "74946,She's Out of My League (2010),Comedy\r\n", "74948,Harry Brown (2009),Crime|Drama|Thriller\r\n", "75341,Remember Me (2010),Drama|Romance\r\n", "75389,\"Burrowers, The (2008)\",Horror|Thriller|Western\r\n", "75395,Frozen (2010),Drama|Horror|Thriller\r\n", "75416,Generation X (1996),Action|Adventure|Sci-Fi\r\n", "75446,Little Ashes (2008),Drama\r\n", "75803,Our Family Wedding (2010),Comedy\r\n", "75805,\"Bounty Hunter, The (2010)\",Action|Comedy|Romance\r\n", "75813,Leaves of Grass (2009),Comedy|Crime|Drama|Thriller\r\n", "75816,Women in Trouble (2009),Comedy\r\n", "75947,Mondo Cane (1962),Documentary\r\n", "75985,Repo Men (2010),Action|Sci-Fi|Thriller\r\n", "76030,Case 39 (2009),Horror|Thriller\r\n", "76054,Oceans (Océans) (2009),Documentary|Drama\r\n", "76060,\"Slammin' Salmon, The (2009)\",Comedy\r\n", "76077,Hot Tub Time Machine (2010),Comedy|Sci-Fi\r\n", "76091,Mother (Madeo) (2009),Crime|Drama|Mystery|Thriller\r\n", "76093,How to Train Your Dragon (2010),Adventure|Animation|Children|Fantasy|IMAX\r\n", "76143,\"Bone Man, The (Der Knochenmann) (2009)\",Crime|Thriller\r\n", "76173,Micmacs (Micmacs à tire-larigot) (2009),Comedy|Crime\r\n", "76175,Clash of the Titans (2010),Action|Adventure|Drama|Fantasy\r\n", "76251,Kick-Ass (2010),Action|Comedy\r\n", "76293,Date Night (2010),Action|Comedy|Romance\r\n", "76301,\"Emperor's New Groove 2: Kronk's New Groove, The (2005)\",Animation|Children|Comedy|Romance\r\n", "76738,Steam of Life (Miesten vuoro) (2010),Documentary\r\n", "76743,Mortadelo & Filemon: The Big Adventure (La gran aventura de Mortadelo y Filemón) (2003),Action|Adventure|Comedy\r\n", "76751,American Drug War: The Last White Hope (2007),Crime|Documentary\r\n", "76763,\"Runaways, The (2010)\",Drama|Musical\r\n", "77177,Wild China (2008),Documentary\r\n", "77191,Death at a Funeral (2010),Comedy\r\n", "77201,Valhalla Rising (2009),Action|Drama|War\r\n", "77206,Diary of a Wimpy Kid (2010),Children|Comedy\r\n", "77233,\"Union: The Business Behind Getting High, The (2007)\",Comedy|Documentary\r\n", "77266,Disgrace (2008),Drama\r\n", "77364,\"Losers, The (2010)\",Action|Adventure|Drama|Mystery|Thriller\r\n", "77414,\"Last Song, The (2010)\",Drama|Romance\r\n", "77421,Cyrus (2010),Comedy|Drama|Romance\r\n", "77427,\"Human Centipede, The (First Sequence) (2009)\",Horror\r\n", "77455,Exit Through the Gift Shop (2010),Comedy|Documentary\r\n", "77561,Iron Man 2 (2010),Action|Adventure|Sci-Fi|Thriller|IMAX\r\n", "77667,MacGruber (2010),Action|Comedy\r\n", "77688,Three Men and a Cradle (3 hommes et un couffin) (1985),Comedy\r\n", "77709,\"Sky Crawlers, The (Sukai kurora) (2008)\",Adventure|Animation|Drama\r\n", "77795,Cargo (2009),Sci-Fi\r\n", "77798,\"Nightmare on Elm Street, A (2010)\",Fantasy|Horror|Thriller\r\n", "77800,Four Lions (2010),Comedy|Drama\r\n", "77841,St Trinian's 2: The Legend of Fritton's Gold (2009),Adventure|Comedy\r\n", "77846,12 Angry Men (1997),Crime|Drama\r\n", "77866,Robin Hood (2010),Action|Adventure|Drama|Romance|War\r\n", "77881,Lovers & Leavers (Kuutamolla) (2002),Drama|Romance\r\n", "77893,Merantau (2009),Action|Drama\r\n", "77931,Stingray Sam (2009),Comedy|Musical|Sci-Fi|Western\r\n", "78034,Cemetery Junction (2010),Comedy|Drama|Romance\r\n", "78039,Blue Valentine (2010),Drama|Romance\r\n", "78041,Killers (2010),Action|Comedy\r\n", "78088,Buried (2010),Mystery|Thriller\r\n", "78103,Shake Hands with the Devil (2007),Drama|War\r\n", "78105,Prince of Persia: The Sands of Time (2010),Action|Adventure|Fantasy|Romance|IMAX\r\n", "78116,Please Give (2010),Comedy|Drama\r\n", "78142,Baarìa (2009),Comedy|Drama|War\r\n", "78160,Ricky Gervais Live: Animals (2003),Comedy\r\n", "78174,Sex and the City 2 (2010),Comedy|Drama|Romance\r\n", "78209,Get Him to the Greek (2010),Comedy\r\n", "78218,Unthinkable (2010),Drama|Thriller\r\n", "78264,\"Back-up Plan, The (2010)\",Comedy|Romance\r\n", "78266,Splice (2009),Horror|Sci-Fi|Thriller\r\n", "78316,Letters to Juliet (2010),Drama|Romance\r\n", "78349,Exam (2009),Mystery|Thriller\r\n", "78467,Jonah Hex (2010),Action|Drama|Thriller|Western\r\n", "78469,\"A-Team, The (2010)\",Action|Comedy|Thriller\r\n", "78499,Toy Story 3 (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX\r\n", "78544,Ricky Gervais Live 3: Fame (2007),Comedy\r\n", "78574,Winter's Bone (2010),Drama|Thriller\r\n", "78620,\"Scalphunters, The (1968)\",Comedy|Western\r\n", "78626,Barking Dogs Never Bite (Flandersui gae) (2000),Comedy|Horror\r\n", "78637,Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX\r\n", "78703,TiMER (2009),Comedy|Drama|Fantasy|Romance\r\n", "78746,Best Worst Movie (2009),Documentary\r\n", "78772,\"Twilight Saga: Eclipse, The (2010)\",Fantasy|Romance|Thriller|IMAX\r\n", "78836,Enter the Void (2009),Drama\r\n", "78893,\"Last Airbender, The (2010)\",Action|Adventure|Fantasy\r\n", "78959,Endgame (2009),Drama\r\n", "79006,Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004),Documentary\r\n", "79008,South Park: Imaginationland (2008),Animation|Comedy|Fantasy\r\n", "79057,Predators (2010),Action|Sci-Fi|Thriller\r\n", "79073,When You're Strange (2009),Documentary\r\n", "79091,Despicable Me (2010),Animation|Children|Comedy|Crime\r\n", "79132,Inception (2010),Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX\r\n", "79134,Grown Ups (2010),Comedy\r\n", "79139,\"Sorcerer's Apprentice, The (2010)\",Action|Adventure|Children|Comedy|Fantasy\r\n", "79185,Knight and Day (2010),Action|Comedy|Romance\r\n", "79224,\"Karate Kid, The (2010)\",Action|Children|Drama\r\n", "79242,\"Kids Are All Right, The (2010)\",Comedy|Drama\r\n", "79251,\"Serbian Film, A (Srpski film) (2010)\",Horror|Thriller\r\n", "79259,Cherrybomb (2009),Drama|Thriller\r\n", "79274,Batman: Under the Red Hood (2010),Action|Animation\r\n", "79293,Salt (2010),Action|Thriller\r\n", "79299,\"No. 1 Ladies' Detective Agency, The (2008)\",Comedy|Crime|Mystery\r\n", "79333,Watch Out for the Automobile (Beregis avtomobilya) (1966),Comedy|Crime|Romance\r\n", "79357,Mr. Nobody (2009),Drama|Fantasy|Romance|Sci-Fi\r\n", "79428,Dinner for Schmucks (2010),Comedy\r\n", "79501,Deadly Outlaw: Rekka (a.k.a. Violent Fire) (Jitsuroku Andô Noboru kyôdô-den: Rekka) (2002),Crime|Drama|Thriller\r\n", "79536,Hellsinki (Rööperi) (2009),Crime\r\n", "79553,Ip Man 2 (2010),Action\r\n", "79572,Ramona and Beezus (2010),Children|Comedy\r\n", "79590,\"Rebound, The (2009)\",Comedy|Romance\r\n", "79592,\"Other Guys, The (2010)\",Action|Comedy\r\n", "79677,\"Two Escobars, The (2010)\",Crime|Documentary\r\n", "79684,Paper Man (2009),Comedy|Drama\r\n", "79695,\"Expendables, The (2010)\",Action|Adventure|Thriller\r\n", "79702,Scott Pilgrim vs. the World (2010),Action|Comedy|Fantasy|Musical|Romance\r\n", "79798,I Killed My Mother (J'ai tué ma mère) (2009),Drama\r\n", "79868,Heartless (2009),Fantasy|Horror|Mystery|Thriller\r\n", "79879,Piranha (Piranha 3D) (2010),Action|Horror|Thriller\r\n", "79895,\"Extraordinary Adventures of Adèle Blanc-Sec, The (2010)\",Action|Adventure|Fantasy|Mystery\r\n", "79897,Get Low (2009),Comedy|Drama|Mystery\r\n", "79946,\"Joneses, The (2009)\",Comedy|Drama\r\n", "80083,Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989),Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "80094,\"Last Exorcism, The (2010)\",Horror|Thriller\r\n", "80124,Sisters (Syostry) (2001),Action|Crime|Drama\r\n", "80126,\"American, The (2010)\",Drama|Thriller\r\n", "80139,Jackass 2.5 (2007),Comedy|Documentary\r\n", "80162,\"Horde, The (La Horde) (2009)\",Action|Horror|Thriller\r\n", "80166,\"Switch, The (2010)\",Comedy|Romance\r\n", "80219,Machete (2010),Action|Adventure|Comedy|Crime|Thriller\r\n", "80241,Going the Distance (2010),Comedy|Romance\r\n", "80363,Resident Evil: Afterlife (2010),Action|Horror|Sci-Fi|Thriller|IMAX\r\n", "80454,Princess (Prinsessa) (2010),Drama\r\n", "80463,\"Social Network, The (2010)\",Drama\r\n", "80478,\"Man Vanishes, A (Ningen Johatsu) (1967)\",Documentary|Drama|Mystery\r\n", "80489,\"Town, The (2010)\",Crime|Drama|Thriller\r\n", "80549,Easy A (2010),Comedy|Romance\r\n", "80551,Eat Pray Love (2010),Drama|Romance\r\n", "80553,Howl (2010),Drama\r\n", "80572,I'm Still Here (2010),Comedy|Drama\r\n", "80584,\"Patrik Age 1.5 (Patrik 1,5) (2008)\",Comedy|Drama|Romance\r\n", "80586,Flipped (2010),Comedy|Drama|Romance\r\n", "80590,Wall Street: Money Never Sleeps (2010),Drama\r\n", "80615,Legend of the Guardians: The Owls of Ga'Hoole (2010),Adventure|Animation|Fantasy|IMAX\r\n", "80693,It's Kind of a Funny Story (2010),Comedy|Drama\r\n", "80727,Middle Men (2009),Comedy|Crime|Drama\r\n", "80748,Alice in Wonderland (1933),Adventure|Children|Fantasy\r\n", "80831,Let Me In (2010),Drama|Horror|Mystery\r\n", "80834,Sintel (2010),Animation|Fantasy\r\n", "80839,Secretariat (2010),Adventure|Drama\r\n", "80846,Devil (2010),Horror|Mystery|Thriller\r\n", "80858,You Again (2010),Comedy\r\n", "80860,Life as We Know It (2010),Comedy|Romance\r\n", "80862,Catfish (2010),Documentary|Mystery\r\n", "80864,You Will Meet a Tall Dark Stranger (2010),Comedy|Romance\r\n", "80880,Stone (2010),Drama|Thriller\r\n", "80906,Inside Job (2010),Documentary\r\n", "80917,Monsters (2010),Drama|Sci-Fi\r\n", "80969,Never Let Me Go (2010),Drama|Romance|Sci-Fi\r\n", "81018,\"Illusionist, The (L'illusionniste) (2010)\",Animation\r\n", "81087,Luck by Chance (2009),Drama\r\n", "81132,Rubber (2010),Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western\r\n", "81156,Jackass 3D (2010),Action|Comedy|Documentary\r\n", "81158,Restrepo (2010),Documentary|War\r\n", "81191,Waiting for 'Superman' (2010),Documentary\r\n", "81229,Red (2010),Action|Comedy\r\n", "81257,In a Better World (Hævnen) (2010),Drama\r\n", "81383,Heartbreaker (L'Arnacoeur) (2010),Comedy|Romance\r\n", "81417,Paranormal Activity 2 (2010),Horror|IMAX\r\n", "81456,Heartbeats (Les amours imaginaires) (2010),Drama|Romance\r\n", "81512,Hereafter (2010),Drama|Fantasy\r\n", "81520,Undisputed III: Redemption (2010),Action|Crime|Drama\r\n", "81535,Saw VII 3D - The Final Chapter (2010),Horror|Mystery|Thriller\r\n", "81537,Due Date (2010),Comedy\r\n", "81562,127 Hours (2010),Adventure|Drama|Thriller\r\n", "81564,Megamind (2010),Action|Animation|Children|Comedy|Sci-Fi|IMAX\r\n", "81591,Black Swan (2010),Drama|Thriller\r\n", "81681,I Shot Jesse James (1949),Drama|Romance|Western\r\n", "81782,Unstoppable (2010),Action|Drama|Thriller\r\n", "81784,Morning Glory (2010),Comedy|Drama|Romance\r\n", "81786,Certified Copy (Copie conforme) (2010),Drama\r\n", "81788,\"Next Three Days, The (2010)\",Crime|Drama|Romance|Thriller\r\n", "81791,Somewhere (2010),Drama\r\n", "81819,Biutiful (2010),Drama\r\n", "81831,\"First Beautiful Thing, The (La prima cosa bella) (2010)\",Comedy|Drama\r\n", "81834,Harry Potter and the Deathly Hallows: Part 1 (2010),Action|Adventure|Fantasy|IMAX\r\n", "81845,\"King's Speech, The (2010)\",Drama\r\n", "81847,Tangled (2010),Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX\r\n", "81910,\"Art of the Steal, The (2009)\",Documentary\r\n", "81932,\"Fighter, The (2010)\",Drama\r\n", "81949,\"Romantics, The (2010)\",Comedy|Drama|Romance\r\n", "82041,\"Loved Ones, The (2009)\",Horror\r\n", "82053,Casino Jack (2010),Comedy|Crime\r\n", "82088,Vincent Wants to Sea (Vincent will meer) (2010),Drama\r\n", "82093,London Boulevard (2010),Crime|Romance\r\n", "82095,Skyline (2010),Sci-Fi|Thriller\r\n", "82152,Beastly (2011),Drama|Fantasy|Romance\r\n", "82167,Love and Other Drugs (2010),Comedy|Drama|Romance\r\n", "82169,\"Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)\",Adventure|Children|Fantasy\r\n", "82202,\"Tourist, The (2010)\",Drama|Thriller\r\n", "82242,Rare Exports: A Christmas Tale (Rare Exports) (2010),Action|Comedy\r\n", "82366,Hatchet II (2010),Comedy|Horror|Thriller\r\n", "82378,All Good Things (2010),Drama|Mystery|Thriller\r\n", "82459,True Grit (2010),Western\r\n", "82461,Tron: Legacy (2010),Action|Adventure|Sci-Fi|IMAX\r\n", "82499,How Do You Know (2010),Comedy|Drama|Romance\r\n", "82527,Barney's Version (2010),Drama\r\n", "82534,\"Company Men, The (2010)\",Drama\r\n", "82641,\"One-Armed Swordsman, The (Dubei dao) (1967)\",Action|Drama\r\n", "82667,I Saw the Devil (Akmareul boatda) (2010),Crime|Thriller\r\n", "82684,Trash Humpers (2009),Drama\r\n", "82744,Faster (2010),Action|Crime|Drama\r\n", "82765,Little Big Soldier (Da bing xiao jiang) (2010),Action|Adventure|Comedy|Drama|War\r\n", "82767,Rabbit Hole (2010),Drama\r\n", "82848,One Week (1920),Comedy\r\n", "82852,Little Fockers (2010),Comedy\r\n", "82854,Gulliver's Travels (2010),Adventure|Comedy|Fantasy\r\n", "82857,Sweetgrass (2009),Adventure|Documentary|Western\r\n", "83086,Burlesque (2010),Drama|Musical|Romance\r\n", "83132,\"Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)\",Animation|Children|Fantasy\r\n", "83134,Tucker & Dale vs Evil (2010),Comedy|Horror\r\n", "83177,Yogi Bear (2010),Children|Comedy\r\n", "83270,Made in Dagenham (2010),Comedy|Drama\r\n", "83349,\"Green Hornet, The (2011)\",Action|Comedy|Crime|Fantasy|Thriller|IMAX\r\n", "83369,\"Way Back, The (2010)\",Drama\r\n", "83374,\"Warrior's Way, The (2010)\",Action|Fantasy|Western\r\n", "83480,Season of the Witch (2011),Adventure|Drama|Fantasy\r\n", "83601,Amer (2009),Drama|Horror\r\n", "83613,Cowboys & Aliens (2011),Action|Sci-Fi|Thriller|Western|IMAX\r\n", "83796,Anything for Her (Pour elle) (2008),Crime|Drama|Thriller\r\n", "83803,Day & Night (2010),Animation|Children\r\n", "83827,Marwencol (2010),Documentary\r\n", "83910,\"Dilemma, The (2011)\",Comedy|Drama\r\n", "83969,Down Argentine Way (1940),Comedy|Drama|Romance\r\n", "83976,\"Trip, The (2010)\",Comedy|Drama\r\n", "84152,Limitless (2011),Sci-Fi|Thriller\r\n", "84156,Happy People: A Year in the Taiga (2010),Documentary\r\n", "84187,Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009),Action|Animation|Drama|Sci-Fi\r\n", "84189,I Spit on Your Grave (2010),Crime|Horror|Thriller\r\n", "84240,Even the Rain (También la lluvia) (2010),Drama\r\n", "84246,It Happened on Fifth Avenue (1947),Comedy|Romance\r\n", "84273,Zeitgeist: Moving Forward (2011),Documentary\r\n", "84374,No Strings Attached (2011),Comedy|Romance\r\n", "84392,\"Lincoln Lawyer, The (2011)\",Crime|Drama|Thriller\r\n", "84414,All-Star Superman (2011),Action|Adventure|Animation|Sci-Fi\r\n", "84512,Girls About Town (1931),Comedy\r\n", "84523,Kill! (Kiru) (1968),Action|Comedy|Drama\r\n", "84553,Pekka ja Pätkä salapoliiseina (1957),Comedy\r\n", "84601,Unknown (2011),Drama|Mystery|Thriller\r\n", "84615,Cedar Rapids (2011),Comedy\r\n", "84637,Gnomeo & Juliet (2011),Adventure|Animation|Children|Comedy|Fantasy|Romance\r\n", "84696,Burke and Hare (2010),Comedy|Thriller\r\n", "84716,Castaway on the Moon (Kimssi pyoryugi) (2009),Comedy|Drama|Romance\r\n", "84772,Paul (2011),Adventure|Comedy|Sci-Fi\r\n", "84799,\"Asphyx, The (1973)\",Horror|Sci-Fi\r\n", "84844,Brother 2 (Brat 2) (2000),Crime|Drama\r\n", "84847,Emma (2009),Comedy|Drama|Romance\r\n", "84942,Drive Angry (2011),Action|Fantasy|Thriller\r\n", "84944,Rango (2011),Action|Adventure|Animation|Children|Comedy|Western\r\n", "84950,Take Me Home Tonight (2011),Comedy|Drama\r\n", "84952,Confessions (Kokuhaku) (2010),Drama|Horror\r\n", "84954,\"Adjustment Bureau, The (2011)\",Romance|Sci-Fi|Thriller\r\n", "85020,\"Mechanic, The (2011)\",Action|Drama|Thriller\r\n", "85022,Hall Pass (2011),Comedy\r\n", "85025,\"Eagle, The (2011)\",Adventure|Drama\r\n", "85056,I Am Number Four (2011),Action|Sci-Fi|Thriller|IMAX\r\n", "85131,Battle: Los Angeles (2011),Action|Sci-Fi|War\r\n", "85179,Summer Wars (Samâ wôzu) (2009),Adventure|Animation|Comedy|Sci-Fi\r\n", "85213,\"Sunset Limited, The (2011)\",Drama\r\n", "85259,Winnie the Pooh and the Honey Tree (1966),Animation|Children\r\n", "85261,Mars Needs Moms (2011),Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX\r\n", "85295,Scooby-Doo! Curse of the Lake Monster (2010),Adventure|Children|Comedy|Mystery\r\n", "85316,Winnie the Pooh and Tigger Too (1974),Animation|Children\r\n", "85334,Hard Ticket to Hawaii (1987),Action|Comedy\r\n", "85342,Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro) (2010),Action|Crime|Drama\r\n", "85354,Mesrine: Public Enemy #1 (L'ennemi public n°1) (2008),Action|Crime\r\n", "85367,Just Go with It (2011),Comedy|Romance\r\n", "85394,Cave of Forgotten Dreams (2010),Documentary\r\n", "85397,Red Riding Hood (2011),Fantasy|Horror|Mystery|Thriller\r\n", "85399,\"Big Mommas: Like Father, Like Son (2011)\",Comedy\r\n", "85401,Super (2010),Action|Comedy|Drama\r\n", "85412,\"Troll Hunter, The (Trolljegeren) (2010)\",Fantasy|Horror\r\n", "85414,Source Code (2011),Action|Drama|Mystery|Sci-Fi|Thriller\r\n", "85438,Jane Eyre (2011),Drama|Romance\r\n", "85510,Sucker Punch (2011),Action|Fantasy|Thriller|IMAX\r\n", "85565,Chalet Girl (2011),Comedy|Romance\r\n", "85736,BURN-E (2008),Adventure|Animation|Children|Sci-Fi\r\n", "85774,Senna (2010),Documentary\r\n", "85780,Family Guy Presents: It's a Trap (2010),Animation|Comedy|Sci-Fi\r\n", "85788,Insidious (2010),Fantasy|Horror|Thriller\r\n", "85796,Hobo with a Shotgun (2011),Action|Adventure|Crime|Thriller\r\n", "85881,Win Win (2011),Comedy|Drama\r\n", "85885,Room in Rome (Habitación en Roma) (2010),Drama|Romance\r\n", "86000,Boy (2010),Comedy|Drama\r\n", "86014,Diary of a Wimpy Kid: Rodrick Rules (2011),Comedy\r\n", "86028,Henry's Crime (2010),Comedy|Crime\r\n", "86059,Hop (2011),Animation|Children|Comedy\r\n", "86066,Playing the Victim (Izobrazhaya zhertvu) (2006),Comedy\r\n", "86068,Films to Keep You Awake: The Christmas Tale (Películas para no dormir: Cuento de navidad) (2005),Horror|Thriller\r\n", "86142,13 Assassins (Jûsan-nin no shikaku) (2010),Action\r\n", "86190,Hanna (2011),Action|Adventure|Mystery|Thriller\r\n", "86237,Connections (1978),Documentary\r\n", "86279,Into Eternity (2010),Documentary\r\n", "86286,Daffy Duck's Quackbusters (1988),Animation|Children|Comedy|Horror\r\n", "86290,American: The Bill Hicks Story (2009),Comedy|Documentary\r\n", "86293,Arthur (2011),Comedy\r\n", "86295,Scream 4 (2011),Comedy|Horror|Mystery|Thriller\r\n", "86298,Rio (2011),Adventure|Animation|Children|Comedy\r\n", "86320,Melancholia (2011),Drama|Sci-Fi\r\n", "86332,Thor (2011),Action|Adventure|Drama|Fantasy|IMAX\r\n", "86345,Louis C.K.: Hilarious (2010),Comedy\r\n", "86347,Louis C.K.: Chewed Up (2008),Comedy\r\n", "86355,Atlas Shrugged: Part 1 (2011),Drama|Mystery|Sci-Fi\r\n", "86377,Louis C.K.: Shameless (2007),Comedy\r\n", "86487,Mildred Pierce (2011),Drama\r\n", "86504,Voices from the List (2004),Documentary\r\n", "86548,Water for Elephants (2011),Drama|Romance\r\n", "86593,African Cats (2011),Adventure|Documentary\r\n", "86628,Kill the Irishman (2011),Action|Crime\r\n", "86644,\"Fast Five (Fast and the Furious 5, The) (2011)\",Action|Crime|Drama|Thriller|IMAX\r\n", "86668,Louis Theroux: Law & Disorder (2008),Documentary\r\n", "86721,Idiots and Angels (2008),Animation|Drama|Fantasy\r\n", "86781,Incendies (2010),Drama|Mystery|War\r\n", "86815,Soul Surfer (2011),Action|Drama\r\n", "86817,Something Borrowed (2011),Comedy|Drama|Romance\r\n", "86833,Bridesmaids (2011),Comedy\r\n", "86835,Priest (2011),Action|Horror|Sci-Fi|Thriller\r\n", "86864,Mothra (Mosura) (1961),Adventure|Fantasy|Sci-Fi\r\n", "86880,Pirates of the Caribbean: On Stranger Tides (2011),Action|Adventure|Fantasy|IMAX\r\n", "86882,Midnight in Paris (2011),Comedy|Fantasy|Romance\r\n", "86892,The Man from Nowhere (2010),Action|Crime|Thriller\r\n", "86898,\"Tree of Life, The (2011)\",Drama\r\n", "86911,\"Hangover Part II, The (2011)\",Comedy\r\n", "86922,Nothing to Declare (Rien à déclarer) (2010),Comedy\r\n", "86960,Across the Hall (2009),Thriller\r\n", "87028,\"Roommate, The (2011)\",Drama|Thriller\r\n", "87192,Attack the Block (2011),Action|Comedy|Sci-Fi\r\n", "87194,The Way (2010),Adventure|Comedy|Drama\r\n", "87197,Let the Bullets Fly (2010),Action|Comedy\r\n", "87222,Kung Fu Panda 2 (2011),Action|Adventure|Animation|Children|Comedy|IMAX\r\n", "87232,X-Men: First Class (2011),Action|Adventure|Sci-Fi|Thriller|War\r\n", "87234,Submarine (2010),Comedy|Drama|Romance\r\n", "87287,American Grindhouse (2010),Documentary\r\n", "87298,Everything Must Go (2010),Comedy|Drama\r\n", "87304,Beginners (2010),Drama\r\n", "87306,Super 8 (2011),Mystery|Sci-Fi|Thriller|IMAX\r\n", "87413,Bernie (1996),Comedy|Drama\r\n", "87430,Green Lantern (2011),Action|Adventure|Sci-Fi\r\n", "87444,Elektra Luxx (2010),Comedy\r\n", "87483,Mr. Popper's Penguins (2011),Comedy\r\n", "87485,Bad Teacher (2011),Comedy\r\n", "87520,Transformers: Dark of the Moon (2011),Action|Adventure|Sci-Fi|War|IMAX\r\n", "87522,Larry Crowne (2011),Comedy|Drama|Romance\r\n", "87529,Your Highness (2011),Action|Adventure|Comedy|Fantasy\r\n", "87660,Too Big to Fail (2011),Drama\r\n", "87785,Takers (2010),Action|Crime|Thriller\r\n", "87834,My Life as McDull (Mak dau goo si) (2001),Animation|Comedy|Drama\r\n", "87867,Zookeeper (2011),Comedy\r\n", "87869,Horrible Bosses (2011),Comedy|Crime\r\n", "87876,Cars 2 (2011),Adventure|Animation|Children|Comedy|IMAX\r\n", "87960,Between the Folds (2008),Documentary\r\n", "88069,Delhi Belly (2011),Comedy|Crime\r\n", "88094,Upside Down: The Creation Records Story (2010),Documentary\r\n", "88108,Monte Carlo (2011),Adventure|Comedy|Romance\r\n", "88125,Harry Potter and the Deathly Hallows: Part 2 (2011),Action|Adventure|Drama|Fantasy|Mystery|IMAX\r\n", "88129,Drive (2011),Crime|Drama|Film-Noir|Thriller\r\n", "88140,Captain America: The First Avenger (2011),Action|Adventure|Sci-Fi|Thriller|War\r\n", "88163,\"Crazy, Stupid, Love. (2011)\",Comedy|Drama|Romance\r\n", "88179,One Day (2011),Drama|Romance\r\n", "88235,\"Guard, The (2011)\",Comedy|Crime\r\n", "88267,Winnie the Pooh (2011),Animation|Children|Comedy\r\n", "88272,\"Woman, The (2011)\",Horror\r\n", "88327,\"New One-Armed Swordsman, The (Xin du bi dao) (1971)\",Action|Drama|War\r\n", "88345,Mike's New Car (2002),Animation|Comedy\r\n", "88356,\"Smurfs, The (2011)\",Animation|Children|Comedy\r\n", "88405,Friends with Benefits (2011),Comedy|Romance\r\n", "88448,Paper Birds (Pájaros de papel) (2010),Comedy|Drama\r\n", "88515,Blitz (2011),Action|Crime|Thriller\r\n", "88593,\"Yellow Sea, The (a.k.a. The Murderer) (Hwanghae) (2010)\",Crime|Drama|Thriller\r\n", "88672,Our Idiot Brother (2011),Comedy\r\n", "88697,SUBWAYStories: Tales from the Underground (1997),Drama\r\n", "88699,Death Race 2 (2010),Action|Sci-Fi|Thriller\r\n", "88744,Rise of the Planet of the Apes (2011),Action|Drama|Sci-Fi|Thriller\r\n", "88746,Terri (2011),Comedy\r\n", "88785,\"Change-Up, The (2011)\",Comedy\r\n", "88810,\"Help, The (2011)\",Drama\r\n", "88812,30 Minutes or Less (2011),Action|Comedy|Crime\r\n", "88911,My Afternoons with Margueritte (La tête en friche) (2010),Comedy\r\n", "88932,Final Destination 5 (2011),Horror|Thriller|IMAX\r\n", "88954,\"Very Harold & Kumar 3D Christmas, A (2011)\",Comedy\r\n", "89028,Don't Be Afraid of the Dark (2010),Horror|Thriller\r\n", "89030,Fright Night (2011),Comedy|Horror\r\n", "89039,Another Earth (2011),Drama|Romance|Sci-Fi\r\n", "89047,Hesher (2010),Drama\r\n", "89072,Stake Land (2010),Horror\r\n", "89085,\"Debt, The (2011)\",Drama|Thriller\r\n", "89087,Colombiana (2011),Action|Adventure|Drama|Thriller\r\n", "89090,Bill Cunningham New York (2011),Documentary\r\n", "89118,\"Skin I Live In, The (La piel que habito) (2011)\",Drama\r\n", "89190,Conan the Barbarian (2011),Action|Adventure|Fantasy\r\n", "89208,Walled In (2009),Horror|Thriller\r\n", "89281,Birdemic: Shock and Terror (2010),Romance|Thriller\r\n", "89305,\"Inbetweeners Movie, The (2011)\",Adventure|Comedy\r\n", "89343,Red State (2011),Action|Crime|Horror|Thriller\r\n", "89386,Pearl Jam Twenty (2011),Documentary|Musical\r\n", "89388,I Don't Know How She Does It (2011),Comedy\r\n", "89427,Shark Night 3D (2011),Horror|Thriller\r\n", "89470,Contagion (2011),Sci-Fi|Thriller|IMAX\r\n", "89492,Moneyball (2011),Drama\r\n", "89580,Neds (2010),Drama\r\n", "89582,Cold Fish (Tsumetai nettaigyo) (2010),Drama|Thriller\r\n", "89586,Phineas and Ferb the Movie: Across the 2nd Dimension (2011),Adventure|Animation|Children\r\n", "89678,Northanger Abbey (2007),Drama|Romance\r\n", "89745,\"Avengers, The (2012)\",Action|Adventure|Sci-Fi|IMAX\r\n", "89753,Tinker Tailor Soldier Spy (2011),Drama|Film-Noir|Thriller\r\n", "89759,\"Separation, A (Jodaeiye Nader az Simin) (2011)\",Drama\r\n", "89761,\"Dangerous Method, A (2011)\",Drama|Thriller\r\n", "89774,Warrior (2011),Drama\r\n", "89804,\"Ides of March, The (2011)\",Drama\r\n", "89837,Kill List (2011),Horror|Mystery|Thriller\r\n", "89840,Killer Elite (2011),Action|Thriller\r\n", "89862,Bellflower (2011),Action|Drama|Romance\r\n", "89864,50/50 (2011),Comedy|Drama\r\n", "89898,Generation P (2011),Comedy|Drama|Sci-Fi\r\n", "89904,The Artist (2011),Comedy|Drama|Romance\r\n", "89939,Gigi (1949),Comedy\r\n", "89945,BlinkyTM (2011),Horror|Sci-Fi\r\n", "90057,Take Shelter (2011),Drama\r\n", "90243,Three Outlaw Samurai (Sanbiki no samurai) (1964),Action|Drama\r\n", "90245,Antonio Gaudí (1985),Documentary\r\n", "90249,Real Steel (2011),Action|Drama|Sci-Fi|IMAX\r\n", "90343,Footloose (2011),Comedy|Drama|Musical\r\n", "90345,\"Thing, The (2011)\",Horror|Mystery|Sci-Fi|Thriller\r\n", "90353,Beautiful Boy (2010),Drama\r\n", "90357,Tyrannosaur (2011),Drama\r\n", "90374,Martha Marcy May Marlene (2011),Drama|Thriller\r\n", "90376,We Need to Talk About Kevin (2011),Drama|Thriller\r\n", "90384,Behind Enemy Lines II: Axis of Evil (2006),Action|Thriller|War\r\n", "90403,\"Three Musketeers, The (2011)\",Action|Adventure\r\n", "90405,In Time (2011),Crime|Sci-Fi|Thriller\r\n", "90428,Margaret (2011),Drama\r\n", "90430,Carnage (2011),Comedy|Drama\r\n", "90439,Margin Call (2011),Drama|Thriller\r\n", "90469,Paranormal Activity 3 (2011),Horror\r\n", "90471,Puncture (2011),Drama\r\n", "90522,Johnny English Reborn (2011),Adventure|Comedy|Thriller\r\n", "90524,Abduction (2011),Action|Drama|Mystery|Thriller\r\n", "90528,This Must Be the Place (2011),Crime|Drama|Thriller\r\n", "90531,Shame (2011),Drama\r\n", "90576,What's Your Number? (2011),Comedy|Romance\r\n", "90600,Headhunters (Hodejegerne) (2011),Action|Crime|Thriller\r\n", "90603,Batman: Year One (2011),Action|Animation|Crime\r\n", "90630,Miss Representation (2011),Documentary\r\n", "90647,Puss in Boots (2011),Adventure|Animation|Comedy|Fantasy|IMAX\r\n", "90717,Tower Heist (2011),Action|Comedy|Crime\r\n", "90719,J. Edgar (2011),Drama\r\n", "90738,\"Double, The (2011)\",Action|Crime|Drama|Mystery|Thriller\r\n", "90746,\"Adventures of Tintin, The (2011)\",Action|Animation|Mystery|IMAX\r\n", "90769,Starsuckers (2009),Documentary\r\n", "90809,Tomboy (2011),Drama\r\n", "90863,George Harrison: Living in the Material World (2011),Documentary\r\n", "90866,Hugo (2011),Children|Drama|Mystery\r\n", "90888,Immortals (2011),Action|Drama|Fantasy\r\n", "90890,Jack and Jill (2011),Comedy\r\n", "90943,Into the Abyss (2011),Documentary\r\n", "90945,\"Sign of Four, The (1987)\",Adventure|Crime|Drama\r\n", "91077,\"Descendants, The (2011)\",Comedy|Drama\r\n", "91079,Like Crazy (2011),Drama|Romance\r\n", "91094,\"Muppets, The (2011)\",Children|Comedy|Musical\r\n", "91104,\"Twilight Saga: Breaking Dawn - Part 1, The (2011)\",Adventure|Drama|Fantasy|Romance\r\n", "91126,War Horse (2011),Drama|War\r\n", "91128,\"Rum Diary, The (2011)\",Comedy|Drama|Thriller\r\n", "91233,Lifted (2006),Animation|Comedy|Sci-Fi\r\n", "91261,Hipsters (Stilyagi) (2008),Drama|Musical|Romance\r\n", "91266,Another Cinderella Story (2008),Children|Comedy|Musical|Romance\r\n", "91273,Bunraku (2010),Action|Drama|Fantasy\r\n", "91323,\"Sitter, The (2011)\",Comedy\r\n", "91325,Extremely Loud and Incredibly Close (2011),Drama\r\n", "91337,Play the Game (2009),Comedy|Romance\r\n", "91353,Asterix in America (a.k.a Asterix Conquers America) (Astérix et les Indiens) (1994),Adventure|Animation|Children|Comedy\r\n", "91355,Asterix and the Vikings (Astérix et les Vikings) (2006),Adventure|Animation|Children|Comedy|Fantasy\r\n", "91386,Happy Feet Two (2011),Animation|Children|Comedy|IMAX\r\n", "91414,Arthur Christmas (2011),Animation|Children|Comedy|Drama\r\n", "91470,Violet & Daisy (2011),Action|Drama\r\n", "91483,Bullet to the Head (2012),Action|Crime|Film-Noir\r\n", "91485,\"Expendables 2, The (2012)\",Action|Adventure\r\n", "91488,\"Snowman, The (1982)\",Animation|Children|Musical\r\n", "91500,The Hunger Games (2012),Action|Adventure|Drama|Sci-Fi|Thriller\r\n", "91529,\"Dark Knight Rises, The (2012)\",Action|Adventure|Crime|IMAX\r\n", "91535,\"Bourne Legacy, The (2012)\",Action|Adventure|Drama|Thriller|IMAX\r\n", "91542,Sherlock Holmes: A Game of Shadows (2011),Action|Adventure|Comedy|Crime|Mystery|Thriller\r\n", "91571,Coriolanus (2011),Drama|Thriller\r\n", "91622,Young Adult (2011),Comedy|Drama\r\n", "91628,New Year's Eve (2011),Comedy|Romance\r\n", "91630,Mission: Impossible - Ghost Protocol (2011),Action|Adventure|Thriller|IMAX\r\n", "91653,We Bought a Zoo (2011),Comedy|Drama\r\n", "91658,\"Girl with the Dragon Tattoo, The (2011)\",Drama|Thriller\r\n", "91660,\"Darkest Hour, The (2011)\",Action|Horror|Sci-Fi|Thriller\r\n", "91666,Last Holiday (1950),Comedy|Drama|Romance\r\n", "91671,Alvin and the Chipmunks: Chipwrecked (2011),Animation|Comedy\r\n", "91688,Salvation Boulevard (2011),Comedy|Thriller\r\n", "91690,Friends with Kids (2011),Comedy\r\n", "91784,Girl Walks Into a Bar (2011),Comedy|Drama|Fantasy\r\n", "91842,Contraband (2012),Action|Crime|Drama|Thriller\r\n", "91860,\"Way South, The (De weg naar het zuiden) (1981)\",Documentary\r\n", "91869,Being Elmo: A Puppeteer's Journey (2011),Documentary\r\n", "91873,Joyful Noise (2012),Comedy|Musical\r\n", "91890,\"Iron Lady, The (2011)\",Drama\r\n", "91935,Albatross (2011),Drama\r\n", "91947,\"Revenant, The (2009)\",Comedy|Horror\r\n", "91974,Underworld: Awakening (2012),Action|Fantasy|Horror|IMAX\r\n", "91976,\"Grey, The (2012)\",Action|Drama\r\n", "91978,Man on a Ledge (2012),Crime|Thriller\r\n", "91981,Sacrifice (Zhao shi gu er) (2010),Drama\r\n", "92008,Haywire (2011),Action|Thriller\r\n", "92046,Contact High (2009),Comedy\r\n", "92048,\"Whistleblower, The (2010)\",Drama|Thriller\r\n", "92094,Einstein and Eddington (2008),Drama\r\n", "92192,Apollo 18 (2011),Horror|Sci-Fi|Thriller\r\n", "92198,Seeking Justice (2011),Action|Drama|Thriller\r\n", "92234,Red Tails (2012),Action|Adventure|Drama|War\r\n", "92243,\"Flowers of War, The (Jin líng shí san chai) (2011)\",Drama|War\r\n", "92259,Intouchables (2011),Comedy|Drama\r\n", "92264,One for the Money (2012),Action|Comedy|Crime\r\n", "92309,\"Innkeepers, The (2011)\",Horror|Thriller\r\n", "92348,Puss in Boots (Nagagutsu o haita neko) (1969),Adventure|Animation|Children|Comedy|Fantasy|Romance\r\n", "92391,Grave Encounters (2011),Horror\r\n", "92420,Chronicle (2012),Action|Sci-Fi|Thriller\r\n", "92422,\"Woman in Black, The (2012)\",Drama|Horror|Thriller\r\n", "92427,Woman in Love (Rubbeldiekatz) (2011),Comedy\r\n", "92439,\"Art of Getting By, The (2011)\",Drama|Romance\r\n", "92475,All Watched Over by Machines of Loving Grace (2011),Documentary\r\n", "92494,Dylan Moran: Monster (2004),Comedy|Documentary\r\n", "92507,Safe House (2012),Action|Crime|Mystery|Thriller\r\n", "92509,\"Vow, The (2012)\",Drama|Romance\r\n", "92535,Louis C.K.: Live at the Beacon Theater (2011),Comedy\r\n", "92637,Pitfall (Otoshiana) (1962),Crime|Drama|Fantasy\r\n", "92643,Monsieur Lazhar (2011),Children|Comedy|Drama\r\n", "92665,\"For a Good Time, Call... (2012)\",Comedy|Drama|Romance\r\n", "92674,Janie Jones (2010),Drama|Musical\r\n", "92681,Journey 2: The Mysterious Island (2012),Action|Adventure|Comedy|Sci-Fi|IMAX\r\n", "92694,Perfect Sense (2011),Drama|Romance|Sci-Fi\r\n", "92730,Rollo and the Woods Sprite (Rölli ja metsänhenki) (2001),Children|Fantasy\r\n", "92760,\"Atomic Brain, The (1963)\",Horror|Sci-Fi\r\n", "92938,Ghost Rider: Spirit of Vengeance (2012),Action|Fantasy|Thriller\r\n", "92954,Prayers for Bobby (2009),Drama\r\n", "93006,\"Very Potter Musical, A (2009)\",Comedy|Musical\r\n", "93008,\"Very Potter Sequel, A (2010)\",Comedy|Musical\r\n", "93022,Miss Nobody (2010),Comedy|Crime\r\n", "93040,\"Civil War, The (1990)\",Documentary|War\r\n", "93114,Ro.Go.Pa.G. (1963),Comedy|Drama\r\n", "93134,\"Women on the 6th Floor, The (Les Femmes du 6ème Étage) (2010)\",Comedy\r\n", "93139,Mega Shark vs. Crocosaurus (2010),Action|Adventure|Horror\r\n", "93193,Red Hill (2010),Crime|Thriller|Western\r\n", "93208,Mickey's The Prince and the Pauper (1990),Animation|Children\r\n", "93242,Gone (2012),Drama|Thriller\r\n", "93270,Project X (2012),Comedy\r\n", "93272,Dr. Seuss' The Lorax (2012),Animation|Fantasy|Musical|IMAX\r\n", "93287,\"Big Year, The (2011)\",Comedy\r\n", "93297,Act of Valor (2012),Action|Thriller|War\r\n", "93320,Trailer Park Boys (1999),Comedy|Crime\r\n", "93326,This Means War (2012),Action|Comedy|Romance\r\n", "93363,John Carter (2012),Action|Adventure|Sci-Fi|IMAX\r\n", "93443,Goon (2011),Comedy|Drama\r\n", "93502,\"Ledge, The (2011)\",Drama|Thriller\r\n", "93510,21 Jump Street (2012),Action|Comedy|Crime\r\n", "93512,\"Jeff, Who Lives at Home (2012)\",Comedy|Drama\r\n", "93563,Lockout (2012),Action|Sci-Fi|Thriller\r\n", "93598,\"Snowtown (Snowtown Murders, The) (2011)\",Crime|Drama|Thriller\r\n", "93610,Space Battleship Yamato (2010),Action|Adventure|Drama\r\n", "93721,Jiro Dreams of Sushi (2011),Documentary\r\n", "93723,Damsels in Distress (2011),Comedy|Romance\r\n", "93740,Salmon Fishing in the Yemen (2011),Comedy|Drama|Romance\r\n", "93766,Wrath of the Titans (2012),Action|Adventure|Fantasy|IMAX\r\n", "93790,Detachment (2011),Drama\r\n", "93805,Iron Sky (2012),Action|Comedy|Sci-Fi\r\n", "93819,Absentia (2011),Horror\r\n", "93831,American Reunion (American Pie 4) (2012),Comedy\r\n", "93838,The Raid: Redemption (2011),Action|Crime\r\n", "93840,\"Cabin in the Woods, The (2012)\",Comedy|Horror|Sci-Fi|Thriller\r\n", "93855,God Bless America (2011),Comedy|Drama\r\n", "93980,\"Three Stooges, The (2012)\",Comedy\r\n", "93982,\"Raven, The (2012)\",Mystery|Thriller\r\n", "93988,North & South (2004),Drama|Romance\r\n", "94011,\"Big Bang, The (2011)\",Action|Thriller\r\n", "94015,Mirror Mirror (2012),Adventure|Comedy|Fantasy\r\n", "94018,Battleship (2012),Action|Sci-Fi|Thriller|IMAX\r\n", "94070,\"Best Exotic Marigold Hotel, The (2011)\",Comedy|Drama\r\n", "94122,Comic-Con Episode IV: A Fan's Hope (2011),Documentary\r\n", "94130,Bully (2011),Documentary\r\n", "94150,Hysteria (2011),Comedy|Romance\r\n", "94160,Dante's Inferno: An Animated Epic (2010),Action|Animation|Fantasy\r\n", "94262,\"Atomic Submarine, The (1959)\",Sci-Fi|Thriller\r\n", "94266,\"Five-Year Engagement, The (2012)\",Comedy|Romance\r\n", "94323,Think Like a Man (2012),Comedy\r\n", "94325,\"Lucky One, The (2012)\",Drama\r\n", "94405,Safe (2012),Action|Crime|Thriller\r\n", "94478,Dark Shadows (2012),Comedy|Horror|IMAX\r\n", "94494,96 Minutes (2011) ,Drama|Thriller\r\n", "94503,\"Decoy Bride, The (2011)\",Comedy|Romance\r\n", "94661,Rocket Singh: Salesman of the Year (2009),Comedy|Drama\r\n", "94677,\"Dictator, The (2012)\",Comedy\r\n", "94735,Walking with Monsters (2005),Documentary\r\n", "94777,Men in Black III (M.III.B.) (M.I.B.³) (2012),Action|Comedy|Sci-Fi|IMAX\r\n", "94780,Snow White and the Huntsman (2012),Action|Adventure|Drama\r\n", "94799,Sound of My Voice (2011),Drama|Mystery|Sci-Fi\r\n", "94810,Eva (2011),Drama|Fantasy|Sci-Fi\r\n", "94833,\"Pirates! Band of Misfits, The (2012)\",Adventure|Animation|Children|Comedy\r\n", "94864,Prometheus (2012),Action|Horror|Sci-Fi|IMAX\r\n", "94867,\"Pact, The (2012)\",Horror|Mystery|Thriller\r\n", "94896,Bernie (2011),Comedy|Crime|Drama\r\n", "94919,Inhale (2010),Drama|Thriller\r\n", "94931,Take This Waltz (2011),Drama|Romance\r\n", "94953,Wanderlust (2012),Comedy\r\n", "94959,Moonrise Kingdom (2012),Comedy|Drama|Romance\r\n", "94985,Get the Gringo (2012),Action|Crime|Drama|Thriller\r\n", "95004,Superman/Doomsday (2007) ,Action|Animation\r\n", "95067,\"Thousand Words, A (2012)\",Comedy|Drama\r\n", "95088,Safety Not Guaranteed (2012),Comedy|Drama\r\n", "95105,Madagascar 3: Europe's Most Wanted (2012),Adventure|Animation|Children|Comedy|IMAX\r\n", "95135,Your Sister's Sister (2011),Comedy|Drama\r\n", "95145,Dragon Ball: The Curse Of The Blood Rubies (Doragon bôru: Shenron no densetsu) (1986),Action|Adventure|Animation|Children\r\n", "95147,Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime) (1987),Action|Adventure|Animation|Children\r\n", "95149,Superman/Batman: Public Enemies (2009),Action|Animation|Fantasy\r\n", "95163,Dragon Ball: Mystical Adventure (Doragon bôru: Makafushigi dai bôken) (1988),Action|Adventure|Animation|Children\r\n", "95165,Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu) (1990),Action|Adventure|Animation|Sci-Fi|Thriller\r\n", "95167,Brave (2012),Action|Adventure|Animation|Children\r\n", "95170,Beauty and the Beast: The Enchanted Christmas (1997),Animation|Children|Fantasy|Musical\r\n", "95175,Front of the Class (2008),Drama\r\n", "95182,Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen) (1990),Action|Adventure|Animation|Sci-Fi\r\n", "95193,Pocahontas II: Journey to a New World (1998) ,Adventure|Animation|Children\r\n", "95199,What to Expect When You're Expecting (2012),Comedy|Drama|Romance\r\n", "95201,To Rome with Love (2012),Comedy\r\n", "95207,Abraham Lincoln: Vampire Hunter (2012),Action|Fantasy|Horror|Thriller\r\n", "95218,First Position (2011),Documentary\r\n", "95307,Rock of Ages (2012),Comedy|Drama|Musical|IMAX\r\n", "95309,Seeking a Friend for the End of the World (2012),Comedy|Drama|Romance\r\n", "95311,Presto (2008),Animation|Children|Comedy|Fantasy\r\n", "95313,Jack-Jack Attack (2005),Adventure|Animation|Children|Comedy\r\n", "95377,One Man Band (2005),Animation|Comedy|Musical\r\n", "95441,Ted (2012),Comedy|Fantasy\r\n", "95449,Magic Mike (2012),Drama|Romance\r\n", "95473,Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi) (1992),Action|Adventure|Animation\r\n", "95475,Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô) (1991),Action|Adventure|Animation\r\n", "95497,Dragon Ball Z: Super Android 13! (Doragon bôru Z 7: Kyokugen batoru!! San dai sûpâ saiyajin) (1992),Action|Adventure|Animation\r\n", "95499,Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen) (1993),Action|Adventure|Animation\r\n", "95508,Cleanskin (2012),Crime|Drama|Thriller\r\n", "95510,\"Amazing Spider-Man, The (2012)\",Action|Adventure|Sci-Fi|IMAX\r\n", "95519,Dragon Ball Z: Bojack Unbound (Doragon bôru Z 9: Ginga girigiri!! Butchigiri no sugoi yatsu) (1993),Action|Adventure|Animation|Fantasy\r\n", "95543,Ice Age 4: Continental Drift (2012),Adventure|Animation|Comedy\r\n", "95558,Beasts of the Southern Wild (2012),Drama|Fantasy\r\n", "95583,Savages (2012),Crime|Drama|Thriller\r\n", "95624,\"Firm, The (2009)\",Drama\r\n", "95633,Spirit Camp (2009),Horror\r\n", "95654,Geri's Game (1997),Animation|Children\r\n", "95690,Some Guy Who Kills People (2011),Comedy|Thriller\r\n", "95717,Treasure Island (2012),Adventure\r\n", "95720,\"Watch, The (2012)\",Comedy|Sci-Fi\r\n", "95738,\"Adventures of Mary-Kate and Ashley, The: The Case of the Christmas Caper (1995)\",Children|Musical|Mystery\r\n", "95744,2 Days in New York (2012),Comedy\r\n", "95761,Killer Joe (2011),Crime|Thriller\r\n", "95771,Dragon Ball Z: Broly Second Coming (Doragon bôru Z 10: Kiken na futari! Sûpâ senshi wa nemurenai) (1994),Action|Adventure|Animation\r\n", "95780,Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da) (1994),Action|Adventure|Animation\r\n", "95796,Anaconda: The Offspring (2008),Action|Horror|Sci-Fi|Thriller\r\n", "95839,\"Christmas Carol, A (1999)\",Drama|Fantasy\r\n", "95843,Goodbye Charlie (1964),Comedy|Fantasy|Romance\r\n", "95858,For the Birds (2000),Animation|Children|Comedy\r\n", "95873,Ruby Sparks (2012),Comedy|Fantasy|Romance\r\n", "95875,Total Recall (2012),Action|Sci-Fi|Thriller\r\n", "95939,\"Angels' Share, The (2012)\",Comedy|Drama\r\n", "95949,\"Immature, The (Immaturi) (2011)\",Comedy\r\n", "95965,Dragon Ball Z: Bardock - The Father of Goku (Doragon bôru Z: Tatta hitori no saishuu kessen - Furiiza ni itonda Z senshi Kakarotto no chichi) (1990),Action|Adventure|Animation\r\n", "96004,Dragon Ball Z: The History of Trunks (Doragon bôru Z: Zetsubô e no hankô!! Nokosareta chô senshi - Gohan to Torankusu) (1993),Action|Adventure|Animation\r\n", "96007,Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû) (1997),Action|Adventure|Animation\r\n", "96020,Sidewalls (Medianeras) (2011),Drama\r\n", "96079,Skyfall (2012),Action|Adventure|Thriller|IMAX\r\n", "96084,Hands Over the City (Le mani sulla città) (1963),Drama\r\n", "96110,\"Campaign, The (2012)\",Comedy\r\n", "96114,Brake (2012),Crime|Thriller\r\n", "96121,Hope Springs (2012),Comedy|Drama\r\n", "96150,\"Queen of Versailles, The (2012)\",Documentary\r\n", "96281,ParaNorman (2012),Adventure|Animation|Comedy\r\n", "96283,Diary of a Wimpy Kid: Dog Days (2012),Children|Comedy\r\n", "96373,Broken (2012),Drama\r\n", "96411,6 Days to Air: The Making of South Park (2011),Documentary\r\n", "96417,Premium Rush (2012),Action|Thriller\r\n", "96430,\"Odd Life of Timothy Green, The (2012)\",Comedy|Drama|Fantasy\r\n", "96432,Lawless (2012),Crime|Drama\r\n", "96448,Piranha 3DD (a.k.a. Piranha DD) (2012),Comedy|Horror\r\n", "96471,Prime Suspect 3 (1993),Crime|Drama|Mystery\r\n", "96488,Searching for Sugar Man (2012),Documentary\r\n", "96518,Prime Suspect 6: The Last Witness (2003),Drama|Thriller\r\n", "96520,Prime Suspect: The Lost Child (1995),Drama|Mystery\r\n", "96530,Conception (2011),Comedy|Romance\r\n", "96563,Paradise Lost 3: Purgatory (2011),Documentary\r\n", "96567,\"Words, The (2012)\",Drama|Romance\r\n", "96588,Pitch Perfect (2012),Comedy|Musical\r\n", "96606,Samsara (2011),Documentary\r\n", "96608,Runaway Brain (1995) ,Animation|Comedy|Sci-Fi\r\n", "96610,Looper (2012),Action|Crime|Sci-Fi\r\n", "96616,That's My Boy (2012),Comedy\r\n", "96655,Robot & Frank (2012),Comedy|Drama|Sci-Fi\r\n", "96691,Resident Evil: Retribution (2012),Action|Horror|Sci-Fi|IMAX\r\n", "96726,Lola Versus (2012),Comedy|Romance\r\n", "96728,\"Master, The (2012)\",Drama\r\n", "96737,Dredd (2012),Action|Sci-Fi\r\n", "96811,End of Watch (2012),Crime|Drama|Thriller\r\n", "96815,V/H/S (2012),Horror|Thriller\r\n", "96821,\"Perks of Being a Wallflower, The (2012)\",Drama|Romance\r\n", "96829,\"Hunt, The (Jagten) (2012)\",Drama\r\n", "96832,Holy Motors (2012),Drama|Fantasy|Musical|Mystery|Sci-Fi\r\n", "96861,Taken 2 (2012),Action|Crime|Drama|Thriller\r\n", "96917,House at the End of the Street (2012),Horror|Thriller\r\n", "96935,My Left Eye Sees Ghosts (Ngo joh aan gin diy gwai) (2002),Comedy|Fantasy|Romance\r\n", "96945,Love Lasts Three Years (L'amour dure trois ans) (2011),Comedy|Drama|Romance\r\n", "96964,\"Tall Man, The (2012)\",Crime|Drama|Mystery\r\n", "96975,LOL (2012),Comedy|Drama|Romance\r\n", "97024,Rust and Bone (De rouille et d'os) (2012),Drama|Romance\r\n", "97168,Marley (2012),Documentary\r\n", "97172,Frankenweenie (2012),Animation|Comedy|Horror|IMAX\r\n", "97188,Sinister (2012),Horror|Thriller\r\n", "97194,\"Thing: Terror Takes Shape, The (1998)\",Documentary\r\n", "97225,Hotel Transylvania (2012),Animation|Children|Comedy\r\n", "97230,Side by Side (2012),Documentary\r\n", "97285,Take Aim at the Police Van (Sono gosôsha wo nerae: 'Jûsangô taihisen' yori) (1960),Action|Crime|Mystery\r\n", "97304,Argo (2012),Drama|Thriller\r\n", "97306,Seven Psychopaths (2012),Comedy|Crime\r\n", "97328,Liberal Arts (2012),Comedy|Drama\r\n", "97470,Catch .44 (2011),Action|Drama|Thriller\r\n", "97643,[REC]³ 3 Génesis (2012),Horror|Thriller\r\n", "97665,Asterix & Obelix: God Save Britannia (Astérix et Obélix: Au service de Sa Majesté) (2012),Adventure|Comedy\r\n", "97701,Paranormal Activity 4 (2012),Horror|IMAX\r\n", "97742,Alex Cross (2012),Action|Crime|Mystery|Thriller\r\n", "97752,Cloud Atlas (2012),Drama|Sci-Fi|IMAX\r\n", "97757,'Hellboy': The Seeds of Creation (2004),Action|Adventure|Comedy|Documentary|Fantasy\r\n", "97785,Silent Hill: Revelation 3D (2012),Horror|Mystery|Thriller\r\n", "97836,Here Comes the Boom (2012),Action|Comedy\r\n", "97858,Mental (2012),Comedy|Drama\r\n", "97860,Killing Them Softly (2012),Crime|Drama|Thriller\r\n", "97866,\"Imposter, The (2012)\",Documentary\r\n", "97870,\"Sessions, The (Surrogate, The) (2012)\",Drama\r\n", "97904,Smashed (2012),Comedy|Drama\r\n", "97913,Wreck-It Ralph (2012),Animation|Comedy\r\n", "97921,Silver Linings Playbook (2012),Comedy|Drama\r\n", "97923,Flight (2012),Drama\r\n", "97936,Anna Karenina (2012),Drama\r\n", "97938,Life of Pi (2012),Adventure|Drama|IMAX\r\n", "97950,\"Man with the Iron Fists, The (2012)\",Action|Adventure|Crime\r\n", "97988,\"Bay, The (2012)\",Horror|Sci-Fi|Thriller\r\n", "98061,Himizu (2011),Children|Crime|Drama\r\n", "98083,Jackass 3.5 (2011),Comedy|Documentary\r\n", "98122,Indie Game: The Movie (2012),Documentary\r\n", "98124,\"Batman: The Dark Knight Returns, Part 1 (2012)\",Action|Animation|Sci-Fi\r\n", "98154,Lincoln (2012),Drama|War\r\n", "98160,Nature Calls (2012),Comedy\r\n", "98175,Vamps (2012),Comedy|Horror|Romance\r\n", "98203,\"Twilight Saga: Breaking Dawn - Part 2, The (2012)\",Adventure|Drama|Fantasy|Romance|IMAX\r\n", "98230,10 Years (2011),Comedy|Drama|Romance\r\n", "98239,Red Dawn (2012),Action|War\r\n", "98243,Rise of the Guardians (2012),Adventure|Animation|Children|Fantasy|IMAX\r\n", "98279,\"Fantastic Fear of Everything, A (2012)\",Comedy\r\n", "98296,Deadfall (2012),Crime|Drama|Thriller\r\n", "98361,Byzantium (2012),Drama|Fantasy|Thriller\r\n", "98491,Paperman (2012),Animation|Comedy|Romance\r\n", "98499,\"Fearless Hyena, The (Xiao quan guai zhao) (1979)\",Action|Comedy\r\n", "98503,Half a Loaf of Kung Fu (Dian zhi gong fu gan chian chan) (1980),Action|Comedy\r\n", "98585,Hitchcock (2012),Drama\r\n", "98604,From Up on Poppy Hill (Kokuriko-zaka kara) (2011),Animation|Drama|Romance\r\n", "98607,Redline (2009),Action|Animation|Sci-Fi\r\n", "98623,Winners and Sinners (Qi mou miao ji: Wu fu xing) (1983),Action|Comedy|Crime\r\n", "98633,My Lucky Stars (Fuk sing go jiu) (1985),Action|Comedy\r\n", "98697,\"Money Money Money (L'aventure, c'est l'aventure) (1972)\",Adventure|Comedy\r\n", "98799,\"Liar's Autobiography: The Untrue Story of Monty Python's Graham Chapman, A (2012)\",Animation|Comedy\r\n", "98809,\"Hobbit: An Unexpected Journey, The (2012)\",Adventure|Fantasy|IMAX\r\n", "98836,Hyde Park on Hudson (2012),Comedy|Drama\r\n", "98908,How to Make Love to a Woman (2010),Comedy|Romance\r\n", "98961,Zero Dark Thirty (2012),Action|Drama|Thriller\r\n", "99005,Fire with Fire (2012),Action|Crime|Drama\r\n", "99007,Warm Bodies (2013),Comedy|Horror|Romance\r\n", "99030,Wrong (2012),Comedy|Drama\r\n", "99087,Playing for Keeps (2012),Comedy|Romance\r\n", "99106,\"Guilt Trip, The (2012)\",Comedy\r\n", "99112,Jack Reacher (2012),Action|Crime|Thriller\r\n", "99114,Django Unchained (2012),Action|Drama|Western\r\n", "99117,This Is 40 (2012),Drama\r\n", "99122,I Bought a Vampire Motorcycle (1990),Comedy|Horror\r\n", "99130,Ice Cream Man (1995),Comedy|Horror\r\n", "99145,\"Impossible, The (Imposible, Lo) (2012)\",Drama|Thriller\r\n", "99149,\"Misérables, Les (2012)\",Drama|Musical|Romance|IMAX\r\n", "99191,Campfire Tales (1997),Horror\r\n", "99415,Parental Guidance (2012),Comedy\r\n", "99437,John Dies at the End (2012),Comedy|Fantasy|Horror\r\n", "99532,\"Misérables, Les (2000)\",Drama|Romance\r\n", "99574,Promised Land (2012),Drama\r\n", "99636,English Vinglish (2012),Comedy|Drama\r\n", "99638,Fish Story (Fisshu sutôrî) (2009),Comedy\r\n", "99721,Texas Chainsaw 3D (2013),Horror|Mystery|Thriller\r\n", "99728,Gangster Squad (2013),Action|Crime|Drama\r\n", "99750,\"Iceman, The (2012)\",Crime|Drama|Thriller\r\n", "99764,It's Such a Beautiful Day (2012),Animation|Comedy|Drama|Fantasy|Sci-Fi\r\n", "99813,\"Batman: The Dark Knight Returns, Part 2 (2013)\",Action|Animation\r\n", "99846,Everything or Nothing: The Untold Story of 007 (2012),Documentary\r\n", "99853,Codependent Lesbian Space Alien Seeks Same (2011),Comedy|Romance|Sci-Fi\r\n", "99910,\"Last Stand, The (2013)\",Action|Crime|Thriller\r\n", "99917,Upstream Color (2013),Romance|Sci-Fi|Thriller\r\n", "99992,Shadow Dancer (2012),Crime|Drama|Thriller\r\n", "100044,Human Planet (2011),Documentary\r\n", "100068,Comme un chef (2012),Comedy\r\n", "100083,Movie 43 (2013),Comedy\r\n", "100106,\"Pervert's Guide to Ideology, The (2012)\",Documentary\r\n", "100159,Sightseers (2012),Comedy\r\n", "100163,Hansel & Gretel: Witch Hunters (2013),Action|Fantasy|Horror|IMAX\r\n", "100194,Jim Jefferies: Fully Functional (EPIX) (2012),Comedy\r\n", "100226,Why Stop Now (2012),Comedy|Drama\r\n", "100277,Tabu (2012),Drama|Romance\r\n", "100302,Upside Down (2012),Drama|Romance|Sci-Fi\r\n", "100304,\"Liability, The (2012)\",Action|Thriller\r\n", "100306,Angst (1983),Drama|Horror\r\n", "100326,Stand Up Guys (2012),Comedy|Crime\r\n", "100383,Side Effects (2013),Crime|Drama|Mystery|Thriller\r\n", "100390,Identity Thief (2013),Comedy|Crime\r\n", "100397,\"ABCs of Death, The (2012)\",Horror\r\n", "100487,Beautiful Creatures (2013),Drama|Fantasy|Romance\r\n", "100498,\"Good Day to Die Hard, A (2013)\",Action|Crime|Thriller|IMAX\r\n", "100507,21 and Over (2013),Comedy\r\n", "100527,Safe Haven (2013),Drama|Mystery|Romance\r\n", "100553,Frozen Planet (2011),Documentary\r\n", "100556,\"Act of Killing, The (2012)\",Documentary\r\n", "100579,Universal Soldier: Day of Reckoning (2012),Action|Sci-Fi|Thriller\r\n", "100611,Escape from Planet Earth (2013),Adventure|Animation|Comedy|Sci-Fi\r\n", "100714,Before Midnight (2013),Drama|Romance\r\n", "100737,Snitch (2013),Action|Drama|Thriller\r\n", "100810,Dark Skies (2013),Horror|Sci-Fi|Thriller\r\n", "100843,Oh Boy (A Coffee in Berlin) (2012),Comedy|Drama\r\n", "100882,Journey to the West: Conquering the Demons (Daai wa sai you chi Chui mo chun kei) (2013),Adventure|Comedy|Fantasy|Romance|IMAX\r\n", "100906,Maniac Cop 2 (1990),Action|Horror|Thriller\r\n", "101025,Jack the Giant Slayer (2013),Adventure|Fantasy|IMAX\r\n", "101070,Wadjda (2012),Drama\r\n", "101072,\"Unintentional Kidnapping of Mrs. Elfriede Ott, The (Die Unabsichtliche Entführung der Frau Elfriede Ott) (2010)\",Comedy\r\n", "101074,\"Legend of Sleepy Hollow, The (1949)\",Animation|Comedy|Horror|Musical\r\n", "101076,G.I. Joe: Retaliation (2013),Action|Adventure|Sci-Fi|Thriller|IMAX\r\n", "101088,Stoker (2013),Drama|Mystery|Thriller\r\n", "101112,Oz the Great and Powerful (2013),Action|Adventure|Fantasy|IMAX\r\n", "101142,\"Croods, The (2013)\",Adventure|Animation|Comedy\r\n", "101283,\"Incredible Burt Wonderstone, The (2013)\",Comedy\r\n", "101360,\"Call, The (2013)\",Drama|Thriller\r\n", "101362,Olympus Has Fallen (2013),Action|Thriller\r\n", "101415,\"First Time, The (2012)\",Comedy|Drama|Romance\r\n", "101423,Mezzo Forte (1998),Action|Animation|Comedy\r\n", "101525,\"Place Beyond the Pines, The (2012)\",Crime|Drama\r\n", "101529,\"Brass Teapot, The (2012)\",Comedy|Fantasy|Thriller\r\n", "101531,Phil Spector (2013),Drama\r\n", "101577,\"Host, The (2013)\",Action|Adventure|Romance\r\n", "101612,Admission (2013),Comedy|Romance\r\n", "101739,Evil Dead (2013),Horror\r\n", "101741,Trance (2013),Crime|Thriller\r\n", "101765,\"Perfect Plan, A (Plan parfait, Un) (2012)\",Adventure|Comedy|Romance\r\n", "101864,Oblivion (2013),Action|Adventure|Sci-Fi|IMAX\r\n", "101884,Dark Tide (2012),Adventure|Drama|Thriller\r\n", "101895,42 (2013),Drama\r\n", "101962,Wolf Children (Okami kodomo no ame to yuki) (2012),Animation|Fantasy\r\n", "101973,Disconnect (2012),Drama|Thriller\r\n", "102007,\"Invincible Iron Man, The (2007)\",Animation\r\n", "102025,Yongary: Monster from the Deep (1967),Children|Horror|Sci-Fi\r\n", "102033,Pain & Gain (2013),Action|Comedy|Crime\r\n", "102058,Hulk Vs. (2009),Animation\r\n", "102066,Resolution (2012),Horror|Thriller\r\n", "102070,Grabbers (2012),Comedy|Horror|Sci-Fi\r\n", "102084,Justice League: Doom (2012) ,Action|Animation|Fantasy\r\n", "102088,\"Grandmaster, The (Yi dai zong shi) (2013)\",Action|Drama|IMAX\r\n", "102123,This Is the End (2013),Action|Comedy\r\n", "102125,Iron Man 3 (2013),Action|Sci-Fi|Thriller|IMAX\r\n", "102165,\"English Teacher, The (2013)\",Comedy|Drama\r\n", "102194,Mud (2012),Adventure|Crime|Drama\r\n", "102217,Bill Hicks: Revelations (1993),Comedy\r\n", "102278,Pawn (2013),Crime|Thriller\r\n", "102338,Shaolin Temple (Shao Lin si) (1976),Action|Adventure|Drama\r\n", "102378,Syrup (2013),Comedy|Drama\r\n", "102407,\"Great Gatsby, The (2013)\",Drama\r\n", "102445,Star Trek Into Darkness (2013),Action|Adventure|Sci-Fi|IMAX\r\n", "102481,\"Internship, The (2013)\",Comedy\r\n", "102590,Darkon (2006),Documentary|Fantasy\r\n", "102602,Mimino (1977),Comedy\r\n", "102666,Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973),Adventure|Comedy\r\n", "102684,Only God Forgives (2013),Drama|Thriller\r\n", "102686,\"Hangover Part III, The (2013)\",Comedy\r\n", "102716,\"Fast & Furious 6 (Fast and the Furious 6, The) (2013)\",Action|Crime|Thriller|IMAX\r\n", "102720,Epic (2013),Adventure|Animation|Fantasy\r\n", "102735,Captain America (1979),Action|Drama\r\n", "102742,Tie Xi Qu: West of the Tracks (Tiexi qu) (2003),Documentary\r\n", "102747,\"Rink, The (1916)\",Comedy\r\n", "102749,Captain America II: Death Too Soon (1979),Action|Crime\r\n", "102760,Down Terrace (2009),Comedy|Crime|Drama\r\n", "102800,Frances Ha (2012),Comedy|Drama\r\n", "102802,\"Lords of Salem, The (2012)\",Horror|Thriller\r\n", "102819,Behind the Candelabra (2013),Drama\r\n", "102823,As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty (2000),Documentary\r\n", "102852,With Great Power: The Stan Lee Story (2012),Documentary\r\n", "102880,After Earth (2013),Action|Adventure|Sci-Fi|IMAX\r\n", "102903,Now You See Me (2013),Crime|Mystery|Thriller\r\n", "102984,Inhuman Resources (Redd Inc.) (2012),Horror|Thriller\r\n", "102993,\"Way, Way Back, The (2013)\",Comedy|Drama\r\n", "103027,Much Ado About Nothing (2012),Comedy|Drama|Romance\r\n", "103042,Man of Steel (2013),Action|Adventure|Fantasy|Sci-Fi|IMAX\r\n", "103048,\"Kings of Summer, The (2013)\",Comedy\r\n", "103075,\"Purge, The (2013)\",Crime|Horror|Thriller\r\n", "103085,Rapture-Palooza (2013),Comedy|Fantasy\r\n", "103107,20 Feet from Stardom (Twenty Feet from Stardom) (2013),Documentary\r\n", "103137,\"Bling Ring, The (2013)\",Crime|Drama\r\n", "103141,Monsters University (2013),Adventure|Animation|Comedy\r\n", "103171,Schlussmacher (2013),Comedy\r\n", "103210,Fullmetal Alchemist: The Sacred Star of Milos (2011),Action|Adventure|Animation\r\n", "103219,Maniac (2012),Horror|Thriller\r\n", "103221,Not Suitable for Children (2012),Comedy|Romance\r\n", "103228,Pacific Rim (2013),Action|Adventure|Sci-Fi|IMAX\r\n", "103233,LEGO Batman: The Movie - DC Heroes Unite (2013),Action|Adventure|Animation\r\n", "103235,\"Best Offer, The (Migliore offerta, La) (2013)\",Thriller\r\n", "103245,Adam and Eve (National Lampoon's Adam & Eve) (2005),Comedy|Drama|Romance\r\n", "103249,World War Z (2013),Action|Drama|Horror|IMAX\r\n", "103253,Elysium (2013),Action|Drama|Sci-Fi|IMAX\r\n", "103335,Despicable Me 2 (2013),Animation|Children|Comedy|IMAX\r\n", "103339,White House Down (2013),Action|Drama|Thriller|IMAX\r\n", "103341,\"World's End, The (2013)\",Action|Comedy|Sci-Fi\r\n", "103366,Redemption (Hummingbird) (2013),Action|Crime|Thriller\r\n", "103372,\"Heat, The (2013)\",Action|Comedy|Crime\r\n", "103384,\"Lone Ranger, The (2013)\",Action|Adventure|Western|IMAX\r\n", "103449,Passion (2012),Crime|Drama|Mystery|Thriller\r\n", "103483,V/H/S/2 (2013),Horror|Thriller\r\n", "103502,\"Knot, The (2012)\",Comedy|Romance\r\n", "103539,The Spectacular Now (2013),Comedy|Drama|Romance\r\n", "103543,\"Lifeguard, The (2013)\",Comedy|Drama\r\n", "103596,Sharknado (2013),Sci-Fi\r\n", "103602,Craig Ferguson: I'm Here To Help (2013),Comedy|Documentary\r\n", "103606,Stuck in Love (2012),Comedy|Drama|Romance\r\n", "103609,Class Act (1992),Comedy\r\n", "103624,Fruitvale Station (2013),Drama\r\n", "103655,R.I.P.D. (2013),Action|Comedy|Fantasy\r\n", "103685,\"Field in England, A (2013)\",Drama|Fantasy|Thriller|War\r\n", "103688,\"Conjuring, The (2013)\",Horror|Thriller\r\n", "103755,Turbo (2013),Adventure|Animation|Children|Comedy|Fantasy\r\n", "103772,\"Wolverine, The (2013)\",Action|Adventure|Fantasy|Sci-Fi\r\n", "103801,Drinking Buddies (2013),Comedy|Drama|Romance\r\n", "103810,Red 2 (2013),Action|Comedy|Crime|Thriller\r\n", "103819,Coffee Town (2013),Comedy\r\n", "103865,Revenge for Jolly! (2012),Comedy|Drama\r\n", "103883,2 Guns (2013),Action|Comedy|Crime\r\n", "103980,Blue Jasmine (2013),Drama\r\n", "103984,\"Great Beauty, The (Grande Bellezza, La) (2013)\",Comedy|Drama\r\n", "104017,3 dev adam (Three Giant Men) (1973) ,Action|Adventure|Sci-Fi\r\n", "104069,Louis C.K.: Oh My God (2013),Comedy\r\n", "104074,Percy Jackson: Sea of Monsters (2013),Adventure|Children|Fantasy\r\n", "104076,\"Smurfs 2, The (2013)\",Animation|Children|Comedy\r\n", "104078,Alan Partridge: Alpha Papa (2013),Comedy\r\n", "104129,Man of Tai Chi (2013),Action|IMAX\r\n", "104141,Batman: Mystery of the Batwoman (2003),Action|Animation|Children|Crime\r\n", "104211,We're the Millers (2013),Comedy|Crime\r\n", "104218,Grown Ups 2 (2013),Comedy\r\n", "104241,Kick-Ass 2 (2013),Action|Comedy|Crime\r\n", "104243,Riddick (2013),Action|Sci-Fi|Thriller|IMAX\r\n", "104245,Planes (2013),Adventure|Animation|Comedy\r\n", "104272,Blackfish (2013),Documentary\r\n", "104283,\"Wind Rises, The (Kaze tachinu) (2013)\",Animation|Drama|Romance\r\n", "104303,Jobs (2013),Drama\r\n", "104337,Lee Daniels' The Butler (2013),Drama\r\n", "104339,In a World... (2013),Comedy\r\n", "104374,About Time (2013),Drama|Fantasy|Romance\r\n", "104419,Justice League: Crisis on Two Earths (2010),Action|Animation|Sci-Fi\r\n", "104457,You're Next (2011),Horror|Thriller\r\n", "104644,Maria Bamford: The Special Special Special! (2012),Comedy\r\n", "104760,Getaway (2013),Action|Crime\r\n", "104780,\"Mystery of the Third Planet, The (Tayna tretey planety) (1981)\",Adventure|Animation|Sci-Fi\r\n", "104837,Rage of Honor (1987),Action|Crime\r\n", "104841,Gravity (2013),Action|Sci-Fi|IMAX\r\n", "104863,What If (2013),Comedy|Drama|Romance\r\n", "104875,\"History of Future Folk, The (2012)\",Adventure|Comedy|Musical|Sci-Fi\r\n", "104879,Prisoners (2013),Drama|Mystery|Thriller\r\n", "104906,Austenland (2013),Comedy|Romance\r\n", "104908,Insidious: Chapter 2 (2013),Horror|Thriller\r\n", "104913,Rush (2013),Action|Drama\r\n", "104925,\"Family, The (2013)\",Action|Comedy|Crime\r\n", "104944,Short Term 12 (2013),Drama\r\n", "105020,Collision Course (1989),Action|Comedy|Thriller\r\n", "105037,\"To Do List, The (2013)\",Comedy\r\n", "105121,Inescapable (2012),Action|Drama|War\r\n", "105197,Nebraska (2013),Adventure|Drama\r\n", "105211,Enough Said (2013),Comedy|Drama|Romance\r\n", "105213,Don Jon (2013),Comedy|Drama|Romance\r\n", "105246,Mood Indigo (L'écume des jours) (2013),Drama|Fantasy\r\n", "105250,\"Century of the Self, The (2002)\",Documentary\r\n", "105254,Crystal Fairy & the Magical Cactus and 2012 (2013),Adventure|Comedy\r\n", "105325,Bad Milo (Bad Milo!) (2013),Comedy|Horror\r\n", "105351,Runner Runner (2013),Crime|Drama|Thriller\r\n", "105355,Blue Is the Warmest Color (La vie d'Adèle) (2013),Drama|Romance\r\n", "105468,Cloudy with a Chance of Meatballs 2 (2013),Animation|Children|Comedy|Fantasy\r\n", "105504,Captain Phillips (2013),Adventure|Drama|Thriller|IMAX\r\n", "105540,\"All Dogs Christmas Carol, An (1998)\",Animation|Children|Comedy|Musical\r\n", "105585,Machete Kills (Machete 2) (2013),Action|Crime|Thriller\r\n", "105593,Filth (2013),Comedy|Crime|Drama\r\n", "105653,Escape Plan (2013),Action|Mystery|Thriller\r\n", "105720,\"Thief of Paris, The (Le voleur) (1967)\",Comedy|Crime|Drama\r\n", "105731,Carrie (2013),Drama|Horror\r\n", "105746,UnHung Hero (2013),Documentary\r\n", "105755,\"Counselor, The (2013)\",Crime|Drama|Thriller\r\n", "105801,Escape From Tomorrow (2013),Drama|Fantasy|Horror\r\n", "105835,\"Double, The (2013)\",Comedy|Drama|Thriller\r\n", "105844,12 Years a Slave (2013),Drama\r\n", "105954,All Is Lost (2013),Action|Adventure|Drama\r\n", "106002,Ender's Game (2013),Action|Adventure|Sci-Fi|IMAX\r\n", "106062,Jackass Presents: Bad Grandpa (2013),Comedy\r\n", "106072,Thor: The Dark World (2013),Action|Adventure|Fantasy|IMAX\r\n", "106100,Dallas Buyers Club (2013),Drama\r\n", "106144,\"Selfish Giant, The (2013)\",Drama\r\n", "106330,Last Vegas (2013),Comedy|Drama|Romance\r\n", "106438,Philomena (2013),Comedy|Drama\r\n", "106441,\"Book Thief, The (2013)\",Children|Drama|War\r\n", "106487,The Hunger Games: Catching Fire (2013),Action|Adventure|Sci-Fi|IMAX\r\n", "106489,\"Hobbit: The Desolation of Smaug, The (2013)\",Adventure|Fantasy|IMAX\r\n", "106491,47 Ronin (2013),Action|Adventure|Fantasy\r\n", "106540,Delivery Man (2013),Comedy\r\n", "106542,Charlie Countryman (2013),Action|Comedy|Romance\r\n", "106594,Red Flag (2012),Comedy|Drama|Romance\r\n", "106642,\"Day of the Doctor, The (2013)\",Adventure|Drama|Sci-Fi\r\n", "106648,Guilty of Romance (Koi no tsumi) (2011) ,Crime|Drama|Horror\r\n", "106696,Frozen (2013),Adventure|Animation|Comedy|Fantasy|Musical|Romance\r\n", "106766,Inside Llewyn Davis (2013),Drama\r\n", "106782,\"Wolf of Wall Street, The (2013)\",Comedy|Crime|Drama\r\n", "106785,Homefront (2013),Action|Crime|Thriller\r\n", "106839,Mandela: Long Walk to Freedom (2013),Drama\r\n", "106873,Evangelion: 3.0 You Can (Not) Redo (2012),Action|Animation|Drama\r\n", "106883,All is Bright (2013),Comedy|Drama\r\n", "106889,Tim's Vermeer (2013),Documentary\r\n", "106916,American Hustle (2013),Crime|Drama\r\n", "106918,\"Secret Life of Walter Mitty, The (2013)\",Adventure|Comedy|Drama\r\n", "106920,Her (2013),Drama|Romance|Sci-Fi\r\n", "106927,RoboGeisha (Robo-geisha) (2009),Action|Comedy|Sci-Fi\r\n", "107013,\"Christmas Carol, A (1977)\",Drama|Fantasy\r\n", "107069,Lone Survivor (2013),Action|Drama|Thriller|War\r\n", "107141,Saving Mr. Banks (2013),Comedy|Drama\r\n", "107159,Zatoichi and the Chest of Gold (Zatôichi senryô-kubi) (Zatôichi 6) (1964),Action|Drama\r\n", "107314,Oldboy (2013),Action|Drama|Mystery\r\n", "107338,Dampfnudelblues (2013),Comedy|Crime\r\n", "107348,Anchorman 2: The Legend Continues (2013),Comedy\r\n", "107406,Snowpiercer (2013),Action|Drama|Sci-Fi\r\n", "107408,Only Old Men Are Going to Battle (V boy idut odni stariki) (1973),Comedy|Drama|War\r\n", "107410,Guest from the Future (Gostya iz buduschego) (1985),Adventure|Drama|Sci-Fi\r\n", "107412,\"Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)\",Comedy|Romance\r\n", "107436,Haunter (2013),Horror|Mystery|Thriller\r\n", "107447,Wrong Cops (2013),Comedy|Crime\r\n", "107449,\"Muppet Christmas: Letters to Santa, A (2008)\",Children|Comedy\r\n", "107462,Ninja: Shadow of a Tear (2013),Action|Crime|Thriller\r\n", "107565,\"Fuck You, Goethe (Fack Ju Göhte) (2013)\",Comedy\r\n", "107630,High School (2010),Comedy\r\n", "107702,Grudge Match (2013),Comedy\r\n", "107723,Highlander: The Search for Vengeance (2007),Action|Adventure|Fantasy\r\n", "107771,Only Lovers Left Alive (2013),Drama|Horror|Romance\r\n", "107780,Cats (1998),Musical\r\n", "107846,MacGyver: Trail to Doomsday (1994),Action|Adventure\r\n", "107945,Bad Karma (2012),Thriller\r\n", "107951,Hunting Elephants (2013),Comedy|Crime\r\n", "107953,Dragon Ball Z: Battle of Gods (2013),Action|Animation|Fantasy|IMAX\r\n", "107962,Freezer (2014),Action|Thriller\r\n", "107997,We Are What We Are (2013),Drama|Horror|Mystery|Thriller\r\n", "107999,Dragon ball Z 04: Lord Slug (1991),Animation|Children\r\n", "108078,Chinese Puzzle (Casse-tête chinois) (2013),Comedy|Romance\r\n", "108090,Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi) (1996),Action|Adventure|Animation|Children\r\n", "108156,Ride Along (2014),Action|Comedy\r\n", "108188,Jack Ryan: Shadow Recruit (2014),Action|Drama|Thriller|IMAX\r\n", "108190,Divergent (2014),Adventure|Romance|Sci-Fi|IMAX\r\n", "108192,Hotel Chevalier (Part 1 of 'The Darjeeling Limited') (2007),Drama\r\n", "108540,Ernest & Célestine (Ernest et Célestine) (2012),Adventure|Animation|Children|Comedy|Drama|Romance\r\n", "108601,Drift (2013),Drama\r\n", "108689,\"I, Frankenstein (2014)\",Action|Fantasy|Sci-Fi|IMAX\r\n", "108715,Better Living Through Chemistry (2014),Comedy|Drama\r\n", "108727,Nymphomaniac: Volume I (2013),Drama\r\n", "108729,Enemy (2013),Mystery|Thriller\r\n", "108795,Wonder Woman (2009),Action|Adventure|Animation|Fantasy\r\n", "108928,\"Monuments Men, The (2014)\",Action|Drama|War\r\n", "108932,The Lego Movie (2014),Action|Adventure|Animation|Children|Comedy|Fantasy\r\n", "108945,RoboCop (2014),Action|Crime|Sci-Fi|IMAX\r\n", "108949,\"Art of the Steal, The (2013)\",Crime\r\n", "108981,Nymphomaniac: Volume II (2013),Drama|Mystery\r\n", "109042,Knights of Badassdom (2013),Adventure|Comedy|Fantasy\r\n", "109161,Venus in Fur (La Vénus à la fourrure) (2013),Drama\r\n", "109183,Date and Switch (2014),Comedy\r\n", "109187,\"Zero Theorem, The (2013)\",Drama|Fantasy|Sci-Fi\r\n", "109191,Winter's Tale (2014),Drama|Fantasy|Mystery\r\n", "109241,On the Other Side of the Tracks (De l'autre côté du périph) (2012),Action|Comedy|Crime\r\n", "109282,GLOW: The Story of the Gorgeous Ladies of Wrestling (2012),Documentary\r\n", "109295,Cold Comes the Night (2013),Crime|Drama|Thriller\r\n", "109313,Chouchou (2003),Comedy\r\n", "109317,Someone Marry Barry (2014),Comedy\r\n", "109372,About Last Night (2014),Comedy|Romance\r\n", "109374,\"Grand Budapest Hotel, The (2014)\",Comedy|Drama\r\n", "109383,\"Oversimplification of Her Beauty, An (2012)\",Animation|Comedy|Drama|Romance\r\n", "109416,Bring It On: Fight to the Finish (2009),Comedy\r\n", "109483,That Awkward Moment (2014),Comedy|Romance\r\n", "109487,Interstellar (2014),Sci-Fi|IMAX\r\n", "109569,3 Days to Kill (2014),Action|Crime|Drama\r\n", "109576,Welcome to the Jungle (2013),Comedy\r\n", "109578,Non-Stop (2014),Action|Mystery|Thriller\r\n", "109596,Wrinkles (Arrugas) (2011),Animation|Drama\r\n", "109633,\"Garden of Words, The (Koto no ha no niwa) (2013)\",Animation|Romance\r\n", "109673,300: Rise of an Empire (2014),Action|Drama|War|IMAX\r\n", "109687,Particle Fever (2013),Documentary\r\n", "109723,\"Bag Man, The (2014)\",Crime|Drama|Thriller\r\n", "109846,Mr. Peabody & Sherman (2014),Adventure|Animation|Comedy\r\n", "109848,Under the Skin (2013),Horror|Sci-Fi|Thriller\r\n", "109850,Need for Speed (2014),Action|Crime|Drama|IMAX\r\n", "109853,Barefoot (2014),Comedy|Drama|Romance\r\n", "109864,Veronica Mars (2014),Comedy|Crime|Drama\r\n", "109895,Bad Words (2013),Comedy\r\n", "109897,Son of God (2014),Drama\r\n", "109941,Puss in Boots: The Three Diablos (2012),Animation|Comedy\r\n", "109968,Why Don't You Play In Hell? (Jigoku de naze warui) (2013),Action|Drama\r\n", "109971,Ocho apellidos vascos (2014),Comedy\r\n", "110102,Captain America: The Winter Soldier (2014),Action|Adventure|Sci-Fi|IMAX\r\n", "110127,Noah (2014),Adventure|Drama|IMAX\r\n", "110130,\"Nut Job, The (2014)\",Adventure|Animation|Children|Comedy\r\n", "110281,King of Comedy (Hei kek ji wong) (1999),Comedy|Drama|Romance\r\n", "110286,13 Sins (2014),Horror|Thriller\r\n", "110297,Muppets Most Wanted (2014),Adventure|Comedy|Crime\r\n", "110330,Me and you (io e te) (2012),Drama\r\n", "110350,Free to Play (2014),Documentary\r\n", "110387,\"Unknown Known, The (2013)\",Documentary\r\n", "110501,The Raid 2: Berandal (2014),Action|Crime|Thriller\r\n", "110541,\"Brain Smasher... A Love Story (Bouncer and the Lady, The) (1993)\",Action|Comedy\r\n", "110553,The Amazing Spider-Man 2 (2014),Action|Sci-Fi|IMAX\r\n", "110586,Calvary (2014),Comedy|Drama\r\n", "110591,Oculus (2013),Horror\r\n", "110603,God's Not Dead (2014),Drama\r\n", "110611,Cold in July (2014),Drama|Thriller\r\n", "110655,Rio 2 (2014),Adventure|Animation|Children|Comedy\r\n", "110669,\"Honest Liar, An (2014)\",Comedy|Documentary\r\n", "110718,Fading Gigolo (2013),Comedy\r\n", "110730,Transcendence (2014),Drama|Sci-Fi|IMAX\r\n", "110746,Hatchet III (2013),Comedy|Horror\r\n", "110771,\"Other Woman, The (2014)\",Comedy|Romance\r\n", "110773,\"Haunted House 2, A (2014)\",Comedy|Horror\r\n", "110781,Mulan II (2004),Action|Animation|Children|Comedy|Musical\r\n", "110826,Brick Mansions (2014),Action|Crime|Drama\r\n", "110882,Locke (2013),Drama\r\n", "111113,Neighbors (2014),Comedy\r\n", "111146,Alpha and Omega 3: The Great Wolf Games (2014),Action|Adventure|Animation|Children|Comedy\r\n", "111320,Mom's Night Out (2014),Comedy\r\n", "111360,Lucy (2014),Action|Sci-Fi\r\n", "111362,X-Men: Days of Future Past (2014),Action|Adventure|Sci-Fi\r\n", "111364,Godzilla (2014),Action|Adventure|Sci-Fi|IMAX\r\n", "111375,Walk of Shame (2014),Comedy\r\n", "111384,Blue Ruin (2013),Thriller\r\n", "111443,Chef (2014),Comedy\r\n", "111551,Afflicted (2013),Horror|Sci-Fi|Thriller\r\n", "111617,Blended (2014),Comedy\r\n", "111622,Begin Again (2013),Comedy|Romance\r\n", "111659,Maleficent (2014),Action|Adventure|Children|IMAX\r\n", "111663,Zombeavers (2014),Action|Comedy|Horror\r\n", "111680,At Middleton (2013),Comedy|Romance\r\n", "111732,\"Dance of Reality, The (Danza de la realidad, La) (2013)\",Drama|Fantasy\r\n", "111743,A Million Ways to Die in the West (2014),Comedy|Western\r\n", "111759,Edge of Tomorrow (2014),Action|Sci-Fi|IMAX\r\n", "111781,Mission: Impossible - Rogue Nation (2015),Action|Adventure|Thriller\r\n", "111785,Midnight Chronicles (2009),Action|Adventure|Fantasy\r\n", "111795,Million Dollar Arm (2014),Comedy|Drama\r\n", "111800,G.B.F. (2013),Comedy\r\n", "111817,Jimi: All Is by My Side (2013),Drama\r\n", "111844,Bad Asses (Bad Ass 2) (2014),Action|Drama\r\n", "111913,Lilting (2014),Drama\r\n", "111921,The Fault in Our Stars (2014),Drama|Romance\r\n", "112006,Tangled Ever After (2012),Action|Animation|Children\r\n", "112070,Maps to the Stars (2014),Drama\r\n", "112138,22 Jump Street (2014),Action|Comedy|Crime\r\n", "112171,\"Equalizer, The (2014)\",Action|Crime|Thriller\r\n", "112175,How to Train Your Dragon 2 (2014),Action|Adventure|Animation\r\n", "112183,Birdman: Or (The Unexpected Virtue of Ignorance) (2014),Comedy|Drama\r\n", "112290,Boyhood (2014),Drama\r\n", "112303,Think Like a Man Too (2014),Comedy|Romance\r\n", "112316,Jersey Boys (2014),Drama|Musical\r\n", "112326,Nick Fury: Agent of S.H.I.E.L.D. (1998),Action|Sci-Fi\r\n", "112334,\"Internet's Own Boy: The Story of Aaron Swartz, The (2014)\",Documentary\r\n", "112370,Transformers: Age of Extinction (2014),Action|Adventure|Sci-Fi\r\n", "112421,Frank (2014),Comedy|Drama|Mystery\r\n", "112450,They Came Together (2014),Comedy|Romance\r\n", "112454,Honey (Miele) (2013),Drama\r\n", "112460,Planes: Fire & Rescue (2014),Adventure|Animation|Comedy\r\n", "112497,Tammy (2014),Comedy\r\n", "112512,Colourful (Karafuru) (2010),Animation|Drama|Fantasy|Mystery\r\n", "112515,\"Babadook, The (2014)\",Drama|Horror|Thriller\r\n", "112552,Whiplash (2014),Drama\r\n", "112556,Gone Girl (2014),Drama|Thriller\r\n", "112580,\"Angriest Man in Brooklyn, The (2014)\",Comedy|Drama\r\n", "112623,Dawn of the Planet of the Apes (2014),Sci-Fi\r\n", "112727,Deliver Us from Evil (2014),Crime|Horror|Thriller\r\n", "112749,And So It Goes (2014),Comedy|Drama|Romance\r\n", "112788,Sex Tape (2014),Comedy\r\n", "112804,I Origins (2014),Drama|Sci-Fi\r\n", "112818,\"Purge: Anarchy, The (2014)\",Action|Horror|Thriller\r\n", "112852,Guardians of the Galaxy (2014),Action|Adventure|Sci-Fi\r\n", "112868,\"Signal, The (2014)\",Sci-Fi|Thriller\r\n", "112897,The Expendables 3 (2014),Action|Adventure\r\n", "112911,Hercules (2014),Action|Adventure\r\n", "112940,A Most Wanted Man (2014),Thriller\r\n", "113159,Life After Beth (2014),Comedy|Horror|Romance\r\n", "113186,Felony (2013),Thriller\r\n", "113207,Get on Up (2014),Drama|Musical\r\n", "113225,Magic in the Moonlight (2014),Comedy|Drama|Romance\r\n", "113252,Housebound (2014),Comedy|Horror|Thriller\r\n", "113275,The Hundred-Foot Journey (2014),Comedy|Drama\r\n", "113278,Batman: Assault on Arkham (2014),Action|Animation|Crime|Thriller\r\n", "113280,White Frog (2012),Drama\r\n", "113313,\"Den, The (2013)\",Horror|Thriller\r\n", "113345,Jupiter Ascending (2015),Action|Adventure|Sci-Fi\r\n", "113348,Teenage Mutant Ninja Turtles (2014),Action|Adventure|Comedy\r\n", "113350,I'll Follow You Down (2013),Drama|Mystery|Sci-Fi\r\n", "113374,\"Old Lady and the Pigeons, The (La vieille dame et les pigeons) (1997)\",Animation|Comedy\r\n", "113378,\"Giver, The (2014)\",Drama|Sci-Fi\r\n", "113394,\"Pretty One, The (2013)\",Comedy|Drama\r\n", "113416,Revenge of the Green Dragons (2014),Action|Crime|Drama\r\n", "113453,Let's Be Cops (2014),Comedy|Crime\r\n", "113532,\"Inbetweeners 2, The (2014)\",Comedy\r\n", "113565,\"Sacrament, The (2013)\",Horror|Thriller\r\n", "113573,Sin City: A Dame to Kill For (2014),Action|Crime|Thriller\r\n", "113604,If I Stay (2014),Drama\r\n", "113705,\"Two Days, One Night (Deux jours, une nuit) (2014)\",Drama\r\n", "113741,Coherence (2013),Drama|Mystery|Sci-Fi|Thriller\r\n", "113780,\"As Above, So Below (2014)\",Horror|Thriller\r\n", "113829,\"One I Love, The (2014)\",Comedy|Drama|Romance\r\n", "113849,Headshot (2011),Crime|Drama|Thriller\r\n", "113862,\"Guest, The (2014)\",Thriller\r\n", "114028,Pride (2014),Comedy|Drama\r\n", "114044,Honeymoon (2014),Horror\r\n", "114060,The Drop (2014),Crime|Drama|Thriller\r\n", "114066,\"20,000 Days on Earth (2014)\",Documentary|Drama|Musical\r\n", "114074,The Skeleton Twins (2014),Drama\r\n", "114126,Beautiful Losers (2008),Documentary\r\n", "114180,\"Maze Runner, The (2014)\",Action|Mystery|Sci-Fi\r\n", "114184,Camp X-Ray (2014),Drama\r\n", "114246,\"Walk Among the Tombstones, A (2014)\",Action|Crime|Mystery|Thriller\r\n", "114265,Laggies (2014),Comedy|Romance\r\n", "114335,La cravate (1957),(no genres listed)\r\n", "114396,Cesar Chavez (2014),Drama\r\n", "114494,Who Am I (Kein System Ist Sicher) (2014),Thriller\r\n", "114554,\"Tale of Princess Kaguya, The (Kaguyahime no monogatari) (2013)\",Animation|Drama|Fantasy\r\n", "114601,This Is Where I Leave You (2014),Comedy|Drama\r\n", "114627,Angel's Egg (Tenshi no tamago) (1985),Animation|Drama|Fantasy\r\n", "114662,American Sniper (2014),Action|War\r\n", "114670,Tusk (2014),Comedy|Drama|Horror\r\n", "114678,Hector and the Search for Happiness (2014),Adventure|Comedy|Drama\r\n", "114707,Horns (2014),Horror|Mystery\r\n", "114713,Annabelle (2014),Horror\r\n", "114762,Two Night Stand (2014),Comedy|Romance\r\n", "114795,Dracula Untold (2014),Action|Drama|Fantasy\r\n", "114818,Stretch (2014),Action|Comedy|Crime\r\n", "114847,Autómata (Automata) (2014),Sci-Fi|Thriller\r\n", "114925,\"Captive, The (2014)\",Crime|Drama|Thriller\r\n", "114935,Predestination (2014),Action|Mystery|Sci-Fi|Thriller\r\n", "115065,Justin and the Knights of Valour (2013),Adventure|Animation\r\n", "115111,Ward 13 (2003),Action|Animation|Comedy|Horror\r\n", "115122,What We Do in the Shadows (2014),Comedy|Horror\r\n", "115149,John Wick (2014),Action|Thriller\r\n", "115151,Plastic (2014),Action|Crime\r\n", "115170,\"Judge, The (2014)\",Drama\r\n", "115203,\"Culture High, The (2014)\",Documentary\r\n", "115210,Fury (2014),Action|Drama|War\r\n", "115216,\"Salvation, The (2014)\",Drama|Western\r\n", "115231,St. Vincent (2014),Comedy\r\n", "115502,\"Rewrite, The (2014)\",Comedy|Romance\r\n", "115569,Nightcrawler (2014),Crime|Drama|Thriller\r\n", "115617,Big Hero 6 (2014),Action|Animation|Comedy\r\n", "115664,The Book of Life (2014),Adventure|Animation|Romance\r\n", "115667,\"Love, Rosie (2014)\",Comedy|Romance\r\n", "115680,Time Lapse (2014),Crime|Drama|Sci-Fi|Thriller\r\n", "115713,Ex Machina (2015),Drama|Sci-Fi|Thriller\r\n", "115727,Crippled Avengers (Can que) (Return of the 5 Deadly Venoms) (1981),Action|Adventure\r\n", "115819,Mr Hublot (2013),Animation|Comedy\r\n", "115828,Copenhagen (2014),Adventure|Drama|Romance\r\n", "115877,\"Simpsons: The Longest Daycare, The (2012)\",Animation|Comedy\r\n", "115969,Generation War (2013),Drama|War\r\n", "116044,Christmas in Connecticut (1992),Comedy|Romance\r\n", "116138,Leviathan (2014),Drama\r\n", "116169,Reign of Assassins (2010),Action\r\n", "116207,Zulu (2013),Crime|Drama|Thriller\r\n", "116411,Tangerines (2013),Drama\r\n", "116413,Life Partners (2014),Comedy|Romance\r\n", "116419,Drive Hard (2014),Action|Comedy|Crime\r\n", "116505,New Kids Nitro (2011),Action|Comedy\r\n", "116529,Stalingrad (2013),Action|Drama|War|IMAX\r\n", "116668,Dead Snow 2: Red vs. Dead (2014) ,Action|Comedy|Horror\r\n", "116718,Volga - Volga (1938),Comedy|Musical\r\n", "116724,You Are the Apple of My Eye (2011),Comedy|Drama|Romance\r\n", "116738,DeadHeads (2011),Adventure|Comedy|Horror\r\n", "116797,The Imitation Game (2014),Drama|Thriller|War\r\n", "116799,Inherent Vice (2014),Comedy|Crime|Drama|Mystery|Romance\r\n", "116817,Rudderless (2014),Comedy|Drama\r\n", "116823,The Hunger Games: Mockingjay - Part 1 (2014),Adventure|Sci-Fi|Thriller\r\n", "116849,Sex Ed (2014),Comedy|Romance\r\n", "116887,Exodus: Gods and Kings (2014),Action|Adventure|Drama\r\n", "116897,Wild Tales (2014),Comedy|Drama|Thriller\r\n", "116941,Jetsons: The Movie (1990),Animation|Children|Comedy|Musical|Sci-Fi\r\n", "116963,Ski School (1991),Comedy\r\n", "116977,Dumb and Dumber To (2014),Comedy\r\n", "116985,The Longest Week (2014),Comedy|Drama\r\n", "117107,Miss Meadows (2014),Drama\r\n", "117109,Too Many Cooks (2014),Comedy\r\n", "117133,Painted Skin (2008),Action|Drama|Thriller\r\n", "117176,The Theory of Everything (2014),Drama|Romance\r\n", "117192,Doctor Who: The Time of the Doctor (2013),Adventure|Drama\r\n", "117364,Virunga (2014),Documentary|War\r\n", "117368,The Madagascar Penguins in a Christmas Caper (2005),Animation|Comedy\r\n", "117444,Song of the Sea (2014),Animation|Children|Fantasy\r\n", "117466,In the Heart of the Sea (2015),Action|Adventure|Drama\r\n", "117511,Hello Ladies: The Movie (2014),Comedy\r\n", "117529,Jurassic World (2015),Action|Adventure|Drama|Sci-Fi|Thriller\r\n", "117531,Watermark (2014),Documentary\r\n", "117533,Citizenfour (2014),Documentary\r\n", "117545,Asterix: The Land of the Gods (Astérix: Le domaine des dieux) (2014),Animation\r\n", "117572,Hit by Lightning (2014),Comedy|Crime|Romance\r\n", "117590,Horrible Bosses 2 (2014),Comedy|Crime\r\n", "117630,Double Trouble (1992),Action|Comedy|Crime|Romance\r\n", "117646,Dragonheart 2: A New Beginning (2000),Action|Adventure|Comedy|Drama|Fantasy|Thriller\r\n", "117849,La Belle Verte (1996),Comedy\r\n", "117851,Penguins of Madagascar (2014),Adventure|Animation|Children|Comedy\r\n", "117867,'71 (2014),Action|Drama|Thriller|War\r\n", "117877,The Rabbi's Cat (Le chat du rabbin) (2011),Adventure|Animation\r\n", "117881,Still Alice (2014),Drama\r\n", "117887,Paddington (2014),Children|Comedy\r\n", "117895,Maze Runner: Scorch Trials (2015),Action|Thriller\r\n", "117922,Ice Age: A Mammoth Christmas (2011),Adventure|Animation|Children\r\n", "118082,The Voices (2014),Comedy|Crime|Thriller\r\n", "118166,Courier (1987),Comedy|Drama|Romance\r\n", "118198,The Green Prince (2014),Documentary|Drama|Thriller\r\n", "118248,Dying of the Light (2014),Drama|Thriller\r\n", "118270,Hellbenders (2012),Comedy|Horror|Thriller\r\n", "118290,Omega Doom (1996),Sci-Fi\r\n", "118326,By the Gun (2014),Crime|Drama|Thriller\r\n", "118354,Kill the Messenger (2014),Crime|Drama|Mystery|Thriller\r\n", "118512,Bring It On: In It To Win It (2007),Comedy\r\n", "118530,Fans (1999),Comedy\r\n", "118572,The Mule (2014),Comedy|Crime|Drama\r\n", "118696,The Hobbit: The Battle of the Five Armies (2014),Adventure|Fantasy\r\n", "118700,Selma (2014),Drama\r\n", "118702,Unbroken (2014),Drama|War\r\n", "118706,Black Sea (2015),Adventure|Mystery|Thriller\r\n", "118784,Good Copy Bad Copy (2007),Documentary\r\n", "118814,Playing It Cool (2014),Comedy|Romance\r\n", "118834,National Lampoon's Bag Boy (2007),Comedy\r\n", "118862,Closer to the Moon (2013),Comedy|Drama\r\n", "118880,\"Girl Walks Home Alone at Night, A (2014)\",Horror|Romance|Thriller\r\n", "118888,Dave Chappelle: For What it's Worth (2004),Comedy\r\n", "118894,Scooby-Doo! Abracadabra-Doo (2010),Animation|Children|Mystery\r\n", "118896,Mommy (2014),Drama\r\n", "118900,Wild (2014),Drama\r\n", "118924,Top Five (2014),Comedy\r\n", "118930,Bill Burr: I'm Sorry You Feel That Way (2014),Comedy\r\n", "118985,Big Eyes (2014),Drama\r\n", "118997,Into the Woods (2014),Children|Comedy|Fantasy|Musical\r\n", "119068,\"Men, Women & Children (2014)\",Comedy|Drama\r\n", "119141,The Interview (2014),Action|Comedy\r\n", "119145,Kingsman: The Secret Service (2015),Action|Adventure|Comedy|Crime\r\n", "119153,Bill Burr: You People Are All the Same (2012),Comedy\r\n", "119155,Night at the Museum: Secret of the Tomb (2014),Adventure|Children|Comedy|Fantasy\r\n", "119167,Paradox (2010),Sci-Fi|Thriller\r\n", "119218,The Punisher: Dirty Laundry (2012),Action|Crime|Drama\r\n", "119655,Seventh Son (2014),Adventure|Children|Fantasy\r\n", "119714,Corner Gas: The Movie (2014),Comedy\r\n", "119828,A Man Called Blade (1977),Action|Drama|Thriller|Western\r\n", "119964,A Merry Friggin' Christmas (2014),Comedy\r\n", "120130,Into the Forest of Fireflies' Light (2011),Animation|Drama|Fantasy\r\n", "120138,PK (2014),Comedy|Drama|Fantasy|Mystery|Romance\r\n", "120466,Chappie (2015),Action|Thriller\r\n", "120478,The Salt of the Earth (2014),Documentary\r\n", "120625,The Fool (2014),Drama\r\n", "120635,Taken 3 (2015),Action|Crime|Thriller\r\n", "120637,Blackhat (2015),Action|Crime|Drama|Mystery|Thriller\r\n", "120761,By the Law (1926),Drama\r\n", "120783,Son of a Gun (2014),Action|Crime|Drama\r\n", "120799,Terminator Genisys (2015),Action|Adventure|Sci-Fi|Thriller\r\n", "120807,John Mulaney: New In Town (2012),Comedy\r\n", "120813,Patton Oswalt: My Weakness Is Strong (2009),Comedy\r\n", "120827,The Hound of the Baskervilles (1988),Crime|Drama|Horror|Mystery\r\n", "120919,Man on High Heels (2014),Action|Comedy\r\n", "121007,Space Buddies (2009),Adventure|Children|Fantasy|Sci-Fi\r\n", "121035,Houdini (2014),Drama\r\n", "121097,To Grandmother's House We Go (1992),Adventure|Children|Comedy\r\n", "121099,101 Dalmatians II: Patch's London Adventure (2003),Animation|Children\r\n", "121129,The Hungover Games (2014),Comedy\r\n", "121169,The Duke of Burgundy (2014),Drama\r\n", "121171,Red Army (2014),Documentary\r\n", "121231,It Follows (2014),Horror\r\n", "121253,The Town that Dreaded Sundown (2014),Horror|Thriller\r\n", "121338,Carry on Cabby (1963),Adventure|Comedy|Romance\r\n", "121342,Carry on Cruising (1962),Comedy|Romance\r\n", "121372,Bill Burr: Let It Go (2010),Comedy\r\n", "121374,Bill Burr: Why Do I Do This? (2008),Comedy\r\n", "121469,Killer Movie (2008),Comedy|Horror|Mystery|Thriller\r\n", "121715,Sebastian Maniscalco: What's Wrong with People? (2012),Comedy\r\n", "121781,Stuart Little 3: Call of the Wild (2005),Animation|Children|Comedy|Fantasy\r\n", "122092,Guy X (2005),Comedy|War\r\n", "122246,Tooth Fairy 2 (2012),Children|Comedy\r\n", "122260,The Diary of Anne Frank (2009),Drama|War\r\n", "122433,The Deadly Bees (1967),Horror|Mystery|Thriller\r\n", "122490,Wicked Blood (2014),Action|Drama|Thriller\r\n", "122627,Oblivion 2: Backlash (1996),Sci-Fi\r\n", "122882,Mad Max: Fury Road (2015),Action|Adventure|Sci-Fi|Thriller\r\n", "122884,Insidious: Chapter 3 (2015),Fantasy|Horror|Thriller\r\n", "122886,Star Wars: Episode VII - The Force Awakens (2015),Action|Adventure|Fantasy|Sci-Fi|IMAX\r\n", "122888,Ben-hur (2016),(no genres listed)\r\n", "122890,Warcraft (2016),Action|Adventure|Fantasy\r\n", "122892,Avengers: Age of Ultron (2015),Action|Adventure|Sci-Fi\r\n", "122896,Pirates of the Caribbean: Dead Men Tell No Tales (2017),(no genres listed)\r\n", "122898,Justice League (2017),Action|Adventure|Sci-Fi\r\n", "122900,Ant-Man (2015),Action|Adventure|Sci-Fi\r\n", "122902,Fantastic Four (2015),Action|Adventure|Fantasy|Sci-Fi\r\n", "122904,Deadpool (2016),Action|Adventure|Comedy|Sci-Fi\r\n", "122906,Black Panther (2017),Action|Adventure|Sci-Fi\r\n", "122912,Avengers: Infinity War - Part I (2018),Action|Adventure|Sci-Fi\r\n", "122916,Thor: Ragnarok (2017),Action|Adventure|Sci-Fi\r\n", "122918,Guardians of the Galaxy 2 (2017),Action|Adventure|Sci-Fi\r\n", "122920,Captain America: Civil War (2016),Action|Sci-Fi|Thriller\r\n", "122922,Doctor Strange (2016),Action|Adventure|Sci-Fi\r\n", "122924,X-Men: Apocalypse (2016),Action|Adventure|Fantasy|Sci-Fi\r\n", "122926,Untitled Spider-Man Reboot (2017),Action|Adventure|Fantasy\r\n", "122932,Elsa & Fred (2014),Children|Comedy|Romance\r\n", "123200,Jim Jefferies: I Swear to God (2009),Comedy\r\n", "123310,Tornado! (1996),Action\r\n", "123545,The Blue Lagoon (1949),Drama|Romance\r\n", "123553,In the Name of the King III (2014),Action|Adventure|Drama|Fantasy\r\n", "123947,Cake (2014),Drama\r\n", "124273,Kevin Smith: Too Fat For 40 (2010),Comedy\r\n", "124404,\"Snowflake, the White Gorilla (2011)\",Adventure|Animation|Children|Comedy\r\n", "124484,Kenny & Company (1976),Comedy|Drama\r\n", "124851,Delirium (2014),Adventure|Romance|Sci-Fi\r\n", "124853,Why Man Creates (1968),Animation|Documentary\r\n", "124859,The Gambler (2014),Crime|Drama|Thriller\r\n", "125221,The Beast of Hollow Mountain (1956),Horror|Sci-Fi|Western\r\n", "125914,Mortdecai (2015),Adventure|Comedy|Mystery|Romance\r\n", "125916,Fifty Shades of Grey (2015),Drama|Romance\r\n", "125970,Halloweentown (1998),Adventure|Children|Comedy|Fantasy\r\n", "125974,Halloweentown High (2004),Adventure|Children|Comedy|Fantasy\r\n", "126088,A Flintstones Christmas Carol (1994),Animation|Children|Comedy\r\n", "126090,Hedgehog in the Fog (1975),Animation\r\n", "126142,The Cave of the Golden Rose (1991),Adventure|Children|Fantasy\r\n", "126420,American Heist (2015),Action\r\n", "126426,Solyaris (1968),Drama|Sci-Fi\r\n", "126430,The Pacific (2010),Action|Adventure|Drama|War\r\n", "126482,Strange Magic (2015),Animation|Children|Fantasy|Musical\r\n", "126548,The DUFF (2015),Comedy\r\n", "126577,\"Daddy, I'm A Zombie (2012)\",Animation|Comedy|Fantasy\r\n", "126921,The Fox and the Hound 2 (2006),Adventure|Animation|Children|Comedy\r\n", "127052,Operation 'Y' & Other Shurik's Adventures (1965),Comedy|Crime|Romance\r\n", "127096,Project Almanac (2015),Sci-Fi|Thriller\r\n", "127098,Louis C.K.: Live at The Comedy Store (2015),Comedy\r\n", "127108,Brooklyn (2015),Drama|Romance\r\n", "127114,The End of the Tour (2015),Drama\r\n", "127116,Experimenter (2015),Drama\r\n", "127130,Mistress America (2015),Comedy\r\n", "127132,Zipper (2015),Drama|Thriller\r\n", "127134,A Walk in the Woods (2015),Adventure|Comedy|Drama\r\n", "127136,True Story (2015),Drama|Mystery|Thriller\r\n", "127146,Kurt Cobain: Montage of Heck (2015),Documentary\r\n", "127152,Going Clear: Scientology and the Prison of Belief (2015),Documentary\r\n", "127164,\"What Happened, Miss Simone? (2015)\",Documentary\r\n", "127172,A Story of Children and Film (2013),Documentary\r\n", "127180,\"Story of Film: An Odyssey, The (2011)\",Documentary\r\n", "127184,Eden (2014),Drama\r\n", "127194,The D Train (2015),Comedy\r\n", "127198,Dope (2015),Comedy|Drama\r\n", "127202,Me and Earl and the Dying Girl (2015),Drama\r\n", "127204,The Overnight (2015),Comedy\r\n", "127212,The Stanford Prison Experiment (2015),Drama|Thriller\r\n", "127298,A Pigeon Sat on a Branch Reflecting on Existence (2014),Comedy|Drama\r\n", "127319,The Loft (2014),Thriller\r\n", "127323,Vice (2015),Action|Adventure|Sci-Fi|Thriller\r\n", "127390,Family Guy Presents: Blue Harvest (2007),Animation|Comedy\r\n", "128087,Trinity and Sartana Are Coming (1972),Comedy|Western\r\n", "128089,Kevin Hart: I'm a Grown Little Man (2009),Comedy\r\n", "128097,Jim Norton: American Degenerate (2013),Comedy\r\n", "128099,Jim Jefferies: BARE (2014),Comedy\r\n", "128197,Hard Promises (1991),Comedy|Romance\r\n", "128360,The Hateful Eight (2015),Western\r\n", "128366,Patton Oswalt: Tragedy Plus Comedy Equals Time (2014),Comedy\r\n", "128488,Wild Card (2015),Action|Crime|Drama|Thriller\r\n", "128512,Paper Towns (2015),Drama|Mystery|Romance\r\n", "128520,The Wedding Ringer (2015),Comedy\r\n", "128542,Wyrmwood (2015),Action|Horror|Sci-Fi\r\n", "128592,The Boy Next Door (2015),Mystery|Thriller\r\n", "128594,Boy Meets Girl (2015),Comedy|Drama|Romance\r\n", "128620,Victoria (2015),Crime|Drama|Romance\r\n", "128695,The Dark Valley (2014),Western\r\n", "128736,I'm Here (2010),Drama\r\n", "128832,The Last Five Years (2014),Comedy|Drama|Musical|Romance\r\n", "128838,Crimson Peak (2015),Horror\r\n", "128842,Dragonheart 3: The Sorcerer's Curse (2015),Action|Adventure|Fantasy\r\n", "128852,Chris Rock: Bigger & Blacker (1999),Comedy\r\n", "128900,The Natural Love (1996),Documentary\r\n", "128902,The Forgotten Space (2010),Documentary\r\n", "128908,Cloudburst (2011),Adventure|Comedy|Drama\r\n", "128914,Tom Segura: Completely Normal (2014),Comedy\r\n", "128944,\"Honey, We Shrunk Ourselves (1997)\",Action|Adventure|Children|Comedy|Sci-Fi\r\n", "128968,Stitch! The Movie (2003),Animation|Children|Comedy\r\n", "128975,Hot Tub Time Machine 2 (2015),Comedy|Sci-Fi\r\n", "128991,Johnny Express (2014),Animation|Comedy|Sci-Fi\r\n", "129011,Eddie Izzard: Glorious (1997),Comedy\r\n", "129229,Northmen - A Viking Saga (2014),Action|Adventure\r\n", "129250,Superfast! (2015),(no genres listed)\r\n", "129313,Reality (2014),Comedy\r\n", "129333,Julia (2014),Horror|Thriller\r\n", "129354,Focus (2015),Comedy|Crime|Drama|Romance\r\n", "129397,Marvel One-Shot: Item 47 (2012),Action|Fantasy|Sci-Fi\r\n", "129428,The Second Best Exotic Marigold Hotel (2015),Comedy|Drama\r\n", "129514,George Carlin: It's Bad for Ya! (2008),Comedy\r\n", "129657,Tracers (2015),Action\r\n", "129659,\"McFarland, USA (2015)\",Drama\r\n", "129737,Unfinished Business (2015),Comedy\r\n", "129779,Ghost in the Shell Arise - Border 1: Ghost Pain (2013),Action|Animation|Sci-Fi\r\n", "129937,Run All Night (2015),Action|Crime|Drama|Thriller\r\n", "130050,Digging Up the Marrow (2014),Drama|Fantasy|Horror|Mystery|Thriller\r\n", "130052,Clown (2014),Drama|Horror\r\n", "130073,Cinderella (2015),Children|Drama|Fantasy|Romance\r\n", "130083,Kidnapping Mr. Heineken (2015),Action|Crime|Drama|Thriller\r\n", "130087,The Cobbler (2015),Comedy|Drama|Fantasy\r\n", "130444,Ruby Red (2013),Adventure|Children|Fantasy|Sci-Fi\r\n", "130450,Pan (2015),Adventure|Children|Fantasy\r\n", "130452,While We're Young (2014),Comedy|Drama\r\n", "130482,Too Late for Tears (1949),Crime|Drama|Film-Noir|Mystery|Thriller\r\n", "130490,Insurgent (2015),Action|Sci-Fi|Thriller\r\n", "130498,La vérité si je mens ! (1997),Comedy\r\n", "130518,The Amazing Screw-On Head (2006),Action|Adventure|Animation|Comedy|Sci-Fi\r\n", "130520,Home (2015),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi\r\n", "130576,Midnight Special (2015),Drama|Sci-Fi\r\n", "130578,\"Gunman, The (2015)\",Action|Thriller\r\n", "130634,Furious 7 (2015),Action|Crime|Thriller\r\n", "130686,The Final Girls (2015),Comedy|Horror\r\n", "130840,Spring (2015),Horror|Romance|Sci-Fi\r\n", "130842,Power/Rangers (2015),Action|Adventure|Sci-Fi\r\n", "130970,George Carlin: Life Is Worth Losing (2005),Comedy\r\n", "130976,Legend No. 17 (2013),Drama\r\n", "130978,Love and Pigeons (1985),Comedy|Romance\r\n", "131013,Get Hard (2015),Comedy|Crime\r\n", "131023,That Sugar Film (2014),Documentary\r\n", "131098,Saving Santa (2013),Animation|Children|Comedy\r\n", "131104,The Brain (1969),Comedy|Crime\r\n", "131130,Tom and Jerry: A Nutcracker Tale (2007),Animation|Comedy\r\n", "131237,What Men Talk About (2010),Comedy\r\n", "131439,Kill Me Three Times (2014),Thriller\r\n", "131480,Poker Night (2014),Action|Crime|Thriller\r\n", "131578,Reckless Kelly (1994),Comedy\r\n", "131610,Willy/Milly (1986),Comedy|Fantasy\r\n", "131656,Shaun the Sheep Movie (2015),Adventure|Animation|Children|Comedy\r\n", "131714,Last Knights (2015),Action|Adventure\r\n", "131724,The Jinx: The Life and Deaths of Robert Durst (2015),Documentary\r\n", "131739,Batman vs. Robin (2015),Action|Adventure|Animation\r\n", "131749,Libre et assoupi (2014),Comedy\r\n", "131796,Woman in Gold (2015),Drama\r\n", "131826,Iliza Shlesinger: Freezing Hot (2015),Comedy\r\n", "131920,The Road Within (2014),Comedy|Drama\r\n", "131934,The Malibu Bikini Shop (1986),Comedy\r\n", "132046,Tomorrowland (2015),Action|Adventure|Children|Mystery|Sci-Fi\r\n", "132084,Let It Be Me (1995),(no genres listed)\r\n", "132153,Buzzard (2015),Comedy|Drama|Horror\r\n", "132157,Paul Blart: Mall Cop 2 (2015),Action|Comedy|Crime\r\n", "132333,Seve (2014),Documentary|Drama\r\n", "132335,Breathe (2014),Drama\r\n", "132362,Patlabor 2: The Movie (1993),Action|Animation|Sci-Fi\r\n", "132422,Da Sweet Blood of Jesus (2014),Comedy|Romance|Thriller\r\n", "132424,The Longest Ride (2015),Drama|Romance\r\n", "132454,Girltrash: All Night Long (2014),Comedy|Crime|Drama\r\n", "132462,Sword of Vengeance (2014),Action|Adventure|Drama\r\n", "132488,Lovesick (2014),Comedy|Romance\r\n", "132496,Danny Collins (2015),Comedy|Drama\r\n", "132584,The Even Stevens Movie (2003),Children|Comedy\r\n", "132618,Kite (2014),Action|Crime|Drama|Mystery|Thriller\r\n", "132660,Man Up (2015),Comedy|Romance\r\n", "132796,San Andreas (2015),Action|Drama|Thriller\r\n", "132800,Welcome to Me (2014),Comedy|Drama\r\n", "132888,Comedy Central Roast of James Franco (2013),Comedy\r\n", "133115,We Could Be King (2014),Documentary\r\n", "133195,Hitman: Agent 47 (2015),Action|Crime|Thriller\r\n", "133217,B/W (2015),Comedy|Crime|Sci-Fi\r\n", "133281,Ricki and the Flash (2015),Comedy|Drama\r\n", "133365,Partisan (2015),Drama|Thriller\r\n", "133377,Infini (2015),Horror|Sci-Fi|Thriller\r\n", "133419,Pitch Perfect 2 (2015),Comedy\r\n", "133545,Just Before I Go (2014),Comedy|Drama\r\n", "133645,Carol (2015),Drama|Romance\r\n", "133712,Office Romance (1977),Comedy|Romance\r\n", "133716,Bootleggers (1961),Comedy|Crime\r\n", "133771,The Lobster (2015),Comedy|Romance|Sci-Fi\r\n", "133780,Güeros (2014),Comedy|Drama\r\n", "133782,Maggie (2015),Drama|Horror|Thriller\r\n", "133798,Hot Pursuit (2015),Action|Comedy\r\n", "133802,Slow West (2015),Action|Thriller|Western\r\n", "133832,The Green Inferno (2014),Horror|Thriller\r\n", "133867,Barely Lethal (2015),Action|Adventure|Comedy\r\n", "133879,Carry On Don't Lose Your Head (1966),Comedy\r\n", "134004,What Love Is (2007),Comedy|Romance\r\n", "134019,The Monkey King (1964),Animation\r\n", "134021,5 to 7 (2014),Comedy|Drama|Romance\r\n", "134041,Afonya (1975),Comedy|Drama|Romance\r\n", "134095,My Love (2006),Animation|Drama\r\n", "134109,Radio Day (2008),Comedy\r\n", "134130,The Martian (2015),Adventure|Drama|Sci-Fi\r\n", "134158,Return to Sender (2015),Thriller\r\n", "134170,Kung Fury (2015),Action|Comedy|Fantasy|Sci-Fi\r\n", "134184,Elections Day (2007),Comedy\r\n", "134214,Youth (2015),Drama\r\n", "134246,Survivor (2015),Action|Thriller\r\n", "134248,Hot Girls Wanted (2015),Documentary\r\n", "134252,That Munchhausen (1979),Comedy|Drama|Fantasy\r\n", "134326,The Taming of the Scoundrel (1980),Comedy\r\n", "134334,Phir Hera Pheri (2006),Comedy\r\n", "134368,Spy (2015),Action|Comedy|Crime\r\n", "134393,Trainwreck (2015),Comedy|Romance\r\n", "134515,BMX Bandits (1983),Adventure|Crime|Drama\r\n", "134524,Turtle Power: The Definitive History of the Teenage Mutant Ninja Turtles (2014),Documentary\r\n", "134528,Aloha (2015),Comedy|Drama|Romance\r\n", "134775,Dragon Blade (2015),Action|Adventure|Drama\r\n", "134783,Entourage (2015),Comedy\r\n", "134796,Bitter Lake (2015),Documentary\r\n", "134808,No Way Jose (2015),Comedy\r\n", "134847,Ghost Graduation (2012),Comedy\r\n", "134849,Duck Amuck (1953),Animation|Children|Comedy\r\n", "134853,Inside Out (2015),Adventure|Animation|Children|Comedy|Drama|Fantasy\r\n", "134859,The Wolfpack (2015),Documentary\r\n", "134861,Trevor Noah: African American (2013),(no genres listed)\r\n", "134881,Love & Mercy (2014),Drama\r\n", "135133,The Hunger Games: Mockingjay - Part 2 (2015),Adventure|Sci-Fi\r\n", "135137,Pixels (2015),Action|Comedy|Sci-Fi\r\n", "135143,Fantastic Beasts and Where to Find Them (2016),Fantasy\r\n", "135198,The Hairdresser (2010),Comedy|Drama\r\n", "135216,The Star Wars Holiday Special (1978),Adventure|Children|Comedy|Sci-Fi\r\n", "135288,Mr. Holmes (2015),Drama|Mystery\r\n", "135436,The Secret Life of Pets (2016),Animation|Comedy\r\n", "135456,Ghost in the Shell: Stand Alone Complex - The Laughing Man (2005),Action|Animation|Crime|Sci-Fi\r\n", "135518,Self/less (2015),Action|Mystery|Sci-Fi|Thriller\r\n", "135532,The Last Witch Hunter (2015),Action|Adventure|Fantasy\r\n", "135534,Krampus (2015),Comedy|Fantasy|Horror\r\n", "135536,Suicide Squad (2016),Action|Crime|Sci-Fi\r\n", "135567,Independence Day: Resurgence (2016),Action|Adventure|Sci-Fi\r\n", "135569,Star Trek Beyond (2016),Action|Adventure|Sci-Fi\r\n", "135777,Golmaal (2006),Children|Comedy\r\n", "135787,Bruce Lee: A Warrior's Journey (2000),Documentary\r\n", "135803,Five Element Ninjas (1982),Action\r\n", "135815,The Magnificent Ruffians (1979),Action|Drama\r\n", "135861,Ted 2 (2015),Comedy\r\n", "135885,Absolutely Anything (2015),Comedy|Sci-Fi\r\n", "135887,Minions (2015),Adventure|Animation|Children|Comedy\r\n", "135937,The Silence of the Hams (1994),Comedy|Thriller\r\n", "136012,Bloodsport III (1996),Action|Thriller\r\n", "136016,The Good Dinosaur (2015),Adventure|Animation|Children|Comedy|Fantasy\r\n", "136018,Black Mass (2015),Crime|Drama\r\n", "136020,Spectre (2015),Action|Adventure|Crime\r\n", "136024,The Professional: Golgo 13 (1983),Action|Animation|Crime\r\n", "136297,Mortal Kombat: The Journey Begins (1995),Action|Animation\r\n", "136305,Sharknado 3: Oh Hell No! (2015),Horror|Sci-Fi\r\n", "136341,Scooby-Doo! and the Samurai Sword (2009),Animation|Children|Comedy\r\n", "136353,Scooby-Doo! and the Loch Ness Monster (2004),Animation|Children|Comedy\r\n", "136355,Big Top Scooby-Doo! (2012),Animation|Children|Comedy\r\n", "136359,Scooby-Doo Goes Hollywood (1979),Animation|Children|Comedy\r\n", "136443,Gabriel Iglesias: Hot and Fluffy (2007),Comedy\r\n", "136445,George Carlin: Back in Town (1996),Comedy\r\n", "136447,George Carlin: You Are All Diseased (1999),Comedy\r\n", "136449,Ghost in the Shell 2.0 (2008),Action|Animation|Sci-Fi\r\n", "136469,Larry David: Curb Your Enthusiasm (1999),Comedy\r\n", "136471,Kevin Hart: Laugh at My Pain (2011),Comedy|Documentary\r\n", "136503,Tom and Jerry: Shiver Me Whiskers (2006),Animation|Children|Comedy\r\n", "136511,Jeff Dunham: All Over the Map (2014),Comedy\r\n", "136540,The FP (2012),Comedy\r\n", "136556,Kung Fu Panda: Secrets of the Masters (2011),Animation|Children\r\n", "136562,Steve Jobs (2015),Drama\r\n", "136564,Macbeth (2015),Drama\r\n", "136598,Vacation (2015),Adventure|Comedy\r\n", "136602,Creep (2014),Horror|Thriller\r\n", "136654,The Face of an Angel (2015),Drama\r\n", "136664,Wild Horses (2015),Crime|Drama\r\n", "136666,Search Party (2014),Comedy\r\n", "136778,The Squeeze (2015),Comedy|Drama\r\n", "136786,Careful What You Wish For (2015),Thriller\r\n", "136800,Robot Overlords (2014),Action|Adventure|Sci-Fi\r\n", "136816,Bad Asses on the Bayou (2015),Action|Comedy\r\n", "136834,The Eye: Infinity (2005),Horror\r\n", "136838,Kiss me Kismet (2006),Comedy|Romance\r\n", "136840,Da geht noch was! (2013),Comedy|Drama|Romance\r\n", "136850,Villain (1971),Crime|Drama|Thriller\r\n", "136859,The Lovers (2015),Action|Adventure|Romance|Sci-Fi\r\n", "136864,Batman v Superman: Dawn of Justice (2016),Action|Adventure|Fantasy|Sci-Fi\r\n", "136912,God Loves Caviar (2012),Adventure\r\n", "136958,Mortuary (1983),Horror\r\n", "137218,April Morning (1988),Drama\r\n", "137337,Amy (2015),Documentary\r\n", "137345,That Demon Within (2014),Crime|Thriller\r\n", "137517,Carnival Magic (1981),Drama|Fantasy\r\n", "137595,Magic Mike XXL (2015),Comedy|Drama\r\n", "137857,The Jungle Book (2016),Adventure|Drama|Fantasy\r\n", "137859,Dragon Ball Z Gaiden: The Plot to Destroy the Saiyans (1993),Action|Adventure|Animation\r\n", "137863,Dragon Ball Z: Resurrection of F (2015),Action|Adventure|Animation|Fantasy\r\n", "138036,The Man from U.N.C.L.E. (2015),Action|Adventure|Comedy\r\n", "138186,Sorrow (2015),Crime|Drama|Horror\r\n", "138204,7 Days in Hell (2015),Comedy\r\n", "138208,The Walk (2015),Adventure|Drama|Thriller\r\n", "138210,13 Hours (2016),Drama\r\n", "138396,There Will Come a Day (2013),Comedy|Drama\r\n", "138546,The Opposite Sex (2014),Comedy\r\n", "138610,The Gallows (2015),Horror|Thriller\r\n", "138632,Tokyo Tribe (2014),Action|Crime|Drama|Sci-Fi\r\n", "138702,Feast (2014),Animation|Children|Comedy|Drama|Romance\r\n", "138798,Joe Dirt 2: Beautiful Loser (2015),Comedy\r\n", "138835,Return to Treasure Island (1988),Adventure|Animation|Comedy\r\n", "138966,Nasu: Summer in Andalusia (2003),Animation\r\n", "139052,Dark Places (2015),Drama|Mystery|Thriller\r\n", "139130,Afro Samurai (2007),Action|Adventure|Animation|Drama|Fantasy\r\n", "139157,Massu Engira Maasilamani (2015),Comedy|Horror|Thriller\r\n", "139385,The Revenant (2015),Adventure|Drama\r\n", "139415,Irrational Man (2015),Crime|Drama\r\n", "139511,Exte: Hair Extensions (2007),Horror\r\n", "139640,Ooops! Noah is Gone... (2015),Animation\r\n", "139642,Southpaw (2015),Action|Drama\r\n", "139644,Sicario (2015),Crime|Drama|Mystery\r\n", "139655,Goodnight Mommy (Ich seh ich seh) (2014),Drama|Fantasy|Horror|Thriller\r\n", "139717,10 Cent Pistol (2015),Crime|Thriller\r\n", "139747,Before We Go (2014),Romance\r\n", "139855,Anomalisa (2015),Animation|Comedy|Fantasy\r\n", "139857,Colonia (2016),Thriller\r\n", "139859,Ghost in the Shell Arise - Border 2: Ghost Whispers (2013),Action|Animation|Sci-Fi|Thriller\r\n", "139915,How to Make Love Like an Englishman (2014),Comedy|Romance\r\n", "139994,Fracchia contro Dracula (1985),Comedy|Horror\r\n", "140016,Always Watching: A Marble Hornets Story (2015),Horror\r\n", "140038,Madly in Love (1981),Comedy\r\n", "140110,The Intern (2015),Comedy\r\n", "140133,Hollywood Chainsaw Hookers (1988),Comedy|Horror\r\n", "140162,Love (2015),Drama|Romance\r\n", "140174,Room (2015),Drama\r\n", "140237,The Runner (2015),Drama\r\n", "140247,The Gift (2015),Drama|Horror\r\n", "140265,George Carlin: Jammin' in New York (1992),Comedy\r\n", "140267,The Witch (2015),Horror\r\n", "140289,Men & Chicken (2015),Comedy|Drama\r\n", "140301,The Escort (2015),Comedy|Romance\r\n", "140359,Doctor Who: The Waters of Mars (2009),Adventure|Children|Sci-Fi\r\n", "140481,\"Family Guy Presents: Something, Something, Something, Dark Side (2009)\",Animation|Comedy|Sci-Fi\r\n", "140523,\"Visit, The (2015)\",Comedy|Horror\r\n", "140525,Secret in Their Eyes (2015),Crime|Drama|Mystery\r\n", "140541,The Electric Hotel (1908),Animation|Comedy|Sci-Fi\r\n", "140561,Jeff Ross Roasts Criminals: Live at Brazos County Jail (2015),Comedy|Documentary\r\n", "140627,Battle For Sevastopol (2015),Drama|Romance|War\r\n", "140711,American Ultra (2015),Action|Comedy|Sci-Fi|Thriller\r\n", "140715,Straight Outta Compton (2015),Drama\r\n", "140725,Cop Car (2015),Crime|Thriller\r\n", "140737,The Lost Room (2006),Action|Fantasy|Mystery\r\n", "140816,Tangerine (2015),Comedy|Drama\r\n", "140850,Every Secret Thing (2014),Crime|Drama|Mystery|Thriller\r\n", "140852,964 Pinocchio (1991),Horror|Sci-Fi\r\n", "140928,Joy (2015),Comedy|Drama\r\n", "140956,Ready Player One,Action|Sci-Fi|Thriller\r\n", "141004,Victor Frankenstein (2015),Drama|Horror|Sci-Fi\r\n", "141131,Guardians (2016),(no genres listed)\r\n", "141400,Invincible Shaolin (1978),Action\r\n", "141408,Scouts Guide to the Zombie Apocalypse (2015),Action|Comedy|Horror\r\n", "141422,Suffragette (2015),Drama\r\n", "141513,Fort Tilden (2014),Comedy\r\n", "141544,Turbo Kid (2015),Action|Adventure|Sci-Fi\r\n", "141646,The Unauthorized Saved by the Bell Story (2014),Comedy|Drama\r\n", "141668,War Room (2015),Drama\r\n", "141688,Legend (2015),Crime|Thriller\r\n", "141718,Deathgasm (2015),Comedy|Horror\r\n", "141749,The Danish Girl (2015),Drama\r\n", "141799,Cooties (2015),Comedy|Horror\r\n", "141810,Autumn Marathon (1979),Comedy|Drama\r\n", "141816,12 Chairs (1976),Adventure|Comedy\r\n", "141818,Ordinary Miracle (1978),Comedy|Drama|Fantasy|Romance\r\n", "141820,Old Men: Robbers (1971),Comedy\r\n", "141830,Unbelievable Adventures of Italians in Russia (1974),Adventure|Comedy\r\n", "141836,It Can't Be! (1975),Comedy\r\n", "141844,12 Chairs (1971),Adventure|Comedy\r\n", "141846,Steve Jobs: The Man in the Machine (2015),Documentary\r\n", "141866,Green Room (2015),(no genres listed)\r\n", "141890,Beasts of No Nation (2015),Drama|War\r\n", "141928,Bloodsucking Bastards (2015),Comedy|Horror\r\n", "141994,Saving Christmas (2014),Children|Comedy\r\n", "142020,Oscar (1967),Comedy\r\n", "142056,Iron Man & Hulk: Heroes United (2013),Action|Adventure|Animation\r\n", "142074,Knock Knock (2015),Crime|Horror|Thriller\r\n", "142115,The Blue Planet (2001),Documentary\r\n", "142196,Cornered! (2009),Comedy|Horror\r\n", "142222,Demolition (2016),Drama\r\n", "142366,Cigarette Burns (2005),Horror|Thriller\r\n", "142372,Our Brand Is Crisis (2015),Comedy|Drama\r\n", "142420,High Rise (2015),Action|Drama|Sci-Fi\r\n", "142422,The Night Before (2015),Comedy\r\n", "142424,Into the Forest (2015),Drama|Sci-Fi\r\n", "142444,The Editor (2015),Comedy|Horror|Mystery\r\n", "142448,Everest (2015),Adventure|Drama|Thriller\r\n", "142456,The Brand New Testament (2015),(no genres listed)\r\n", "142488,Spotlight (2015),Thriller\r\n", "142507,Pawn Sacrifice (2015),Drama\r\n", "142509,Hardcore Henry (2015),Action|Adventure|Sci-Fi\r\n", "142536,Burnt (2015),Drama\r\n", "142550,Ryuzo and the Seven Henchmen (2015),Action|Comedy\r\n", "142558,If I Were a Rich Man (2002),Comedy\r\n", "142598,Last Shift (2014),Horror\r\n", "142602,\"F*ck You, Goethe 2 (2015)\",Comedy\r\n", "142831,Garam Masala (2005),Comedy\r\n", "142961,Life Eternal (2015),Comedy|Crime|Thriller\r\n", "142997,Hotel Transylvania 2 (2015),Animation|Comedy\r\n", "143001,Anti-Social (2015),Crime\r\n", "143031,Jump In! (2007),Comedy|Drama|Romance\r\n", "143245,The Little Prince (2015),Animation|Fantasy\r\n", "143255,Narcopolis (2014),Mystery|Sci-Fi|Thriller\r\n", "143257,Ashby (2015),Comedy|Drama\r\n", "143355,Wonder Woman (2017),Action|Adventure|Fantasy\r\n", "143365,The Circle (2016),Drama|Sci-Fi|Thriller\r\n", "143367,Silence (2016),Drama|Thriller\r\n", "143385,Bridge of Spies (2015),Drama|Thriller\r\n", "143410,Hyena Road,(no genres listed)\r\n", "143458,The Great Hypnotist (2014),Drama|Mystery|Thriller\r\n", "143472,Into the Grizzly Maze (2015),Action|Horror|Thriller\r\n", "143511,Human (2015),Documentary\r\n", "143525,Chasuke's Journey (2015),Comedy|Drama\r\n", "143559,L.A. Slasher (2015),Comedy|Crime|Fantasy\r\n", "143859,\"Hail, Caesar! (2016)\",Comedy\r\n", "143896,How To Change The World (2015),Documentary\r\n", "143969,Er ist wieder da (2015),Comedy\r\n", "144210,Just Eat It: A Food Waste Story (2014),Documentary\r\n", "144222,Bros Before Hos (2013),Comedy\r\n", "144262,Slow Learners (2015),Comedy|Romance\r\n", "144352,Unforgiven (2013),Action|Crime|Drama\r\n", "144478,\"Sex, Drugs & Taxation (2013)\",Comedy|Drama\r\n", "144522,Sky High (2003),Action|Horror|Thriller\r\n", "144606,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Romance|Thriller\r\n", "144620,Goosebumps (2015),Adventure|Comedy|Horror\r\n", "144714,The Perfect Guy (2015),Drama|Thriller\r\n", "144716,Rock the Kasbah (2015),Comedy\r\n", "144734,Freaks of Nature (2015),Comedy|Horror|Sci-Fi\r\n", "144976,Bone Tomahawk (2015),Horror|Western\r\n", "145080,Extraordinary Tales (2015),Animation|Horror|Mystery\r\n", "145150,The Dressmaker (2015),Comedy|Drama|Thriller\r\n", "145283,Nowitzki: The Perfect Shot (2014),Documentary\r\n", "145418,Trumbo (2015),Drama\r\n", "145491,Our Lips Are Sealed (2000),Children|Comedy|Drama\r\n", "145724,Idaho Transfer (1973),Sci-Fi\r\n", "145745,Witch Hunt (1999),Crime|Drama\r\n", "145839,Concussion (2015),Drama\r\n", "145935,\"Peanuts Movie, The (2015)\",Adventure|Animation|Children|Comedy\r\n", "145951,Bloodsport: The Dark Kumite (1999),Action|Thriller\r\n", "145994,Formula of Love (1984),Comedy\r\n", "146024,A Man from Boulevard des Capucines (1987),Comedy|Romance|Western\r\n", "146028,The Adventures of Sherlock Holmes and Dr. Watson: The Hound of the Baskervilles (1981),Crime|Mystery\r\n", "146210,Blue Mountain State: The Rise of Thadland (2015),Comedy\r\n", "146244,Dil To Pagal Hai (1997),Comedy|Drama|Romance\r\n", "146309,The Boy and the Beast (2015),Action|Adventure|Animation\r\n", "146656,Creed (2015),Drama\r\n", "146662,Dragons: Gift of the Night Fury (2011),Adventure|Animation|Comedy\r\n", "146682,Twinsters (2015),Documentary\r\n", "146684,Cosmic Scrat-tastrophe (2015),Animation|Children|Comedy\r\n", "146688,Solace (2015),Fantasy|Mystery|Thriller\r\n", "146730,Lost in the Sun (2015),Action|Drama|Thriller\r\n", "146986,Le Maître d'école (1981),Comedy\r\n", "147002,Eros (2004),Drama|Romance\r\n", "147142,Those Happy Days (2006),Children|Comedy\r\n", "147196,The Girls (1961),Comedy|Romance\r\n", "147250,The Adventures of Sherlock Holmes and Doctor Watson,(no genres listed)\r\n", "147282,What Men Still Talk About (2011),Comedy\r\n", "147286,The Adventures of Sherlock Holmes and Doctor Watson: The Treasures of Agra (1983),Crime|Mystery\r\n", "147300,Adventures Of Sherlock Holmes And Dr. Watson: The Twentieth Century Approaches (1986),Crime|Mystery\r\n", "147326,The Adventures of Sherlock Holmes and Doctor Watson: King of Blackmailers (1980),Crime|Mystery\r\n", "147328,The Adventures of Sherlock Holmes and Dr. Watson: Bloody Signature (1979),Crime\r\n", "147330,Sherlock Holmes and Dr. Watson: Acquaintance (1979),Crime\r\n", "147372,Doctor Who: Last Christmas (2014),Adventure|Drama|Fantasy|Sci-Fi\r\n", "147374,\"Doctor Who: The Doctor, the Widow and the Wardrobe (2011)\",Adventure|Drama\r\n", "147376,Doctor Who: A Christmas Carol (2010),Sci-Fi\r\n", "147378,Doctor Who: Planet of the Dead (2009),Adventure|Children|Drama|Sci-Fi\r\n", "147380,Doctor Who: The Next Doctor (2008),Adventure|Children|Drama|Sci-Fi\r\n", "147382,Doctor Who: Voyage Of The Damned (2007),Action|Sci-Fi\r\n", "147384,Doctor Who: The Runaway Bride (2007),Sci-Fi\r\n", "147410,A Perfect Day (2015),Comedy|Drama\r\n", "147657,Masked Avengers (1981),Action\r\n", "147662,Return of the One-Armed Swordsman (1969),Action|Adventure\r\n", "147936,The Lord's Lantern in Budapest (1999),Comedy|Drama\r\n", "148166,Hitchcock/Truffaut (2015),Documentary\r\n", "148172,The 5th Wave (2016),Adventure|Sci-Fi|Thriller\r\n", "148238,A Very Murray Christmas (2015),Comedy\r\n", "148424,Chi-Raq (2015),Comedy|Drama\r\n", "148482,Truth (2015),Drama\r\n", "148592,Just Jim (2015),Comedy\r\n", "148626,\"Big Short, The (2015)\",Drama\r\n", "148632,Applesauce (2015),Comedy\r\n", "148652,The Ridiculous 6 (2015),Comedy|Western\r\n", "148667,John Mulaney: The Comeback Kid (2015),Comedy\r\n", "148671,Saw (2003),Crime|Horror\r\n", "148675,North Pole: Open For Christmas (2015),Children|Fantasy\r\n", "148709,Mojave (2015),Thriller\r\n", "148775,Wizards of Waverly Place: The Movie (2009),Adventure|Children|Comedy|Drama|Fantasy|Sci-Fi\r\n", "148881,World of Tomorrow (2015),Animation|Comedy\r\n", "148888,Zoolander 2 (2016),Comedy\r\n", "148956,How to Be Single (2016),Comedy|Romance\r\n", "148978,Blue Exorcist: The Movie (2012),Animation|Fantasy|Horror|Mystery\r\n", "148982,Devil Dog: The Hound of Hell (1978),Horror\r\n", "149011,He Never Died (2015),Comedy|Drama|Horror\r\n", "149144,Parasyte: Part 1 (2014),Horror|Sci-Fi\r\n", "149146,Parasyte: Part 2 (2015),Horror|Sci-Fi\r\n", "149330,A Cosmic Christmas (1977),(no genres listed)\r\n", "149334,Nocturnal Animals,Drama|Thriller\r\n", "149350,Lumberjack Man (2015),Comedy|Horror\r\n", "149352,Daddy's Home (2015),Comedy\r\n", "149354,Sisters (2015),Children|Comedy\r\n", "149380,'Tis the Season for Love (2015),Romance\r\n", "149406,Kung Fu Panda 3 (2016),Action|Adventure|Animation\r\n", "149508,Spellbound (2011),Comedy|Romance\r\n", "149566,Unicorn City (2012),Comedy|Romance\r\n", "149590,Standoff (2016),Thriller\r\n", "149612,Swelter (2014),Action|Drama|Thriller\r\n", "149830,Pride and Prejudice and Zombies (2016),Comedy|Horror|Romance|Thriller\r\n", "149902,Garm Wars: The Last Druid (2014),Action|Sci-Fi|Thriller\r\n", "150254,The Devil's Candy (2015),Horror\r\n", "150401,Close Range (2015),Action|Crime\r\n", "150548,Sherlock: The Abominable Bride (2016),Action|Crime|Drama|Mystery|Thriller\r\n", "150554,The Love Bug (1997),Adventure|Children|Comedy|Fantasy\r\n", "150596,Doctor Who: The Husbands of River Song (2015),Comedy|Drama|Sci-Fi\r\n", "150604,Moonwalkers (2015),Comedy\r\n", "150696,Tomorrow (2015),Documentary\r\n", "150993,Anacleto: Agente secreto (2015),Action|Comedy\r\n", "151311,Wiener-Dog (2016),Comedy\r\n", "151315,Ride Along 2 (2016),Action|Comedy\r\n", "151317,Maggie's Plan (2015),Comedy\r\n", "151455,Eddie the Eagle (2016),Comedy\r\n", "151479,The Flash 2 - Revenge of the Trickster (1991),Action|Fantasy|Sci-Fi\r\n", "151501,Exposed (2016),Drama\r\n", "151557,Stonewall (2015),Drama\r\n", "151559,Frankenstein (2015),Horror|Thriller\r\n", "151653,Welcome to Happiness (2015),Comedy|Drama|Fantasy\r\n", "151687,Risen (2016),Children|Drama\r\n", "151695,The Survivalist (2015),Drama|Sci-Fi|Thriller\r\n", "151739,Dirty Grandpa (2016),Comedy\r\n", "151745,Reptilicus (1961),Horror|Sci-Fi\r\n", "151759,Requiem for the American Dream (2015),Documentary\r\n", "151763,Death Note Rewrite: Genshisuru Kami (2007),Mystery\r\n", "151769,Three from Prostokvashino (1978),Animation\r\n", "151777,The Finest Hours (2016),Drama|Thriller\r\n", "151781,Ghost in the Shell: Solid State Society (2006),Action|Animation|Crime|Sci-Fi|Thriller\r\n", "152037,Grease Live (2016),(no genres listed)\r\n", "152063,Gods of Egypt (2016),Adventure|Fantasy\r\n", "152065,Embrace of the Serpent (2016),Adventure|Drama\r\n", "152071,Race (2016),Drama\r\n", "152077,10 Cloverfield Lane (2016),Thriller\r\n", "152079,London Has Fallen (2016),Action|Crime|Thriller\r\n", "152081,Zootopia (2016),Action|Adventure|Animation|Children|Comedy\r\n", "152083,Whiskey Tango Foxtrot (2016),Comedy|War\r\n", "152085,Desierto (2016),Drama\r\n", "152091,The Brothers Grimsby (2016),Comedy\r\n", "152105,Dad's Army (1971),Comedy\r\n", "152173,Michael Jackson's Thriller (1983),Horror\r\n", "152270,The Wait (2015),Drama\r\n", "152284,War and Peace (2016),Drama|Romance\r\n", "152372,Southbound (2016),Horror\r\n", "152591,Ip Man 3 (2015),Action\r\n", "152658,Santa's Little Helper (2015),Children\r\n", "152711,Who Killed Chea Vichea? (2010),Documentary\r\n", "152970,Hunt for the Wilderpeople (2016),Adventure|Comedy\r\n", "153070,Rabbits (2002),Comedy|Drama|Fantasy\r\n", "153236,Genius Party (2007),Animation\r\n", "153386,Long Live Ghosts! (1977),Children|Comedy|Fantasy\r\n", "153408,Tears for Sale (2008),Comedy|Drama|Fantasy\r\n", "154065,Dad's Army (2016),Comedy\r\n", "154358,The Barkley Marathons: The Race That Eats Its Young (2015),Documentary\r\n", "154975,Merci Patron ! (2016),Comedy|Documentary\r\n", "155064,The Neon Demon (2016),Drama|Horror|Mystery\r\n", "155168,Fraktus (2012),Comedy\r\n", "155288,Eye in the Sky (2016),Drama|Thriller|War\r\n", "155358,Camino (2016),Action|Adventure|Thriller\r\n", "155509,Mr. Right (2016),Action|Comedy|Romance\r\n", "155589,Noin 7 veljestä (1968),(no genres listed)\r\n", "155659,Florence Foster Jenkins (2016),Comedy|Drama\r\n", "155743,My Big Fat Greek Wedding 2 (2016),Comedy\r\n", "155774,Neon Bull (2015),Adventure\r\n", "155812,Get a Job (2016),Comedy\r\n", "155820,Keanu (2016),Comedy\r\n", "155892,Me Him Her (2015),Comedy\r\n", "156025,Ice Age: The Great Egg-Scapade (2016),Adventure|Animation|Children|Comedy\r\n", "156371,Everybody Wants Some (2016),Comedy\r\n", "156387,Sing Street (2016),Dram…" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: 1 intermediate output message was discarded.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: some intermediate output was truncated.\n" ] } ], "source": [ "# Cat does a number of things including:\n", "# create single or multiple files\n", "# view contents of a file in whole or in part\n", "# redirect output of the files to terminal or other files\n", "# combine, edit, modify files\n", "\n", "# In this output, jupyter will output the file to a little scrolling window\n", "# We are doing this so we can check out the format of the lines\n", "\n", "# 1st line are labels i.e. movieId,title,genres\n", "\n", "!cat ./movielens/movies.csv" ] }, { "cell_type": "code", "execution_count": 186, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "9743\r\n" ] } ], "source": [ "# here we are \"piping\" the output of this command into the wc command with the -l option\n", "\n", "!cat ./movielens/movies.csv | wc -l # This uses the wc command on the output of the command before the pipe | -l counts the nubmer of lines\n" ] }, { "cell_type": "code", "execution_count": 187, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "userId,movieId,tag,timestamp\r\r\n", "2,60756,funny,1445714994\r\r\n", "2,60756,Highly quotable,1445714996\r\r\n", "2,60756,will ferrell,1445714992\r\r\n", "2,89774,Boxing story,1445715207\r\r\n" ] } ], "source": [ "!head -5 ./movielens/tags.csv # The head command gives us the first few lines of the file" ] }, { "cell_type": "code", "execution_count": 188, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "userId,movieId,rating,timestamp\r\r\n", "1,1,4.0,964982703\r\r\n", "1,3,4.0,964981247\r\r\n", "1,6,4.0,964982224\r\r\n", "1,47,5.0,964983815\r\r\n" ] } ], "source": [ "!head -5 ./movielens/ratings.csv # displays the first 5 elements of the ratings.csv file" ] }, { "cell_type": "code", "execution_count": 189, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "It tells us that the object called \"movies\" is an object based on the class pandas.core.frame.DataFrame\n", "Gonna just check real quick if HTML works in printed objects here. Guess not.\n" ] }, { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
movieIdtitlegenres
01Toy Story (1995)Adventure|Animation|Children|Comedy|Fantasy
12Jumanji (1995)Adventure|Children|Fantasy
23Grumpier Old Men (1995)Comedy|Romance
34Waiting to Exhale (1995)Comedy|Drama|Romance
45Father of the Bride Part II (1995)Comedy
\n", "
" ] }, "execution_count": 189, "metadata": { }, "output_type": "execute_result" } ], "source": [ "movies = pd.read_csv('./movielens/movies.csv', sep=',') # this creates an object called movies, sep=',''means comma separated\n", "# I got an error while running this just now, and I had to go back to the very top of this document and re-load the pandas library because apparently\n", "#it wasn't in memory anymore.\n", "\n", "print(type(movies)) # this prints what \"type\" the movies object is\n", "print(\"It tells us that the object called \\\"movies\\\" is an object based on the class pandas.core.frame.DataFrame\")\n", "print(\"Gonna just check real quick if HTML works in printed objects here. Guess not.\")\n", "movies.head() # this just gives us the top of the movies object" ] }, { "cell_type": "code", "execution_count": 190, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
userIdmovieIdtagtimestamp
0260756funny1445714994
1260756Highly quotable1445714996
2260756will ferrell1445714992
3289774Boxing story1445715207
4289774MMA1445715200
\n", "
" ] }, "execution_count": 190, "metadata": { }, "output_type": "execute_result" } ], "source": [ "# Timestamps represent seconds since midnight Coordinated Universal Time (UTC) of January 1, 1970\n", "\n", "tags = pd.read_csv('./movielens/tags.csv', sep=',')\n", "tags.head()" ] }, { "cell_type": "code", "execution_count": 191, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
userIdmovieIdratingtimestamp
0114.0964982703
1134.0964981247
2164.0964982224
31475.0964983815
41505.0964982931
\n", "
" ] }, "execution_count": 191, "metadata": { }, "output_type": "execute_result" } ], "source": [ "ratings = pd.read_csv('./movielens/ratings.csv', sep=',', parse_dates=['timestamp']) # I don't know what parse_dates does here and it isn't explained.\n", "# They say they will talk more about 'timestamps' towards the end of this lesson.\n", "ratings.head()" ] }, { "cell_type": "code", "execution_count": 192, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ "del ratings ['timestamp']\n", "del tags['timestamp']" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "
Part 3.1.2 Data Structures
\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Series" ] }, { "cell_type": "code", "execution_count": 193, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 193, "metadata": { }, "output_type": "execute_result" } ], "source": [ "#Extract 0th row;\n", "\n", "#row_0 = tags.iloc[[0]] #returns row as a DataFrame. Can take many arguments or a slice using :\n", "row_0 = tags.loc[0] # returns row as a Series\n", "\n", "#Method used here is pandas.DataFrame.loc\n", "\n", "#row_0 = tags.loc[0] does the same thing for some reason. Think this uses row names as strings instead of integers or something like that.\n", "#row_0 = tags.loc[\"0\"] this didn't work either. There is no row called \"0\" but .loc[0] works while .iloc[0] does not.\n", "#I'm using the smaller tags.csv file which is in unicode, but I don't know why that makes it not work. It gives me a lecture about using integers wrongly.\n", "type(row_0)" ] }, { "cell_type": "code", "execution_count": 194, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "userId 2\n", "movieId 60756\n", "tag funny\n", "Name: 0, dtype: object\n" ] } ], "source": [ "print(row_0)" ] }, { "cell_type": "code", "execution_count": 195, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "Index([u'userId', u'movieId', u'tag'], dtype='object')" ] }, "execution_count": 195, "metadata": { }, "output_type": "execute_result" } ], "source": [ "row_0.index" ] }, { "cell_type": "code", "execution_count": 196, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "2" ] }, "execution_count": 196, "metadata": { }, "output_type": "execute_result" } ], "source": [ "row_0['userId']" ] }, { "cell_type": "code", "execution_count": 197, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "False" ] }, "execution_count": 197, "metadata": { }, "output_type": "execute_result" } ], "source": [ "'rating' in row_0" ] }, { "cell_type": "code", "execution_count": 198, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "0" ] }, "execution_count": 198, "metadata": { }, "output_type": "execute_result" } ], "source": [ "row_0.name" ] }, { "cell_type": "code", "execution_count": 199, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "'first_row'" ] }, "execution_count": 199, "metadata": { }, "output_type": "execute_result" } ], "source": [ "row_0 = row_0.rename('first_row')\n", "row_0.name" ] }, { "cell_type": "code", "execution_count": 0, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Dataframes" ] }, { "cell_type": "code", "execution_count": 200, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
userIdmovieIdtag
0260756funny
1260756Highly quotable
2260756will ferrell
3289774Boxing story
4289774MMA
\n", "
" ] }, "execution_count": 200, "metadata": { }, "output_type": "execute_result" } ], "source": [ "tags.head()" ] }, { "cell_type": "code", "execution_count": 201, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "RangeIndex(start=0, stop=3683, step=1)" ] }, "execution_count": 201, "metadata": { }, "output_type": "execute_result" } ], "source": [ "tags.index" ] }, { "cell_type": "code", "execution_count": 202, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "Index([u'userId', u'movieId', u'tag'], dtype='object')" ] }, "execution_count": 202, "metadata": { }, "output_type": "execute_result" } ], "source": [ "tags.columns\n" ] }, { "cell_type": "code", "execution_count": 203, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ "# Extract row 0, 11, 2000 from DataFrame" ] }, { "cell_type": "code", "execution_count": 204, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ "those_rows = tags.iloc[[0,11,2000]]" ] }, { "cell_type": "code", "execution_count": 205, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
userIdmovieIdtag
0260756funny
1118431gangster
20004745450women
\n", "
" ] }, "execution_count": 205, "metadata": { }, "output_type": "execute_result" } ], "source": [ "tags.iloc[[0,11,2000]]" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "
Part 3.1.3 Descriptive Statistics
\n", "See: Video 5ish: Descriptive Statistics I\n", "See: Video 6ish: Descriptive Statistics II

\n", "\n", "Function List
\n", "\n", "describe()
\n", "* Lists some descriptive statistics for the DataFrame as a whole.\n", "* The default behavior only provides a summary of the numerical columns.\n", "* Use DataFrame.describe(include = 'all') # to get a summary of all the columns when the DataFrame has *mixed column types*.\n", "\n", "
\n",
    "# EXAMPLE:\n",
    "In[1]:\n",
    "\n",
    "df = pd.DataFrame({'$a':['a', 'b', 'c', 'd', 'a'], '$b': np.arange(5)})\n",
    "df.describe(include = 'all')\n",
    "\n",
    "Out[1]:\n",
    "\n",
    "        $a    $b\n",
    "count   5   5.000000\n",
    "unique  4   NaN\n",
    "top     a   NaN\n",
    "freq    2   NaN\n",
    "mean    NaN 2.000000\n",
    "std     NaN 1.581139\n",
    "min     NaN 0.000000\n",
    "25%     NaN 1.000000\n",
    "50%     NaN 2.000000\n",
    "75%     NaN 3.000000\n",
    "max     NaN 4.000000\n",
    "\n",
    "#  To call describe() on just the numerical columns use describe(include = [np.number])\n",
    "#  To call describe() on just the objects (strings) using describe(include = ['O']).\n",
    "\n",
    "
\n", "\n", "

\n", " corr()      $ \\rho _{x,y} = \\frac{cov(X, Y)}{\\sigma x \\sigma y}$ \n", "* Calculates the correlation quotient for two columns (between -1 and 1)\n", "\n", "
\n",
    "\n",
    "\n",
    "# EXAMPLE:\n",
    "# A DataFrame with two columns, one column is called \n",
    "# \"Citable docs per Capita\" and the other is \"Energy Supply per Capita\"\n",
    "\n",
    "Top15['Citable docs per Capita'].corr(Top15['Energy Supply per Capita'])\n",
    "\n",
    "
\n", "\n", "min(), max(), mode(), median(), std()
\n", "These are all self-explanatory.

\n", " any() Returns whether ANY element is true
\n", " all() Returns whether ALL element is true
\n", " \n", "
\n",
    "\n",
    "# EXAMPLE:\n",
    "df = pd.DataFrame()\n",
    "\n",
    "df['x'] = [1,2,3]\n",
    "df['y'] = [3,4,5]\n",
    "\n",
    "print (df['x'] < df['y']).all() # more pythonic way of\n",
    "print (df['x'] < df['y']).any() # doing the same thing\n",
    "
\n", " \n", "Both of the above return True.\n", "\n", "
See Also:
\n", "Count()
\n", "Clip()
\n", "Rank()
\n", "Round()
" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Code Examples
" ] }, { "cell_type": "code", "execution_count": 206, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "count 100836.000000\n", "mean 3.501557\n", "std 1.042529\n", "min 0.500000\n", "25% 3.000000\n", "50% 3.500000\n", "75% 4.000000\n", "max 5.000000\n", "Name: rating, dtype: float64" ] }, "execution_count": 206, "metadata": { }, "output_type": "execute_result" } ], "source": [ "ratings['rating'].describe()" ] }, { "cell_type": "code", "execution_count": 207, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "3.501556983616962" ] }, "execution_count": 207, "metadata": { }, "output_type": "execute_result" } ], "source": [ "ratings['rating'].mean()" ] }, { "cell_type": "code", "execution_count": 208, "metadata": { "collapsed": false, "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
userIdmovieIdrating
count100836.000000100836.000000100836.000000
mean326.12756419435.2957183.501557
std182.61849135530.9871991.042529
min1.0000001.0000000.500000
25%177.0000001199.0000003.000000
50%325.0000002991.0000003.500000
75%477.0000008122.0000004.000000
max610.000000193609.0000005.000000
\n", "
" ] }, "execution_count": 208, "metadata": { }, "output_type": "execute_result" } ], "source": [ "ratings.describe()" ] }, { "cell_type": "code", "execution_count": 209, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "False" ] }, "execution_count": 209, "metadata": { }, "output_type": "execute_result" } ], "source": [ "filter_1 = ratings['rating'] > 5\n", "filter_1.any()" ] }, { "cell_type": "code", "execution_count": 210, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
userIdmovieIdrating
userId1.0000000.006773-0.049348
movieId0.0067731.000000-0.004061
rating-0.049348-0.0040611.000000
\n", "
" ] }, "execution_count": 210, "metadata": { }, "output_type": "execute_result" } ], "source": [ "ratings.corr() #This doesn't make sense to compute here." ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "\n", "
Part 3.1.4 Data Cleaning
\n", "* Missing values, outliers, invalid data, NAN value, None value\n", "* Replace / Fill gaps forward,backward / Drop fields / Interpolate\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "df.replace()
\n", "* Repeatedly replaces one value with another
\n", "\n", "df.fillna(method='ffill') or df.fillna(method='backfill')()
\n", "\n", "df.dropna()
\n", "\n", "df.dropna(axis=0)
Any rows with missing values are removed. (Default)\n", "\n", "df.dropna(axis=1)
Any columns with missing values are removed.\n", "\n", "df.interpolate()
Default is linear interpolation. There are \"other methods\" such as polynomial.\n", "\n", "\n", "\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Code Examples: Data Cleaning
" ] }, { "cell_type": "code", "execution_count": 212, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "(9742, 3)" ] }, "execution_count": 212, "metadata": { }, "output_type": "execute_result" } ], "source": [ "movies.shape" ] }, { "cell_type": "code", "execution_count": 214, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "movieId False\n", "title False\n", "genres False\n", "dtype: bool" ] }, "execution_count": 214, "metadata": { }, "output_type": "execute_result" } ], "source": [ "movies.isnull().any()" ] }, { "cell_type": "code", "execution_count": 215, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "(100836, 3)" ] }, "execution_count": 215, "metadata": { }, "output_type": "execute_result" } ], "source": [ "ratings.shape" ] }, { "cell_type": "code", "execution_count": 216, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "userId False\n", "movieId False\n", "rating False\n", "dtype: bool" ] }, "execution_count": 216, "metadata": { }, "output_type": "execute_result" } ], "source": [ "ratings.isnull().any()" ] }, { "cell_type": "code", "execution_count": 218, "metadata": { "collapsed": false, "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "userId False\n", "movieId False\n", "tag False\n", "dtype: bool" ] }, "execution_count": 218, "metadata": { }, "output_type": "execute_result" } ], "source": [ "tags.isnull().any()" ] }, { "cell_type": "code", "execution_count": 219, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "(3683, 3)" ] }, "execution_count": 219, "metadata": { }, "output_type": "execute_result" } ], "source": [ "tags.shape" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "
Part 3.1.5 Data Vizualization
\n", "* \n", "* No examples yet" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Method Examples: Data Vizualization
\n", "\n", "df.plot.bar()     Creates a bar chart
\n", "df.plot.box()     Creates a box and tail chart.
\n", "df.plot.hist()     Creates a histogram plot.
\n", "df.plot()            Creates a line graph.
\n", "
\n", "See also: The Pandas documentation for whole list of plot functions.
\n", "Function endings appear to include area, bar, barh (horizontal bar), box, density, hexbin (???), hist, kde (kernel density estimate), line, pie, scatter, boxplot, hist." ] }, { "cell_type": "code", "execution_count": 0, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Code Examples: Data Vizualization
" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Below: Matplotlib, histogram, boxplot" ] }, { "cell_type": "code", "execution_count": 229, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ "## matplotlib inline #A plotting library for Python and Pandas uses it for its plots, so you need to tell Jupyter to use matplotlib methods\n", "# ratings.hist(column='rating',figsize=(15,10)) #Has many options to control bin size, etc in documentation\n", "# ratings.boxplot(column='rating', figsize=(15,20)) #Makes oneothem box and tail plots.\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Below: Slicing, Filtering, Selecting Rows, Group by, etc
\n", "https://youtu.be/9vrETO88E94" ] }, { "cell_type": "code", "execution_count": 254, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "In Netflix queue 131\n", "atmospheric 36\n", "superhero 24\n", "thought-provoking 24\n", "surreal 23\n", "Name: tag, dtype: int64" ] }, "execution_count": 254, "metadata": { }, "output_type": "execute_result" } ], "source": [ "# movies[['title','genres']].head #slices out two columns\n", "# ratings[1000:1010] #get elements 1000:1010\n", "# ratings[:10] #get until 10\n", "# ratings[-10]\n", "tag_counts = tags['tag'].value_counts()\n", "tag_counts[:int(5.0)]" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "##### " ] }, { "cell_type": "code", "execution_count": 168, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "README.txt genome-tags.csv links.csv\tmovies.csv ratings.csv tags.csv\r\n" ] } ], "source": [ "!ls ./movielens" ] }, { "cell_type": "code", "execution_count": 169, "metadata": { "collapsed": false, "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "WARNING: some intermediate output was truncated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: 1 intermediate output message was discarded.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " the Sea (2002),Crime|Drama\r\n", "5564,Swimfan (2002),Thriller\r\n", "5568,Johnny Dangerously (1984),Comedy\r\n", "5569,\"Last House on the Left, The (1972)\",Crime|Horror|Thriller\r\n", "5570,Thesis (Tesis) (1996),Drama|Horror|Thriller\r\n", "5572,Barbershop (2002),Comedy\r\n", "5573,Stealing Harvard (2002),Comedy|Crime\r\n", "5574,\"Transporter, The (2002)\",Action|Crime\r\n", "5575,Alias Betty (Betty Fisher et autres histoires) (2001),Crime|Drama\r\n", "5577,Igby Goes Down (2002),Comedy|Drama\r\n", "5580,Aspen Extreme (1993),Action\r\n", "5581,Betsy's Wedding (1990),Comedy\r\n", "5582,Captain Ron (1992),Adventure|Comedy\r\n", "5584,Ernest Goes to Jail (1990),Comedy\r\n", "5585,Ernest Scared Stupid (1991),Comedy\r\n", "5588,\"Hills Have Eyes, The (1977)\",Horror\r\n", "5589,Indian Summer (1993),Comedy|Drama\r\n", "5590,\"Mack, The (1973)\",Crime\r\n", "5591,Monkey Trouble (1994),Children|Comedy\r\n", "5596,Spaced Invaders (1990),Adventure|Comedy|Sci-Fi\r\n", "5597,Suburban Commando (1991),Comedy|Sci-Fi\r\n", "5601,\"Yearling, The (1946)\",Children|Drama\r\n", "5602,\"Ladykillers, The (1955)\",Comedy|Crime\r\n", "5603,\"Lavender Hill Mob, The (1951)\",Comedy|Crime\r\n", "5604,\"Man in the White Suit, The (1951)\",Comedy|Sci-Fi\r\n", "5607,\"Son of the Bride (Hijo de la novia, El) (2001)\",Comedy|Drama\r\n", "5608,\"Das Experiment (Experiment, The) (2001)\",Drama|Thriller\r\n", "5609,Ballistic: Ecks vs. Sever (2002),Action|Thriller\r\n", "5610,\"Banger Sisters, The (2002)\",Comedy|Drama\r\n", "5611,\"Four Feathers, The (2002)\",Adventure|War\r\n", "5612,Trapped (2002),Action|Thriller\r\n", "5613,8 Women (2002),Comedy|Crime|Musical|Mystery\r\n", "5614,\"His Secret Life (a.k.a. Ignorant Fairies, The) (Fate ignoranti, Le) (2001)\",Drama|Romance\r\n", "5615,Invincible (2001),Drama\r\n", "5617,Secretary (2002),Comedy|Drama|Romance\r\n", "5618,Spirited Away (Sen to Chihiro no kamikakushi) (2001),Adventure|Animation|Fantasy\r\n", "5619,\"Trials of Henry Kissinger, The (2002)\",Documentary\r\n", "5620,Sweet Home Alabama (2002),Comedy|Romance\r\n", "5621,\"Tuxedo, The (2002)\",Action|Comedy\r\n", "5625,Moonlight Mile (2002),Drama|Romance\r\n", "5628,Wasabi (2001),Action|Comedy|Crime|Drama|Thriller\r\n", "5629,Jonah: A VeggieTales Movie (2002),Animation|Children|Musical\r\n", "5630,Red Dragon (2002),Crime|Mystery|Thriller\r\n", "5632,Bloody Sunday (2002),Drama\r\n", "5633,Heaven (2002),Drama\r\n", "5635,\"Man from Elysian Fields, The (2001)\",Drama\r\n", "5636,Welcome to Collinwood (2002),Comedy|Crime\r\n", "5637,Flirting (1991),Drama\r\n", "5638,Godzilla vs. Mothra (Mosura tai Gojira) (1964),Action|Adventure|Fantasy|Sci-Fi\r\n", "5640,\"Godzilla, King of the Monsters! (Kaijû-ô Gojira) (1956)\",Horror|Sci-Fi\r\n", "5643,Powaqqatsi (1988),Documentary\r\n", "5644,\"Pride of the Yankees, The (1942)\",Drama\r\n", "5646,Valmont (1989),Drama|Romance\r\n", "5649,Horror of Dracula (Dracula) (1958),Horror\r\n", "5650,Strange Brew (1983),Comedy\r\n", "5651,\"Incredible Mr. Limpet, The (1964)\",Animation|Comedy|War\r\n", "5657,Flashback (1990),Action|Adventure|Comedy|Crime|Drama\r\n", "5663,Below (2002),Horror\r\n", "5664,Brown Sugar (2002),Romance\r\n", "5665,Knockaround Guys (2002),Action|Comedy|Crime\r\n", "5666,\"Rules of Attraction, The (2002)\",Comedy|Drama|Romance|Thriller\r\n", "5667,Tuck Everlasting (2002),Drama|Fantasy\r\n", "5668,White Oleander (2002),Drama\r\n", "5669,Bowling for Columbine (2002),Documentary\r\n", "5670,Comedian (2002),Comedy|Documentary\r\n", "5672,Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002),Adventure|Animation|Children|Fantasy\r\n", "5673,Punch-Drunk Love (2002),Comedy|Drama|Romance\r\n", "5675,Swept Away (2002),Comedy|Romance\r\n", "5678,Formula 51 (2001),Action|Comedy|Crime|Thriller\r\n", "5679,\"Ring, The (2002)\",Horror|Mystery|Thriller\r\n", "5680,Auto Focus (2002),Crime|Drama\r\n", "5682,\"Grey Zone, The (2001)\",Drama\r\n", "5684,Naqoyqatsi (2002),Documentary\r\n", "5685,Real Women Have Curves (2002),Comedy|Drama\r\n", "5688,Tully (2000),Drama\r\n", "5689,Billy Bathgate (1991),Crime|Drama\r\n", "5690,Grave of the Fireflies (Hotaru no haka) (1988),Animation|Drama|War\r\n", "5693,Saturday Night Fever (1977),Comedy|Drama|Romance\r\n", "5694,Staying Alive (1983),Comedy|Drama|Musical\r\n", "5696,Urban Cowboy (1980),Drama\r\n", "5699,Tom Horn (1980),Western\r\n", "5700,The Pumaman (1980),Action|Adventure|Fantasy|Sci-Fi\r\n", "5704,Without Warning (a.k.a. Alien Warning) (a.k.a. It Came Without Warning) (1980),Horror|Sci-Fi\r\n", "5706,...All the Marbles (1981),Comedy|Drama\r\n", "5707,Absence of Malice (1981),Drama|Romance\r\n", "5710,Banana Joe (1981),Comedy\r\n", "5712,Blow Out (1981),Mystery|Thriller\r\n", "5720,\"Friend Is a Treasure, A (Chi Trova Un Amico, Trova un Tesoro) (Who Finds a Friend Finds a Treasure) (1981)\",Action|Adventure|Comedy\r\n", "5721,\"Chosen, The (1981)\",Drama\r\n", "5723,Continental Divide (1981),Comedy|Romance\r\n", "5733,\"Eyewitness (Janitor, The) (1981)\",Thriller\r\n", "5735,Faces of Death (1978),Documentary|Horror\r\n", "5736,Faces of Death 3 (1985),Documentary|Horror\r\n", "5741,\"Woman Next Door, The (Femme d'à côté, La) (1981)\",Drama|Romance\r\n", "5742,First Monday in October (1981),Comedy|Drama\r\n", "5745,\"Four Seasons, The (1981)\",Comedy|Drama\r\n", "5746,Galaxy of Terror (Quest) (1981),Action|Horror|Mystery|Sci-Fi\r\n", "5747,Gallipoli (1981),Drama|War\r\n", "5749,Ghost Story (1981),Drama|Horror\r\n", "5752,Gregory's Girl (1981),Comedy|Romance\r\n", "5755,Happy Birthday to Me (1981),Horror|Mystery\r\n", "5764,Looker (1981),Drama|Horror|Sci-Fi|Thriller\r\n", "5767,Teddy Bear (Mis) (1981),Comedy|Crime\r\n", "5768,Modern Problems (1981),Comedy|Fantasy\r\n", "5771,My Bloody Valentine (1981),Drama|Horror|Thriller\r\n", "5772,My Dinner with André (1981),Drama\r\n", "5773,Neighbors (1981),Comedy\r\n", "5779,Piranha II: The Spawning (1981),Horror|Sci-Fi\r\n", "5780,Polyester (1981),Comedy\r\n", "5782,\"Professional, The (Le professionnel) (1981)\",Action|Drama|Thriller\r\n", "5784,Ghost Ship (2002),Horror\r\n", "5785,Jackass: The Movie (2002),Action|Comedy|Documentary\r\n", "5786,Paid in Full (2002),Action|Drama\r\n", "5787,\"Truth About Charlie, The (2002)\",Mystery|Thriller\r\n", "5788,All or Nothing (2002),Drama\r\n", "5791,Frida (2002),Drama|Romance\r\n", "5792,Roger Dodger (2002),Comedy|Drama\r\n", "5796,Casino Royale (1967),Action|Adventure|Comedy\r\n", "5797,\"Company of Wolves, The (1984)\",Fantasy|Horror\r\n", "5799,Exodus (1960),Drama|Romance|War\r\n", "5801,\"Russians Are Coming, the Russians Are Coming, The (1966)\",Comedy|War\r\n", "5802,\"World of Henry Orient, The (1964)\",Comedy\r\n", "5803,I Spy (2002),Action|Adventure|Comedy|Crime\r\n", "5804,\"Santa Clause 2, The (2002)\",Children|Comedy|Fantasy|Romance\r\n", "5809,Femme Fatale (2002),Crime|Thriller\r\n", "5810,8 Mile (2002),Drama\r\n", "5812,Far from Heaven (2002),Drama|Romance\r\n", "5816,Harry Potter and the Chamber of Secrets (2002),Adventure|Fantasy\r\n", "5817,Ararat (2002),Drama|War\r\n", "5818,\"Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)\",Drama|Romance\r\n", "5820,Standing in the Shadows of Motown (2002),Documentary|Musical\r\n", "5826,Rio Grande (1950),Romance|Western\r\n", "5828,Blackrock (1997),Drama|Thriller\r\n", "5829,Men with Brooms (2002),Comedy|Drama|Romance\r\n", "5833,Dog Soldiers (2002),Action|Horror\r\n", "5836,Houseboat (1958),Comedy|Romance\r\n", "5838,Madame Bovary (1991),Drama\r\n", "5839,My Father's Glory (La gloire de mon père) (1990),Adventure|Drama\r\n", "5840,\"My Mother's Castle (Château de ma mère, Le) (1990)\",Comedy|Drama\r\n", "5841,Return to the Blue Lagoon (1991),Adventure|Romance\r\n", "5843,Toy Soldiers (1991),Action|Drama\r\n", "5847,Ragtime (1981),Drama\r\n", "5849,I'm Starting From Three (Ricomincio da Tre) (1981),Comedy\r\n", "5853,Scanners (1981),Horror|Sci-Fi|Thriller\r\n", "5856,\"Do You Remember Dolly Bell? (Sjecas li se, Dolly Bell) (1981)\",Comedy|Drama|Romance\r\n", "5863,Take This Job and Shove It (1981),Comedy\r\n", "5867,Thief (1981),Crime|Drama|Thriller\r\n", "5872,Die Another Day (2002),Action|Adventure|Thriller\r\n", "5873,The Emperor's Club (2002),Drama\r\n", "5874,Friday After Next (2002),Comedy\r\n", "5875,Personal Velocity (2002),Drama\r\n", "5876,\"Quiet American, The (2002)\",Drama|Thriller|War\r\n", "5878,Talk to Her (Hable con Ella) (2002),Drama|Romance\r\n", "5879,Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002),Animation|Comedy|Musical\r\n", "5880,Extreme Ops (2002),Action|Adventure|Crime|Thriller\r\n", "5881,Solaris (2002),Drama|Romance|Sci-Fi\r\n", "5882,Treasure Planet (2002),Adventure|Animation|Children|Sci-Fi|IMAX\r\n", "5883,They (2002),Horror|Thriller\r\n", "5884,Chopper Chicks in Zombietown (1989),Comedy|Horror\r\n", "5888,Brother (Brat) (1997),Crime|Drama\r\n", "5889,\"Cruel Romance, A (Zhestokij Romans) (1984)\",Drama|Romance\r\n", "5890,Elling (2001),Comedy|Drama\r\n", "5891,I Spit on Your Grave (Day of the Woman) (1978),Horror|Thriller\r\n", "5893,\"Last Seduction, The (1994)\",Crime|Drama|Thriller\r\n", "5896,New Waterford Girl (1999),Comedy\r\n", "5899,Zulu (1964),Action|Drama|War\r\n", "5900,Analyze That (2002),Comedy|Crime\r\n", "5901,Empire (2002),Crime|Drama\r\n", "5902,Adaptation (2002),Comedy|Drama|Romance\r\n", "5903,Equilibrium (2002),Action|Sci-Fi|Thriller\r\n", "5909,Visitor Q (Bizita Q) (2001),Comedy|Drama|Horror\r\n", "5912,Hit the Bank (Vabank) (1981),Comedy|Crime\r\n", "5915,Victory (a.k.a. Escape to Victory) (1981),Action|Drama|War\r\n", "5919,Android (1982),Sci-Fi\r\n", "5922,Attila (Attila Flagello di Dio) (1982),Action\r\n", "5925,\"Beast Within, The (1982)\",Horror\r\n", "5927,\"Best Little Whorehouse in Texas, The (1982)\",Comedy|Drama|Musical|Romance\r\n", "5929,\"Party 2, The (Boum 2, La) (1982)\",Comedy|Romance\r\n", "5932,Burden of Dreams (1982),Documentary\r\n", "5938,Deathtrap (1982),Comedy|Crime|Mystery|Thriller\r\n", "5941,Drumline (2002),Comedy|Drama|Musical|Romance\r\n", "5942,\"Hot Chick, The (2002)\",Comedy\r\n", "5943,Maid in Manhattan (2002),Comedy|Romance\r\n", "5944,Star Trek: Nemesis (2002),Action|Drama|Sci-Fi|Thriller\r\n", "5945,About Schmidt (2002),Comedy|Drama\r\n", "5947,Evelyn (2002),Drama\r\n", "5949,Intact (Intacto) (2001),Thriller\r\n", "5951,Morvern Callar (2002),Drama\r\n", "5952,\"Lord of the Rings: The Two Towers, The (2002)\",Adventure|Fantasy\r\n", "5953,Devils on the Doorstep (Guizi lai le) (2000),Drama|War\r\n", "5954,25th Hour (2002),Crime|Drama\r\n", "5955,Antwone Fisher (2002),Drama\r\n", "5956,Gangs of New York (2002),Crime|Drama\r\n", "5957,Two Weeks Notice (2002),Comedy|Romance\r\n", "5959,Narc (2002),Crime|Drama|Thriller\r\n", "5961,Blue Steel (1990),Action|Thriller\r\n", "5962,Body of Evidence (1993),Drama|Thriller\r\n", "5963,\"Children's Hour, The (1961)\",Drama\r\n", "5965,\"Duellists, The (1977)\",Action|War\r\n", "5968,Miami Blues (1990),Comedy|Crime|Drama\r\n", "5969,My Girl 2 (1994),Comedy|Drama|Romance\r\n", "5970,My Girl (1991),Comedy|Drama|Romance\r\n", "5971,My Neighbor Totoro (Tonari no Totoro) (1988),Animation|Children|Drama|Fantasy\r\n", "5974,\"Thief of Bagdad, The (1940)\",Adventure|Fantasy\r\n", "5975,War and Peace (1956),Drama|Romance|War\r\n", "5979,Attack of the Crab Monsters (1957),Horror|Sci-Fi\r\n", "5980,Black Christmas (1974),Horror|Mystery|Thriller\r\n", "5984,\"Story of O, The (Histoire d'O) (1975)\",Drama|Romance\r\n", "5986,Fat City (1972),Drama\r\n", "5988,Quicksilver (1986),Drama\r\n", "5989,Catch Me If You Can (2002),Crime|Drama\r\n", "5990,Pinocchio (2002),Children|Comedy|Fantasy\r\n", "5991,Chicago (2002),Comedy|Crime|Drama|Musical\r\n", "5992,\"Hours, The (2002)\",Drama|Romance\r\n", "5993,Max (2002),Drama\r\n", "5994,Nicholas Nickleby (2002),Drama|Romance\r\n", "5995,\"Pianist, The (2002)\",Drama|War\r\n", "5999,Heavy Metal 2000 (2000),Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "6001,\"King of Comedy, The (1983)\",Comedy|Drama\r\n", "6002,Love Liza (2002),Drama\r\n", "6003,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Thriller\r\n", "6005,Blue Collar Comedy Tour: The Movie (2003),Comedy|Documentary\r\n", "6006,Just Married (2003),Comedy|Romance\r\n", "6009,\"City of Lost Souls, The (Hyôryuu-gai) (2000)\",Crime|Drama|Thriller\r\n", "6012,\"Guy Thing, A (2003)\",Comedy|Romance\r\n", "6013,Kangaroo Jack (2003),Action|Comedy\r\n", "6014,National Security (2003),Action|Comedy\r\n", "6016,City of God (Cidade de Deus) (2002),Action|Adventure|Crime|Drama|Thriller\r\n", "6020,Alice Adams (1935),Comedy|Drama\r\n", "6021,\"American Friend, The (Amerikanische Freund, Der) (1977)\",Crime|Drama|Mystery|Thriller\r\n", "6022,American Me (1992),Drama\r\n", "6023,Band of Outsiders (Bande à part) (1964),Comedy|Crime|Drama|Romance\r\n", "6025,CB4 - The Movie (1993),Comedy\r\n", "6027,Dogfight (1991),Drama|Romance\r\n", "6030,Girls! Girls! Girls! (1962),Comedy|Musical\r\n", "6031,Imitation of Life (1959),Drama|Romance\r\n", "6033,Mystery Date (1991),Comedy\r\n", "6035,Pépé le Moko (1937),Crime|Drama|Romance\r\n", "6036,Secret Admirer (1985),Comedy|Romance\r\n", "6039,\"Woman in Red, The (1984)\",Comedy|Romance\r\n", "6040,Darkness Falls (2003),Horror|Thriller\r\n", "6041,Amen. (2002),Drama\r\n", "6042,Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002),Documentary\r\n", "6044,Blind Date (1984),Horror|Thriller\r\n", "6049,Ethan Frome (1993),Drama\r\n", "6051,\"Harder They Come, The (1973)\",Action|Crime|Drama\r\n", "6055,Sugar Hill (1994),Drama\r\n", "6057,Biker Boyz (2003),Action|Crime|Drama\r\n", "6058,Final Destination 2 (2003),Horror|Thriller\r\n", "6059,\"Recruit, The (2003)\",Action|Thriller\r\n", "6060,\"Guru, The (2002)\",Comedy|Romance\r\n", "6062,Lost in La Mancha (2002),Documentary\r\n", "6063,May (2002),Drama|Horror\r\n", "6064,\"Harder They Fall, The (1956)\",Drama|Film-Noir\r\n", "6067,Ordinary Decent Criminal (2000),Comedy|Crime\r\n", "6070,Tokyo Decadence (Topâzu) (1992),Drama\r\n", "6078,Firefox (1982),Action|Sci-Fi|Thriller\r\n", "6086,\"I, the Jury (1982)\",Crime|Drama|Thriller\r\n", "6090,Kiss Me Goodbye (1982),Comedy\r\n", "6093,\"Last Unicorn, The (1982)\",Animation|Children|Fantasy\r\n", "6095,Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982),Action\r\n", "6100,\"Midsummer Night's Sex Comedy, A (1982)\",Comedy|Romance\r\n", "6101,Missing (1982),Drama|Mystery|Thriller\r\n", "6104,Monty Python Live at the Hollywood Bowl (1982),Comedy\r\n", "6107,\"Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)\",Drama|War\r\n", "6111,Paradise (1982),Adventure|Romance\r\n", "6116,\"Pirate Movie, The (1982)\",Adventure|Comedy|Musical\r\n", "6119,Santa Claus Is a Stinker (Le Père Noël est une ordure) (1982),Comedy\r\n", "6122,Richard Pryor Live on the Sunset Strip (1982),Comedy|Documentary\r\n", "6123,Sunless (Sans Soleil) (1983),Documentary\r\n", "6124,Savannah Smiles (1982),Comedy\r\n", "6125,\"Secret Policeman's Other Ball, The (1982)\",Comedy|Documentary|Musical\r\n", "6140,Tenebre (1982),Horror|Mystery|Thriller\r\n", "6141,They Call Me Bruce? (a.k.a. A Fistful of Chopsticks) (1982),Comedy\r\n", "6143,Trail of the Pink Panther (1982),Comedy|Crime\r\n", "6145,Venom (1982),Horror|Thriller\r\n", "6148,White Dog (1982),Drama|Horror|Thriller\r\n", "6153,Zapped! (1982),Comedy|Sci-Fi\r\n", "6155,How to Lose a Guy in 10 Days (2003),Comedy|Romance\r\n", "6156,Shanghai Knights (2003),Action|Adventure|Comedy\r\n", "6157,Daredevil (2003),Action|Crime\r\n", "6158,\"Jungle Book 2, The (2003)\",Animation|Children\r\n", "6159,All the Real Girls (2003),Drama|Romance\r\n", "6162,Gerry (2002),Adventure|Drama\r\n", "6163,He Loves Me... He Loves Me Not (À la folie... pas du tout) (2002),Romance|Thriller\r\n", "6166,Dennis the Menace (1993),Comedy\r\n", "6169,\"Black Stallion Returns, The (1983)\",Adventure|Children\r\n", "6170,\"Black Stallion, The (1979)\",Adventure|Children|Drama\r\n", "6178,\"Patch of Blue, A (1965)\",Drama|Romance\r\n", "6181,\"Red Badge of Courage, The (1951)\",Drama|War\r\n", "6182,\"Thrill of It All, The (1963)\",Comedy\r\n", "6183,Pillow Talk (1959),Comedy|Musical|Romance\r\n", "6184,\"Man Who Fell to Earth, The (1976)\",Drama|Sci-Fi\r\n", "6185,Dark Blue (2003),Action|Crime|Drama|Thriller\r\n", "6186,Gods and Generals (2003),Action|Drama|War\r\n", "6187,\"Life of David Gale, The (2003)\",Crime|Drama|Thriller\r\n", "6188,Old School (2003),Comedy\r\n", "6192,Open Hearts (Elsker dig for evigt) (2002),Romance\r\n", "6193,Poolhall Junkies (2002),Comedy|Drama|Thriller\r\n", "6195,Stone Reader (2002),Documentary\r\n", "6196,Cradle 2 the Grave (2003),Action|Crime|Drama|Thriller\r\n", "6197,Spider (2002),Drama|Mystery\r\n", "6201,Lady Jane (1986),Drama|Romance\r\n", "6202,Late Marriage (Hatuna Meuheret) (2001),Comedy|Drama|Romance\r\n", "6203,Life Stinks (1991),Comedy\r\n", "6204,\"Meteor Man, The (1993)\",Comedy\r\n", "6210,Volcano High (Whasango) (2001),Action|Comedy\r\n", "6212,Bringing Down the House (2003),Comedy\r\n", "6213,Tears of the Sun (2003),Action|Drama|Thriller\r\n", "6214,Irreversible (Irréversible) (2002),Crime|Drama|Mystery|Thriller\r\n", "6215,Laurel Canyon (2002),Drama\r\n", "6216,Nowhere in Africa (Nirgendwo in Afrika) (2001),Drama\r\n", "6217,\"Safety of Objects, The (2001)\",Drama\r\n", "6218,Bend It Like Beckham (2002),Comedy|Drama|Romance\r\n", "6219,\"Hunted, The (2003)\",Action|Drama|Thriller\r\n", "6220,Willard (2003),Drama|Horror|Thriller\r\n", "6222,Prozac Nation (2001),Drama\r\n", "6223,Spun (2001),Comedy|Crime|Drama\r\n", "6225,King of Kings (1961),Drama\r\n", "6228,\"Talk of the Town, The (1942)\",Comedy|Romance|Thriller\r\n", "6232,Born Free (1966),Adventure|Children|Drama\r\n", "6234,Equus (1977),Drama|Mystery\r\n", "6235,Europa Europa (Hitlerjunge Salomon) (1990),Drama|War\r\n", "6237,\"Glenn Miller Story, The (1953)\",Drama\r\n", "6238,Green Card (1990),Comedy|Drama|Romance\r\n", "6239,Journey to the Center of the Earth (1959),Adventure|Children|Sci-Fi\r\n", "6241,Pauline at the Beach (Pauline à la Plage) (1983),Comedy|Drama|Romance\r\n", "6242,Ringu (Ring) (1998),Horror|Mystery|Thriller\r\n", "6244,Salaam Bombay! (1988),Drama\r\n", "6245,Sweet Charity (1969),Comedy|Drama|Musical|Romance\r\n", "6246,Talent for the Game (1991),Drama\r\n", "6249,Boat Trip (2003),Comedy\r\n", "6250,Dreamcatcher (2003),Drama|Horror|Sci-Fi|Thriller\r\n", "6251,Piglet's Big Movie (2003),Animation|Children\r\n", "6252,View from the Top (2003),Comedy|Romance\r\n", "6254,\"Awful Truth, The (1937)\",Comedy|Romance\r\n", "6263,Basic (2003),Drama|Thriller|War\r\n", "6264,\"Core, The (2003)\",Action|Drama|Sci-Fi|Thriller\r\n", "6265,Head of State (2003),Comedy\r\n", "6266,What a Girl Wants (2003),Comedy|Drama|Romance\r\n", "6267,Assassination Tango (2002),Drama|Thriller\r\n", "6268,Raising Victor Vargas (2002),Comedy|Drama|Romance\r\n", "6269,Stevie (2002),Documentary\r\n", "6270,Akira Kurosawa's Dreams (Dreams) (1990),Drama|Fantasy\r\n", "6271,Day for Night (La Nuit Américaine) (1973),Comedy|Drama|Romance\r\n", "6273,In a Lonely Place (1950),Drama|Film-Noir|Mystery|Romance\r\n", "6279,\"Good Thief, The (2002)\",Crime|Drama\r\n", "6280,\"Man Apart, A (2003)\",Action|Crime|Drama|Thriller\r\n", "6281,Phone Booth (2002),Drama|Thriller\r\n", "6283,Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001),Action|Animation|Sci-Fi|Thriller\r\n", "6285,Levity (2003),Drama\r\n", "6286,\"Man Without a Past, The (Mies vailla menneisyyttä) (2002)\",Comedy|Crime|Drama\r\n", "6287,Anger Management (2003),Comedy\r\n", "6288,Better Luck Tomorrow (2002),Crime|Drama\r\n", "6289,Ghosts of the Abyss (2003),Documentary|IMAX\r\n", "6290,House of 1000 Corpses (2003),Horror\r\n", "6291,Lilya 4-Ever (Lilja 4-ever) (2002),Crime|Drama\r\n", "6294,Bulletproof Monk (2003),Action|Adventure|Sci-Fi\r\n", "6295,Chasing Papi (a.k.a. Papi Chulo) (2003),Comedy\r\n", "6296,\"Mighty Wind, A (2003)\",Comedy|Musical\r\n", "6297,Holes (2003),Adventure|Children|Comedy|Mystery\r\n", "6298,Malibu's Most Wanted (2003),Comedy|Crime\r\n", "6299,\"Winged Migration (Peuple migrateur, Le) (2001)\",Documentary\r\n", "6300,Flickering Lights (Blinkende lygter) (2000),Action|Comedy|Crime\r\n", "6301,Straw Dogs (1971),Drama|Thriller\r\n", "6302,Beginning of the End (1957),Sci-Fi\r\n", "6303,\"Andromeda Strain, The (1971)\",Mystery|Sci-Fi\r\n", "6305,Fahrenheit 451 (1966),Drama|Sci-Fi\r\n", "6306,I Am Trying to Break Your Heart (2002),Documentary\r\n", "6308,Legal Eagles (1986),Comedy|Crime|Romance\r\n", "6310,Memories of Me (1988),Comedy|Drama\r\n", "6313,Sibling Rivalry (1990),Comedy\r\n", "6314,Undercover Blues (1993),Comedy|Crime\r\n", "6315,Wildcats (1986),Comedy\r\n", "6316,\"Wiz, The (1978)\",Adventure|Children|Comedy|Fantasy|Musical\r\n", "6319,\"My Father the Hero (Mon père, ce héros.) (1991)\",Comedy|Drama\r\n", "6320,Scenes from a Mall (1991),Comedy\r\n", "6322,Confidence (2003),Crime|Thriller\r\n", "6323,Identity (2003),Crime|Horror|Mystery|Thriller\r\n", "6324,It Runs in the Family (2003),Comedy|Drama\r\n", "6327,\"Decade Under the Influence, A (2003)\",Documentary\r\n", "6329,Manic (2001),Drama\r\n", "6330,People I Know (2002),Crime|Drama\r\n", "6331,Spellbound (2002),Documentary\r\n", "6332,\"Lizzie McGuire Movie, The (2003)\",Children|Comedy|Romance\r\n", "6333,X2: X-Men United (2003),Action|Adventure|Sci-Fi|Thriller\r\n", "6334,Blue Car (2002),Drama\r\n", "6335,\"Dancer Upstairs, The (2002)\",Crime|Drama|Thriller\r\n", "6336,Marooned in Iraq (Gomgashtei dar Aragh) (2002),Drama\r\n", "6337,Owning Mahowny (2003),Crime|Drama|Thriller\r\n", "6338,Daddy Day Care (2003),Children|Comedy\r\n", "6339,\"Man on the Train (Homme du train, L') (2002)\",Comedy|Drama\r\n", "6341,\"Shape of Things, The (2003)\",Drama\r\n", "6342,\"Trip, The (2002)\",Comedy|Drama|Romance\r\n", "6344,101 Reykjavik (101 Reykjavík) (2000),Comedy|Drama|Romance\r\n", "6345,\"Chorus Line, A (1985)\",Comedy|Drama|Musical\r\n", "6347,Beat Street (1984),Drama|Musical\r\n", "6348,Breakin' 2: Electric Boogaloo (1984),Musical\r\n", "6349,Breakin' (1984),Drama|Musical\r\n", "6350,Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986),Action|Adventure|Animation|Children|Fantasy|Sci-Fi\r\n", "6357,High Society (1956),Comedy|Musical|Romance\r\n", "6358,Kiss Me Kate (1953),Comedy|Musical|Romance\r\n", "6365,\"Matrix Reloaded, The (2003)\",Action|Adventure|Sci-Fi|Thriller|IMAX\r\n", "6367,Down with Love (2003),Comedy|Romance\r\n", "6368,Cinemania (2002),Documentary\r\n", "6370,\"Spanish Apartment, The (L'auberge espagnole) (2002)\",Comedy|Drama|Romance\r\n", "6371,Pokémon Heroes (2003),Animation|Children\r\n", "6373,Bruce Almighty (2003),Comedy|Drama|Fantasy|Romance\r\n", "6374,\"In-Laws, The (2003)\",Comedy\r\n", "6375,Gigantic (A Tale of Two Johns) (2002),Documentary\r\n", "6376,Respiro (2002),Comedy|Drama\r\n", "6377,Finding Nemo (2003),Adventure|Animation|Children|Comedy\r\n", "6378,\"Italian Job, The (2003)\",Action|Crime\r\n", "6379,Wrong Turn (2003),Horror|Thriller\r\n", "6380,Capturing the Friedmans (2003),Documentary\r\n", "6382,Together (Han ni Zai Yiki) (2002),Drama\r\n", "6383,\"2 Fast 2 Furious (Fast and the Furious 2, The) (2003)\",Action|Crime|Thriller\r\n", "6385,Whale Rider (2002),Drama\r\n", "6386,Nevada Smith (1966),Western\r\n", "6387,Once a Thief (Zong heng si hai) (1991),Action|Comedy|Crime|Thriller\r\n", "6390,Silk Stockings (1957),Musical\r\n", "6395,\"Crazies, The (a.k.a. Code Name: Trixie) (1973)\",Action|Drama|Horror|Sci-Fi|Thriller\r\n", "6400,Murder on a Sunday Morning (Un coupable idéal) (2001),Documentary\r\n", "6402,Siam Sunset (1999),Comedy\r\n", "6405,Treasure Island (1950),Adventure|Children\r\n", "6407,\"Walk, Don't Run (1966)\",Comedy|Romance\r\n", "6408,Animals are Beautiful People (1974),Comedy|Documentary\r\n", "6410,Car Wash (1976),Comedy\r\n", "6412,Destry Rides Again (1939),Comedy|Western\r\n", "6415,Intervista (1987),Comedy|Drama\r\n", "6417,Live Wire (1992),Action\r\n", "6422,Shenandoah (1965),Drama|War|Western\r\n", "6424,Oscar (1991),Comedy|Crime|Mystery|Romance\r\n", "6425,\"6th Man, The (Sixth Man, The) (1997)\",Comedy\r\n", "6427,\"Railway Children, The (1970)\",Children|Drama\r\n", "6428,Two Mules for Sister Sara (1970),Comedy|War|Western\r\n", "6429,Winchester '73 (1950),Western\r\n", "6433,\"Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)\",Documentary\r\n", "6434,\"Objective, Burma! (1945)\",War\r\n", "6436,This Boy's Life (1993),Drama\r\n", "6440,Barton Fink (1991),Drama|Thriller\r\n", "6442,Belle époque (1992),Comedy|Romance\r\n", "6448,\"Flight of the Phoenix, The (1965)\",Action|Adventure|Drama\r\n", "6449,From the Terrace (1960),Drama\r\n", "6452,\"Long, Hot Summer, The (1958)\",Drama\r\n", "6453,Man of Aran (1934),Documentary\r\n", "6454,Music Box (1989),Drama\r\n", "6460,\"Trial, The (Procès, Le) (1962)\",Drama\r\n", "6461,\"Unforgiven, The (1960)\",Drama|Western\r\n", "6464,Good Burger (1997),Children|Comedy\r\n", "6465,Jubilee (1977),Drama\r\n", "6466,Mississippi Masala (1991),Drama|Romance\r\n", "6476,Shattered (1991),Mystery|Thriller\r\n", "6477,\"Song of Bernadette, The (1943)\",Drama\r\n", "6480,Thoroughly Modern Millie (1967),Comedy|Musical\r\n", "6482,Dumb and Dumberer: When Harry Met Lloyd (2003),Comedy\r\n", "6483,From Justin to Kelly (2003),Musical|Romance\r\n", "6484,Hollywood Homicide (2003),Action|Crime|Drama\r\n", "6493,Alex and Emma (2003),Comedy|Drama|Romance\r\n", "6502,28 Days Later (2002),Action|Horror|Sci-Fi\r\n", "6503,Charlie's Angels: Full Throttle (2003),Action|Adventure|Comedy|Crime|Thriller\r\n", "6506,Fulltime Killer (Chuen jik sat sau) (2001),Action|Thriller\r\n", "6509,Ali: Fear Eats the Soul (Angst essen Seele auf) (1974),Drama|Romance\r\n", "6510,\"Bodies, Rest & Motion (1993)\",Drama|Romance\r\n", "6514,Ring of Terror (1962),Horror\r\n", "6515,You Only Live Once (1937),Crime|Film-Noir\r\n", "6516,Anastasia (1956),Drama\r\n", "6517,\"Babe, The (1992)\",Drama\r\n", "6523,Mr. Baseball (1992),Comedy|Romance\r\n", "6527,Scaramouche (1952),Adventure|Romance\r\n", "6528,Start the Revolution Without Me (1970),Comedy\r\n", "6530,\"Tenant, The (Locataire, Le) (1976)\",Drama|Horror|Mystery|Thriller\r\n", "6533,\"What's Up, Doc? (1972)\",Comedy\r\n", "6534,Hulk (2003),Action|Adventure|Sci-Fi\r\n", "6535,\"Legally Blonde 2: Red, White & Blonde (2003)\",Comedy\r\n", "6536,Sinbad: Legend of the Seven Seas (2003),Adventure|Animation|Children|Fantasy\r\n", "6537,Terminator 3: Rise of the Machines (2003),Action|Adventure|Sci-Fi\r\n", "6538,Swimming Pool (2003),Drama|Mystery|Thriller\r\n", "6539,Pirates of the Caribbean: The Curse of the Black Pearl (2003),Action|Adventure|Comedy|Fantasy\r\n", "6541,\"League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)\",Action|Fantasy|Sci-Fi\r\n", "6542,\"Cuckoo, The (Kukushka) (2002)\",Comedy|Drama|War\r\n", "6545,I Capture the Castle (2003),Drama|Romance\r\n", "6547,Northfork (2003),Drama|Fantasy\r\n", "6548,Bad Boys II (2003),Action|Comedy|Crime|Thriller\r\n", "6549,How to Deal (2003),Comedy|Drama|Romance\r\n", "6550,Johnny English (2003),Action|Comedy|Thriller\r\n", "6551,\"Anarchist Cookbook, The (2002)\",Comedy|Romance\r\n", "6552,Dirty Pretty Things (2002),Crime|Drama|Thriller\r\n", "6553,\"Embalmer, The (Imbalsamatore, L') (2002)\",Drama\r\n", "6554,Garage Days (2002),Comedy|Musical\r\n", "6557,Born to Be Wild (1995),Adventure|Children|Comedy|Drama\r\n", "6558,Curly Sue (1991),Comedy|Drama\r\n", "6559,Little Giants (1994),Children|Comedy\r\n", "6560,Loose Cannons (1990),Action|Comedy\r\n", "6561,\"Mouse That Roared, The (1959)\",Comedy|War\r\n", "6563,Masked & Anonymous (2003),Comedy|Drama\r\n", "6564,Lara Croft Tomb Raider: The Cradle of Life (2003),Action|Adventure|Comedy|Romance|Thriller\r\n", "6565,Seabiscuit (2003),Drama\r\n", "6566,Spy Kids 3-D: Game Over (2003),Action|Adventure|Children\r\n", "6567,Buffalo Soldiers (2001),Comedy|Crime|Drama|War\r\n", "6568,Camp (2003),Comedy|Musical\r\n", "6571,\"Mondays in the Sun (Lunes al sol, Los) (2002)\",Drama\r\n", "6572,Scorched (2003),Comedy|Crime\r\n", "6573,Avanti! (1972),Comedy|Drama\r\n", "6574,Eve of Destruction (1991),Action|Sci-Fi|Thriller\r\n", "6577,Kickboxer 2: The Road Back (1991),Action|Drama\r\n", "6578,\"Kiss Me, Stupid (1964)\",Comedy\r\n", "6579,\"One, Two, Three (1961)\",Comedy\r\n", "6581,\"Private Life of Sherlock Holmes, The (1970)\",Comedy|Drama|Mystery\r\n", "6582,Remo Williams: The Adventure Begins (1985),Action|Comedy|Crime|Thriller\r\n", "6583,\"Blood of Heroes, The (Salute of the Jugger, The) (1989)\",Action|Sci-Fi\r\n", "6584,\"What's Up, Tiger Lily? (1966)\",Adventure|Comedy|Crime|Thriller\r\n", "6586,American Wedding (American Pie 3) (2003),Comedy\r\n", "6587,Gigli (2003),Comedy|Crime|Romance\r\n", "6588,And Now... Ladies and Gentlemen... (2002),Romance|Thriller\r\n", "6591,\"Magdalene Sisters, The (2002)\",Drama\r\n", "6592,\"Secret Lives of Dentists, The (2002)\",Drama\r\n", "6593,Freaky Friday (2003),Children|Comedy|Fantasy\r\n", "6595,S.W.A.T. (2003),Action|Thriller\r\n", "6596,\"Divorce, Le (2003)\",Comedy|Drama|Romance\r\n", "6597,\"Princess Blade, The (Shura Yukihime) (2001)\",Action|Sci-Fi\r\n", "6598,Step Into Liquid (2002),Documentary\r\n", "6603,\"Double Life, A (1947)\",Crime|Drama|Film-Noir\r\n", "6604,Hawks and Sparrows (Uccellacci e Uccellini) (1966),Comedy\r\n", "6609,\"Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)\",Drama\r\n", "6611,Umberto D. (1952),Drama\r\n", "6612,Brother's Keeper (1992),Documentary\r\n", "6614,I Love You to Death (1990),Comedy|Crime\r\n", "6615,Freddy vs. Jason (2003),Action|Horror|Thriller\r\n", "6616,Grind (2003),Action|Comedy\r\n", "6617,Open Range (2003),Western\r\n", "6618,Shaolin Soccer (Siu lam juk kau) (2001),Action|Comedy\r\n", "6619,Uptown Girls (2003),Comedy\r\n", "6620,American Splendor (2003),Comedy|Drama\r\n", "6624,Agent Cody Banks (2003),Action|Adventure|Children|Fantasy\r\n", "6625,Camp Nowhere (1994),Adventure|Children|Comedy\r\n", "6628,Hot Dog... The Movie (1984),Comedy\r\n", "6629,House of Wax (1953),Crime|Horror|Mystery|Thriller\r\n", "6631,Man's Best Friend (1993),Horror|Sci-Fi|Thriller\r\n", "6636,\"Sure Thing, The (1985)\",Comedy|Romance\r\n", "6638,Valley Girl (1983),Comedy|Romance\r\n", "6639,Wait Until Dark (1967),Drama|Thriller\r\n", "6643,Tokyo Story (Tôkyô monogatari) (1953),Drama\r\n", "6644,\"Green Ray, The (Rayon vert, Le) (1986)\",Drama|Romance\r\n", "6645,THX 1138 (1971),Action|Adventure|Drama|Sci-Fi\r\n", "6650,Kind Hearts and Coronets (1949),Comedy|Drama\r\n", "6654,Atragon (Kaitei Gunkan) (1963),Adventure|Sci-Fi\r\n", "6656,Attack of the Puppet People (1958),Horror|Sci-Fi\r\n", "6658,10 (1979),Comedy|Romance\r\n", "6659,Tremors (1990),Comedy|Horror|Sci-Fi\r\n", "6660,\"Red Shoes, The (1948)\",Drama|Fantasy|Musical|Romance\r\n", "6662,\"Pink Panther, The (1963)\",Comedy|Crime\r\n", "6663,\"Pink Panther Strikes Again, The (1976)\",Comedy|Crime\r\n", "6664,Commando (1985),Action|Adventure\r\n", "6665,Dracula (1979),Horror|Romance\r\n", "6666,\"Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)\",Comedy|Drama|Fantasy\r\n", "6667,Waco: The Rules of Engagement (1997),Documentary\r\n", "6668,\"Road Home, The (Wo de fu qin mu qin) (1999)\",Drama|Romance\r\n", "6669,Ikiru (1952),Drama\r\n", "6670,Comic Book Villains (2002),Comedy\r\n", "6671,\"Angel at My Table, An (1990)\",Drama\r\n", "6678,\"Handmaid's Tale, The (1990)\",Drama|Sci-Fi\r\n", "6679,Revolution OS (2001),Documentary\r\n", "6684,Death in Venice (Morte a Venezia) (1971),Drama|Romance\r\n", "6686,\"Medallion, The (2003)\",Action|Comedy|Crime|Fantasy\r\n", "6687,My Boss's Daughter (2003),Comedy|Romance\r\n", "6688,Autumn Spring (Babí léto) (2001),Comedy|Drama\r\n", "6689,\"Battle of Shaker Heights, The (2003)\",Comedy|Drama|Romance\r\n", "6691,Dust (2001),Drama|Western\r\n", "6692,Stoked: The Rise and Fall of Gator (2002),Documentary\r\n", "6695,Jeepers Creepers 2 (2003),Horror|Thriller\r\n", "6696,Bollywood/Hollywood (2002),Comedy|Drama|Musical|Romance\r\n", "6699,Once Upon a Time in the Midlands (2002),Drama\r\n", "6702,Dickie Roberts: Former Child Star (2003),Comedy\r\n", "6705,Party Monster (2003),Comedy|Crime|Drama|Thriller\r\n", "6706,Taking Sides (2001),Drama\r\n", "6707,Cabin Fever (2002),Horror|Thriller\r\n", "6708,Matchstick Men (2003),Comedy|Crime|Drama\r\n", "6709,Once Upon a Time in Mexico (2003),Action|Adventure|Crime|Thriller\r\n", "6710,Dummy (2002),Comedy|Drama|Romance\r\n", "6711,Lost in Translation (2003),Comedy|Drama|Romance\r\n", "6713,Millennium Actress (Sennen joyû) (2001),Animation|Drama|Romance\r\n", "6715,Children of the Night (1991),Horror\r\n", "6718,Gotcha! (1985),Comedy\r\n", "6720,Kuffs (1992),Action|Comedy|Crime\r\n", "6721,Once Upon a Time in China (Wong Fei Hung) (1991),Action|Adventure|Drama\r\n", "6722,Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992),Action|Romance\r\n", "6723,Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993),Action\r\n", "6724,Paper Moon (1973),Comedy|Crime|Drama\r\n", "6731,Day of the Dead (1985),Horror|Sci-Fi|Thriller\r\n", "6732,\"Hello, Dolly! (1969)\",Comedy|Musical|Romance\r\n", "6734,Memoirs of an Invisible Man (1992),Comedy|Romance|Sci-Fi|Thriller\r\n", "6744,Once Bitten (1985),Comedy|Horror\r\n", "6746,Squirm (1976),Horror|Romance\r\n", "6748,\"Brood, The (1979)\",Horror\r\n", "6750,Anything Else (2003),Comedy|Drama|Romance\r\n", "6751,Cold Creek Manor (2003),Drama|Thriller\r\n", "6752,\"Fighting Temptations, The (2003)\",Drama\r\n", "6753,Secondhand Lions (2003),Children|Comedy|Drama\r\n", "6754,Underworld (2003),Action|Fantasy|Horror\r\n", "6755,Bubba Ho-tep (2002),Comedy|Horror\r\n", "6760,In This World (2002),Adventure|Drama\r\n", "6763,Duplex (2003),Comedy|Crime\r\n", "6764,\"Rundown, The (2003)\",Action|Adventure|Comedy\r\n", "6765,Under the Tuscan Sun (2003),Comedy|Drama|Romance\r\n", "6768,Luther (2003),Drama\r\n", "6769,Mambo Italiano (2003),Comedy\r\n", "6770,My Life Without Me (2003),Drama|Romance\r\n", "6772,To Be and to Have (Être et avoir) (2002),Documentary\r\n", "6773,\"Triplets of Belleville, The (Les triplettes de Belleville) (2003)\",Animation|Comedy|Fantasy\r\n", "6774,Videodrome (1983),Fantasy|Horror|Sci-Fi|Thriller\r\n", "6775,Life and Debt (2001),Documentary\r\n", "6776,Lagaan: Once Upon a Time in India (2001),Comedy|Drama|Musical|Romance\r\n", "6777,Judgment at Nuremberg (1961),Drama\r\n", "6780,\"Brief History of Time, A (1991)\",Documentary\r\n", "6782,Leningrad Cowboys Go America (1989),Comedy|Musical\r\n", "6783,\"Rules of the Game, The (La règle du jeu) (1939)\",Comedy|Drama\r\n", "6785,Seven Brides for Seven Brothers (1954),Comedy|Musical|Romance|Western\r\n", "6786,Kiss of the Spider Woman (1985),Drama\r\n", "6787,All the President's Men (1976),Drama|Thriller\r\n", "6788,Angie (1994),Comedy|Drama|Romance\r\n", "6789,\"Apartment, The (Appartement, L') (1996)\",Drama|Mystery|Romance\r\n", "6790,Avalon (2001),Drama|Fantasy|Sci-Fi\r\n", "6791,Babette's Feast (Babettes gæstebud) (1987),Drama\r\n", "6793,Beethoven (1992),Children|Comedy|Drama\r\n", "6794,Beethoven's 2nd (1993),Children|Comedy\r\n", "6796,Boyz N the Hood (1991),Crime|Drama\r\n", "6797,Bugsy (1991),Crime|Drama\r\n", "6798,Bugsy Malone (1976),Children|Comedy|Crime|Musical\r\n", "6800,Cobra (1986),Action|Crime\r\n", "6803,Phenomena (a.k.a. Creepers) (1985),Horror|Mystery|Thriller\r\n", "6804,Crimewave (1985),Comedy|Crime\r\n", "6807,Monty Python's The Meaning of Life (1983),Comedy\r\n", "6808,Where Eagles Dare (1968),Action|Adventure|War\r\n", "6809,Tightrope (1984),Thriller\r\n", "6810,Sleeping with the Enemy (1991),Drama|Thriller\r\n", "6811,PCU (1994),Comedy\r\n", "6812,\"Rookie, The (1990)\",Action|Comedy|Thriller\r\n", "6814,City Heat (1984),Action|Comedy\r\n", "6816,Three O'Clock High (1987),Comedy\r\n", "6817,\"White Hunter, Black Heart (1990)\",Adventure|Drama\r\n", "6818,Come and See (Idi i smotri) (1985),Drama|War\r\n", "6820,Ginger Snaps (2000),Drama|Horror|Thriller\r\n", "6821,More American Graffiti (1979),Comedy\r\n", "6827,It's Pat (1994),Comedy\r\n", "6832,Regarding Henry (1991),Drama\r\n", "6835,Alien Contamination (1980),Action|Horror|Sci-Fi\r\n", "6836,\"Amazing Transparent Man, The (1960)\",Sci-Fi\r\n", "6837,Love Affair (1939),Comedy|Drama|Romance\r\n", "6849,Scrooge (1970),Drama|Fantasy|Musical\r\n", "6850,Leap of Faith (1992),Comedy|Drama\r\n", "6851,\"Gas, Food, Lodging (1992)\",Drama|Romance\r\n", "6852,In Cold Blood (1967),Crime|Drama\r\n", "6853,Campus Man (1987),Comedy\r\n", "6856,Yankee Doodle Dandy (1942),Drama|Musical\r\n", "6857,Ninja Scroll (Jûbei ninpûchô) (1995),Action|Adventure|Animation|Fantasy\r\n", "6858,Knife in the Water (Nóz w wodzie) (1962),Drama\r\n", "6860,Mobsters (1991),Crime|Drama\r\n", "6862,Out of Time (2003),Crime|Drama|Thriller\r\n", "6863,School of Rock (2003),Comedy|Musical\r\n", "6867,\"Station Agent, The (2003)\",Comedy|Drama\r\n", "6868,Wonderland (2003),Crime|Drama|Mystery|Thriller\r\n", "6869,Bus 174 (Ônibus 174) (2002),Crime|Documentary\r\n", "6870,Mystic River (2003),Crime|Drama|Mystery\r\n", "6872,\"House of the Dead, The (2003)\",Action|Horror\r\n", "6873,Intolerable Cruelty (2003),Comedy|Romance\r\n", "6874,Kill Bill: Vol. 1 (2003),Action|Crime|Thriller\r\n", "6879,Runaway Jury (2003),Drama|Thriller\r\n", "6880,\"Texas Chainsaw Massacre, The (2003)\",Horror\r\n", "6881,Pieces of April (2003),Comedy|Drama\r\n", "6882,Returner (Ritaanaa) (2002),Action|Adventure|Sci-Fi\r\n", "6883,Sylvia (2003),Drama|Romance\r\n", "6884,Veronica Guerin (2003),Crime|Drama|Thriller\r\n", "6885,In the Cut (2003),Crime|Drama|Mystery|Romance|Thriller\r\n", "6886,Beyond Borders (2003),Drama|Romance|War\r\n", "6887,Radio (2003),Drama\r\n", "6888,Scary Movie 3 (2003),Comedy|Horror\r\n", "6889,Brother Bear (2003),Adventure|Animation|Children\r\n", "6890,Elephant (2003),Drama\r\n", "6893,\"Italian Job, The (1969)\",Action|Comedy|Crime\r\n", "6898,Sweet Sixteen (2002),Drama\r\n", "6899,Alien from L.A. (1988),Sci-Fi\r\n", "6902,Interstate 60 (2002),Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller\r\n", "6909,\"Eye, The (Gin gwai) (Jian gui) (2002)\",Thriller\r\n", "6911,\"Jolson Story, The (1946)\",Musical\r\n", "6912,You'll Never Get Rich (1941),Comedy|Musical|Romance\r\n", "6918,\"Unvanquished, The (Aparajito) (1957)\",Drama\r\n", "6920,\"Cercle Rouge, Le (Red Circle, The) (1970)\",Crime|Thriller\r\n", "6927,\"Human Stain, The (2003)\",Drama|Romance|Thriller\r\n", "6932,Shattered Glass (2003),Crime|Drama\r\n", "6934,\"Matrix Revolutions, The (2003)\",Action|Adventure|Sci-Fi|Thriller|IMAX\r\n", "6935,\"Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)\",Documentary\r\n", "6936,Elf (2003),Children|Comedy|Fantasy\r\n", "6938,Billabong Odyssey (2003),Documentary\r\n", "6939,Gloomy Sunday (Ein Lied von Liebe und Tod) (1999),Drama|Romance\r\n", "6942,Love Actually (2003),Comedy|Drama|Romance\r\n", "6944,Father of the Bride (1991),Comedy\r\n", "6945,My Architect: A Son's Journey (2003),Documentary\r\n", "6946,Looney Tunes: Back in Action (2003),Action|Animation|Children|Fantasy\r\n", "6947,Master and Commander: The Far Side of the World (2003),Adventure|Drama|War\r\n", "6948,Tupac: Resurrection (2003),Documentary\r\n", "6949,\"Big Empty, The (2003)\",Comedy|Mystery|Sci-Fi\r\n", "6950,\"Missing, The (2003)\",Adventure|Thriller|Western\r\n", "6951,\"Cat in the Hat, The (2003)\",Children|Comedy\r\n", "6952,Gothika (2003),Horror|Thriller\r\n", "6953,21 Grams (2003),Crime|Drama|Mystery|Romance|Thriller\r\n", "6954,\"Barbarian Invasions, The (Les invasions barbares) (2003)\",Comedy|Crime|Drama|Mystery|Romance\r\n", "6957,Bad Santa (2003),Comedy|Crime\r\n", "6958,\"Haunted Mansion, The (2003)\",Children|Comedy|Fantasy|Horror\r\n", "6959,Timeline (2003),Action|Adventure|Sci-Fi\r\n", "6961,Damage (Fatale) (1992),Drama\r\n", "6962,OT: Our Town (2002),Documentary\r\n", "6963,Devil's Playground (2002),Documentary\r\n", "6965,Journeys with George (2002),Documentary\r\n", "6966,Darkman (1990),Action|Crime|Fantasy|Sci-Fi|Thriller\r\n", "6967,Dead of Night (1945),Horror|Mystery\r\n", "6969,\"Dernier Combat, Le (Last Battle, The) (1983)\",Drama|Sci-Fi\r\n", "6970,Desk Set (1957),Comedy|Romance\r\n", "6971,Europa (Zentropa) (1991),Drama|Thriller\r\n", "6973,Final Analysis (1992),Drama|Romance|Thriller\r\n", "6974,\"Freshman, The (1990)\",Comedy|Crime\r\n", "6975,Funny Games (1997),Drama|Horror|Thriller\r\n", "6978,Slacker (1991),Comedy|Drama\r\n", "6979,WarGames (1983),Drama|Sci-Fi|Thriller\r\n", "6981,\"Ordet (Word, The) (1955)\",Drama\r\n", "6982,Forbidden Games (Jeux interdits) (1952),Drama|War\r\n", "6983,Jane Eyre (1944),Drama|Romance\r\n", "6984,\"Tale of Two Cities, A (1935)\",Drama\r\n", "6985,\"Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)\",Drama\r\n", "6986,Ben-Hur: A Tale of the Christ (1925),Adventure|Drama|Romance\r\n", "6987,\"Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)\",Crime|Fantasy|Horror\r\n", "6989,Gorky Park (1983),Crime|Drama|Thriller\r\n", "6990,The Great Train Robbery (1978),Action|Adventure|Comedy|Crime|Drama\r\n", "6992,Guarding Tess (1994),Comedy|Drama\r\n", "6993,Hannah and Her Sisters (1986),Comedy|Drama|Romance\r\n", "6994,\"Hard Way, The (1991)\",Action|Comedy\r\n", "6996,Highlander II: The Quickening (1991),Action|Sci-Fi\r\n", "6997,Hoffa (1992),Crime|Drama\r\n", "6998,House of Cards (1993),Drama\r\n", "6999,Housesitter (1992),Comedy|Romance\r\n", "7000,Hudson Hawk (1991),Action|Adventure|Comedy\r\n", "7001,Invasion of the Body Snatchers (1978),Horror|Mystery|Sci-Fi|Thriller\r\n", "7004,Kindergarten Cop (1990),Action|Comedy|Crime|Thriller\r\n", "7005,King Ralph (1991),Comedy\r\n", "7007,\"Last Boy Scout, The (1991)\",Action|Comedy|Crime|Drama|Thriller\r\n", "7008,Last Tango in Paris (Ultimo tango a Parigi) (1972),Drama|Romance\r\n", "7009,Lorenzo's Oil (1992),Drama\r\n", "7010,\"Lover, The (Amant, L') (1992)\",Drama|Romance\r\n", "7012,Mr. Destiny (1990),Comedy|Fantasy\r\n", "7013,\"Night of the Hunter, The (1955)\",Drama|Film-Noir|Thriller\r\n", "7015,Only the Lonely (1991),Comedy|Romance\r\n", "7016,Over the Top (1987),Action|Drama\r\n", "7017,Passenger 57 (1992),Action|Thriller\r\n", "7018,Presumed Innocent (1990),Crime|Drama|Thriller\r\n", "7019,Project X (1987),Comedy|Drama\r\n", "7020,Proof (1991),Comedy|Drama|Romance\r\n", "7022,Battle Royale (Batoru rowaiaru) (2000),Action|Drama|Horror|Thriller\r\n", "7023,\"Wedding Banquet, The (Xi yan) (1993)\",Comedy|Drama|Romance\r\n", "7024,\"Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)\",Drama\r\n", "7025,\"Midnight Clear, A (1992)\",Drama|War\r\n", "7026,Summer School (1987),Comedy\r\n", "7027,Silverado (1985),Action|Western\r\n", "7028,Quick Change (1990),Comedy|Crime\r\n", "7030,Radio Flyer (1992),Drama\r\n", "7031,\"Real McCoy, The (1993)\",Action|Crime|Drama|Thriller\r\n", "7032,Revenge (1990),Drama|Romance|Thriller\r\n", "7033,\"Secret of My Succe$s, The (a.k.a. The Secret of My Success) (1987)\",Comedy|Romance\r\n", "7034,Show Me Love (Fucking Åmål) (1998),Drama|Romance\r\n", "7036,Teen Wolf (1985),Comedy|Fantasy\r\n", "7037,High Heels (Tacones lejanos) (1991),Comedy|Drama\r\n", "7038,Things You Can Tell Just by Looking at Her (2000),Drama|Romance\r\n", "7040,To Live and Die in L.A. (1985),Action|Crime|Drama|Thriller\r\n", "7041,Trapped in Paradise (1994),Comedy|Crime\r\n", "7044,Wild at Heart (1990),Crime|Drama|Mystery|Romance|Thriller\r\n", "7045,\"Witches, The (1990)\",Children|Fantasy\r\n", "7046,\"Witches of Eastwick, The (1987)\",Comedy|Fantasy|Horror|Thriller\r\n", "7047,Year of the Dragon (1985),Action|Crime|Drama\r\n", "7048,Nothing to Lose (1997),Action|Adventure|Comedy|Crime\r\n", "7049,Flying Down to Rio (1933),Comedy|Musical|Romance\r\n", "7050,Follow the Fleet (1936),Comedy|Musical|Romance\r\n", "7051,\"What's New, Pussycat (1965)\",Comedy\r\n", "7052,Mary of Scotland (1936),Drama\r\n", "7053,Roberta (1935),Comedy|Musical|Romance\r\n", "7054,Little Women (1949),Drama\r\n", "7055,Swing Time (1936),Comedy|Musical|Romance\r\n", "7056,\"Public Enemy, The (1931)\",Action|Crime|Drama\r\n", "7057,\"Midsummer Night's Dream, A (1935)\",Comedy|Fantasy|Romance\r\n", "7058,Life with Father (1947),Comedy\r\n", "7059,National Velvet (1944),Children|Drama\r\n", "7060,Jesus Christ Superstar (1973),Drama|Musical\r\n", "7061,Dark Victory (1939),Drama|Romance\r\n", "7062,Birdman of Alcatraz (1962),Drama\r\n", "7063,\"Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)\",Adventure|Drama\r\n", "7064,Beauty and the Beast (La belle et la bête) (1946),Drama|Fantasy\r\n", "7065,\"Birth of a Nation, The (1915)\",Drama|War\r\n", "7067,Juliet of the Spirits (Giulietta degli spiriti) (1965),Comedy|Drama|Fantasy|Romance\r\n", "7069,\"Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)\",Drama\r\n", "7070,Red River (1948),Action|Adventure|Western\r\n", "7071,\"Woman Under the Influence, A (1974)\",Drama\r\n", "7072,Stagecoach (1939),Action|Drama|Romance|Western\r\n", "7073,\"Shot in the Dark, A (1964)\",Comedy|Crime|Mystery\r\n", "7074,\"Navigator, The (1924)\",Comedy\r\n", "7075,\"Court Jester, The (1956)\",Adventure|Comedy|Musical\r\n", "7076,Bullitt (1968),Action|Crime|Drama|Thriller\r\n", "7078,Jezebel (1938),Drama\r\n", "7079,\"Hunchback of Notre Dame, The (1939)\",Drama\r\n", "7080,42nd Street (1933),Drama|Musical|Romance\r\n", "7082,That Touch of Mink (1962),Comedy|Romance\r\n", "7083,Sweet Dreams (1985),Drama\r\n", "7084,\"Play It Again, Sam (1972)\",Comedy|Romance\r\n", "7085,Send Me No Flowers (1964),Comedy|Romance\r\n", "7086,Pygmalion (1938),Comedy|Drama\r\n", "7087,\"Passage to India, A (1984)\",Adventure|Drama\r\n", "7088,Black Orpheus (Orfeu Negro) (1959),Drama|Romance\r\n", "7089,Amarcord (1973),Comedy|Drama\r\n", "7090,Hero (Ying xiong) (2002),Action|Adventure|Drama\r\n", "7091,Horse Feathers (1932),Comedy\r\n", "7092,Anna Karenina (1935),Drama|Romance\r\n", "7093,\"Front Page, The (1974)\",Comedy\r\n", "7096,Rivers and Tides (2001),Documentary\r\n", "7099,Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984),Adventure|Animation|Drama|Fantasy|Sci-Fi\r\n", "7101,Doc Hollywood (1991),Comedy|Romance\r\n", "7102,Dragnet (1987),Comedy|Crime|Drama\r\n", "7103,Madhouse (1990),Comedy\r\n", "7104,1941 (1979),Comedy|War\r\n", "7107,Foul Play (1978),Comedy|Thriller\r\n", "7108,Crime Story (Zhong an zu) (1993),Action|Crime|Drama\r\n", "7109,Beyond the Clouds (Al di là delle nuvole) (1996),Drama|Romance\r\n", "7114,\"Collector, The (1965)\",Drama|Horror|Thriller\r\n", "7115,Deep Red (Profondo rosso) (1975),Horror|Mystery|Thriller\r\n", "7116,Diabolique (Les diaboliques) (1955),Horror|Mystery|Thriller\r\n", "7117,Leprechaun (1993),Comedy|Horror\r\n", "7118,Wings of Honneamise (Ôritsu uchûgun Oneamisu no tsubasa) (1987),Animation|Drama|Sci-Fi|War\r\n", "7121,Adam's Rib (1949),Comedy|Romance\r\n", "7122,King of Hearts (1966),Comedy|Drama|War\r\n", "7123,Naked Lunch (1991),Drama|Fantasy|Mystery|Sci-Fi\r\n", "7124,Grass (1999),Documentary\r\n", "7125,Spring Forward (1999),Drama\r\n", "7127,Run (1991),Action|Drama|Thriller\r\n", "7131,\"Summer Place, A (1959)\",Drama\r\n", "7132,\"Night at the Opera, A (1935)\",Comedy|Musical|Romance\r\n", "7134,\"Element of Crime, The (Forbrydelsens Element) (1984)\",Drama|Thriller\r\n", "7137,\"Cooler, The (2003)\",Comedy|Drama|Romance\r\n", "7139,In America (2002),Drama|Romance\r\n", "7141,My Flesh and Blood (2003),Documentary\r\n", "7142,Honey (2003),Drama|Romance\r\n", "7143,\"Last Samurai, The (2003)\",Action|Adventure|Drama|War\r\n", "7147,Big Fish (2003),Drama|Fantasy|Romance\r\n", "7149,Something's Gotta Give (2003),Comedy|Drama|Romance\r\n", "7150,Stuck on You (2003),Comedy\r\n", "7151,Girl with a Pearl Earring (2003),Drama|Romance\r\n", "7153,\"Lord of the Rings: The Return of the King, The (2003)\",Action|Adventure|Drama|Fantasy\r\n", "7154,Mona Lisa Smile (2003),Drama|Romance\r\n", "7155,Calendar Girls (2003),Comedy\r\n", "7156,\"Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)\",Documentary|War\r\n", "7158,House of Sand and Fog (2003),Drama\r\n", "7160,Monster (2003),Crime|Drama\r\n", "7161,Cheaper by the Dozen (2003),Children|Comedy\r\n", "7162,Cold Mountain (2003),Drama|Romance|War\r\n", "7163,Paycheck (2003),Action|Sci-Fi|Thriller\r\n", "7164,Peter Pan (2003),Action|Adventure|Children|Fantasy\r\n", "7165,\"Company, The (2003)\",Drama|Musical\r\n", "7167,Japanese Story (2003),Drama\r\n", "7169,Chasing Liberty (2004),Comedy|Romance\r\n", "7171,Aileen: Life and Death of a Serial Killer (2003),Documentary\r\n", "7173,Along Came Polly (2004),Comedy|Romance\r\n", "7175,Torque (2004),Action|Crime\r\n", "7176,Crimson Gold (Talaye sorgh) (2003),Drama\r\n", "7177,Osama (2003),Drama\r\n", "7178,\"Great Gatsby, The (1974)\",Drama\r\n", "7179,Wuthering Heights (1992),Drama|Romance\r\n", "7181,Ship of Fools (1965),Drama\r\n", "7184,This Property is Condemned (1966),Drama|Romance\r\n", "7190,Jane Eyre (1970),Drama\r\n", "7191,Blame It on the Bellboy (1992),Comedy\r\n", "7192,Only the Strong (1993),Action\r\n", "7193,\"Adventures of Ford Fairlane, The (1990)\",Action|Comedy\r\n", "7202,Beyond Re-Animator (2003),Horror\r\n", "7205,\"Wind and the Lion, The (1975)\",Adventure\r\n", "7206,Mon Oncle (My Uncle) (1958),Comedy\r\n", "7208,Dr. Jekyll and Mr. Hyde (1941),Drama|Horror\r\n", "7209,\"M. Hulot’s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)\",Comedy\r\n", "7211,People Will Talk (1951),Comedy|Romance\r\n", "7212,I Was a Male War Bride (1949),Comedy|Romance\r\n", "7215,To Have and Have Not (1944),Adventure|Drama|Romance|Thriller|War\r\n", "7216,High Sierra (1941),Crime|Drama|Film-Noir|Thriller\r\n", "7217,Dark Passage (1947),Crime|Drama|Film-Noir|Romance|Thriller\r\n", "7218,\"Ox-Bow Incident, The (1943)\",Drama|Western\r\n", "7219,They Drive by Night (1940),Drama\r\n", "7222,Reefer Madness (a.k.a. Tell Your Children) (1938),Comedy|Drama\r\n", "7223,D.O.A. (1950),Drama|Film-Noir|Mystery\r\n", "7225,Pumping Iron (1977),Documentary\r\n", "7228,Cool World (1992),Animation|Comedy|Fantasy\r\n", "7234,\"Strada, La (1954)\",Drama\r\n", "7235,Ichi the Killer (Koroshiya 1) (2001),Action|Comedy|Crime|Drama|Horror|Thriller\r\n", "7236,\"Boy and His Dog, A (1975)\",Sci-Fi\r\n", "7238,Ashes and Diamonds (Popiól i diament) (1958),Drama|War\r\n", "7243,Intolerance: Love's Struggle Throughout the Ages (1916),Drama\r\n", "7245,Tormented (1960),Horror|Thriller\r\n", "7247,Chitty Chitty Bang Bang (1968),Adventure|Children|Comedy|Fantasy|Musical\r\n", "7248,\"Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)\",Action|Adventure|Drama|War\r\n", "7251,Where the Day Takes You (1992),Drama\r\n", "7254,The Butterfly Effect (2004),Drama|Sci-Fi|Thriller\r\n", "7255,Win a Date with Tad Hamilton! (2004),Comedy|Romance\r\n", "7256,Touching the Void (2003),Adventure|Documentary\r\n", "7257,\"Big Bounce, The (2004)\",Comedy|Crime|Thriller\r\n", "7258,\"Perfect Score, The (2004)\",Comedy|Crime\r\n", "7259,You Got Served (2004),Drama|Musical\r\n", "7260,Latter Days (2003),Comedy|Drama|Romance\r\n", "7261,Barbershop 2: Back in Business (2004),Comedy\r\n", "7262,Catch That Kid (2004),Action|Adventure|Children|Comedy|Crime\r\n", "7263,Miracle (2004),Drama\r\n", "7264,An Amazing Couple (2002),Comedy|Romance\r\n", "7265,\"Dreamers, The (2003)\",Drama\r\n", "7266,\"Lost Skeleton of Cadavra, The (2002)\",Comedy|Horror|Sci-Fi\r\n", "7282,\"Hip Hop Witch, Da (2000)\",Comedy|Horror|Thriller\r\n", "7285,Thirteen (2003),Drama\r\n", "7292,Best Defense (1984),Comedy|War\r\n", "7293,50 First Dates (2004),Comedy|Romance\r\n", "7294,Welcome to Mooseport (2004),Comedy\r\n", "7297,Kitchen Stories (Salmer fra kjøkkenet) (2003),Comedy|Drama\r\n", "7299,Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003),Drama\r\n", "7301,Diary of a Country Priest (Journal d'un curé de campagne) (1951),Drama\r\n", "7302,\"Thief of Bagdad, The (1924)\",Action|Adventure|Fantasy\r\n", "7303,The Diary of Anne Frank (1959),Drama|War\r\n", "7304,Allegro non troppo (1977),Animation|Comedy|Fantasy|Musical\r\n", "7305,Black Widow (1987),Crime|Drama|Mystery|Thriller\r\n", "7306,\"Herod's Law (Ley de Herodes, La) (2000)\",Comedy|Crime|Mystery\r\n", "7307,Flesh & Blood (1985),Action|Adventure|Drama|War\r\n", "7308,King Solomon's Mines (1985),Adventure|Comedy\r\n", "7310,Raw Deal (1986),Action\r\n", "7311,\"Goodbye, Mr. Chips (1939)\",Drama|Romance\r\n", "7312,\"Follow Me, Boys! (1966)\",Comedy|Drama\r\n", "7315,Against the Ropes (2004),Comedy|Drama\r\n", "7316,Confessions of a Teenage Drama Queen (2004),Comedy\r\n", "7317,EuroTrip (2004),Adventure|Comedy\r\n", "7318,\"Passion of the Christ, The (2004)\",Drama\r\n", "7319,Club Dread (2004),Comedy|Horror\r\n", "7320,Dirty Dancing: Havana Nights (2004),Romance\r\n", "7321,Twisted (2004),Thriller\r\n", "7323,\"Good bye, Lenin! (2003)\",Comedy|Drama\r\n", "7324,Hidalgo (2004),Adventure|Drama\r\n", "7325,Starsky & Hutch (2004),Action|Comedy|Crime|Thriller\r\n", "7326,\"Reckoning, The (2004)\",Crime|Drama\r\n", "7327,Persona (1966),Drama\r\n", "7328,\"Passion of Anna, The (Passion, En) (1969)\",Drama\r\n", "7333,\"Corbeau, Le (Raven, The) (1943)\",Crime|Drama|Thriller\r\n", "7335,Pickup on South Street (1953),Film-Noir\r\n", "7336,\"Damned, The (La Caduta degli dei) (1969)\",Drama|War\r\n", "7340,Just One of the Guys (1985),Comedy\r\n", "7344,\"Wrong Arm of the Law, The (1963)\",Comedy|Crime\r\n", "7345,Agent Cody Banks 2: Destination London (2004),Action|Adventure|Children|Comedy\r\n", "7346,\"Girl Next Door, The (2004)\",Comedy|Romance\r\n", "7347,Secret Window (2004),Mystery|Thriller\r\n", "7348,Spartan (2004),Thriller\r\n", "7349,Broken Wings (Knafayim Shvurot) (2002),Drama\r\n", "7352,Wilbur Wants to Kill Himself (2002),Comedy|Drama|Romance\r\n", "7354,Mad Dog and Glory (1993),Comedy|Drama|Romance\r\n", "7357,Peyton Place (1957),Drama|Romance\r\n", "7360,Dawn of the Dead (2004),Action|Drama|Horror|Thriller\r\n", "7361,Eternal Sunshine of the Spotless Mind (2004),Drama|Romance|Sci-Fi\r\n", "7362,Taking Lives (2004),Crime|Drama|Thriller\r\n", "7364,Intermission (2003),Comedy|Crime|Drama\r\n", "7366,Jersey Girl (2004),Comedy|Drama|Romance\r\n", "7367,\"Ladykillers, The (2004)\",Comedy|Crime\r\n", "7368,Never Die Alone (2004),Crime|Drama|Thriller\r\n", "7369,Scooby-Doo 2: Monsters Unleashed (2004),Action|Adventure|Children|Comedy|Mystery\r\n", "7371,Dogville (2003),Drama|Mystery|Thriller\r\n", "7372,Ned Kelly (2003),Drama\r\n", "7373,Hellboy (2004),Action|Adventure|Fantasy|Horror\r\n", "7375,\"Prince & Me, The (2004)\",Comedy|Romance\r\n", "7376,Walking Tall (2004),Action\r\n", "7377,\"United States of Leland, The (2003)\",Crime|Drama\r\n", "7379,The Alamo (2004),Drama|War|Western\r\n", "7380,Ella Enchanted (2004),Comedy|Fantasy|Romance\r\n", "7381,\"Whole Ten Yards, The (2004)\",Action|Comedy|Crime\r\n", "7382,I'm Not Scared (Io non ho paura) (2003),Drama|Mystery|Thriller\r\n", "7386,\"Ten Commandments, The (1956)\",Adventure|Drama\r\n", "7387,Dawn of the Dead (1978),Action|Drama|Horror\r\n", "7390,Prey for Rock & Roll (2003),Drama|Musical\r\n", "7394,Those Magnificent Men in Their Flying Machines (1965),Action|Adventure|Comedy\r\n", "7395,Cheaper by the Dozen (1950),Comedy|Drama\r\n", "7396,Scenes From a Marriage (Scener ur ett äktenskap) (1973),Drama\r\n", "7411,Munchies (1987),Comedy|Horror\r\n", "7414,Going in Style (1979),Comedy|Drama\r\n", "7419,After Hours (1985),Comedy|Thriller\r\n", "7438,Kill Bill: Vol. 2 (2004),Action|Drama|Thriller\r\n", "7439,\"Punisher, The (2004)\",Action|Crime|Thriller\r\n", "7440,Paper Clips (2004),Documentary\r\n", "7443,This So-Called Disaster (2003),Documentary\r\n", "7444,13 Going on 30 (2004),Comedy|Fantasy|Romance\r\n", "7445,Man on Fire (2004),Action|Crime|Drama|Mystery|Thriller\r\n", "7448,Envy (2004),Comedy\r\n", "7449,Godsend (2004),Drama|Horror|Thriller\r\n", "7450,Laws of Attraction (2004),Comedy|Romance\r\n", "7451,Mean Girls (2004),Comedy\r\n", "7454,Van Helsing (2004),Action|Adventure|Fantasy|Horror\r\n", "7455,\"Mudge Boy, The (2003)\",Drama\r\n", "7457,Breakin' All the Rules (2004),Comedy|Romance\r\n", "7458,Troy (2004),Action|Adventure|Drama|War\r\n", "7459,Carandiru (2003),Crime|Drama\r\n", "7460,Coffee and Cigarettes (2003),Comedy|Drama\r\n", "7477,Eye See You (D-Tox) (2002),Horror|Thriller\r\n", "7479,Watch on the Rhine (1943),Drama\r\n", "7481,Enemy Mine (1985),Adventure|Drama|Sci-Fi\r\n", "7482,Enter the Dragon (1973),Action|Crime\r\n", "7486,Happy Together (a.k.a. Buenos Aires Affair) (Chun gwong cha sit) (1997),Drama|Romance\r\n", "7487,Henry & June (1990),Drama\r\n", "7492,Martin (1977),Drama|Horror\r\n", "7493,\"Three Faces of Eve, The (1957)\",Drama\r\n", "7541,100 Girls (2000),Comedy|Romance\r\n", "7560,Fail-Safe (1964),Drama|Thriller|War\r\n", "7561,Paperhouse (1988),Fantasy|Horror|Thriller\r\n", "7562,Dobermann (1997),Action|Crime\r\n", "7564,Kwaidan (Kaidan) (1964),Horror\r\n", "7566,28 Up (1985),Documentary\r\n", "7569,You Only Live Twice (1967),Action|Adventure|Sci-Fi|Thriller\r\n", "7570,Octopussy (1983),Action|Adventure|Thriller\r\n", "7572,Wit (2001),Drama\r\n", "7573,Never Say Never Again (1983),Action|Adventure|Thriller\r\n", "7579,Pride and Prejudice (1940),Comedy|Drama|Romance\r\n", "7581,\"Fountainhead, The (1949)\",Drama\r\n", "7584,Woman of the Year (1942),Comedy|Romance\r\n", "7587,\"Samouraï, Le (Godson, The) (1967)\",Crime|Drama|Thriller\r\n", "7614,Oklahoma! (1955),Musical|Romance|Western\r\n", "7615,Desert Hearts (1985),Drama\r\n", "7616,Body Double (1984),Mystery|Thriller\r\n", "7618,Chaplin (1992),Drama\r\n", "7619,\"Miracle Worker, The (1962)\",Drama\r\n", "7620,Monster in a Box (1992),Comedy|Drama\r\n", "7624,School Ties (1992),Drama\r\n", "7636,Raising Cain (1992),Horror|Thriller\r\n", "7646,Rose Red (2002),Horror|Mystery|Thriller\r\n", "7647,Noises Off... (1992),Comedy\r\n", "7649,Babylon 5: In the Beginning (1998),Adventure|Sci-Fi\r\n", "7650,\"Witchfinder General (Conquerer Worm, The) (1968)\",Horror\r\n", "7657,Versus (2000),Action|Comedy|Fantasy|Horror\r\n", "7669,Pride and Prejudice (1995),Drama|Romance\r\n", "7698,\"China Syndrome, The (1979)\",Drama|Thriller\r\n", "7700,\"Wages of Fear, The (Salaire de la peur, Le) (1953)\",Action|Adventure|Drama|Thriller\r\n", "7701,Look Who's Talking Too (1990),Comedy|Romance\r\n", "7702,\"Bells of St. Mary's, The (1945)\",Drama\r\n", "7704,\"Delta Force, The (1986)\",Action\r\n", "7705,Pat and Mike (1952),Comedy|Romance\r\n", "7706,Animal Crackers (1930),Comedy|Musical\r\n", "7707,\"He Said, She Said (1991)\",Comedy|Drama|Romance\r\n", "7708,Bedazzled (1967),Comedy|Fantasy\r\n", "7713,Cat People (1942),Drama|Horror|Romance|Thriller\r\n", "7714,Camelot (1967),Drama|Musical|Romance\r\n", "7716,\"Lonely Guy, The (1984)\",Comedy\r\n", "7720,\"Four Musketeers, The (1974)\",Action|Adventure|Comedy|Romance\r\n", "7727,Protocol (1984),Comedy\r\n", "7728,\"Postman Always Rings Twice, The (1946)\",Crime|Drama|Film-Noir|Thriller\r\n", "7730,Matinee (1993),Comedy|Drama\r\n", "7742,Baxter (1989),Drama|Horror\r\n", "7743,Explorers (1985),Adventure|Children|Sci-Fi\r\n", "7745,\"Scent of Green Papaya, The (Mùi du du xhan - L'odeur de la papaye verte) (1993)\",Drama\r\n", "7748,Pierrot le fou (1965),Crime|Drama\r\n", "7749,Weekend (a.k.a. Le Week-end) (Week End) (1967),Drama\r\n", "7753,Tuesdays with Morrie (1999),Drama\r\n", "7756,Alexander Nevsky (Aleksandr Nevskiy) (1938),Action|Drama|War\r\n", "7757,Jason and the Argonauts (1963),Action|Adventure|Fantasy\r\n", "7762,\"Tinker, Tailor, Soldier, Spy (1979)\",Drama|Thriller\r\n", "7766,Throne of Blood (Kumonosu jô) (1957),Action|Drama|Thriller|War\r\n", "7767,\"Best of Youth, The (La meglio gioventù) (2003)\",Drama\r\n", "7772,Undercurrent (1946),Film-Noir|Thriller\r\n", "7773,\"Bang, Bang, You're Dead (2002)\",Drama\r\n", "7781,Twister (1990),Comedy\r\n", "7782,Sniper (1993),Action|Drama\r\n", "7786,Genghis Blues (1999),Documentary\r\n", "7789,\"11'09\"\"01 - September 11 (2002)\",Drama\r\n", "7792,\"Parallax View, The (1974)\",Thriller\r\n", "7802,\"Warriors, The (1979)\",Action|Adventure|Crime|Thriller\r\n", "7810,Babylon 5: A Call to Arms (1999),Adventure|Sci-Fi\r\n", "7811,Babylon 5: The River of Souls (1998),Drama|Sci-Fi\r\n", "7812,Babylon 5: Thirdspace (1998),Drama|Sci-Fi\r\n", "7815,True Stories (1986),Comedy|Musical\r\n", "7820,\"Virgin Spring, The (Jungfrukällan) (1960)\",Crime|Drama\r\n", "7822,Mogambo (1953),Adventure|Drama|Romance\r\n", "7826,\"Secret Life of Walter Mitty, The (1947)\",Comedy|Romance|Thriller\r\n", "7831,Another Thin Man (1939),Comedy|Crime|Drama|Mystery|Romance\r\n", "7832,\"Thin Man Goes Home, The (1945)\",Comedy|Crime|Mystery\r\n", "7833,Shadow of the Thin Man (1941),Comedy|Crime|Mystery\r\n", "7834,After the Thin Man (1936),Comedy|Crime|Mystery|Romance\r\n", "7835,Song of the Thin Man (1947),Comedy|Crime|Drama|Musical|Mystery|Romance\r\n", "7839,Love Crazy (1941),Comedy\r\n", "7840,Gunga Din (1939),Adventure|Comedy|War\r\n", "7841,Children of Dune (2003),Fantasy|Sci-Fi\r\n", "7842,Dune (2000),Drama|Fantasy|Sci-Fi\r\n", "7843,Lammbock (2001),Comedy\r\n", "7844,\"Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)\",Action|Comedy\r\n", "7845,Tremors II: Aftershocks (1996),Comedy|Horror|Sci-Fi\r\n", "7846,Tremors 3: Back to Perfection (2001),Comedy|Horror|Sci-Fi\r\n", "7879,Notorious C.H.O. (2002),Comedy\r\n", "7882,The Plague of the Zombies (1966),Horror\r\n", "7883,I Walked with a Zombie (1943),Drama|Horror\r\n", "7884,Highway 61 (1991),Comedy\r\n", "7888,How to Succeed in Business Without Really Trying (1967),Comedy|Musical\r\n", "7889,Pat Garrett and Billy the Kid (1973),Western\r\n", "7891,\"Last Man on Earth, The (Ultimo uomo della Terra, L') (1964)\",Drama|Horror|Sci-Fi\r\n", "7894,\"Duck, You Sucker (1971)\",Action|Western\r\n", "7895,Bring Me the Head of Alfredo Garcia (1974),Crime|Drama|Thriller\r\n", "7896,Ride the High Country (1962),Adventure|Drama|Western\r\n", "7899,Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975),Action\r\n", "7900,Frankenstein Must Be Destroyed (1969),Drama|Horror|Sci-Fi\r\n", "7916,Gidget (1959),Comedy\r\n", "7920,Desperate Living (1977),Comedy|Crime\r\n", "7924,Stray Dog (Nora inu) (1949),Drama|Film-Noir|Thriller\r\n", "7925,\"Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)\",Action|Adventure\r\n", "7926,High and Low (Tengoku to jigoku) (1963),Crime|Drama|Film-Noir|Thriller\r\n", "7930,\"People Under the Stairs, The (1991)\",Horror|Mystery|Thriller\r\n", "7932,Dark Days (2000),Documentary\r\n", "7934,Zelig (1983),Comedy\r\n", "7936,Shame (Skammen) (1968),Drama|War\r\n", "7937,\"Silence, The (Tystnaden) (1963)\",Drama\r\n", "7938,Winter Light (Nattvardsgästerna) (1963),Drama\r\n", "7939,Through a Glass Darkly (Såsom i en spegel) (1961),Drama\r\n", "7940,The Magician (1958),Drama\r\n", "7943,\"Killers, The (1946)\",Crime|Film-Noir\r\n", "7944,\"Night of the Iguana, The (1964)\",Drama|Thriller\r\n", "7951,Nightbreed (1990),Fantasy|Horror\r\n", "7976,Ken Park (2002),Drama\r\n", "7979,Monterey Pop (1968),Documentary|Musical\r\n", "7980,\"Bridge Too Far, A (1977)\",Action|Drama|War\r\n", "7981,Infernal Affairs (Mou gaan dou) (2002),Crime|Drama|Thriller\r\n", "7982,\"Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)\",Drama|Horror|Mystery|Thriller\r\n", "7983,Broadway Danny Rose (1984),Comedy\r\n", "7984,From Beyond (1986),Horror|Sci-Fi\r\n", "7986,Robot Jox (1990),Sci-Fi\r\n", "7987,Dolls (1987),Horror\r\n", "7988,Space Truckers (1996),Comedy|Sci-Fi\r\n", "7991,Death Race 2000 (1975),Action|Sci-Fi\r\n", "7993,\"Bucket Of Blood, A (1959)\",Comedy|Horror\r\n", "8008,Brigadoon (1954),Fantasy|Musical|Romance\r\n", "8010,\"Power of One, The (1992)\",Drama\r\n", "8011,\"Weather Underground, The (2002)\",Documentary\r\n", "8012,Kikujiro (Kikujirô no natsu) (1999),Comedy|Drama\r\n", "8014,\"Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)\",Drama\r\n", "8015,\"Phantom Tollbooth, The (1970)\",Adventure|Animation|Children|Fantasy\r\n", "8016,\"Getaway, The (1972)\",Action|Crime|Drama|Thriller\r\n", "8019,Dark Water (Honogurai mizu no soko kara) (2002),Drama|Horror|Mystery|Thriller\r\n", "8024,\"Thing Called Love, The (1993)\",Comedy|Drama|Romance\r\n", "8025,The Thief (1997),Drama\r\n", "8033,How to Steal a Million (1966),Comedy|Crime|Romance\r\n", "8035,\"Stendhal Syndrome, The (Sindrome di Stendhal, La) (1996)\",Crime|Horror|Thriller\r\n", "8042,Mean Streets (1973),Crime|Drama\r\n", "8043,Jack the Bear (1993),Comedy|Drama\r\n", "8044,I Am a Fugitive from a Chain Gang (1932),Crime|Drama|Film-Noir\r\n", "8045,Hamburger Hill (1987),Action|Drama|War\r\n", "8057,Sweet Bird of Youth (1962),Drama\r\n", "8092,Frankenstein Unbound (1990),Drama|Horror|Sci-Fi\r\n", "8093,Shiri (Swiri) (1999),Action|Drama|Romance|Thriller\r\n", "8094,Bad Day at Black Rock (1955),Drama|Thriller|Western\r\n", "8117,In China They Eat Dogs (I Kina spiser de hunde) (1999),Action|Comedy\r\n", "8118,Delta Force 2 (Delta Force 2: The Colombian Connection) (1990),Action|Adventure|Thriller|War\r\n", "8119,Crossroads (1986),Drama\r\n", "8121,\"Seducing Doctor Lewis (Grande séduction, La) (2003)\",Comedy\r\n", "8125,Sunrise: A Song of Two Humans (1927),Drama|Romance\r\n", "8126,Shock Corridor (1963),Drama\r\n", "8128,Au revoir les enfants (1987),Drama\r\n", "8131,Pursuit of Happiness (2001),Comedy|Romance\r\n", "8132,Gladiator (1992),Action|Drama\r\n", "8136,Indestructible Man (1956),Crime|Horror|Sci-Fi\r\n", "8137,\"Wasp Woman, The (1959)\",Horror|Sci-Fi\r\n", "8138,Attack of the Giant Leeches (1959),Horror|Sci-Fi\r\n", "8142,Dead or Alive: Hanzaisha (1999),Action|Crime\r\n", "8143,Lola Montès (1955),Drama\r\n", "8147,Charly (1968),Drama|Sci-Fi\r\n", "8153,Lust for Life (1956),Drama\r\n", "8154,\"Dolce Vita, La (1960)\",Drama\r\n", "8157,Jin Roh: The Wolf Brigade (Jin-Rô) (1998),Animation|Fantasy|Thriller\r\n", "8158,Rush (1991),Crime|Drama\r\n", "8167,Captain Blood (1935),Action|Adventure|Romance\r\n", "8169,*batteries not included (1987),Children|Comedy|Fantasy|Sci-Fi\r\n", "8183,Educating Rita (1983),Comedy|Drama\r\n", "8188,Sansho the Bailiff (Sanshô dayû) (1954),Drama\r\n", "8189,Zazie dans le métro (1960),Comedy\r\n", "8190,\"Americanization of Emily, The (1964)\",Comedy|Drama|War\r\n", "8191,Anne of the Thousand Days (1969),Drama\r\n", "8195,\"Avventura, L' (Adventure, The) (1960)\",Drama|Mystery|Romance\r\n", "8196,Beyond the Valley of the Dolls (1970),Comedy|Horror\r\n", "8197,Hiroshima Mon Amour (1959),Drama|Romance|War\r\n", "8199,Ugetsu (Ugetsu monogatari) (1953),Drama|Thriller\r\n", "8207,\"Day of the Jackal, The (1973)\",Crime|Thriller\r\n", "8225,Night of the Living Dead (1990),Horror\r\n", "8228,\"Maltese Falcon, The (a.k.a. Dangerous Female) (1931)\",Mystery\r\n", "8232,I Love You Again (1940),Comedy|Drama\r\n", "8235,Safety Last! (1923),Action|Comedy|Romance\r\n", "8236,While the City Sleeps (1956),Drama|Film-Noir\r\n", "8238,Little Murders (1971),Comedy|Crime\r\n", "8239,Viridiana (1961),Comedy|Drama\r\n", "8241,Masterminds (1997),Action|Comedy|Thriller\r\n", "8253,Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979),Action|Adventure|Animation|Comedy|Crime|Mystery\r\n", "8254,Arizona Dream (1993),Comedy|Drama|Fantasy|Romance\r\n", "8261,3 Women (Three Women) (1977),Drama\r\n", "8264,Grey Gardens (1975),Documentary\r\n", "8266,Purple Rain (1984),Drama|Musical\r\n", "8268,Point of No Return (1993),Action|Thriller\r\n", "8270,\"Hairdresser's Husband, The (Le mari de la coiffeuse) (1990)\",Comedy|Drama|Romance\r\n", "8275,College (1927),Comedy\r\n", "8290,Mitchell (1975),Action|Crime\r\n", "8293,Used People (1992),Comedy|Drama\r\n", "8302,\"Front Page, The (1931)\",Comedy|Drama|Romance\r\n", "8327,Dolls (2002),Drama|Romance\r\n", "8331,\"Man Who Came to Dinner, The (1942)\",Comedy\r\n", "8335,Make Way for Tomorrow (1937),Drama\r\n", "8336,\"Major and the Minor, The (1942)\",Comedy|Romance\r\n", "8337,\"Caine Mutiny, The (1954)\",Drama|War\r\n", "8338,Black Narcissus (1947),Drama\r\n", "8340,Escape from Alcatraz (1979),Drama|Thriller\r\n", "8341,Oliver Twist (1948),Adventure|Crime|Drama\r\n", "8360,Shrek 2 (2004),Adventure|Animation|Children|Comedy|Musical|Romance\r\n", "8361,\"Day After Tomorrow, The (2004)\",Action|Adventure|Drama|Sci-Fi|Thriller\r\n", "8362,Raising Helen (2004),Comedy|Drama|Romance\r\n", "8363,Soul Plane (2004),Comedy\r\n", "8364,Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003),Drama\r\n", "8366,Saved! (2004),Comedy|Drama\r\n", "8368,Harry Potter and the Prisoner of Azkaban (2004),Adventure|Fantasy|IMAX\r\n", "8369,Mindhunters (2004),Action|Crime|Horror|Mystery|Thriller\r\n", "8370,\"Blind Swordsman: Zatoichi, The (Zatôichi) (2003)\",Action|Comedy|Crime|Drama\r\n", "8371,\"Chronicles of Riddick, The (2004)\",Action|Sci-Fi|Thriller\r\n", "8372,Garfield: The Movie (2004),Animation|Children|Comedy\r\n", "8373,\"Stepford Wives, The (2004)\",Comedy|Fantasy|Thriller\r\n", "8375,\"Hunting of the President, The (2004)\",Documentary\r\n", "8376,Napoleon Dynamite (2004),Comedy\r\n", "8378,\"Doctor, The (1991)\",Drama\r\n", "8379,\"Dresser, The (1983)\",Drama\r\n", "8380,Father Hood (1993),Comedy\r\n", "8382,Hello Again (1987),Comedy\r\n", "8383,Hope Springs (2003),Comedy|Romance\r\n", "8385,Lover Come Back (1961),Comedy|Romance\r\n", "8387,Police Academy: Mission to Moscow (1994),Comedy|Crime\r\n", "8391,Big Wednesday (1978),Comedy|Drama\r\n", "8402,Book of Love (1990),Comedy|Romance\r\n", "8405,Hour of the Wolf (Vargtimmen) (1968),Drama|Horror\r\n", "8410,Suddenly (1954),Crime|Drama|Film-Noir\r\n", "8424,\"Divorcee, The (1930)\",Drama|Romance\r\n", "8425,Meet the Applegates (1991),Comedy\r\n", "8426,Robot Carnival (Roboto kânibauru) (1987),Animation|Comedy|Drama|Fantasy|Sci-Fi\r\n", "8427,Americathon (1979),Comedy|Sci-Fi\r\n", "8446,Sands of Iwo Jima (1949),Action|Drama|Romance|War\r\n", "8447,This Island Earth (1955),Sci-Fi\r\n", "8450,Anthony Adverse (1936),Adventure|Romance\r\n", "8451,Blackboard Jungle (1955),Drama\r\n", "8454,Luna Papa (1999),Comedy|Drama|Fantasy\r\n", "8456,Investigation of a Citizen Above Suspicion (Indagine su un cittadino al di sopra di ogni sospetto) (1970),Crime|Drama|Thriller\r\n", "8458,To Each His Own (1946),Drama\r\n", "8459,\"Heiress, The (1949)\",Drama|Romance\r\n", "8461,Dragon Seed (1944),Drama|War\r\n", "8462,Executive Suite (1954),Drama\r\n", "8463,Johnny Belinda (1948),Drama\r\n", "8464,Super Size Me (2004),Comedy|Documentary|Drama\r\n", "8465,Johnny Eager (1942),Crime|Drama|Film-Noir|Romance\r\n", "8477,\"Jetée, La (1962)\",Romance|Sci-Fi\r\n", "8481,Northwest Passage (1940),Action|Adventure|Drama|Romance|Thriller|Western\r\n", "8482,\"Picture of Dorian Gray, The (1945)\",Drama|Fantasy|Horror\r\n", "8484,\"Human Condition I, The (Ningen no joken I) (1959)\",Drama|War\r\n", "8487,Please Don't Eat the Daisies (1960),Children|Comedy|Musical\r\n", "8491,White Heat (1949),Crime|Drama|Film-Noir\r\n", "8492,\"Christmas Carol, A (Scrooge) (1951)\",Drama|Fantasy\r\n", "8493,Memphis Belle (1990),Action|Drama|War\r\n", "8494,\"Cincinnati Kid, The (1965)\",Drama\r\n", "8495,Animal Factory (2000),Crime|Drama\r\n", "8500,Godzilla vs. Mechagodzilla (Gojira tai Mekagojira) (1974),Action|Horror|Sci-Fi\r\n", "8501,\"Hitcher, The (1986)\",Action|Thriller\r\n", "8502,Show Boat (1951),Drama|Musical|Romance\r\n", "8506,Fear X (2003),Mystery|Thriller\r\n", "8507,Freaks (1932),Crime|Drama|Horror\r\n", "8511,\"Immigrant, The (1917)\",Comedy\r\n", "8512,Silent Movie (1976),Comedy\r\n", "8518,Anna Christie (1930),Drama\r\n", "8521,Dr. Jekyll and Mr. Hyde (1931),Drama|Horror\r\n", "8526,Around the World in 80 Days (2004),Adventure|Children|Comedy\r\n", "8528,Dodgeball: A True Underdog Story (2004),Comedy\r\n", "8529,\"Terminal, The (2004)\",Comedy|Drama|Romance\r\n", "8530,Dear Frankie (2004),Drama|Romance\r\n", "8531,White Chicks (2004),Action|Comedy|Crime\r\n", "8532,\"Door in the Floor, The (2004)\",Drama\r\n", "8533,\"Notebook, The (2004)\",Drama|Romance\r\n", "8534,Two Brothers (Deux frères) (2004),Adventure|Children|Drama\r\n", "8535,De-Lovely (2004),Drama|Musical\r\n", "8542,\"Day at the Races, A (1937)\",Comedy|Musical\r\n", "8571,Bob & Carol & Ted & Alice (1969),Comedy|Drama\r\n", "8574,\"Claymation Christmas Celebration, A (1987)\",Animation|Children|Comedy|Musical\r\n", "8575,\"Happenstance (Battement d'ailes du papillon, Le) (2001)\",Comedy|Drama\r\n", "8577,Comandante (2003),Documentary\r\n", "8578,Undead (2003),Action|Comedy|Horror|Sci-Fi\r\n", "8580,Into the Woods (1991),Adventure|Comedy|Fantasy|Musical\r\n", "8581,Pirates of Silicon Valley (1999),Documentary|Drama\r\n", "8582,Manufacturing Consent: Noam Chomsky and the Media (1992),Documentary|War\r\n", "8587,Mayor of the Sunset Strip (2003),Documentary\r\n", "8588,Killing Me Softly (2002),Drama|Mystery|Romance|Thriller\r\n", "8591,\"Philadelphia Experiment, The (1984)\",Adventure|Drama|Sci-Fi\r\n", "8593,Juice (1992),Action|Crime|Drama|Thriller\r\n", "8596,Revenge of the Pink Panther (1978),Comedy|Crime\r\n", "8600,Angels with Dirty Faces (1938),Crime|Drama|Film-Noir|Thriller\r\n", "8601,Zero de conduite (Zero for Conduct) (Zéro de conduite: Jeunes diables au collège) (1933),Comedy|Drama\r\n", "8604,Taxi (1998),Action|Comedy\r\n", "8605,Taxi 3 (2003),Action|Comedy\r\n", "8607,Tokyo Godfathers (2003),Adventure|Animation|Drama\r\n", "8609,Our Hospitality (1923),Comedy\r\n", "8610,All of Me (1984),Comedy|Fantasy\r\n", "8611,\"Farmer's Daughter, The (1947)\",Comedy\r\n", "8614,Overboard (1987),Comedy|Romance\r\n", "8617,Butterfield 8 (1960),Drama\r\n", "8620,\"Exterminating Angel, The (Ángel exterminador, El) (1962)\",Comedy|Drama|Fantasy|Mystery\r\n", "8622,Fahrenheit 9/11 (2004),Documentary\r\n", "8623,Roxanne (1987),Comedy|Romance\r\n", "8626,Dr. Terror's House of Horrors (1965),Horror|Sci-Fi\r\n", "8632,Secret Society (2002),Comedy\r\n", "8633,\"Last Starfighter, The (1984)\",Action|Adventure|Comedy|Sci-Fi\r\n", "8636,Spider-Man 2 (2004),Action|Adventure|Sci-Fi|IMAX\r\n", "8638,Before Sunset (2004),Drama|Romance\r\n", "8640,King Arthur (2004),Action|Adventure|Drama|War\r\n", "8641,Anchorman: The Legend of Ron Burgundy (2004),Comedy\r\n", "8643,\"Cinderella Story, A (2004)\",Comedy|Romance\r\n", "8644,\"I, Robot (2004)\",Action|Adventure|Sci-Fi|Thriller\r\n", "8645,\"Maria Full of Grace (Maria, Llena eres de gracia) (2004)\",Crime|Drama\r\n", "8650,Long Day's Journey Into Night (1962),Drama\r\n", "8656,\"Short Film About Killing, A (Krótki film o zabijaniu) (1988)\",Crime|Drama\r\n", "8665,\"Bourne Supremacy, The (2004)\",Action|Crime|Thriller\r\n", "8666,Catwoman (2004),Action|Crime|Fantasy\r\n", "8667,A Home at the End of the World (2004),Drama|Romance\r\n", "8670,\"Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)\",Crime|Horror|Mystery|Thriller\r\n", "8677,Flash Gordon Conquers the Universe (1940),Action|Sci-Fi\r\n", "8684,\"Man Escaped, A (Un condamné à mort s'est échappé ou Le vent souffle où il veut) (1956)\",Adventure|Drama\r\n", "8685,\"Miracle of Marcelino, The (Marcelino pan y vino) (1955)\",Comedy|Drama\r\n", "8690,Slaughterhouse-Five (1972),Comedy|Drama|Sci-Fi|War\r\n", "8695,\"Bachelor and the Bobby-Soxer, The (1947)\",Comedy\r\n", "8711,Mr. Blandings Builds His Dream House (1948),Comedy\r\n", "8712,My Favorite Wife (1940),Comedy|Romance\r\n", "8713,\"New Adventures of Pippi Longstocking, The (1988)\",Adventure|Children|Fantasy|Musical\r\n", "8714,Night and Day (1946),Drama|Musical\r\n", "8718,\"Snake Pit, The (1948)\",Drama\r\n", "8720,\"Super, The (1991)\",Comedy\r\n", "8724,\"Leopard, The (Gattopardo, Il) (1963)\",Drama|War\r\n", "8727,\"Day of the Locust, The (1975)\",Drama\r\n", "8730,To End All Wars (2001),Action|Drama|War\r\n", "8738,\"Woman Is a Woman, A (femme est une femme, Une) (1961)\",Comedy|Drama|Musical|Romance\r\n", "8743,Biggles (1986),Adventure|Fantasy|Sci-Fi\r\n", "8748,\"Yesterday, Today and Tomorrow (Ieri, oggi, domani) (1963)\",Comedy\r\n", "8753,Unprecedented: The 2000 Presidential Election (2002),Documentary\r\n", "8754,\"Prime of Miss Jean Brodie, The (1969)\",Drama\r\n", "8755,My Voyage to Italy (Il mio viaggio in Italia) (1999),Documentary\r\n", "8765,This Gun for Hire (1942),Crime|Film-Noir|Thriller\r\n", "8771,Sherlock Holmes: Terror by Night (1946),Crime|Mystery|Thriller\r\n", "8772,\"Spy Who Came in from the Cold, The (1965)\",Drama|Thriller\r\n", "8773,Sherlock Holmes and the Secret Weapon (1942),Crime|Mystery|Thriller\r\n", "8774,Sherlock Holmes: The Woman in Green (1945),Mystery\r\n", "8778,Sherlock Holmes: Dressed to Kill (1946),Crime|Mystery\r\n", "8781,\"Manchurian Candidate, The (2004)\",Thriller\r\n", "8782,Thunderbirds (2004),Action|Adventure|Fantasy|Sci-Fi\r\n", "8783,\"Village, The (2004)\",Drama|Mystery|Thriller\r\n", "8784,Garden State (2004),Comedy|Drama|Romance\r\n", "8795,Musa the Warrior (Musa) (2001),Action|Adventure|Drama|War\r\n", "8796,\"Funny Thing Happened on the Way to the Forum, A (1966)\",Comedy|Musical\r\n", "8798,Collateral (2004),Action|Crime|Drama|Thriller\r\n", "8799,Little Black Book (2004),Comedy|Romance\r\n", "8800,Code 46 (2003),Romance|Sci-Fi\r\n", "8804,\"Story of Women (Affaire de femmes, Une) (1988)\",Drama\r\n", "8807,Harold and Kumar Go to White Castle (2004),Adventure|Comedy\r\n", "8808,\"Princess Diaries 2: Royal Engagement, The (2004)\",Comedy|Romance\r\n", "8809,Danny Deckchair (2003),Comedy|Romance\r\n", "8810,AVP: Alien vs. Predator (2004),Action|Horror|Sci-Fi|Thriller\r\n", "8813,We Don't Live Here Anymore (2004),Drama\r\n", "8814,Without a Paddle (2004),Comedy\r\n", "8815,Exorcist: The Beginning (2004),Horror|Thriller\r\n", "8827,\"Bill Cosby, Himself (1983)\",Comedy|Documentary\r\n", "8830,Anacondas: The Hunt for the Blood Orchid (2004),Adventure|Drama|Horror|Sci-Fi|Thriller\r\n", "8831,Suspect Zero (2004),Crime|Thriller\r\n", "8832,Warriors of Heaven and Earth (Tian di ying xiong) (2003),Action|Adventure|Drama\r\n", "8833,Vanity Fair (2004),Drama|Romance\r\n", "8835,Paparazzi (2004),Drama|Thriller\r\n", "8836,Wicker Park (2004),Drama|Romance|Thriller\r\n", "8838,Alice Doesn't Live Here Anymore (1974),Drama|Romance\r\n", "8840,Who's That Knocking at My Door? (1967),Drama\r\n", "8844,Camera Buff (Amator) (1979),Drama\r\n", "8848,\"Vitelloni, I (a.k.a. The Young and the Passionate) (1953)\",Drama\r\n", "8860,Cellular (2004),Action|Crime|Drama|Mystery|Thriller\r\n", "8861,Resident Evil: Apocalypse (2004),Action|Horror|Sci-Fi|Thriller\r\n", "8864,Mr. 3000 (2004),Comedy|Drama\r\n", "8865,Sky Captain and the World of Tomorrow (2004),Action|Adventure|Sci-Fi\r\n", "8866,Wimbledon (2004),Comedy|Romance\r\n", "8869,First Daughter (2004),Comedy|Romance\r\n", "8870,\"Forgotten, The (2004)\",Drama|Mystery|Sci-Fi|Thriller\r\n", "8873,\"Motorcycle Diaries, The (Diarios de motocicleta) (2004)\",Adventure|Drama\r\n", "8874,Shaun of the Dead (2004),Comedy|Horror\r\n", "8875,\"Come Back, Little Sheba (1952)\",Drama\r\n", "8879,Murder on the Orient Express (1974),Crime|Mystery|Thriller\r\n", "8880,Mask (1985),Drama\r\n", "8894,Orca: The Killer Whale (1977),Action|Drama|Horror|Thriller\r\n", "8905,1492: Conquest of Paradise (1992),Adventure|Drama\r\n", "8906,Cannibal Holocaust (1980),Horror\r\n", "8907,Shark Tale (2004),Animation|Children|Comedy\r\n", "8908,Ladder 49 (2004),Action|Drama|Thriller\r\n", "8910,I Heart Huckabees (2004),Comedy\r\n", "8911,Raise Your Voice (2004),Romance\r\n", "8912,Taxi (2004),Action|Comedy\r\n", "8914,Primer (2004),Drama|Sci-Fi\r\n", "8915,Stage Beauty (2004),Drama\r\n", "8916,Shall We Dance? (2004),Comedy|Romance\r\n", "8917,Team America: World Police (2004),Action|Adventure|Animation|Comedy\r\n", "8918,Eulogy (2004),Comedy|Crime|Drama\r\n", "8919,P.S. (2004),Comedy|Drama|Fantasy|Romance\r\n", "8920,\"Country Girl, The (1954)\",Drama\r\n", "8921,\"Rose Tattoo, The (1955)\",Drama|Romance\r\n", "8928,\"Fearless Vampire Killers, The (1967)\",Comedy|Horror\r\n", "8933,\"Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)\",Comedy|Drama\r\n", "8934,Bebe's Kids (1992),Animation|Children|Comedy\r\n", "8937,Friday Night Lights (2004),Action|Drama\r\n", "8938,Tarnation (2003),Documentary\r\n", "8939,\"Final Cut, The (2004)\",Sci-Fi|Thriller\r\n", "8943,Being Julia (2004),Comedy|Drama\r\n", "8946,Surviving Christmas (2004),Comedy\r\n", "8947,\"Grudge, The (2004)\",Horror|Mystery|Thriller\r\n", "8948,Alfie (2004),Comedy|Drama|Romance\r\n", "8949,Sideways (2004),Comedy|Drama|Romance\r\n", "8950,The Machinist (2004),Drama|Mystery|Thriller\r\n", "8951,Vera Drake (2004),Drama\r\n", "8952,Falling Angels (2003),Drama\r\n", "8954,Lightning in a Bottle (2004),Documentary\r\n", "8955,Undertow (2004),Crime|Drama|Thriller\r\n", "8957,Saw (2004),Horror|Mystery|Thriller\r\n", "8958,Ray (2004),Drama\r\n", "8959,Birth (2004),Drama|Mystery\r\n", "8961,\"Incredibles, The (2004)\",Action|Adventure|Animation|Children|Comedy\r\n", "8964,Callas Forever (2002),Drama\r\n", "8965,\"Polar Express, The (2004)\",Adventure|Animation|Children|Fantasy|IMAX\r\n", "8966,Kinsey (2004),Drama\r\n", "8967,Seed of Chucky (Child's Play 5) (2004),Comedy|Horror\r\n", "8968,After the Sunset (2004),Action|Adventure|Comedy|Crime|Thriller\r\n", "8969,Bridget Jones: The Edge of Reason (2004),Comedy|Drama|Romance\r\n", "8970,Finding Neverland (2004),Drama\r\n", "8972,National Treasure (2004),Action|Adventure|Drama|Mystery|Thriller\r\n", "8973,Bad Education (La mala educación) (2004),Drama|Thriller\r\n", "8974,\"SpongeBob SquarePants Movie, The (2004)\",Adventure|Animation|Children|Comedy\r\n", "8977,Alexander (2004),Action|Adventure|Drama|War\r\n", "8978,Christmas with the Kranks (2004),Children|Comedy\r\n", "8979,Guerrilla: The Taking of Patty Hearst (2004),Documentary\r\n", "8981,Closer (2004),Drama|Romance\r\n", "8982,I Am David (2003),Drama\r\n", "8983,House of Flying Daggers (Shi mian mai fu) (2004),Action|Drama|Romance\r\n", "8984,Ocean's Twelve (2004),Action|Comedy|Crime|Thriller\r\n", "8985,Blade: Trinity (2004),Action|Fantasy|Horror|Thriller\r\n", "8987,Bush's Brain (2004),Documentary\r\n", "8989,Damn Yankees! (1958),Comedy|Musical\r\n", "8998,That's Entertainment (1974),Documentary\r\n", "9004,D.A.R.Y.L. (1985),Adventure|Children|Sci-Fi\r\n", "9005,Fire in the Sky (1993),Drama|Mystery|Sci-Fi\r\n", "9008,\"Invisible Man Returns, The (1940)\",Horror|Sci-Fi\r\n", "9010,Love Me If You Dare (Jeux d'enfants) (2003),Drama|Romance\r\n", "9018,Control Room (2004),Documentary|War\r\n", "25746,\"Hunchback of Notre Dame, The (1923)\",Drama|Horror\r\n", "25750,Sherlock Jr. (1924),Comedy|Fantasy|Romance\r\n", "25752,\"Freshman, The (1925)\",Comedy\r\n", "25753,Greed (1924),Drama\r\n", "25757,\"Jazz Singer, The (1927)\",Drama|Musical|Romance\r\n", "25769,\"Steamboat Bill, Jr. (1928)\",Comedy|Romance\r\n", "25771,\"Andalusian Dog, An (Chien andalou, Un) (1929)\",Fantasy\r\n", "25773,Little Caesar (1931),Crime|Drama\r\n", "25782,Boudu Saved From Drowning (Boudu sauvé des eaux) (1932),Comedy\r\n", "25788,Scarface (1932),Crime|Drama\r\n", "25795,Dinner at Eight (1933),Comedy|Drama|Romance\r\n", "25797,Gold Diggers of 1933 (1933),Musical\r\n", "25805,\"Atalante, L' (1934)\",Comedy|Drama|Romance\r\n", "25825,Fury (1936),Drama|Film-Noir\r\n", "25826,Libeled Lady (1936),Comedy|Romance\r\n", "25827,Mr. Deeds Goes to Town (1936),Comedy|Romance\r\n", "25833,Camille (1936),Drama|Romance\r\n", "25834,Captains Courageous (1937),Adventure|Drama\r\n", "25841,Stage Door (1937),Drama\r\n", "25850,Holiday (1938),Comedy|Drama|Romance\r\n", "25855,\"Roaring Twenties, The (1939)\",Crime|Drama|Thriller\r\n", "25856,Wuthering Heights (1939),Drama|Romance\r\n", "25865,\"Letter, The (1940)\",Drama|Film-Noir\r\n", "25870,Here Comes Mr. Jordan (1941),Comedy|Fantasy|Romance\r\n", "25886,Random Harvest (1942),Drama|Romance\r\n", "25887,Tales of Manhattan (1942),Comedy|Drama\r\n", "25898,Day of Wrath (Vredens dag) (1943),Drama\r\n", "25905,\"Miracle of Morgan's Creek, The (1944)\",Comedy|Romance\r\n", "25906,Mr. Skeffington (1944),Drama|Romance\r\n", "25923,Great Expectations (1946),Drama\r\n", "25927,\"Stranger, The (1946)\",Drama|Film-Noir|Thriller\r\n", "25937,Easter Parade (1948),Musical|Romance\r\n", "25940,\"Lady from Shanghai, The (1947)\",Drama|Film-Noir|Mystery\r\n", "25946,\"Three Musketeers, The (1948)\",Action|Adventure|Drama|Romance\r\n", "25947,Unfaithfully Yours (1948),Comedy\r\n", "25952,\"Letter to Three Wives, A (1949)\",Comedy|Drama\r\n", "25959,Annie Get Your Gun (1950),Comedy|Musical|Romance|Western\r\n", "25962,King Solomon's Mines (1950),Action|Adventure|Romance\r\n", "25963,\"Young and the Damned, The (Olvidados, Los) (1950)\",Crime|Drama\r\n", "25996,\"Star Is Born, A (1954)\",Drama|Musical\r\n", "25999,The Wild One (1953),Drama\r\n", "26002,Confidential Report (1955),Crime|Drama|Mystery|Thriller\r\n", "26003,Night and Fog (Nuit et brouillard) (1955),Crime|Documentary|War\r\n", "26038,Teacher's Pet (1958),Comedy|Romance\r\n", "26048,\"Human Condition II, The (Ningen no joken II) (1959)\",Drama|War\r\n", "26052,Pickpocket (1959),Crime|Drama\r\n", "26059,When a Woman Ascends the Stairs (Onna ga kaidan wo agaru toki) (1960),Drama\r\n", "26073,\"Human Condition III, The (Ningen no joken III) (1961)\",Drama|War\r\n", "26078,Advise and Consent (1962),Drama\r\n", "26082,Harakiri (Seppuku) (1962),Drama\r\n", "26084,\"Music Man, The (1962)\",Children|Comedy|Musical|Romance\r\n", "26085,Mutiny on the Bounty (1962),Adventure|Drama|Romance\r\n", "26095,\"Carabineers, The (Carabiniers, Les) (1963)\",Comedy|Drama|War\r\n", "26116,\"Hush... Hush, Sweet Charlotte (1964)\",Horror|Thriller\r\n", "26122,Onibaba (1964),Drama|Horror|War\r\n", "26124,Robinson Crusoe on Mars (1964),Sci-Fi\r\n", "26131,\"Battle of Algiers, The (La battaglia di Algeri) (1966)\",Drama|War\r\n", "26133,\"Charlie Brown Christmas, A (1965)\",Animation|Children|Comedy\r\n", "26142,Major Dundee (1965),Adventure|War|Western\r\n", "26147,\"Thousand Clowns, A (1965)\",Comedy|Drama|Romance\r\n", "26150,Andrei Rublev (Andrey Rublyov) (1969),Drama|War\r\n", "26151,Au Hasard Balthazar (1966),Crime|Drama\r\n", "26152,Batman (1966),Action|Adventure|Comedy\r\n", "26158,Closely Watched Trains (Ostre sledované vlaky) (1966),Comedy|Drama|War\r\n", "26159,Tokyo Drifter (Tôkyô nagaremono) (1966),Action|Crime|Drama\r\n", "26169,Branded to Kill (Koroshi no rakuin) (1967),Action|Crime|Drama\r\n", "26171,Play Time (a.k.a. Playtime) (1967),Comedy\r\n", "26172,Point Blank (1967),Action|Crime|Drama|Thriller\r\n", "26176,Titicut Follies (1967),Documentary|Drama\r\n", "26183,Asterix and Cleopatra (Astérix et Cléopâtre) (1968),Action|Adventure|Animation|Children|Comedy\r\n", "26184,\"Diamond Arm, The (Brilliantovaya ruka) (1968)\",Action|Adventure|Comedy|Crime|Thriller\r\n", "26195,Sympathy for the Devil (1968),Documentary|Musical\r\n", "26198,\"Yours, Mine and Ours (1968)\",Children|Comedy\r\n", "26225,\"Claire's Knee (Genou de Claire, Le) (1970)\",Comedy|Romance\r\n", "26231,Performance (1970),Crime|Drama|Thriller\r\n", "26236,\"White Sun of the Desert, The (Beloe solntse pustyni) (1970)\",Action|Adventure|Comedy|Drama|Romance|War\r\n", "26237,Zabriskie Point (1970),Drama|Romance\r\n", "26242,Duel (1971),Action|Mystery|Thriller\r\n", "26249,They Call Me Trinity (1971),Comedy|Western\r\n", "26258,\"Topo, El (1970)\",Fantasy|Western\r\n", "26265,Dr. Phibes Rises Again (1972),Adventure|Comedy|Horror|Romance\r\n", "26283,Charley Varrick (1973),Crime|Drama|Thriller\r\n", "26285,Dark Star (1974),Comedy|Sci-Fi|Thriller\r\n", "26303,Sisters (1973),Horror|Thriller\r\n", "26308,Turkish Delight (Turks fruit) (1973),Drama|Romance\r\n", "26313,California Split (1974),Comedy|Drama\r\n", "26317,Emmanuelle (1974),Drama|Romance\r\n", "26322,Gone in 60 Seconds (1974),Action|Crime|Drama\r\n", "26326,\"Holy Mountain, The (Montaña sagrada, La) (1973)\",Drama\r\n", "26340,\"Twelve Tasks of Asterix, The (Les douze travaux d'Astérix) (1976)\",Action|Adventure|Animation|Children|Comedy|Fantasy\r\n", "26344,French Connection II (1975),Action|Crime|Drama|Thriller\r\n", "26347,\"Irony of Fate, or Enjoy Your Bath! (Ironiya sudby, ili S legkim parom!) (1975)\",Comedy|Drama|Romance\r\n", "26350,\"Passenger, The (Professione: reporter) (1975)\",Drama\r\n", "26357,Trilogy of Terror (1975),Horror|Thriller\r\n", "26359,1900 (Novecento) (1976),Drama|War\r\n", "26365,Futureworld (1976),Sci-Fi|Thriller\r\n", "26366,Harlan County U.S.A. (1976),Documentary\r\n", "26375,Silver Streak (1976),Action|Comedy|Crime\r\n", "26386,High Anxiety (1977),Comedy|Thriller\r\n", "26391,\"New York, New York (1977)\",Drama|Musical|Romance\r\n", "26394,\"Turning Point, The (1977)\",Drama|Romance\r\n", "26399,Five Deadly Venoms (1978),Action\r\n", "26401,Last Hurrah for Chivalry (Hao xia) (1979),Action|Drama\r\n", "26409,\"Clonus Horror, The (1979)\",Horror|Sci-Fi\r\n", "26413,Snake in the Eagle's Shadow (Se ying diu sau) (1978),Action|Comedy\r\n", "26422,Hair (1979),Comedy|Drama|Musical\r\n", "26429,Love at First Bite (1979),Comedy|Horror|Romance\r\n", "26444,\"Hitch Hikers Guide to the Galaxy, The (1981)\",Adventure|Comedy|Sci-Fi\r\n", "26453,Smiley's People (1982),Drama|Mystery\r\n", "26464,Blue Thunder (1983),Action|Crime|Drama\r\n", "26467,\"Day After, The (1983)\",Drama|Sci-Fi\r\n", "26471,Eddie Murphy Delirious (1983),Comedy|Documentary\r\n", "26472,\"Norte, El (1984)\",Adventure|Drama\r\n", "26492,Twilight Zone: The Movie (1983),Fantasy|Horror|Sci-Fi|Thriller\r\n", "26498,Boy Meets Girl (1984),Drama\r\n", "26504,Cloak & Dagger (1984),Action|Adventure|Children|Crime|Mystery|Thriller\r\n", "26510,\"Ewok Adventure, The (a.k.a. Caravan of Courage: An Ewok Adventure) (1984)\",Adventure|Children|Fantasy|Sci-Fi\r\n", "26523,\"Silent Night, Deadly Night (1984)\",Horror|Thriller\r\n", "26524,\"Times of Harvey Milk, The (1984)\",Documentary\r\n", "26527,What Have I Done to Deserve This? (¿Qué he hecho yo para merecer esto!!) (1984),Comedy|Drama\r\n", "26528,Anne of Green Gables (1985),Children|Drama\r\n", "26539,Death of a Salesman (1985),Drama\r\n", "26542,Ewoks: The Battle for Endor (1985),Adventure|Children|Fantasy|Sci-Fi\r\n", "26547,Police Story (Ging chaat goo si) (1985),Action|Comedy|Crime|Thriller\r\n", "26554,\"Quiet Earth, The (1985)\",Drama|Mystery|Sci-Fi\r\n", "26555,Spies Like Us (1985),Comedy\r\n", "26562,White Nights (1985),Drama\r\n", "26564,'Round Midnight (1986),Drama|Musical\r\n", "26567,Club Paradise (1986),Comedy\r\n", "26578,\"Sacrifice, The (Offret - Sacraficatio) (1986)\",Drama\r\n", "26585,\"Better Tomorrow, A (Ying hung boon sik) (1986)\",Crime|Drama|Thriller\r\n", "26587,\"Decalogue, The (Dekalog) (1989)\",Crime|Drama|Romance\r\n", "26590,G.I. Joe: The Movie (1987),Action|Adventure|Animation|Children|Fantasy|Sci-Fi\r\n", "26593,Hell Comes to Frogtown (1988),Action|Comedy|Sci-Fi\r\n", "26599,\"Law of Desire (Ley del deseo, La) (1987)\",Comedy|Drama|Romance\r\n", "26603,Prince of Darkness (1987),Fantasy|Horror|Sci-Fi|Thriller\r\n", "26606,\"Chinese Ghost Story, A (Sinnui yauwan) (1987)\",Action|Fantasy|Horror|Romance\r\n", "26612,\"Better Tomorrow II, A (Ying hung boon sik II) (1987)\",Crime|Drama|Thriller\r\n", "26614,\"Bourne Identity, The (1988)\",Action|Adventure|Drama|Mystery|Thriller\r\n", "26622,Dominick and Eugene (1988),Drama\r\n", "26629,Killer Klowns from Outer Space (1988),Comedy|Horror|Sci-Fi\r\n", "26630,Moonwalker (1988),Musical\r\n", "26631,Alice (Neco z Alenky) (1988),Animation|Fantasy|Mystery\r\n", "26645,Life Is a Long Quiet River (La vie est un long fleuve tranquille) (1988),Comedy\r\n", "26649,Lonesome Dove (1989),Adventure|Drama|Western\r\n", "26662,Kiki's Delivery Service (Majo no takkyûbin) (1989),Adventure|Animation|Children|Drama|Fantasy\r\n", "26676,Almost an Angel (1990),Comedy\r\n", "26680,Cry-Baby (1990),Comedy|Musical|Romance\r\n", "26681,Bullet in the Head (1990),Action|Drama|War\r\n", "26686,Ghost Dad (1990),Comedy|Fantasy\r\n", "26693,It (1990),Drama|Fantasy|Horror|Mystery|Thriller\r\n", "26694,Ju Dou (1990),Drama\r\n", "26695,\"Krays, The (1990)\",Drama\r\n", "26696,Lionheart (1990),Action\r\n", "26700,Nuns on the Run (1990),Comedy|Crime\r\n", "26701,Patlabor: The Movie (Kidô keisatsu patorebâ: The Movie) (1989),Action|Animation|Crime|Drama|Film-Noir|Mystery|Sci-Fi|Thriller\r\n", "26704,State of Grace (1990),Crime|Drama|Thriller\r\n", "26712,35 Up (1991),Documentary\r\n", "26713,Days of Being Wild (A Fei jingjyuhn) (1990),Drama|Romance\r\n", "26717,Begotten (1990),Drama|Horror\r\n", "26726,Dutch (1991),Comedy\r\n", "26729,Hearts of Darkness: A Filmmakers Apocalypse (1991),Documentary\r\n", "26732,Johnny Stecchino (1991),Comedy\r\n", "26736,Riki-Oh: The Story of Ricky (Lik Wong) (1991),Action|Crime|Thriller\r\n", "26741,Mannequin 2: On the Move (1991),Comedy|Fantasy|Romance\r\n", "26743,Only Yesterday (Omohide poro poro) (1991),Animation|Drama\r\n", "26745,Other People's Money (1991),Comedy|Drama|Romance\r\n", "26750,Quigley Down Under (1990),Adventure|Drama|Western\r\n", "26761,Prime Suspect 2 (1992),Crime|Drama|Mystery|Romance|Thriller\r\n", "26764,Captain America (1990),Action|Fantasy|Sci-Fi|Thriller|War\r\n", "26765,City Hunter (Sing si lip yan) (1993),Action|Comedy|Romance\r\n", "26776,Porco Rosso (Crimson Pig) (Kurenai no buta) (1992),Adventure|Animation|Comedy|Fantasy|Romance\r\n", "26777,\"Stolen Children (Ladro di bambini, Il) (1992)\",Drama\r\n", "26778,Ladybugs (1992),Comedy\r\n", "26782,\"Mambo Kings, The (1992)\",Drama|Musical\r\n", "26791,Shining Through (1992),Drama|Romance|Thriller|War\r\n", "26792,Sidekicks (1992),Action|Adventure|Children|Comedy\r\n", "26796,\"Heart in Winter, A (Un coeur en hiver) (1992)\",Drama|Romance\r\n", "26797,Visions of Light: The Art of Cinematography (1992),Documentary\r\n", "26810,Bad Boy Bubby (1993),Drama\r\n", "26812,Barbarians at the Gate (1993),Drama\r\n", "26819,Fortress (1992),Action|Sci-Fi\r\n", "26828,Mr. Nanny (1993),Action|Children|Comedy\r\n", "26838,\"Snapper, The (1993)\",Comedy|Drama\r\n", "26840,Sonatine (Sonachine) (1993),Action|Comedy|Crime|Drama\r\n", "26849,\"Stand, The (1994)\",Adventure|Drama|Fantasy|Horror|Sci-Fi\r\n", "26854,\"Darkman II: Return of Durant, The (1995)\",Action|Crime|Horror\r\n", "26861,Freaked (1993),Comedy|Sci-Fi\r\n", "26865,Fist of Legend (Jing wu ying xiong) (1994),Action|Drama\r\n", "26870,Major League II (1994),Comedy\r\n", "26871,My Father the Hero (1994),Comedy|Romance\r\n", "26875,\"Pure Formality, A (Pura formalità, Una) (1994)\",Crime|Film-Noir|Mystery|Thriller\r\n", "26887,\"Langoliers, The (1995)\",Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller\r\n", "26900,\"Last Wedding, The (Kivenpyörittäjän kylä) (1995)\",Comedy|Drama\r\n", "26901,Last of the Dogmen (1995),Adventure|Western\r\n", "26903,Whisper of the Heart (Mimi wo sumaseba) (1995),Animation|Drama|Romance\r\n", "26913,Street Fighter II: The Animated Movie (Sutorîto Faitâ II gekijô-ban) (1994),Action|Animation\r\n", "26928,\"Summer's Tale, A (Conte d'été) (1996)\",Comedy|Drama|Romance\r\n", "26940,\"Late Shift, The (1996)\",Comedy\r\n", "26947,Pusher (1996),Crime|Thriller\r\n", "26958,Emma (1996),Romance\r\n", "26965,\"Boxer, The (1997)\",Drama|Thriller\r\n", "26974,Gummo (1997),Drama\r\n", "26985,Nirvana (1997),Action|Sci-Fi\r\n", "26999,\"Lion King II: Simba's Pride, The (1998)\",Adventure|Animation|Children|Musical|Romance\r\n", "27002,From the Earth to the Moon (1998),Action|Documentary|Drama|Thriller\r\n", "27003,Beowulf (1999),Action|Horror|Sci-Fi\r\n", "27006,RKO 281 (1999),Drama\r\n", "27008,From Dusk Till Dawn 2: Texas Blood Money (1999) ,Comedy|Crime|Horror\r\n", "27020,Gia (1998),Drama|Romance\r\n", "27022,Thursday (1998),Action|Crime|Thriller\r\n", "27032,Who Am I? (Wo shi shei) (1998),Action|Adventure|Comedy|Sci-Fi|Thriller\r\n", "27036,Merlin (1998),Action|Adventure|Drama|Fantasy|Romance\r\n", "27074,Brave New World (1998),Sci-Fi\r\n", "27075,Addams Family Reunion (1998),Children|Comedy|Fantasy\r\n", "27105,Purgatory (1999),Fantasy|Western\r\n", "27124,Bleeder (1999),Drama|Thriller\r\n", "27134,Dark Portals: The Chronicles of Vidocq (Vidocq) (2001),Action|Crime|Fantasy\r\n", "27140,Candyman 3: Day of the Dead (1999),Horror\r\n", "27155,\"Batman/Superman Movie, The (1998)\",Action|Adventure|Animation|Children|Fantasy|Sci-Fi\r\n", "27156,\"Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni) (1997)\",Action|Animation|Drama|Fantasy|Sci-Fi\r\n", "27176,Style Wars (1983),Documentary\r\n", "27178,In July (Im Juli) (2000),Comedy|Romance\r\n", "27186,Kirikou and the Sorceress (Kirikou et la sorcière) (1998),Adventure|Animation|Children|Fantasy\r\n", "27193,Taxi 2 (2000),Action|Comedy\r\n", "27246,If These Walls Could Talk 2 (2000),Drama|Romance\r\n", "27251,\"10th Kingdom, The (2000)\",Adventure|Comedy|Fantasy\r\n", "27255,\"Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)\",Drama\r\n", "27266,2046 (2004),Drama|Fantasy|Romance|Sci-Fi\r\n", "27306,Bartleby (2001),Comedy|Drama\r\n", "27311,Batman Beyond: Return of the Joker (2000),Action|Animation|Crime|Sci-Fi|Thriller\r\n", "27317,Audition (Ôdishon) (1999),Drama|Horror|Mystery|Romance|Thriller\r\n", "27320,\"Nine Lives of Tomas Katz, The (2000)\",Comedy|Drama|Fantasy\r\n", "27328,Monday (2000),Action|Comedy|Crime|Fantasy|Thriller\r\n", "27329,Paradise Lost 2: Revelations (2000),Documentary\r\n", "27368,Asterix & Obelix: Mission Cleopatra (Astérix & Obélix: Mission Cléopâtre) (2002),Adventure|Comedy|Fantasy\r\n", "27369,Daria: Is It Fall Yet? (2000),Animation|Comedy\r\n", "27370,Late Night Shopping (2001),Comedy\r\n", "27373,61* (2001),Drama\r\n", "27397,Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000),Crime|Drama|Mystery|Thriller|War\r\n", "27408,Ripley's Game (2002),Drama|Thriller\r\n", "27416,Jalla! Jalla! (2000),Comedy|Drama|Romance\r\n", "27420,Teknolust (2002),Comedy|Drama|Romance|Sci-Fi\r\n", "27426,\"Accidental Spy, The (Dak miu mai shing) (2001)\",Action|Comedy|Thriller\r\n", "27434,Darkness (2002),Horror|Mystery\r\n", "27441,Blood: The Last Vampire (2000),Action|Animation|Horror\r\n", "27450,Blueberry (2004),Adventure|Western\r\n", "27473,American Psycho II: All American Girl (2002),Comedy|Crime|Horror|Mystery|Thriller\r\n", "27478,Ali G Indahouse (2002),Comedy\r\n", "27480,Dead or Alive 2: Tôbôsha (2000),Action|Crime|Thriller\r\n", "27482,Cube 2: Hypercube (2002),Horror|Mystery|Sci-Fi\r\n", "27491,Pulse (Kairo) (2001),Horror|Mystery|Thriller\r\n", "27513,Dog Days (Hundstage) (2001),Drama\r\n", "27523,My Sassy Girl (Yeopgijeogin geunyeo) (2001),Comedy|Romance\r\n", "27537,Nothing (2003),Comedy|Fantasy|Mystery|Sci-Fi\r\n", "27539,Undertaking Betty (Plots with a View) (2002),Comedy|Romance\r\n", "27549,Dead or Alive: Final (2002),Comedy|Crime|Drama|Sci-Fi|Thriller\r\n", "27555,Fubar (2002),Comedy\r\n", "27563,\"Happiness of the Katakuris, The (Katakuri-ke no kôfuku) (2001)\",Comedy|Horror|Musical\r\n", "27584,Dead End (2003),Comedy|Horror|Mystery|Thriller\r\n", "27592,Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002),Crime|Drama\r\n", "27595,Jesus Christ Vampire Hunter (2001),Action|Comedy|Horror|Musical\r\n", "27604,Suicide Club (Jisatsu saakuru) (2001),Horror|Mystery|Thriller\r\n", "27611,Battlestar Galactica (2003),Drama|Sci-Fi|War\r\n", "27618,\"Sound of Thunder, A (2005)\",Action|Adventure|Drama|Sci-Fi|Thriller\r\n", "27619,\"Lion King 1½, The (2004)\",Adventure|Animation|Children|Comedy\r\n", "27627,Oasis (2002),Drama|Romance\r\n", "27644,Remember Me (Ricordati di me) (2003),Comedy|Drama|Romance\r\n", "27660,\"Animatrix, The (2003)\",Action|Animation|Drama|Sci-Fi\r\n", "27664,\"Brown Bunny, The (2003)\",Drama\r\n", "27667,Ju-on: The Curse (2000),Horror\r\n", "27674,11:14 (2003),Comedy|Crime|Drama|Mystery|Thriller\r\n", "27683,Tremors 4: The Legend Begins (2004),Action|Comedy|Horror|Sci-Fi|Thriller|Western\r\n", "27685,Bring It On Again (2004),Comedy\r\n", "27689,\"Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)\",Action|Crime|Thriller\r\n", "27692,And Starring Pancho Villa as Himself (2003),Action|Comedy|Drama|War\r\n", "27695,Nicotina (2003),Action|Comedy|Drama\r\n", "27704,Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003),Action|Drama|Thriller|War\r\n", "27705,In Hell (2003),Action|Drama|Thriller\r\n", "27706,Lemony Snicket's A Series of Unfortunate Events (2004),Adventure|Children|Comedy|Fantasy\r\n", "27708,Helen of Troy (2003),Action|Adventure|Drama|Romance\r\n", "27716,\"Green Butchers, The (Grønne slagtere, De) (2003)\",Comedy|Crime|Drama|Romance\r\n", "27721,\"Very Long Engagement, A (Un long dimanche de fiançailles) (2004)\",Drama|Mystery|Romance|War\r\n", "27722,Last Life in the Universe (Ruang rak noi nid mahasan) (2003),Drama|Romance\r\n", "27728,Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004),Action|Animation|Drama|Sci-Fi|Thriller\r\n", "27731,\"Cat Returns, The (Neko no ongaeshi) (2002)\",Adventure|Animation|Children|Fantasy\r\n", "27741,\"Twilight Samurai, The (Tasogare Seibei) (2002)\",Drama|Romance\r\n", "27744,\"Facing Windows (Finestra di fronte, La) (2003)\",Drama|Romance\r\n", "27746,Ginger Snaps: Unleashed (2004),Horror|Thriller\r\n", "27751,'Salem's Lot (2004),Drama|Horror|Mystery|Thriller\r\n", "27762,Comic Book: The Movie (2004),Comedy\r\n", "27768,Intimate Strangers (Confidences trop intimes) (2004),Drama\r\n", "27769,Down to the Bone (2004),Drama\r\n", "27772,Ju-on: The Grudge (2002),Horror\r\n", "27773,Old Boy (2003),Mystery|Thriller\r\n", "27776,Red Lights (Feux rouges) (2004),Drama\r\n", "27778,Ginger Snaps Back: The Beginning (2004),Fantasy|Horror\r\n", "27784,One Missed Call (Chakushin ari) (2003),Horror|Mystery\r\n", "27788,\"Jacket, The (2005)\",Drama|Mystery|Sci-Fi|Thriller\r\n", "27790,Millions (2004),Children|Comedy|Crime|Drama|Fantasy\r\n", "27793,Starship Troopers 2: Hero of the Federation (2004),Action|Horror|Sci-Fi|War\r\n", "27801,Ong-Bak: The Thai Warrior (Ong Bak) (2003),Action|Thriller\r\n", "27802,Infernal Affairs 2 (Mou gaan dou II) (2003),Action|Crime|Drama|Thriller\r\n", "27803,\"Sea Inside, The (Mar adentro) (2004)\",Drama\r\n", "27808,Spanglish (2004),Comedy|Drama|Romance\r\n", "27815,\"Chorus, The (Choristes, Les) (2004)\",Drama\r\n", "27816,Saints and Soldiers (2003),Action|Adventure|Drama|War\r\n", "27820,\"Story of the Weeping Camel, The (Geschichte vom weinenden Kamel, Die) (2003)\",Documentary|Drama\r\n", "27821,\"Interpreter, The (2005)\",Drama|Thriller\r\n", "27822,Open Water (2003),Drama|Thriller\r\n", "27826,Touch of Pink (2004),Comedy|Drama|Romance\r\n", "27829,Slasher (2004),Documentary\r\n", "27830,\"Bobby Jones, Stroke of Genius (2004)\",Drama\r\n", "27831,Layer Cake (2004),Crime|Drama|Thriller\r\n", "27834,\"Return, The (Vozvrashcheniye) (2003)\",Drama\r\n", "27837,Flight of the Phoenix (2004),Action|Adventure\r\n", "27838,Mean Creek (2004),Drama|Thriller\r\n", "27839,\"Ring Two, The (2005)\",Drama|Horror|Mystery|Thriller\r\n", "27846,\"Corporation, The (2003)\",Documentary\r\n", "27850,\"Yes Men, The (2003)\",Documentary\r\n", "27865,Azumi (2003),Action|Adventure|Drama|Thriller\r\n", "27866,In My Father's Den (2004),Drama\r\n", "27869,Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004),Action|Drama|War\r\n", "27873,Metallica: Some Kind of Monster (2004),Documentary\r\n", "27878,Born into Brothels (2004),Documentary\r\n", "27879,DiG! (2004),Documentary\r\n", "27882,Riding Giants (2004),Documentary\r\n", "27899,What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004),Comedy|Documentary|Drama\r\n", "27904,\"Scanner Darkly, A (2006)\",Animation|Drama|Mystery|Sci-Fi|Thriller\r\n", "27905,Casshern (2004),Action|Drama|Fantasy|Sci-Fi\r\n", "27912,Outfoxed: Rupert Murdoch's War on Journalism (2004),Documentary\r\n", "30707,Million Dollar Baby (2004),Drama\r\n", "30745,Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003),Comedy|Crime|Drama|Horror|Mystery\r\n", "30749,Hotel Rwanda (2004),Drama|War\r\n", "30793,Charlie and the Chocolate Factory (2005),Adventure|Children|Comedy|Fantasy|IMAX\r\n", "30803,3-Iron (Bin-jip) (2004),Drama|Romance\r\n", "30810,\"Life Aquatic with Steve Zissou, The (2004)\",Adventure|Comedy|Fantasy\r\n", "30812,\"Aviator, The (2004)\",Drama\r\n", "30816,\"Phantom of the Opera, The (2004)\",Drama|Musical|Romance\r\n", "30818,Beyond the Sea (2004),Drama|Musical\r\n", "30820,\"Woodsman, The (2004)\",Drama\r\n", "30822,In Good Company (2004),Comedy|Drama\r\n", "30825,Meet the Fockers (2004),Comedy\r\n", "30846,\"Assassination of Richard Nixon, The (2004)\",Crime|Drama|Thriller\r\n", "30848,\"Love Song for Bobby Long, A (2004)\",Drama\r\n", "30850,\"Merchant of Venice, The (2004)\",Drama\r\n", "30883,Fat Albert (2004),Comedy|Fantasy\r\n", "30890,\"Keys to the House, The (Chiavi di casa, Le) (2004)\",Drama\r\n", "30892,In the Realms of the Unreal (2004),Animation|Documentary\r\n", "30894,White Noise (2005),Drama|Horror|Mystery|Sci-Fi|Thriller\r\n", "30898,\"Upside of Anger, The (2005)\",Comedy|Drama|Romance\r\n", "30994,Little Miss Marker (1980),Comedy|Drama\r\n", "31000,Sweet Liberty (1986),Comedy\r\n", "31030,I Remember Mama (1948),Children|Drama\r\n", "31038,Smooth Talk (1985),Drama|Romance\r\n", "31049,Out Cold (1989),Comedy|Thriller\r\n", "31083,Man Trouble (1992),Comedy|Romance\r\n", "31086,Battles Without Honor & Humanity (Jingi naki tatakai) (1973),Crime|Drama\r\n", "31101,Stander (2003),Action|Crime|Drama\r\n", "31114,Imaginary Heroes (2004),Comedy|Drama\r\n", "31116,Sergeant York (1941),Drama|War\r\n", "31123,Ruby & Quentin (Tais-toi!) (2003),Comedy|Crime\r\n", "31150,Wizards (1977),Animation|Fantasy|Sci-Fi|War\r\n", "31162,\"Life and Death of Peter Sellers, The (2004)\",Comedy|Drama\r\n", "31184,Appleseed (Appurushîdo) (2004),Action|Animation|Fantasy|Sci-Fi\r\n", "31193,\"Many Adventures of Winnie the Pooh, The (1977)\",Animation|Children|Musical\r\n", "31221,Elektra (2005),Action|Adventure|Crime|Drama\r\n", "31223,Racing Stripes (2005),Children|Comedy\r\n", "31225,Coach Carter (2005),Drama\r\n", "31260,Boys Town (1938),Drama\r\n", "31297,Gold Diggers of 1935 (1935),Comedy|Musical\r\n", "31309,Rocco and His Brothers (Rocco e i suoi fratelli) (1960),Crime|Drama\r\n", "31364,Memories of Murder (Salinui chueok) (2003),Crime|Drama|Mystery|Thriller\r\n", "31367,\"Chase, The (1994)\",Action|Adventure|Comedy|Crime|Romance|Thriller\r\n", "31410,\"Downfall (Untergang, Der) (2004)\",Drama|War\r\n", "31420,Assault on Precinct 13 (2005),Action|Crime|Drama|Thriller\r\n", "31422,Are We There Yet? (2005),Children|Comedy\r\n", "31424,Alone in the Dark (2005),Action|Horror|Sci-Fi|Thriller\r\n", "31427,Hide and Seek (2005),Horror|Mystery|Thriller\r\n", "31431,Boogeyman (2005),Drama|Horror|Mystery|Thriller\r\n", "31433,\"Wedding Date, The (2005)\",Comedy|Romance\r\n", "31435,Rory O'Shea Was Here (Inside I'm Dancing) (2004),Drama\r\n", "31437,Nobody Knows (Dare mo shiranai) (2004),Drama\r\n", "31445,Employee of the Month (2004),Comedy|Drama\r\n", "31522,\"Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)\",Drama\r\n", "31545,\"Trou, Le (Hole, The) (Night Watch, The) (1960)\",Crime|Film-Noir\r\n", "31553,Double Dragon (1994),Action|Adventure|Sci-Fi\r\n", "31590,Hands Off the Loot (Touchez pas au grisbi) (1954),Crime|Drama|Thriller\r\n", "31610,Purple Butterfly (Zi hudie) (2003),Drama\r\n", "31617,El Cid (1961),Action|Adventure|Drama|Romance|War\r\n", "31658,Howl's Moving Castle (Hauru no ugoku shiro) (2004),Adventure|Animation|Fantasy|Romance\r\n", "31660,Steamboy (Suchîmubôi) (2004),Action|Animation|Drama|Sci-Fi\r\n", "31664,Gorgeous (Boh lee chun) (1999),Action|Comedy|Romance\r\n", "31685,Hitch (2005),Comedy|Romance\r\n", "31692,Uncle Nino (2003),Comedy\r\n", "31694,Bride & Prejudice (2004),Comedy|Musical|Romance\r\n", "31696,Constantine (2005),Action|Fantasy|Horror|Thriller\r\n", "31698,Son of the Mask (2005),Adventure|Children|Comedy|Fantasy\r\n", "31700,Because of Winn-Dixie (2005),Children|Comedy|Drama\r\n", "31702,Turtles Can Fly (Lakposhtha hâm parvaz mikonand) (2004),Drama|War\r\n", "31737,Bunny Lake Is Missing (1965),Mystery|Thriller\r\n", "31804,Night Watch (Nochnoy dozor) (2004),Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller\r\n", "31851,Sons of the Desert (1933),Comedy\r\n", "31867,Man of the House (2005),Action|Comedy\r\n", "31878,Kung Fu Hustle (Gong fu) (2004),Action|Comedy\r\n", "31903,Zelary (2003),Drama|Romance\r\n", "31909,Dr. Giggles (1992),Comedy|Horror\r\n", "31921,\"Seven-Per-Cent Solution, The (1976)\",Adventure|Comedy|Crime|Drama|Mystery|Thriller\r\n", "31923,\"Three Musketeers, The (1973)\",Action|Adventure|Comedy\r\n", "31925,Royal Flash (1975),Adventure|Comedy|Romance\r\n", "31952,Control (Kontroll) (2003),Comedy|Crime|Drama|Mystery\r\n", "31973,Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948),Drama|War\r\n", "32009,Tyler Perry's Diary of a Mad Black Woman (2005),Comedy|Drama|Romance\r\n", "32011,Cursed (2005),Horror|Thriller\r\n", "32017,\"Pacifier, The (2005)\",Action|Comedy\r\n", "32019,Be Cool (2005),Comedy|Crime|Musical\r\n", "32022,Gunner Palace (2004),Documentary|War\r\n", "32029,Hostage (2005),Action|Crime|Drama|Thriller\r\n", "32031,Robots (2005),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX\r\n", "32058,Class Action (1991),Drama\r\n", "32060,\"Cat and the Canary, The (1927)\",Horror|Mystery\r\n", "32116,\"Oh, God! You Devil (1984)\",Comedy\r\n", "32139,\"Agony and the Ecstasy, The (1965)\",Drama\r\n", "32160,Twentieth Century (1934),Comedy\r\n", "32179,Elevator to the Gallows (a.k.a. Frantic) (Ascenseur pour l'échafaud) (1958),Crime|Drama|Thriller\r\n", "32213,Cube Zero (2004),Horror|Mystery|Sci-Fi|Thriller\r\n", "32234,Julia (1977),Drama\r\n", "32243,Stealing Rembrandt (Rembrandt) (2003),Action|Comedy|Crime\r\n", "32289,Ice Princess (2005),Children|Comedy|Drama\r\n", "32291,Melinda and Melinda (2004),Comedy|Drama\r\n", "32294,Milk and Honey (2003),Drama\r\n", "32296,Miss Congeniality 2: Armed and Fabulous (2005),Adventure|Comedy|Crime\r\n", "32298,Guess Who (2005),Comedy|Romance\r\n", "32300,D.E.B.S. (2004),Action|Comedy\r\n", "32302,\"League of Ordinary Gentlemen, A (2004)\",Documentary\r\n", "32314,Incident at Loch Ness (2004),Adventure|Comedy|Documentary\r\n", "32371,Call Northside 777 (1948),Crime|Drama|Film-Noir\r\n", "32387,\"Sword of Doom, The (Dai-bosatsu tôge) (1966)\",Action|Drama\r\n", "32392,800 Bullets (800 Balas) (2002),Comedy|Crime|Drama|Western\r\n", "32440,If Looks Could Kill (1991),Action|Comedy\r\n", "32442,Greedy (1994),Comedy\r\n", "32456,\"Pom Poko (a.k.a. Raccoon War, The) (Heisei tanuki gassen pompoko) (1994)\",Animation|Comedy|Drama|Fantasy\r\n", "32460,Knockin' on Heaven's Door (1997),Action|Comedy|Crime|Drama\r\n", "32469,We're No Angels (1955),Comedy|Crime|Drama\r\n", "32511,\"Touch of Zen, A (Xia nu) (1971)\",Action|Adventure\r\n", "32515,Walker (1987),Adventure|Drama|War|Western\r\n", "32554,Memories (Memorîzu) (1995),Animation|Fantasy|Sci-Fi|Thriller\r\n", "32582,\"Wild Parrots of Telegraph Hill, The (2003)\",Documentary\r\n", "32584,\"Ballad of Jack and Rose, The (2005)\",Drama\r\n", "32587,Sin City (2005),Action|Crime|Film-Noir|Mystery|Thriller\r\n", "32589,Beauty Shop (2005),Comedy\r\n", "32596,Sahara (2005),Action|Adventure|Comedy\r\n", "32598,Fever Pitch (2005),Comedy|Romance\r\n", "32600,Eros (2004),Drama\r\n", "32620,Not on the Lips (Pas sur la bouche) (2003),Comedy|Musical|Romance\r\n", "32632,Electra Glide in Blue (1973),Action|Crime\r\n", "32649,\"Special Day, A (Giornata particolare, Una) (1977)\",Drama|War\r\n", "32657,\"Man Who Planted Trees, The (Homme qui plantait des arbres, L') (1987)\",Animation|Drama\r\n", "32659,Tanguy (2001),Comedy\r\n", "32666,National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003),Comedy\r\n", "32728,\"Little Girl Who Lives Down the Lane, The (1976)\",Drama|Mystery|Thriller\r\n", "32743,Ringu 0: Bâsudei (2000),Drama|Horror|Thriller\r\n", "32770,Brothers (Brødre) (2004),Drama\r\n", "32799,Maidens in Uniform (Mädchen in Uniform) (1931),Drama|Romance\r\n", "32862,With Six You Get Eggroll (1968),Comedy|Romance\r\n", "32875,Holiday (Jour de fête) (1949),Comedy\r\n", "32892,Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962),Drama|War\r\n", "32898,\"Trip to the Moon, A (Voyage dans la lune, Le) (1902)\",Action|Adventure|Fantasy|Sci-Fi\r\n", "32906,\"Ascent, The (Voskhozhdeniye) (1977)\",Drama|War\r\n", "32914,Carrie (2002),Drama|Horror|Thriller\r\n", "32917,Boccaccio '70 (1962),Comedy|Fantasy|Romance\r\n", "33004,\"Hitchhiker's Guide to the Galaxy, The (2005)\",Adventure|Comedy|Sci-Fi\r\n", "33085,\"Amityville Horror, The (2005)\",Horror|Thriller\r\n", "33090,Mutant Aliens (2001),Animation|Comedy|Sci-Fi\r\n", "33124,Before the Fall (NaPolA - Elite für den Führer) (2004),Drama|War\r\n", "33126,\"Frisco Kid, The (1979)\",Comedy|Western\r\n", "33132,State Property 2 (2005),Action|Crime|Drama\r\n", "33138,Palindromes (2004),Adventure|Comedy|Drama\r\n", "33145,\"Lot Like Love, A (2005)\",Comedy|Drama|Romance\r\n", "33148,King's Ransom (2005),Comedy|Crime\r\n", "33154,Enron: The Smartest Guys in the Room (2005),Documentary\r\n", "33158,xXx: State of the Union (2005),Action|Crime|Thriller\r\n", "33162,Kingdom of Heaven (2005),Action|Drama|Romance|War\r\n", "33164,House of Wax (2005),Horror|Thriller\r\n", "33166,Crash (2004),Crime|Drama\r\n", "33171,Mysterious Skin (2004),Drama|Mystery\r\n", "33188,Mischief (1985),Comedy|Romance\r\n", "33201,Between Your Legs (Entre las piernas) (1999),Drama|Mystery|Romance|Thriller\r\n", "33237,San Francisco (1936),Drama|Musical|Romance\r\n", "33294,Vampire Hunter D (1985),Animation|Fantasy|Horror\r\n", "33310,\"Common Thread, A (a.k.a. Sequins) (Brodeuses) (2004)\",Drama|Romance\r\n", "33312,\"Cocoanuts, The (1929)\",Comedy|Musical\r\n", "33421,Dear Wendy (2005),Drama\r\n", "33435,Los Angeles Plays Itself (2003),Documentary\r\n", "33437,Unleashed (Danny the Dog) (2005),Action|Crime|Drama|Thriller\r\n", "33493,Star Wars: Episode III - Revenge of the Sith (2005),Action|Adventure|Sci-Fi\r\n", "33495,Kicking & Screaming (2005),Comedy\r\n", "33499,Monster-in-Law (2005),Comedy|Romance\r\n", "33558,\"Snow Walker, The (2003)\",Adventure|Drama\r\n", "33564,Divorce - Italian Style (Divorzio all'italiana) (1961),Comedy\r\n", "33615,Madagascar (2005),Adventure|Animation|Children|Comedy\r\n", "33629,Airborne (1993),Adventure|Comedy\r\n", "33639,Mad Hot Ballroom (2005),Children|Documentary\r\n", "33644,Dominion: Prequel to the Exorcist (2005),Horror|Thriller\r\n", "33646,\"Longest Yard, The (2005)\",Comedy|Drama\r\n", "33649,Saving Face (2004),Comedy|Drama|Romance\r\n", "33660,Cinderella Man (2005),Drama|Romance\r\n", "33669,\"Sisterhood of the Traveling Pants, The (2005)\",Adventure|Comedy|Drama\r\n", "33672,Lords of Dogtown (2005),Action|Comedy|Drama\r\n", "33677,Rock School (2005),Documentary\r\n", "33679,Mr. & Mrs. Smith (2005),Action|Adventure|Comedy|Romance\r\n", "33681,\"Adventures of Sharkboy and Lavagirl 3-D, The (2005)\",Action|Adventure|Children|Fantasy\r\n", "33683,High Tension (Haute tension) (Switchblade Romance) (2003),Horror|Thriller\r\n", "33725,It's All Gone Pete Tong (2004),Comedy|Drama|Musical\r\n", "33779,Eddie Izzard: Dress to Kill (1999),Comedy\r\n", "33781,Quo Vadis (1951),Drama|Romance\r\n", "33794,Batman Begins (2005),Action|Crime|IMAX\r\n", "33801,Godzilla: Final Wars (Gojira: Fainaru uôzu) (2004),Action|Adventure|Fantasy|Sci-Fi\r\n", "33815,\"Perfect Man, The (2005)\",Comedy|Drama|Romance\r\n", "33826,Saint Ralph (2004),Comedy|Drama\r\n", "33830,Herbie: Fully Loaded (2005),Adventure|Comedy|Romance\r\n", "33834,Land of the Dead (2005),Action|Horror|Thriller\r\n", "33836,Bewitched (2005),Comedy|Fantasy|Romance\r\n", "33838,Rize (2005),Documentary\r\n", "33880,Me and You and Everyone We Know (2005),Comedy|Drama\r\n", "33893,\"Perfect Crime, The (Crimen Ferpecto) (Ferpect Crime) (2004)\",Comedy|Crime|Thriller\r\n", "33896,3 Extremes (Three... Extremes) (Saam gaang yi) (2004),Horror\r\n", "33903,\"Edukators, The (Die Fetten Jahre sind vorbei) (2004)\",Comedy|Crime|Drama|Romance\r\n", "33966,Cop and ½ (1993),Comedy\r\n", "34018,At the Circus (1939),Comedy|Musical\r\n", "34048,War of the Worlds (2005),Action|Adventure|Sci-Fi|Thriller\r\n", "34072,\"March of the Penguins (Marche de l'empereur, La) (2005)\",Documentary\r\n", "34129,Rebound (2005),Comedy\r\n", "34143,Dark Water (2005),Drama|Horror|Thriller\r\n", "34148,\"Beat That My Heart Skipped, The (battre mon coeur s'est arrêté, De) (2005)\",Drama\r\n", "34150,Fantastic Four (2005),Action|Adventure|Sci-Fi\r\n", "34153,Murderball (2005),Documentary\r\n", "34162,Wedding Crashers (2005),Comedy|Romance\r\n", "34164,Happy Endings (2005),Comedy|Drama\r\n", "34271,Hustle & Flow (2005),Crime|Drama\r\n", "34292,Hardware (1990),Action|Horror|Sci-Fi\r\n", "34312,\"Calcium Kid, The (2004)\",Comedy\r\n", "34319,\"Island, The (2005)\",Action|Sci-Fi|Thriller\r\n", "34321,Bad News Bears (2005),Children|Comedy\r\n", "34323,\"Devil's Rejects, The (2005)\",Action|Crime|Horror\r\n", "34326,Last Days (2005),Drama\r\n", "34330,November (2004),Drama|Mystery\r\n", "34332,Sky High (2005),Action|Adventure|Children|Comedy\r\n", "34334,Stealth (2005),Action|Adventure|Sci-Fi|Thriller\r\n", "34336,Must Love Dogs (2005),Comedy|Romance\r\n", "34338,\"Aristocrats, The (2005)\",Comedy|Documentary\r\n", "34359,Georgy Girl (1966),Comedy\r\n", "34397,\"Order, The (2001)\",Action|Adventure|Drama|Thriller\r\n", "34405,Serenity (2005),Action|Adventure|Sci-Fi\r\n", "34437,Broken Flowers (2005),Comedy|Drama\r\n", "34450,Miracles - Mr. Canton and Lady Rose (1989),Action|Comedy|Crime|Drama\r\n", "34482,\"Browning Version, The (1951)\",Drama\r\n", "34520,\"Dukes of Hazzard, The (2005)\",Action|Adventure|Comedy\r\n", "34523,The Chumscrubber (2005),Comedy|Drama\r\n", "34528,Junebug (2005),Comedy|Drama\r\n", "34530,Deuce Bigalow: European Gigolo (2005),Comedy\r\n", "34532,\"Skeleton Key, The (2005)\",Drama|Horror|Mystery|Thriller\r\n", "34534,Four Brothers (2005),Action|Crime|Drama\r\n", "34536,The Great Raid (2005),Action|Drama|War\r\n", "34540,Pretty Persuasion (2005),Comedy|Drama\r\n", "34542,Grizzly Man (2005),Documentary\r\n", "34800,Private Resort (1985),Comedy\r\n", "34811,Pusher II: With Blood on My Hands (2004),Action|Crime|Drama|Thriller\r\n", "35015,Duma (2005),Adventure|Drama\r\n", "35347,Animal Farm (1954),Animation|Drama\r\n", "35807,\"Teahouse of the August Moon, The (1956)\",Comedy\r\n", "35836,\"40-Year-Old Virgin, The (2005)\",Comedy|Romance\r\n", "35957,Red Eye (2005),Horror|Thriller\r\n", "36276,Hidden (a.k.a. Cache) (Caché) (2005),Drama|Mystery|Thriller\r\n", "36289,Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999),Adventure|Children|Comedy|Fantasy\r\n", "36363,Kin-Dza-Dza! (1986),Comedy|Drama|Sci-Fi\r\n", "36397,Valiant (2005),Adventure|Animation|Children|Comedy|Fantasy|War\r\n", "36401,\"Brothers Grimm, The (2005)\",Comedy|Fantasy|Horror|Thriller\r\n", "36477,\"Baxter, The (2005)\",Comedy|Drama|Romance\r\n", "36509,\"Cave, The (2005)\",Action|Adventure|Horror|Mystery|Sci-Fi|Thriller\r\n", "36517,\"Constant Gardener, The (2005)\",Drama|Thriller\r\n", "36519,Transporter 2 (2005),Action|Crime|Thriller\r\n", "36525,Just Like Heaven (2005),Comedy|Fantasy|Romance\r\n", "36527,Proof (2005),Drama\r\n", "36529,Lord of War (2005),Action|Crime|Drama|Thriller|War\r\n", "36533,Cry_Wolf (a.k.a. Cry Wolf) (2005),Drama|Horror|Mystery|Thriller\r\n", "36535,Everything Is Illuminated (2005),Comedy|Drama\r\n", "36537,Thumbsucker (2005),Comedy|Drama\r\n", "36708,Family Guy Presents Stewie Griffin: The Untold Story (2005),Adventure|Animation|Comedy\r\n", "36850,Police Story 2 (Ging chaat goo si juk jaap) (1988),Action|Comedy|Crime|Thriller\r\n", "36931,New Police Story (Xin jing cha gu shi) (2004),Action|Crime|Drama\r\n", "37211,Go West (1940),Comedy|Musical|Western\r\n", "37240,Why We Fight (2005),Documentary\r\n", "37380,Doom (2005),Action|Horror|Sci-Fi\r\n", "37382,Domino (2005),Crime|Drama|Thriller\r\n", "37384,Waiting... (2005),Comedy\r\n", "37386,Aeon Flux (2005),Action|Sci-Fi\r\n", "37444,Frankenstein 90 (1984),Comedy|Horror|Romance\r\n", "37475,\"Unfinished Life, An (2005)\",Drama\r\n", "37477,\"Man, The (2005)\",Action|Comedy|Crime\r\n", "37495,Survive Style 5+ (2004),Fantasy|Mystery|Romance|Thriller\r\n", "37545,Woyzeck (1979),Drama\r\n", "37720,\"Exorcism of Emily Rose, The (2005)\",Crime|Drama|Horror|Thriller\r\n", "37727,Flightplan (2005),Action|Drama|Thriller\r\n", "37729,Corpse Bride (2005),Animation|Comedy|Fantasy|Musical|Romance\r\n", "37731,Green Street Hooligans (a.k.a. Hooligans) (2005),Crime|Drama\r\n", "37733,\"History of Violence, A (2005)\",Action|Crime|Drama|Thriller\r\n", "37736,Oliver Twist (2005),Drama\r\n", "37739,\"Greatest Game Ever Played, The (2005)\",Drama\r\n", "37741,Capote (2005),Crime|Drama\r\n", "37830,Final Fantasy VII: Advent Children (2004),Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "37844,Roll Bounce (2005),Comedy|Drama|Romance\r\n", "37853,Into the Blue (2005),Action|Adventure|Crime|Thriller\r\n", "37857,MirrorMask (2005),Adventure|Children|Drama|Fantasy\r\n", "38038,Wallace & Gromit in The Curse of the Were-Rabbit (2005),Adventure|Animation|Children|Comedy\r\n", "38061,Kiss Kiss Bang Bang (2005),Comedy|Crime|Mystery|Thriller\r\n", "38095,\"Bittersweet Life, A (Dalkomhan insaeng) (2005)\",Action|Crime|Drama\r\n", "38159,\"Short Film About Love, A (Krótki film o milosci) (1988)\",Drama|Romance\r\n", "38164,\"All This, and Heaven Too (1940)\",Drama|Romance\r\n", "38198,Darwin's Nightmare (2004),Documentary\r\n", "38294,Beowulf & Grendel (2005),Action|Adventure|Drama|Fantasy\r\n", "38304,No Direction Home: Bob Dylan (2005),Documentary\r\n", "38388,Goal! The Dream Begins (Goal!) (2005),Drama\r\n", "38583,\"Wraith, The (1986)\",Action|Horror|Sci-Fi|Thriller\r\n", "38798,In Her Shoes (2005),Comedy|Drama\r\n", "38886,\"Squid and the Whale, The (2005)\",Comedy|Drama\r\n", "38992,Two for the Money (2005),Drama\r\n", "39183,Brokeback Mountain (2005),Drama|Romance\r\n", "39231,Elizabethtown (2005),Comedy|Drama|Romance\r\n", "39234,North Country (2005),Drama\r\n", "39292,\"Good Night, and Good Luck. (2005)\",Crime|Drama\r\n", "39307,Dreamer: Inspired by a True Story (2005),Children|Drama\r\n", "39381,\"Proposition, The (2005)\",Crime|Drama|Western\r\n", "39400,\"Fog, The (2005)\",Action|Horror|Mystery|Thriller\r\n", "39414,Shopgirl (2005),Comedy|Drama|Romance\r\n", "39427,Stay (2005),Thriller\r\n", "39435,\"Legend of Zorro, The (2005)\",Action|Adventure|Drama|Western\r\n", "39444,\"Weather Man, The (2005)\",Comedy|Drama\r\n", "39446,Saw II (2005),Horror|Thriller\r\n", "39449,Prime (2005),Comedy|Drama|Romance\r\n", "39516,Don't Move (Non ti muovere) (2004),Drama\r\n", "39715,American Pie Presents: Band Camp (American Pie 4: Band Camp) (2005),Comedy\r\n", "39801,\"Great Yokai War, The (Yôkai daisensô) (2005)\",Adventure|Comedy|Fantasy|Horror\r\n", "39869,Manderlay (2005),Drama\r\n", "40148,Revolver (2005),Crime|Drama|Thriller\r\n", "40278,Jarhead (2005),Action|Drama|War\r\n", "40339,Chicken Little (2005),Action|Adventure|Animation|Children|Comedy|Sci-Fi\r\n", "40412,Dead Man's Shoes (2004),Crime|Thriller\r\n", "40414,Joyeux Noël (Merry Christmas) (2005),Drama|War\r\n", "40478,Night of the Lepus (1972),Horror|Sci-Fi|Thriller\r\n", "40491,\"Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)\",Comedy|Drama\r\n", "40578,Sword of the Beast (Kedamono no ken) (1965),Action|Drama\r\n", "40581,Just Friends (2005),Comedy|Romance\r\n", "40583,Syriana (2005),Drama|Thriller\r\n", "40597,One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002),Comedy|Drama\r\n", "40614,Derailed (2005),Drama|Thriller\r\n", "40617,Creep (2004),Horror|Thriller\r\n", "40629,Pride & Prejudice (2005),Drama|Romance\r\n", "40697,Babylon 5,Sci-Fi\r\n", "40723,Wolf Creek (2005),Crime|Horror|Thriller\r\n", "40732,\"Descent, The (2005)\",Adventure|Drama|Horror|Thriller\r\n", "40815,Harry Potter and the Goblet of Fire (2005),Adventure|Fantasy|Thriller|IMAX\r\n", "40819,Walk the Line (2005),Drama|Musical|Romance\r\n", "40826,Rent (2005),Drama|Musical|Romance\r\n", "40851,Zathura (2005),Action|Adventure|Children|Fantasy\r\n", "40870,C.R.A.Z.Y. (2005),Drama\r\n", "40946,Sarah Silverman: Jesus Is Magic (2005),Comedy|Musical\r\n", "40955,Breakfast on Pluto (2005),Comedy|Drama\r\n", "40959,\"Ice Harvest, The (2005)\",Action|Comedy|Crime|Thriller\r\n", "40962,\"Yours, Mine and Ours (2005)\",Comedy|Romance\r\n", "40966,\"Libertine, The (2004)\",Drama\r\n", "41014,\"Bird with the Crystal Plumage, The (Uccello dalle piume di cristallo, L') (1970)\",Crime|Horror|Mystery|Thriller\r\n", "41285,Match Point (2005),Crime|Drama|Romance\r\n", "41527,Paradise Now (2005),Crime|Drama|Thriller|War\r\n", "41566,\"Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)\",Adventure|Children|Fantasy\r\n", "41569,King Kong (2005),Action|Adventure|Drama|Fantasy|Thriller\r\n", "41571,Memoirs of a Geisha (2005),Drama|Romance\r\n", "41573,\"Family Stone, The (2005)\",Comedy|Drama|Romance\r\n", "41617,Havoc (2005),Crime|Drama|Romance\r\n", "41627,Samurai Rebellion (Jôi-uchi: Hairyô tsuma shimatsu) (1967),Action|Drama\r\n", "41712,\"Room for Romeo Brass, A (1999)\",Comedy|Drama\r\n", "41716,\"Matador, The (2005)\",Comedy|Drama|Thriller\r\n", "41724,Wal-Mart: The High Cost of Low Price (2005),Documentary\r\n", "41769,Mozart and the Whale (2005),Comedy|Drama|Romance\r\n", "41828,Don't Look Now: We're Being Shot At (La grande vadrouille) (1966),Comedy|War\r\n", "41863,\"Three Burials of Melquiades Estrada, The (2006)\",Adventure|Crime|Drama\r\n", "41997,Munich (2005),Action|Crime|Drama|Thriller\r\n", "42002,\"Producers, The (2005)\",Comedy|Musical\r\n", "42004,Transamerica (2005),Adventure|Comedy|Drama\r\n", "42007,Rumor Has It... (2005),Comedy|Drama|Romance\r\n", "42009,Cheaper by the Dozen 2 (2005),Adventure|Comedy\r\n", "42011,Fun with Dick and Jane (2005),Comedy|Crime\r\n", "42013,\"Ringer, The (2005)\",Comedy\r\n", "42015,Casanova (2005),Action|Adventure|Comedy|Drama|Romance\r\n", "42018,Mrs. Henderson Presents (2005),Comedy|Drama\r\n", "42176,\"Ear, The (Ucho) (1970)\",Drama|Thriller\r\n", "42191,Luxo Jr. (1986),Animation|Children\r\n", "42285,\"Dentist, The (1996)\",Horror|Thriller\r\n", "42418,\"New World, The (2005)\",Adventure|Drama|Romance\r\n", "42422,Voices of a Distant Star (Hoshi no koe) (2003),Animation|Drama|Romance|Sci-Fi\r\n", "42556,7 Faces of Dr. Lao (1964),Fantasy|Mystery|Western\r\n", "42559,Samurai Assassin (Samurai) (1965),Action|Adventure|Drama\r\n", "42602,\"Boys of Baraka, The (2005)\",Documentary\r\n", "42632,Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005),Crime|Drama|Mystery|Thriller\r\n", "42638,Grand Theft Parsons (2003),Comedy|Drama\r\n", "42718,District 13 (Banlieue 13) (2004),Action|Crime|Sci-Fi\r\n", "42723,Hostel (2005),Horror\r\n", "42725,Grandma's Boy (2006),Comedy\r\n", "42728,Tristan & Isolde (2006),Drama|Romance\r\n", "42730,Glory Road (2006),Drama\r\n", "42732,Last Holiday (2006),Comedy\r\n", "42734,Hoodwinked! (2005),Animation|Children|Comedy\r\n", "42738,Underworld: Evolution (2006),Action|Fantasy|Horror\r\n", "42740,Looking for Comedy in the Muslim World (2005),Comedy\r\n", "42761,Casper Meets Wendy (1998),Adventure|Children|Comedy|Fantasy\r\n", "42943,Revolution (1985),Adventure|Drama|War\r\n", "42946,Project A ('A' gai waak) (1983),Action|Comedy\r\n", "43289,\"Bird People in China, The (Chûgoku no chôjin) (1998)\",Adventure|Comedy|Drama|Fantasy\r\n", "43333,Water (2005),Drama|Romance\r\n", "43376,Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005),Drama|War\r\n", "43396,\"World's Fastest Indian, The (2005)\",Drama\r\n", "43419,Bandidas (2006),Action|Comedy|Crime|Western\r\n", "43460,Tristram Shandy: A Cock and Bull Story (2005),Comedy|Drama\r\n", "43549,Helter Skelter (2004),Action|Crime|Drama|Horror\r\n", "43556,Annapolis (2006),Drama\r\n", "43558,Big Momma's House 2 (2006),Action|Comedy|Crime\r\n", "43560,Nanny McPhee (2005),Children|Comedy|Fantasy\r\n", "43677,\"Tuskegee Airmen, The (1995)\",Drama|War\r\n", "43679,Final Destination 3 (2006),Horror|Mystery|Thriller\r\n", "43684,Something New (2006),Comedy|Drama|Romance\r\n", "43708,Block Party (a.k.a. Dave Chappelle's Block Party) (2005),Comedy|Documentary\r\n", "43744,Imagine Me & You (2005),Comedy|Drama|Romance\r\n", "43836,\"Pink Panther, The (2006)\",Adventure|Comedy|Crime\r\n", "43869,Curious George (2006),Adventure|Animation|Children|Comedy\r\n", "43871,Firewall (2006),Crime|Drama|Thriller\r\n", "43904,When a Stranger Calls (2006),Horror|Thriller\r\n", "43908,London (2005),Drama\r\n", "43912,Freedomland (2006),Crime|Drama\r\n", "43914,Winter Passing (2005),Drama\r\n", "43917,Eight Below (2006),Action|Adventure|Drama|Romance\r\n", "43919,Date Movie (2006),Comedy|Romance\r\n", "43921,Running Scared (2006),Action|Crime|Thriller\r\n", "43928,Ultraviolet (2006),Action|Fantasy|Sci-Fi|Thriller\r\n", "43930,Just My Luck (2006),Comedy|Romance\r\n", "43932,Pulse (2006),Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller\r\n", "43936,16 Blocks (2006),Crime|Thriller\r\n", "44004,Failure to Launch (2006),Comedy|Romance\r\n", "44020,Ultimate Avengers (2006),Action|Animation|Children|Sci-Fi\r\n", "44022,Ice Age 2: The Meltdown (2006),Adventure|Animation|Children|Comedy\r\n", "44189,Ask the Dust (2006),Drama|Romance\r\n", "44191,V for Vendetta (2006),Action|Sci-Fi|Thriller|IMAX\r\n", "44193,She's the Man (2006),Comedy|Romance\r\n", "44195,Thank You for Smoking (2006),Comedy|Drama\r\n", "44197,Find Me Guilty (2006),Comedy|Crime|Drama\r\n", "44199,Inside Man (2006),Crime|Drama|Thriller\r\n", "44204,Tsotsi (2005),Crime|Drama\r\n", "44225,Aquamarine (2006),Children|Comedy|Fantasy\r\n", "44238,Leprechaun 2 (1994),Comedy|Fantasy|Horror\r\n", "44241,Leprechaun 3 (1995),Comedy|Fantasy|Horror\r\n", "44243,Leprechaun 4: In Space (1997),Comedy|Fantasy|Horror|Sci-Fi\r\n", "44301,Lights in the Dusk (Laitakaupungin valot) (2006),Crime|Drama\r\n", "44397,\"Hills Have Eyes, The (2006)\",Drama|Horror|Thriller\r\n", "44399,\"Shaggy Dog, The (2006)\",Adventure|Children|Comedy|Fantasy\r\n", "44511,Unknown White Male (2005),Documentary\r\n", "44555,\"Lives of Others, The (Das leben der Anderen) (2006)\",Drama|Romance|Thriller\r\n", "44597,Youth of the Beast (Yaju no seishun) (1963),Action|Crime|Mystery\r\n", "44613,Take the Lead (2006),Drama\r\n", "44633,\"Devil and Daniel Johnston, The (2005)\",Documentary\r\n", "44657,Mouchette (1967),Drama\r\n", "44665,Lucky Number Slevin (2006),Crime|Drama|Mystery\r\n", "44694,Volver (2006),Comedy|Drama\r\n", "44709,Akeelah and the Bee (2006),Drama\r\n", "44719,Brainstorm (2001),Drama\r\n", "44731,Stay Alive (2006),Horror|Sci-Fi|Thriller\r\n", "44759,Basic Instinct 2 (2006),Crime|Drama|Mystery|Thriller\r\n", "44761,Brick (2005),Crime|Drama|Film-Noir|Mystery\r\n", "44773,\"Dead Hate the Living!, The (2000)\",Comedy|Horror\r\n", "44777,Evil Aliens (2005),Comedy|Horror|Sci-Fi\r\n", "44788,This Film Is Not Yet Rated (2006),Documentary\r\n", "44828,Slither (2006),Comedy|Horror|Sci-Fi\r\n", "44840,\"Benchwarmers, The (2006)\",Comedy\r\n", "44849,Renaissance (2006),Action|Animation|Film-Noir|Sci-Fi|Thriller\r\n", "44851,Go for Zucker! (Alles auf Zucker!) (2004),Comedy\r\n", "44864,Friends with Money (2006),Comedy|Drama|Romance\r\n", "44889,Reefer Madness: The Movie Musical (2005),Comedy|Drama|Musical\r\n", "44929,Candy (2006),Drama|Romance\r\n", "44931,Secrets of a Soul (Geheimnisse einer Seele) (1926),Drama\r\n", "44937,\"Child, The (L'enfant) (2005)\",Crime|Drama\r\n", "44943,9/11 (2002),Documentary\r\n", "44972,Scary Movie 4 (2006),Comedy|Horror\r\n", "44974,Hard Candy (2005),Drama|Thriller\r\n", "45028,\"Prairie Home Companion, A (2006)\",Comedy|Drama|Musical\r\n", "45062,\"Sentinel, The (2006)\",Crime|Drama|Thriller\r\n", "45074,\"Wild, The (2006)\",Adventure|Animation|Children|Comedy|Fantasy\r\n", "45081,Silent Hill (2006),Fantasy|Horror|Thriller\r\n", "45106,American Dreamz (2006),Comedy|Drama\r\n", "45175,Kinky Boots (2005),Comedy|Drama\r\n", "45183,\"Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)\",Action|Comedy|Crime|Thriller\r\n", "45186,Mission: Impossible III (2006),Action|Adventure|Thriller\r\n", "45208,RV (2006),Adventure|Children|Comedy\r\n", "45210,United 93 (2006),Crime|Drama\r\n", "45221,Stick It (2006),Comedy\r\n", "45361,\"American Haunting, An (2005)\",Drama|Horror|Mystery|Thriller\r\n", "45382,Down in the Valley (2005),Drama|Romance\r\n", "45431,Over the Hedge (2006),Adventure|Animation|Children|Comedy\r\n", "45440,Art School Confidential (2006),Comedy|Drama\r\n", "45442,Poseidon (2006),Action|Adventure|Thriller|IMAX\r\n", "45447,\"Da Vinci Code, The (2006)\",Drama|Mystery|Thriller\r\n", "45499,X-Men: The Last Stand (2006),Action|Sci-Fi|Thriller\r\n", "45501,\"Break-Up, The (2006)\",Comedy|Drama|Romance\r\n", "45503,Peaceful Warrior (2006),Drama\r\n", "45517,Cars (2006),Animation|Children|Comedy\r\n", "45635,\"Notorious Bettie Page, The (2005)\",Drama\r\n", "45648,Game 6 (2005),Comedy|Drama\r\n", "45658,On a Clear Day (2005),Drama\r\n", "45662,\"Omen, The (2006)\",Horror|Thriller\r\n", "45666,Nacho Libre (2006),Comedy\r\n", "45668,\"Lake House, The (2006)\",Drama|Fantasy|Romance\r\n", "45672,Click (2006),Adventure|Comedy|Drama|Fantasy|Romance\r\n", "45720,\"Devil Wears Prada, The (2006)\",Comedy|Drama\r\n", "45722,Pirates of the Caribbean: Dead Man's Chest (2006),Action|Adventure|Fantasy\r\n", "45726,\"You, Me and Dupree (2006)\",Comedy\r\n", "45728,Clerks II (2006),Comedy\r\n", "45730,Lady in the Water (2006),Drama|Fantasy|Mystery\r\n", "45732,My Super Ex-Girlfriend (2006),Comedy|Fantasy|Romance\r\n", "45880,Marie Antoinette (2006),Drama|Romance\r\n", "45928,Who Killed the Electric Car? (2006),Documentary\r\n", "45950,\"Inconvenient Truth, An (2006)\",Documentary\r\n", "45969,Career Opportunities (1991),Comedy|Romance\r\n", "46062,High School Musical (2006),Children|Comedy|Drama|Musical|Romance\r\n", "46105,I Am a Sex Addict (2005),Comedy|Documentary|Romance\r\n", "46231,Stoned (2005),Drama\r\n", "46322,Jet Li's Fearless (Huo Yuan Jia) (2006),Action|Drama\r\n", "46335,\"Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)\",Action|Crime|Drama|Thriller\r\n", "46337,Garfield: A Tail of Two Kitties (2006),Animation|Children|Comedy\r\n", "46347,Metal: A Headbanger's Journey (2005),Documentary\r\n", "46367,\"Public Eye, The (1992)\",Crime|Thriller\r\n", "46530,Superman Returns (2006),Action|Adventure|Sci-Fi|IMAX\r\n", "46559,\"Road to Guantanamo, The (2006)\",Drama|War\r\n", "46572,Edmond (2005),Drama|Thriller\r\n", "46574,\"OH in Ohio, The (2006)\",Comedy\r\n", "46578,Little Miss Sunshine (2006),Adventure|Comedy|Drama\r\n", "46664,\"Fallen Idol, The (1948)\",Drama|Mystery|Thriller\r\n", "46723,Babel (2006),Drama|Thriller\r\n", "46772,Strangers with Candy (2005),Comedy\r\n", "46850,Wordplay (2006),Documentary\r\n", "46855,Army of Shadows (L'armée des ombres) (1969),Action|Drama|Thriller|War\r\n", "46862,Orchestra Rehearsal (Prova d'orchestra) (1978),Drama\r\n", "46865,Little Man (2006),Comedy\r\n", "46948,Monster House (2006),Animation|Children|Fantasy|Mystery\r\n", "46965,Snakes on a Plane (2006),Action|Comedy|Horror|Thriller\r\n", "46967,Scoop (2006),Comedy|Fantasy|Mystery\r\n", "46970,Talladega Nights: The Ballad of Ricky Bobby (2006),Action|Comedy\r\n", "46972,Night at the Museum (2006),Action|Comedy|Fantasy|IMAX\r\n", "46974,World Trade Center (2006),Drama\r\n", "46976,Stranger than Fiction (2006),Comedy|Drama|Fantasy|Romance\r\n", "47044,Miami Vice (2006),Action|Crime|Drama|Thriller\r\n", "47099,\"Pursuit of Happyness, The (2006)\",Drama\r\n", "47122,John Tucker Must Die (2006),Comedy|Romance\r\n", "47124,\"Ant Bully, The (2006)\",Adventure|Animation|Children|Comedy|Fantasy|IMAX\r\n", "47200,Crank (2006),Action|Thriller\r\n", "47202,\"Secret Life of Words, The (2005)\",Drama|Romance\r\n", "47254,Chaos (2005),Action|Crime|Drama|Thriller\r\n", "47261,\"Night Listener, The (2006)\",Fantasy|Mystery|Thriller\r\n", "47382,Step Up (2006),Drama|Romance\r\n", "47384,Zoom (2006),Adventure|Comedy|Drama|Fantasy\r\n", "47404,Mind Game (2004),Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi\r\n", "47423,Half Nelson (2006),Drama\r\n", "47446,\"Moustache, La (2005)\",Drama|Mystery|Thriller\r\n", "47465,Tideland (2005),Drama|Fantasy|Thriller\r\n", "47491,Adam's Apples (Adams æbler) (2005),Comedy|Drama\r\n", "47516,Material Girls (2006),Children|Comedy|Drama\r\n", "47518,Accepted (2006),Comedy\r\n", "47538,Crime Busters (1977),Action|Adventure|Comedy|Crime\r\n", "47566,Born to Kill (1947),Crime|Drama|Film-Noir\r\n", "47610,\"Illusionist, The (2006)\",Drama|Fantasy|Mystery|Romance\r\n", "47629,The Queen (2006),Drama\r\n", "47640,Beerfest (2006),Comedy\r\n", "47644,Invincible (2006),Drama\r\n", "47646,Idlewild (2006),Crime|Drama|Musical\r\n", "47721,\"Red Balloon, The (Ballon rouge, Le) (1956)\",Children|Fantasy\r\n", "47725,Angel-A (2005),Comedy|Drama|Fantasy|Romance\r\n", "47736,\"Chump at Oxford, A (1940)\",Comedy\r\n", "47774,\"Icicle Thief, The (Ladri di saponette) (1989)\",Comedy|Fantasy\r\n", "47793,\"Puffy Chair, The (2006)\",Drama|Romance\r\n", "47810,\"Wicker Man, The (2006)\",Horror|Mystery|Thriller\r\n", "47894,\"Wind That Shakes the Barley, The (2006)\",Drama|War\r\n", "47937,Severance (2006),Comedy|Horror|Thriller\r\n", "47950,Hollywoodland (2006),Crime|Drama|Mystery|Thriller\r\n", "47952,\"Covenant, The (2006)\",Action|Horror|Thriller\r\n", "47970,\"Last Kiss, The (2006)\",Comedy|Drama\r\n", "47978,SherryBaby (2006),Drama\r\n", "47997,Idiocracy (2006),Adventure|Comedy|Sci-Fi|Thriller\r\n", "47999,Jesus Camp (2006),Documentary|Drama\r\n", "48001,\"Bow, The (Hwal) (2005)\",Drama|Romance\r\n", "48032,\"Tiger and the Snow, The (La tigre e la neve) (2005)\",Comedy|Drama|Romance|War\r\n", "48043,\"Fountain, The (2006)\",Drama|Fantasy|Romance\r\n", "48045,Fear City: A Family-Style Comedy (La cité de la peur) (1994),Comedy\r\n", "48082,\"Science of Sleep, The (La science des rêves) (2006)\",Comedy|Drama|Fantasy|Romance\r\n", "48142,\"Black Dahlia, The (2006)\",Crime|Drama|Mystery|Thriller\r\n", "48150,\"Woods, The (2006)\",Horror\r\n", "48161,Gridiron Gang (2006),Drama\r\n", "48214,Land of Plenty (Angst and Alienation in America) (2004),Drama\r\n", "48262,\"Bridge, The (2006)\",Documentary\r\n", "48304,Apocalypto (2006),Adventure|Drama|Thriller\r\n", "48319,Flyboys (2006),Action|Adventure|Drama|War\r\n", "48322,Jackass Number Two (2006),Comedy|Documentary\r\n", "48326,All the King's Men (2006),Drama\r\n", "48342,Conversations with Other Women (2005),Comedy|Drama|Romance\r\n", "48385,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006),Comedy\r\n", "48394,\"Pan's Labyrinth (Laberinto del fauno, El) (2006)\",Drama|Fantasy|Thriller\r\n", "48412,\"Guardian, The (2006)\",Action|Adventure|Drama\r\n", "48414,Open Season (2006),Adventure|Animation|Children|Comedy|IMAX\r\n", "48416,School for Scoundrels (2006),Comedy|Crime\r\n", "48516,\"Departed, The (2006)\",Crime|Drama|Thriller\r\n", "48518,\"Texas Chainsaw Massacre: The Beginning, The (2006)\",Horror|Thriller\r\n", "48520,Employee of the Month (2006),Comedy\r\n", "48560,Running With Scissors (2006),Comedy|Drama\r\n", "48593,Man of the Year (2006),Comedy|Thriller\r\n", "48596,\"Marine, The (2006)\",Action|Drama|Thriller\r\n", "48598,Infamous (2006),Drama\r\n", "48638,Fellini's Casanova (Il Casanova di Federico Fellini) (1976),Drama|Romance\r\n", "48649,Chapayev (1934),Drama|War\r\n", "48678,Feast (2005),Action|Comedy|Horror|Thriller\r\n", "48696,Little Children (2006),Drama|Romance\r\n", "48698,Deliver Us from Evil (2006),Documentary\r\n", "48738,\"Last King of Scotland, The (2006)\",Drama|Thriller\r\n", "48741,\"U.S. vs. John Lennon, The (2006)\",Documentary\r\n", "48744,Shortbus (2006),Comedy|Drama|Romance\r\n", "48774,Children of Men (2006),Action|Adventure|Drama|Sci-Fi|Thriller\r\n", "48780,\"Prestige, The (2006)\",Drama|Mystery|Sci-Fi|Thriller\r\n", "48783,Flags of Our Fathers (2006),Drama|War\r\n", "48872,13 Tzameti (2005),Film-Noir|Thriller\r\n", "48877,Saw III (2006),Crime|Horror|Thriller\r\n", "48879,Catch a Fire (2006),Drama|Thriller\r\n", "48883,Death of a President (2006),Crime|Drama|Mystery|Thriller\r\n", "48982,Flushed Away (2006),Animation|Comedy\r\n", "48997,Perfume: The Story of a Murderer (2006),Crime|Drama|Thriller\r\n", "49013,\"Santa Clause 3: The Escape Clause, The (2006)\",Comedy|Fantasy\r\n", "49110,Mom and Dad Save the World (1992),Comedy|Sci-Fi\r\n", "49130,\"Good Year, A (2006)\",Comedy|Drama|Romance\r\n", "49132,Shut Up & Sing (2006),Documentary\r\n", "49220,For Your Consideration (2006),Comedy\r\n", "49263,Fuck (2005),Comedy|Documentary\r\n", "49265,Shooting Dogs (a.k.a. Beyond the Gates) (2005),Documentary|Drama|War\r\n", "49272,Casino Royale (2006),Action|Adventure|Thriller\r\n", "49274,Happy Feet (2006),Adventure|Animation|Children|Comedy|IMAX\r\n", "49276,Let's Go to Prison (2006),Comedy\r\n", "49278,Déjà Vu (Deja Vu) (2006),Action|Sci-Fi|Thriller\r\n", "49280,Bobby (2006),Drama\r\n", "49284,10 Items or Less (2006),Comedy|Drama|Romance\r\n", "49286,\"Holiday, The (2006)\",Comedy|Romance\r\n", "49314,Harsh Times (2006),Action|Crime|Drama\r\n", "49347,Fast Food Nation (2006),Drama\r\n", "49389,The Great Train Robbery (1903),Crime|Western\r\n", "49396,Tenacious D in The Pick of Destiny (2006),Adventure|Comedy|Musical\r\n", "49524,\"Nativity Story, The (2006)\",Drama\r\n", "49530,Blood Diamond (2006),Action|Adventure|Crime|Drama|Thriller|War\r\n", "49647,Charlotte's Web (2006),Children|Comedy|Drama|Fantasy\r\n", "49649,Eragon (2006),Action|Adventure|Fantasy\r\n", "49651,Rocky Balboa (2006),Action|Drama\r\n", "49666,Fur: An Imaginary Portrait of Diane Arbus (2006),Drama|Fantasy|Romance\r\n", "49688,\"Dam Busters, The (1955)\",Action|Drama|War\r\n", "49735,Another Gay Movie (2006),Comedy\r\n", "49772,\"Painted Veil, The (2006)\",Drama|Romance\r\n", "49793,We Are Marshall (2006),Drama\r\n", "49822,\"Good Shepherd, The (2006)\",Drama|Thriller\r\n", "49824,Dreamgirls (2006),Drama|Musical\r\n", "49910,Freedom Writers (2007),Drama\r\n", "49917,When the Levees Broke: A Requiem in Four Acts (2006),Documentary\r\n", "49932,Inland Empire (2006),Drama|Mystery|Thriller\r\n", "49957,\"History Boys, The (2006)\",Comedy|Drama\r\n", "49961,Notes on a Scandal (2006),Drama\r\n", "50003,DOA: Dead or Alive (2006),Action|Adventure\r\n", "50005,Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006),Action|Drama\r\n", "50064,\"Good German, The (2006)\",Drama|Mystery|Thriller\r\n", "50068,Letters from Iwo Jima (2006),Drama|War\r\n", "50147,Black Christmas (2006),Action|Horror|Thriller\r\n", "50158,Stomp the Yard (2007),Drama|Musical\r\n", "50160,Miss Potter (2006),Drama\r\n", "50189,American Pie Presents The Naked Mile (American Pie 5: The Naked Mile) (2006),Comedy|Romance\r\n", "50274,Venus (2006),Drama|Romance\r\n", "50354,The Return of Don Camillo (1953),Comedy\r\n", "50356,The Little World of Don Camillo (1952),Comedy\r\n", "50440,Primeval (2007),Horror|Thriller\r\n", "50442,Alpha Dog (2007),Crime|Drama\r\n", "50445,\"Hitcher, The (2007)\",Action|Horror|Thriller\r\n", "50514,After the Wedding (Efter brylluppet) (2006),Drama\r\n", "50601,Bridge to Terabithia (2007),Adventure|Children|Fantasy\r\n", "50610,Beer League (2006),Comedy\r\n", "50613,Dead Meat (2004),Horror\r\n", "50658,49 Up (2005),Documentary\r\n", "50685,Waitress (2007),Comedy|Drama|Romance\r\n", "50740,Seven Up! (1964),Documentary\r\n", "50792,Catch and Release (2006),Comedy|Drama|Romance\r\n", "50794,Smokin' Aces (2006),Action|Crime|Drama|Thriller\r\n", "50796,Blood and Chocolate (2007),Drama|Fantasy|Horror|Romance\r\n", "50798,Epic Movie (2007),Adventure|Comedy\r\n", "50800,\"Messengers, The (2007)\",Drama|Horror|Thriller\r\n", "50802,Because I Said So (2007),Comedy|Drama|Romance\r\n", "50804,Hannibal Rising (2007),Drama|Horror|Thriller\r\n", "50806,Norbit (2007),Comedy|Romance\r\n", "50842,\"Boss of It All, The (Direktøren for det hele) (2006)\",Comedy|Drama\r\n", "50851,Cocaine Cowboys (2006),Documentary\r\n", "50872,Ratatouille (2007),Animation|Children|Drama\r\n", "50912,\"Paris, I Love You (Paris, je t'aime) (2006)\",Romance\r\n", "50923,\"Astronaut Farmer, The (2007)\",Drama\r\n", "50942,\"Wake Up, Ron Burgundy (2004)\",Comedy\r\n", "50954,It's a Boy Girl Thing (2006),Comedy|Romance\r\n", "50999,\"Ugly Duckling and Me!, The (2006)\",Animation|Comedy\r\n", "51024,The Odyssey (1997),Adventure|Drama|Fantasy\r\n", "51037,Unknown (2006),Drama|Mystery|Thriller\r\n", "51077,Ghost Rider (2007),Action|Fantasy|Thriller\r\n", "51080,Breach (2007),Drama|Thriller\r\n", "51082,Tyler Perry's Daddy's Little Girls (2007),Comedy|Romance\r\n", "51084,Music and Lyrics (2007),Comedy|Romance\r\n", "51086,\"Number 23, The (2007)\",Drama|Mystery|Thriller\r\n", "51088,Reno 911!: Miami (2007),Comedy\r\n", "51091,Black Snake Moan (2006),Drama\r\n", "51167,My Father and My Son (Babam ve oglum) (2005),Drama\r\n", "51174,Factory Girl (2006),Drama\r\n", "51255,Hot Fuzz (2007),Action|Comedy|Crime|Mystery\r\n", "51314,Golden Door (Nuovomondo) (2006),Adventure|Drama|Romance\r\n", "51357,Citizen X (1995),Crime|Drama|Thriller\r\n", "51412,Next (2007),Action|Sci-Fi|Thriller\r\n", "51471,Amazing Grace (2006),Drama|Romance\r\n", "51498,2001 Maniacs (2005),Comedy|Horror\r\n", "51540,Zodiac (2007),Crime|Drama|Thriller\r\n", "51545,Pusher III: I'm the Angel of Death (2005),Action|Comedy|Drama|Horror|Thriller\r\n", "51562,Babylon 5: The Gathering (1993),Sci-Fi\r\n", "51573,Meshes of the Afternoon (1943),Fantasy\r\n", "51575,Wild Hogs (2007),Adventure|Comedy\r\n", "51662,300 (2007),Action|Fantasy|War|IMAX\r\n", "51666,\"Abandoned, The (2006)\",Horror|Mystery|Thriller\r\n", "51694,Starter for 10 (2006),Drama|Romance\r\n", "51698,\"Last Mimzy, The (2007)\",Adventure|Children|Sci-Fi\r\n", "51705,Priceless (Hors de prix) (2006),Comedy|Romance\r\n", "51709,\"Host, The (Gwoemul) (2006)\",Comedy|Drama|Horror|Sci-Fi|Thriller\r\n", "51834,Becoming Jane (2007),Drama|Romance\r\n", "51884,\"Namesake, The (2006)\",Drama|Romance\r\n", "51903,I Think I Love My Wife (2007),Comedy|Drama|Romance\r\n", "51925,Premonition (2007),Drama|Fantasy|Mystery|Thriller\r\n", "51927,Dead Silence (2007),Horror|Mystery|Thriller\r\n", "51931,Reign Over Me (2007),Drama\r\n", "51933,Pride (2007),Drama\r\n", "51935,Shooter (2007),Action|Drama|Thriller\r\n", "51937,\"Hills Have Eyes II, The (2007)\",Horror|Thriller\r\n", "51939,TMNT (Teenage Mutant Ninja Turtles) (2007),Action|Adventure|Animation|Children|Comedy|Fantasy\r\n", "52042,Black Book (Zwartboek) (2006),Drama|Thriller|War\r\n", "52241,\"Lookout, The (2007)\",Crime|Drama|Thriller\r\n", "52245,Blades of Glory (2007),Comedy|Romance\r\n", "52279,Are We Done Yet? (2007),Comedy\r\n", "52281,Grindhouse (2007),Action|Crime|Horror|Sci-Fi|Thriller\r\n", "52283,\"Reaping, The (2007)\",Horror|Thriller\r\n", "52287,Meet the Robinsons (2007),Action|Adventure|Animation|Children|Comedy|Sci-Fi\r\n", "52299,American Hardcore (2006),Documentary\r\n", "52319,Inglorious Bastards (Quel maledetto treno blindato) (1978),Action|Adventure|Drama|War\r\n", "52328,Sunshine (2007),Adventure|Drama|Sci-Fi|Thriller\r\n", "52375,\"Hoax, The (2007)\",Crime|Drama\r\n", "52435,How the Grinch Stole Christmas! (1966),Animation|Comedy|Fantasy|Musical\r\n", "52458,Disturbia (2007),Drama|Thriller\r\n", "52462,Aqua Teen Hunger Force Colon Movie Film for Theaters (2007),Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi\r\n", "52579,\"Vie en Rose, La (Môme, La) (2007)\",Drama|Musical\r\n", "52604,Fracture (2007),Crime|Drama|Mystery|Thriller\r\n", "52644,Vacancy (2007),Horror|Thriller\r\n", "52668,In the Land of Women (2007),Comedy|Drama|Romance\r\n", "52694,Mr. Bean's Holiday (2007),Comedy\r\n", "52712,\"Invisible, The (2007)\",Crime|Drama|Fantasy|Mystery|Thriller\r\n", "52715,Kickin It Old Skool (2007),Comedy\r\n", "52722,Spider-Man 3 (2007),Action|Adventure|Sci-Fi|Thriller|IMAX\r\n", "52724,Lucky You (2007),Comedy|Drama\r\n", "52730,It's a Very Merry Muppet Christmas Movie (2002),Children|Comedy\r\n", "52767,21 Up (1977),Documentary\r\n", "52784,Sharkwater (2006),Documentary\r\n", "52831,Maniac Cop (1988),Action|Crime|Horror|Thriller\r\n", "52867,\"Ex, The (2007)\",Comedy|Romance\r\n", "52885,Paprika (Papurika) (2006),Animation|Mystery|Sci-Fi\r\n", "52950,Day Watch (Dnevnoy dozor) (2006),Action|Fantasy|Horror|Thriller\r\n", "52952,This Is England (2006),Drama\r\n", "52967,Away from Her (2006),Drama\r\n", "52973,Knocked Up (2007),Comedy|Drama|Romance\r\n", "52975,Hairspray (2007),Comedy|Drama|Musical\r\n", "53000,28 Weeks Later (2007),Horror|Sci-Fi|Thriller\r\n", "53022,Wheels on Meals (Kuai can che) (1984),Action|Comedy|Crime|Romance\r\n", "53024,Jonestown: The Life and Death of Peoples Temple (2006),Documentary\r\n", "53121,Shrek the Third (2007),Adventure|Animation|Children|Comedy|Fantasy\r\n", "53123,Once (2006),Drama|Musical|Romance\r\n", "53125,Pirates of the Caribbean: At World's End (2007),Action|Adventure|Comedy|Fantasy\r\n", "53127,Bug (2007),Drama|Horror|Thriller\r\n", "53129,Mr. Brooks (2007),Crime|Drama|Thriller\r\n", "53138,\"Librarian: Return to King Solomon's Mines, The (2006)\",Action|Adventure|Fantasy\r\n", "53140,\"Librarian: Quest for the Spear, The (2004)\",Action|Adventure|Comedy|Fantasy|Romance\r\n", "53143,Fay Grim (2006),Action|Thriller\r\n", "53161,\"I'm a Cyborg, But That's OK (Saibogujiman kwenchana) (2006)\",Comedy|Drama|Romance|Sci-Fi\r\n", "53280,\"Breed, The (2006)\",Horror|Thriller\r\n", "53318,Cashback (2006),Comedy|Drama|Romance\r\n", "53322,Ocean's Thirteen (2007),Crime|Thriller\r\n", "53326,Them (Ils) (2006),Horror\r\n", "53355,Sun Alley (Sonnenallee) (1999),Comedy|Romance\r\n", "53435,Hostel: Part II (2007),Crime|Horror|Thriller\r\n", "53447,Paranoid Park (2007),Crime|Drama\r\n", "53450,\"Legend of Sleepy Hollow, The (1980)\",Comedy|Fantasy|Horror\r\n", "53453,Starcrash (a.k.a. Star Crash) (1978),Action|Adventure|Fantasy|Sci-Fi\r\n", "53460,Surf's Up (2007),Animation|Children|Comedy\r\n", "53464,Fantastic Four: Rise of the Silver Surfer (2007),Action|Adventure|Sci-Fi\r\n", "53466,Nancy Drew (2007),Adventure|Crime|Thriller\r\n", "53468,Fido (2006),Comedy|Horror|Thriller\r\n", "53519,Death Proof (2007),Action|Adventure|Crime|Horror|Thriller\r\n", "53550,Rescue Dawn (2006),Action|Adventure|Drama|War\r\n", "53574,\"TV Set, The (2006)\",Comedy|Drama\r\n", "53578,\"Valet, The (La doublure) (2006)\",Comedy\r\n", "53808,Bring It On: All or Nothing (2006),Comedy\r\n", "53883,\"Power of Nightmares, The: The Rise of the Politics of Fear (2004)\",Documentary\r\n", "53894,Sicko (2007),Documentary|Drama\r\n", "53921,\"Mighty Heart, A (2007)\",Drama|Thriller\r\n", "53953,1408 (2007),Drama|Horror|Thriller\r\n", "53956,Death at a Funeral (2007),Comedy\r\n", "53972,Live Free or Die Hard (2007),Action|Adventure|Crime|Thriller\r\n", "53974,License to Wed (2007),Comedy|Romance\r\n", "53993,Evan Almighty (2007),Comedy|Fantasy\r\n", "53996,Transformers (2007),Action|Sci-Fi|Thriller|IMAX\r\n", "54001,Harry Potter and the Order of the Phoenix (2007),Adventure|Drama|Fantasy|IMAX\r\n", "54004,I Now Pronounce You Chuck and Larry (2007),Comedy|Romance\r\n", "54116,First Snow (2006),Drama|Thriller\r\n", "54121,Broken Arrow (1950),Drama|Romance|Western\r\n", "54185,Manufactured Landscapes (2006),Documentary\r\n", "54190,Across the Universe (2007),Drama|Fantasy|Musical|Romance\r\n", "54256,Hot Rod (2007),Comedy\r\n", "54259,Stardust (2007),Adventure|Comedy|Fantasy|Romance\r\n", "54272,\"Simpsons Movie, The (2007)\",Animation|Comedy\r\n", "54274,I Know Who Killed Me (2007),Crime|Drama|Thriller\r\n", "54276,No Reservations (2007),Comedy|Drama|Romance\r\n", "54281,Charlie Bartlett (2007),Comedy|Drama\r\n", "54286,\"Bourne Ultimatum, The (2007)\",Action|Crime|Thriller\r\n", "54354,China Blue (2005),Documentary\r\n", "54372,Tell No One (Ne le dis à personne) (2006),Crime|Drama|Mystery|Thriller\r\n", "54503,Superbad (2007),Comedy\r\n", "54617,\"Brice Man, The (Brice de Nice) (2005)\",Comedy\r\n", "54648,Rush Hour 3 (2007),Action|Comedy|Crime|Thriller\r\n", "54686,\"Last Legion, The (2007)\",Action|Adventure|Fantasy|War\r\n", "54732,Balls of Fury (2007),Comedy\r\n", "54734,Sydney White (2007),Comedy\r\n", "54736,\"Kingdom, The (2007)\",Action|Drama|Thriller\r\n", "54745,Rocket Science (2007),Comedy|Drama\r\n", "54768,Daddy Day Camp (2007),Children|Comedy\r\n", "54771,\"Invasion, The (2007)\",Action|Drama|Horror|Sci-Fi|Thriller\r\n", "54780,\"Nanny Diaries, The (2007)\",Comedy|Drama|Romance\r\n", "54785,Halloween (2007),Horror\r\n", "54787,Death Sentence (2007),Drama|Thriller\r\n", "54796,2 Days in Paris (2007),Comedy|Drama|Romance\r\n", "54881,\"King of Kong, The (2007)\",Documentary\r\n", "54908,Taxi 4 (2007),Action|Comedy\r\n", "54910,Behind the Mask: The Rise of Leslie Vernon (2006),Comedy|Horror|Thriller\r\n", "54934,\"Brothers Solomon, The (2007)\",Comedy\r\n", "54962,\"Nines, The (2007)\",Drama|Mystery\r\n", "54995,Planet Terror (2007),Action|Horror|Sci-Fi\r\n", "54997,3:10 to Yuma (2007),Action|Crime|Drama|Western\r\n", "54999,Shoot 'Em Up (2007),Action|Comedy|Crime\r\n", "55020,\"Ten, The (2007)\",Comedy\r\n", "55036,Gotti (1996),Crime|Drama\r\n", "55052,Atonement (2007),Drama|Romance|War\r\n", "55061,Electroma (2006),Drama|Sci-Fi\r\n", "55067,Requiem (2006),Drama|Thriller\r\n", "55069,\"4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)\",Drama\r\n", "55071,No End in Sight (2007),Documentary\r\n", "55080,\"Brave One, The (2007)\",Crime|Drama|Thriller\r\n", "55094,In the Valley of Elah (2007),Drama|Mystery\r\n", "55110,December Boys (2007),Drama\r\n", "55112,Shanghai Kiss (2007),Comedy|Drama|Romance\r\n", "55116,\"Hunting Party, The (2007)\",Action|Adventure|Comedy|Drama|Thriller\r\n", "55118,Eastern Promises (2007),Crime|Drama|Thriller\r\n", "55156,\"Unreasonable Man, An (2006)\",Documentary\r\n", "55167,Tekkonkinkreet (Tekkon kinkurîto) (2006),Action|Adventure|Animation|Crime|Fantasy\r\n", "55190,Love and Other Disasters (2006),Comedy|Romance\r\n", "55205,Interview (2007),Drama\r\n", "55207,Cashback (2004),Comedy|Drama\r\n", "55232,Resident Evil: Extinction (2007),Action|Horror|Sci-Fi|Thriller\r\n", "55241,Mr. Woodcock (2007),Comedy\r\n", "55245,Good Luck Chuck (2007),Comedy|Romance\r\n", "55247,Into the Wild (2007),Action|Adventure|Drama\r\n", "55250,\"Game Plan, The (2007)\",Comedy\r\n", "55253,\"Lust, Caution (Se, jie) (2007)\",Drama|Romance|Thriller|War\r\n", "55259,\"Seeker: The Dark Is Rising, The (2007)\",Action|Adventure|Drama|Fantasy\r\n", "55261,\"Heartbreak Kid, The (2007)\",Comedy|Drama|Romance\r\n", "55267,Dan in Real Life (2007),Comedy|Drama|Romance\r\n", "55269,\"Darjeeling Limited, The (2007)\",Adventure|Comedy|Drama\r\n", "55272,We Own the Night (2007),Crime|Drama\r\n", "55274,Elizabeth: The Golden Age (2007),Drama\r\n", "55276,Michael Clayton (2007),Drama|Thriller\r\n", "55278,Sleuth (2007),Drama|Mystery|Thriller\r\n", "55280,Lars and the Real Girl (2007),Comedy|Drama\r\n", "55282,30 Days of Night (2007),Horror|Thriller\r\n", "55290,Gone Baby Gone (2007),Crime|Drama|Mystery\r\n", "55292,\"Comebacks, The (2007)\",Comedy\r\n", "55294,Weirdsville (2007),Comedy|Crime|Drama\r\n", "55363,\"Assassination of Jesse James by the Coward Robert Ford, The (2007)\",Crime|Drama|Western\r\n", "55391,10th & Wolf (2006),Crime|Drama|Thriller\r\n", "55442,Persepolis (2007),Animation|Drama\r\n", "55444,Control (2007),Drama\r\n", "55451,The Jane Austen Book Club (2007),Comedy|Drama|Romance\r\n", "55492,\"Last Winter, The (2006)\",Horror\r\n", "55553,Black Sheep (2006),Comedy|Horror\r\n", "55555,\"Edge of Heaven, The (Auf der anderen Seite) (2007)\",Drama\r\n", "55577,Saw IV (2007),Crime|Horror|Thriller\r\n", "55620,For the Bible Tells Me So (2007),Documentary\r\n", "55687,My Kid Could Paint That (2007),Documentary\r\n", "55721,Elite Squad (Tropa de Elite) (2007),Action|Crime|Drama|Thriller\r\n", "55729,King of California (2007),Comedy\r\n", "55765,American Gangster (2007),Crime|Drama|Thriller\r\n", "55768,Bee Movie (2007),Animation|Comedy\r\n", "55805,Before the Devil Knows You're Dead (2007),Crime|Drama|Thriller\r\n", "55814,\"Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)\",Drama\r\n", "55820,No Country for Old Men (2007),Crime|Drama\r\n", "55830,Be Kind Rewind (2008),Comedy\r\n", "55844,Itty Bitty Titty Committee (2007),Comedy|Drama|Romance\r\n", "55854,\"Fugitive, The (1947)\",Drama\r\n", "55872,August Rush (2007),Drama|Musical\r\n", "55908,\"Man from Earth, The (2007)\",Drama|Sci-Fi\r\n", "55946,Lions For Lambs (2007),Drama|Thriller|War\r\n", "55995,Beowulf (2007),Action|Adventure|Animation|Fantasy|IMAX\r\n", "56003,Southland Tales (2006),Comedy|Drama|Sci-Fi|Thriller\r\n", "56012,\"Evening with Kevin Smith 2: Evening Harder, An (2006)\",Comedy|Documentary\r\n", "56022,Harrison Bergeron (1995),Drama|Sci-Fi\r\n", "56060,I Served the King of England (Obsluhoval jsem anglického krále) (2006),Comedy|Drama|Romance|War\r\n", "56145,\"Mist, The (2007)\",Horror|Sci-Fi\r\n", "56152,Enchanted (2007),Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance\r\n", "56156,Hitman (2007),Action|Crime|Thriller\r\n", "56169,Awake (2007),Drama|Thriller\r\n", "56171,\"Golden Compass, The (2007)\",Adventure|Children|Fantasy\r\n", "56174,I Am Legend (2007),Action|Horror|Sci-Fi|Thriller|IMAX\r\n", "56176,Alvin and the Chipmunks (2007),Children|Comedy\r\n", "56251,Futurama: Bender's Big Score (2007),Animation|Comedy|Sci-Fi\r\n", "56274,Margot at the Wedding (2007),Drama\r\n", "56286,I'm Not There (2007),Drama\r\n", "56333,\"Savages, The (2007)\",Comedy|Drama\r\n", "56336,Wrong Turn 2: Dead End (2007),Action|Horror|Thriller\r\n", "56339,\"Orphanage, The (Orfanato, El) (2007)\",Drama|Horror|Mystery|Thriller\r\n", "56367,Juno (2007),Comedy|Drama|Romance\r\n", "56379,\"Maxed Out: Hard Times, Easy Credit and the Era of Predatory Lenders (2006)\",Documentary\r\n", "56389,My Blueberry Nights (2007),Drama|Romance\r\n", "56563,Helvetica (2007),Documentary\r\n", "56587,\"Bucket List, The (2007)\",Comedy|Drama\r\n", "56607,\"Kite Runner, The (2007)\",Drama\r\n", "56620,\"Deaths of Ian Stone, The (2007)\",Horror|Thriller\r\n", "56715,Wristcutters: A Love Story (2006),Drama|Fantasy|Romance\r\n", "56757,Sweeney Todd: The Demon Barber of Fleet Street (2007),Drama|Horror|Musical|Thriller\r\n", "56775,National Treasure: Book of Secrets (2007),Action|Adventure\r\n", "56782,There Will Be Blood (2007),Drama|Western\r\n", "56788,Charlie Wilson's War (2007),Comedy|Drama|War\r\n", "56801,AVPR: Aliens vs. Predator - Requiem (2007),Action|Horror|Sci-Fi\r\n", "56805,Walk Hard: The Dewey Cox Story (2007),Comedy|Musical\r\n", "56837,As You Like It (2006),Comedy|Drama|Romance\r\n", "56869,Drained (O cheiro do Ralo) (2006),Comedy\r\n", "56908,Dedication (2007),Comedy|Drama|Romance\r\n", "56915,\"Water Horse: Legend of the Deep, The (2007)\",Adventure|Children|Fantasy\r\n", "56921,Battlestar Galactica: Razor (2007),Action|Drama|Sci-Fi|Thriller\r\n", "56941,P.S. I Love You (2007),Comedy|Drama|Romance\r\n", "56949,27 Dresses (2008),Comedy|Romance\r\n", "57147,Cassandra's Dream (2007),Crime|Drama|Thriller\r\n", "57183,Like Stars on Earth (Taare Zameen Par) (2007),Drama\r\n", "57243,\"Band's Visit, The (Bikur Ha-Tizmoret) (2007)\",Comedy|Drama\r\n", "57274,[REC] (2007),Drama|Horror|Thriller\r\n", "57326,In the Name of the King: A Dungeon Siege Tale (2008),Action|Adventure|Fantasy\r\n", "57368,Cloverfield (2008),Action|Mystery|Sci-Fi|Thriller\r\n", "57421,Hatchet (2006),Comedy|Horror\r\n", "57499,Heaven and Earth (Ten to Chi to) (1990),Action|Adventure|Drama|War\r\n", "57502,Cat Soup (Nekojiru-so) (2001),Adventure|Animation|Drama|Horror\r\n", "57504,\"Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)\",Animation|Comedy|Drama|Romance|Sci-Fi\r\n", "57522,First Sunday (2008),Comedy|Crime\r\n", "57526,Untraceable (2008),Crime|Thriller\r\n", "57528,Rambo (Rambo 4) (2008),Action|Drama|Thriller|War\r\n", "57532,Meet the Spartans (2008),Comedy\r\n", "57536,Strange Wilderness (2008),Comedy\r\n", "57637,\"Signal, The (2007)\",Horror|Sci-Fi|Thriller\r\n", "57640,Hellboy II: The Golden Army (2008),Action|Adventure|Fantasy|Sci-Fi\r\n", "57669,In Bruges (2008),Comedy|Crime|Drama|Thriller\r\n", "57772,World on a Wire (Welt am Draht) (1973),Crime|Sci-Fi\r\n", "57843,Rise of the Footsoldier (2007),Action|Crime|Drama\r\n", "57910,Teeth (2007),Comedy|Horror\r\n", "57951,Fool's Gold (2008),Action|Adventure|Comedy|Romance\r\n", "58025,Jumper (2008),Action|Adventure|Drama|Sci-Fi|Thriller\r\n", "58047,\"Definitely, Maybe (2008)\",Comedy|Drama|Romance\r\n", "58078,\"Air I Breathe, The (2007)\",Crime|Drama|Romance|Thriller\r\n", "58103,Vantage Point (2008),Action|Drama|Thriller\r\n", "58105,\"Spiderwick Chronicles, The (2008)\",Adventure|Children|Drama|Fantasy|IMAX\r\n", "58107,Step Up 2 the Streets (2008),Drama|Musical|Romance\r\n", "58154,\"Other Boleyn Girl, The (2008)\",Drama|Romance\r\n", "58156,Semi-Pro (2008),Comedy\r\n", "58162,Run Fatboy Run (2007),Comedy|Romance\r\n", "58191,Taxi to the Dark Side (2007),Documentary\r\n", "58287,Descent (2007),Drama|Thriller\r\n", "58291,College Road Trip (2008),Comedy\r\n", "58293,\"10,000 BC (2008)\",Adventure|Romance|Thriller\r\n", "58295,\"Bank Job, The (2008)\",Action|Crime|Thriller\r\n", "58297,Doomsday (2008),Action|Drama|Sci-Fi|Thriller\r\n", "58299,Horton Hears a Who! (2008),Adventure|Animation|Children|Comedy\r\n", "58301,Funny Games U.S. (2007),Drama|Thriller\r\n", "58303,\"Counterfeiters, The (Die Fälscher) (2007)\",Crime|Drama|War\r\n", "58306,Mongol (2007),Drama|War\r\n", "58309,War Dance (2007),Documentary\r\n", "58315,\"Love Guru, The (2008)\",Comedy\r\n", "58332,Diary of the Dead (2007),Horror|Sci-Fi\r\n", "58347,Penelope (2006),Comedy|Fantasy|Romance\r\n", "58351,City of Men (Cidade dos Homens) (2007),Drama\r\n", "58376,Zeitgeist: The Movie (2007),Documentary|War\r\n", "58404,Justice League: The New Frontier (2008) ,Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "58425,Heima (2007),Documentary\r\n", "58492,Snow Angels (2007),Drama\r\n", "58554,\"Class, The (Klass) (2007)\",Drama\r\n", "58559,\"Dark Knight, The (2008)\",Action|Crime|Drama|IMAX\r\n", "58627,Never Back Down (2008),Action\r\n", "58655,Drillbit Taylor (2008),Comedy\r\n", "58783,Youth Without Youth (2007),Drama|Romance|Sci-Fi\r\n", "58803,21 (2008),Crime|Drama|Romance|Thriller\r\n", "58806,Smart People (2008),Comedy|Drama|Romance\r\n", "58826,\"Shepherd: Border Patrol, The (2008)\",Action|Crime|Thriller\r\n", "58839,Leatherheads (2008),Comedy|Drama|Romance\r\n", "58842,Assembly (Ji jie hao) (2007) ,Action|Drama|War\r\n", "58870,Zebraman (2004),Comedy\r\n", "58876,Stop-Loss (2008),Drama|War\r\n", "58879,Shine a Light (2008),Documentary|Musical|IMAX\r\n", "58964,Inside (À l'intérieur) (2007),Horror|Thriller\r\n", "58972,Nim's Island (2008),Adventure|Comedy|Fantasy\r\n", "58975,\"Ruins, The (2008)\",Horror|Thriller\r\n", "58998,Forgetting Sarah Marshall (2008),Comedy|Romance\r\n", "59014,Superhero Movie (2008),Action|Comedy|Sci-Fi\r\n", "59016,Street Kings (2008),Crime|Drama|Thriller\r\n", "59018,\"Visitor, The (2007)\",Drama|Romance\r\n", "59022,Harold & Kumar Escape from Guantanamo Bay (2008),Adventure|Comedy\r\n", "59026,99 francs (2007),Comedy\r\n", "59037,Speed Racer (2008),Action|Children|Sci-Fi|IMAX\r\n", "59103,\"Forbidden Kingdom, The (2008)\",Action|Adventure|Comedy|Fantasy\r\n", "59118,Happy-Go-Lucky (2008),Comedy|Drama\r\n", "59126,Religulous (2008),Comedy|Documentary\r\n", "59129,Outpost (2008),Action|Horror\r\n", "59131,Are You Scared? (2006),Horror\r\n", "59141,Son of Rambow (2007),Children|Comedy|Drama\r\n", "59143,Super High Me (2007),Comedy|Documentary\r\n", "59220,Outsourced (2006),Comedy|Romance\r\n", "59258,Baby Mama (2008),Comedy\r\n", "59295,Expelled: No Intelligence Allowed (2008),Documentary\r\n", "59306,Prom Night (2008),Horror|Mystery|Thriller\r\n", "59315,Iron Man (2008),Action|Adventure|Sci-Fi\r\n", "59333,Made of Honor (2008),Comedy|Romance\r\n", "59336,Redbelt (2008),Action|Drama\r\n", "59369,Taken (2008),Action|Crime|Drama|Thriller\r\n", "59387,\"Fall, The (2006)\",Adventure|Drama|Fantasy\r\n", "59421,What Happens in Vegas... (2008),Comedy|Romance\r\n", "59429,American Pie Presents Beta House (American Pie 6: Beta House) (2007),Comedy\r\n", "59440,Bella (2006),Drama|Romance\r\n", "59501,\"Chronicles of Narnia: Prince Caspian, The (2008)\",Adventure|Children|Fantasy\r\n", "59549,Shelter (2007),Drama|Romance\r\n", "59604,\"Girl Next Door, The (2007)\",Crime|Drama|Horror|Thriller\r\n", "59615,Indiana Jones and the Kingdom of the Crystal Skull (2008),Action|Adventure|Comedy|Sci-Fi\r\n", "59667,Nina's Heavenly Delights (2006),Comedy\r\n", "59725,Sex and the City (2008),Comedy|Romance\r\n", "59727,\"Strangers, The (2008)\",Horror|Thriller\r\n", "59731,\"Bigger, Stronger, Faster* (2008)\",Documentary\r\n", "59738,All the Boys Love Mandy Lane (2006),Horror|Mystery|Thriller\r\n", "59784,Kung Fu Panda (2008),Action|Animation|Children|Comedy|IMAX\r\n", "59810,Recount (2008),Drama\r\n", "59814,Ex Drummer (2007),Comedy|Crime|Drama|Horror\r\n", "59900,You Don't Mess with the Zohan (2008),Comedy\r\n", "59915,Stuck (2007),Horror|Thriller\r\n", "59947,\"Protector, The (1985)\",Action|Comedy|Drama|Thriller\r\n", "59985,Chaos Theory (2007),Comedy|Drama|Romance\r\n", "59995,Boy A (2007),Crime|Drama\r\n", "60030,Spiral (2007),Drama|Horror|Thriller\r\n", "60037,\"Happening, The (2008)\",Drama|Sci-Fi|Thriller\r\n", "60040,\"Incredible Hulk, The (2008)\",Action|Sci-Fi\r\n", "60046,\"Children of Huang Shi, The (2008)\",Drama|War\r\n", "60069,WALL·E (2008),Adventure|Animation|Children|Romance|Sci-Fi\r\n", "60072,Wanted (2008),Action|Thriller\r\n", "60074,Hancock (2008),Action|Adventure|Comedy|Crime|Fantasy\r\n", "60126,Get Smart (2008),Action|Comedy\r\n", "60128,Young People Fucking (a.k.a. YPF) (2007),Comedy\r\n", "60141,St. Trinian's (2007),Children|Comedy\r\n", "60161,Futurama: The Beast with a Billion Backs (2008),Action|Animation|Comedy|Romance|Sci-Fi\r\n", "60289,Kit Kittredge: An American Girl (2008),Children|Comedy|Drama|Mystery\r\n", "60291,Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008),Documentary\r\n", "60293,\"Wackness, The (2008)\",Comedy|Drama|Romance\r\n", "60303,Strange Circus (Kimyô na sâkasu) (2005),Horror|Mystery|Thriller\r\n", "60333,Encounters at the End of the World (2008),Documentary\r\n", "60363,Zombie Strippers! (2008),Comedy|Horror\r\n", "60365,Frosty the Snowman (1969),Animation|Children|Comedy|Fantasy|Musical\r\n", "60389,Battle for Haditha (2007),War\r\n", "60397,Mamma Mia! (2008),Comedy|Musical|Romance\r\n", "60408,Welcome to the Sticks (Bienvenue chez les Ch'tis) (2008),Comedy\r\n", "60471,Rogue (2007),Action|Adventure|Horror|Sci-Fi|Thriller\r\n", "60487,\"It's the Great Pumpkin, Charlie Brown (1966)\",Animation|Children|Comedy\r\n", "60514,Journey to the Center of the Earth (2008),Action|Adventure|Sci-Fi\r\n", "60516,Meet Dave (2008),Adventure|Children|Comedy|Romance|Sci-Fi\r\n", "60522,\"Machine Girl, The (Kataude mashin gâru) (2008)\",Action|Comedy|Fantasy|Horror|Thriller\r\n", "60538,Shrooms (2007),Horror|Thriller\r\n", "60647,Transsiberian (2008),Crime|Drama|Thriller\r\n", "60674,Stargate: Continuum (2008),Sci-Fi\r\n", "60684,Watchmen (2009),Action|Drama|Mystery|Sci-Fi|Thriller|IMAX\r\n", "60735,Shotgun Stories (2007),Drama|Thriller\r\n", "60737,Watching the Detectives (2007),Comedy|Romance\r\n", "60753,Felon (2008),Crime|Drama\r\n", "60756,Step Brothers (2008),Comedy\r\n", "60760,\"X-Files: I Want to Believe, The (2008)\",Drama|Mystery|Sci-Fi|Thriller\r\n", "60766,Man on Wire (2008),Documentary\r\n", "60803,\"Little Drummer Boy, The (1968)\",Animation|Children|Musical\r\n", "60818,Hogfather (Terry Pratchett's Hogfather) (2006),Adventure|Fantasy|Thriller\r\n", "60832,Pathology (2008),Crime|Horror|Thriller\r\n", "60857,\"Tracey Fragments, The (2007)\",Drama\r\n", "60885,\"Zone, The (La Zona) (2007)\",Drama|Thriller\r\n", "60894,\"Edge of Love, The (2008)\",Drama|Romance|War\r\n", "60904,Heart of a Dog (Sobachye serdtse) (1988),Comedy|Drama|Sci-Fi\r\n", "60937,\"Mummy: Tomb of the Dragon Emperor, The (2008)\",Action|Adventure|Fantasy|Thriller\r\n", "60941,\"Midnight Meat Train, The (2008)\",Horror|Mystery|Thriller\r\n", "60943,Frozen River (2008),Drama\r\n", "60950,Vicky Cristina Barcelona (2008),Comedy|Drama|Romance\r\n", "60979,Batman: Gotham Knight (2008),Action|Animation|Crime\r\n", "61011,\"Walker, The (2007)\",Drama|Mystery\r\n", "61024,Pineapple Express (2008),Action|Comedy|Crime\r\n", "61026,Red Cliff (Chi bi) (2008),Action|Adventure|Drama|War\r\n", "61071,\"Sisterhood of the Traveling Pants 2, The (2008)\",Adventure|Comedy|Drama|Romance\r\n", "61073,Hell Ride (2008),Action|Drama|Thriller\r\n", "61123,High School Musical 2 (2007),Comedy|Drama|Musical|Romance\r\n", "61132,Tropic Thunder (2008),Action|Adventure|Comedy|War\r\n", "61160,Star Wars: The Clone Wars (2008),Action|Adventure|Animation|Sci-Fi\r\n", "61167,Henry Poole is Here (2008),Drama|Mystery\r\n", "61210,Mutant Chronicles (2008),Action|Adventure|Sci-Fi\r\n", "61236,Waltz with Bashir (Vals im Bashir) (2008),Animation|Documentary|Drama|War\r\n", "61240,Let the Right One In (Låt den rätte komma in) (2008),Drama|Fantasy|Horror|Romance\r\n", "61246,Hamlet 2 (2008),Comedy\r\n", "61248,Death Race (2008),Action|Adventure|Sci-Fi|Thriller\r\n", "61250,\"House Bunny, The (2008)\",Comedy\r\n", "61255,\"Rocker, The (2008)\",Comedy\r\n", "61257,I.O.U.S.A. (a.k.a. IOUSA) (2008),Documentary\r\n", "61262,Mirrors (2008),Horror|Mystery|Thriller\r\n", "61289,Sukiyaki Western Django (2008),Action|Western\r\n", "61319,Somers Town (2008),Drama\r\n", "61323,Burn After Reading (2008),Comedy|Crime|Drama\r\n", "61348,Disaster Movie (2008),Comedy\r\n", "61350,Babylon A.D. (2008),Action|Adventure|Sci-Fi|Thriller\r\n", "61352,Traitor (2008),Crime|Drama|Thriller\r\n", "61394,\"Onion Movie, The (2008)\",Comedy\r\n", "61401,\"Spirit, The (2008)\",Action|Comedy|Fantasy|Thriller\r\n", "61406,John Adams (2008),Drama\r\n", "61465,Bangkok Dangerous (2008),Action|Crime|Thriller\r\n", "61628,Sunflower (Xiang ri kui) (2005),Drama\r\n", "61692,Altered (2006),Horror|Sci-Fi|Thriller\r\n", "61697,Righteous Kill (2008),Crime|Mystery|Thriller\r\n", "61705,Lakeview Terrace (2008),Drama|Thriller\r\n", "61729,Ghost Town (2008),Comedy|Fantasy|Romance\r\n", "61818,\"Crow, The: Wicked Prayer (2005)\",Action|Adventure|Fantasy|Thriller\r\n", "61986,Appaloosa (2008),Western\r\n", "62008,Dead Fury (2008),Action|Animation|Comedy|Horror\r\n", "62081,Eagle Eye (2008),Action|Crime|Thriller|IMAX\r\n", "62113,How to Lose Friends & Alienate People (2008),Comedy\r\n", "62155,Nick and Norah's Infinite Playlist (2008),Comedy|Drama|Romance\r\n", "62208,\"Sound of the Mountain (Thunder of the Mountain, The) (Yama no oto) (1954)\",Drama\r\n", "62250,Gomorrah (Gomorra) (2008),Crime|Drama\r\n", "62293,\"Duchess, The (2008)\",Drama|Romance\r\n", "62299,Alone in the Dark II (2008),Action|Horror\r\n", "62336,FLCL (2000),Animation|Comedy|Fantasy|Sci-Fi\r\n", "62344,Rachel Getting Married (2008),Drama|Romance\r\n", "62374,Body of Lies (2008),Action|Drama|Thriller\r\n", "62376,City of Ember (2008),Adventure|Children|Sci-Fi\r\n", "62383,\"20,000 Leagues Under the Sea (1916)\",Action|Adventure|Sci-Fi\r\n", "62394,Max Payne (2008),Action|Crime|Drama|Thriller\r\n", "62434,Zack and Miri Make a Porno (2008),Comedy|Drama|Romance\r\n", "62437,W. (2008),Drama\r\n", "62439,My Best Friend's Girl (2008),Comedy|Romance\r\n", "62511,\"Synecdoche, New York (2008)\",Comedy|Drama\r\n", "62553,\"Secret Life of Bees, The (2008)\",Drama\r\n", "62586,\"American Carol, An (2008)\",Comedy|Fantasy\r\n", "62644,\"Wave, The (Welle, Die) (2008)\",Drama\r\n", "62662,Tokyo-Ga (1985),Documentary\r\n", "62718,\"Angus, Thongs and Perfect Snogging (2008)\",Comedy|Romance\r\n", "62792,Pride and Glory (2008),Crime|Drama\r\n", "62799,\"Express, The (2008)\",Drama\r\n", "62834,Babylon 5: The Legend of the Rangers: To Live and Die in Starlight (2002),Sci-Fi\r\n", "62836,Babylon 5: The Lost Tales - Voices in the Dark (2007),Sci-Fi\r\n", "62849,RocknRolla (2008),Action|Crime\r\n", "62956,Futurama: Bender's Game (2008),Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi\r\n", "62970,Tin Man (2007),Adventure|Fantasy|Sci-Fi\r\n", "62999,Madagascar: Escape 2 Africa (2008),Action|Adventure|Animation|Children|Comedy|IMAX\r\n", "63033,Blindness (2008),Drama|Mystery|Romance|Thriller\r\n", "63062,Changeling (2008),Crime|Drama|Mystery\r\n", "63072,\"Road, The (2009)\",Adventure|Drama|Thriller\r\n", "63082,Slumdog Millionaire (2008),Crime|Drama|Romance\r\n", "63113,Quantum of Solace (2008),Action|Adventure|Thriller\r\n", "63131,Role Models (2008),Comedy\r\n", "63179,Tokyo! (2008),Drama\r\n", "63222,JCVD (2008),Action|Drama|Thriller\r\n", "63239,Cinderella (1997),Children|Fantasy|Musical|Romance\r\n", "63276,Crows Zero (Kurôzu zero) (2007),Action\r\n", "63312,Krabat (2008),Drama|Fantasy\r\n", "63393,Camp Rock (2008),Comedy|Musical|Romance\r\n", "63433,Farscape: The Peacekeeper Wars (2004),Action|Adventure|Sci-Fi\r\n", "63436,Saw V (2008),Crime|Horror|Thriller\r\n", "63479,Sex Drive (2008),Comedy\r\n", "63515,The Island (2006),Drama|Mystery\r\n", "63540,Beverly Hills Chihuahua (2008),Adventure|Children|Comedy\r\n", "63768,Tattooed Life (Irezumi ichidai) (1965),Crime|Drama\r\n", "63808,\"Class, The (Entre les murs) (2008)\",Drama\r\n", "63826,Splinter (2008),Action|Horror|Thriller\r\n", "63853,Australia (2008),Adventure|Drama|War|Western\r\n", "63859,Bolt (2008),Action|Adventure|Animation|Children|Comedy\r\n", "63876,Milk (2008),Drama\r\n", "63992,Twilight (2008),Drama|Fantasy|Romance|Thriller\r\n", "64010,\"Children, The (2008)\",Horror\r\n", "64030,Transporter 3 (2008),Action|Adventure|Crime|Thriller\r\n", "64032,Four Christmases (2008),Comedy\r\n", "64034,\"Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)\",Drama|War\r\n", "64114,Fireproof (2008),Drama|Romance\r\n", "64116,Igor (2008),Animation|Comedy\r\n", "64167,Dinotopia (2002),Adventure|Fantasy\r\n", "64197,Hunger (2008),Drama\r\n", "64231,Punisher: War Zone (2008),Action|Crime|Drama|Thriller\r\n", "64249,Shrek the Halls (2007),Adventure|Animation|Comedy|Fantasy\r\n", "64278,\"Pervert's Guide to Cinema, The (2006)\",Documentary\r\n", "64285,Wallace and Gromit in 'A Matter of Loaf and Death' (2008),Animation|Comedy\r\n", "64497,\"Day the Earth Stood Still, The (2008)\",Drama|Sci-Fi|Thriller|IMAX\r\n", "64499,Che: Part One (2008),Drama|War\r\n", "64501,Che: Part Two (2008),Drama|War\r\n", "64575,Doubt (2008),Drama|Mystery\r\n", "64614,Gran Torino (2008),Crime|Drama\r\n", "64620,Frost/Nixon (2008),Drama\r\n", "64622,\"Reader, The (2008)\",Drama|Romance\r\n", "64695,Sword of the Stranger (Sutorejia: Mukô hadan) (2007),Action|Adventure|Animation\r\n", "64716,Seven Pounds (2008),Drama\r\n", "64839,\"Wrestler, The (2008)\",Drama\r\n", "64957,\"Curious Case of Benjamin Button, The (2008)\",Drama|Fantasy|Mystery|Romance\r\n", "64969,Yes Man (2008),Comedy\r\n", "64983,Valkyrie (2008),Drama|Thriller|War\r\n", "64993,5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007),Animation|Drama|Romance\r\n", "64997,War of the Worlds (2005),Action|Sci-Fi\r\n", "65037,Ben X (2007),Drama\r\n", "65088,Bedtime Stories (2008),Adventure|Children|Comedy\r\n", "65126,Choke (2008),Comedy|Drama\r\n", "65130,Revolutionary Road (2008),Drama|Romance\r\n", "65133,Blackadder Back & Forth (1999),Comedy\r\n", "65135,Blackadder's Christmas Carol (1988),Comedy\r\n", "65188,Dear Zachary: A Letter to a Son About His Father (2008),Documentary\r\n", "65193,Wild Child (2008),Drama|Romance\r\n", "65216,Defiance (2008),Drama|Thriller|War\r\n", "65225,Zeitgeist: Addendum (2008),Documentary\r\n", "65230,Marley & Me (2008),Comedy|Drama\r\n", "65261,Ponyo (Gake no ue no Ponyo) (2008),Adventure|Animation|Children|Fantasy\r\n", "65350,\"General Died at Dawn, The (1936)\",Adventure|Crime|Thriller\r\n", "65359,Earthsea (Legend of Earthsea) (2004),Adventure|Drama|Fantasy\r\n", "65514,Ip Man (2008),Action|Drama|War\r\n", "65577,\"Tale of Despereaux, The (2008)\",Adventure|Animation|Children|Comedy|Fantasy\r\n", "65585,Bride Wars (2009),Comedy|Romance\r\n", "65588,\"Gamers, The: Dorkness Rising (2008)\",Action|Adventure|Comedy|Fantasy\r\n", "65596,Mesrine: Killer Instinct (L'instinct de mort) (2008),Action|Crime|Drama|Thriller\r\n", "65601,My Bloody Valentine 3-D (2009),Horror|Thriller\r\n", "65631,Battle in Seattle (2007),Action|Drama\r\n", "65642,\"Timecrimes (Cronocrímenes, Los) (2007)\",Sci-Fi|Thriller\r\n", "65651,Fire and Ice (2008),Adventure|Fantasy\r\n", "65682,Underworld: Rise of the Lycans (2009),Action|Fantasy|Horror|Thriller\r\n", "65685,Inkheart (2008),Adventure|Fantasy\r\n", "65738,Revenge of the Nerds III: The Next Generation (1992),Comedy\r\n", "65740,Revenge of the Nerds IV: Nerds in Love (1994),Comedy|Romance\r\n", "65802,Paul Blart: Mall Cop (2009),Action|Comedy|Crime\r\n", "65810,Notorious (2009),Drama|Musical\r\n", "65882,\"Uninvited, The (2009)\",Drama|Horror|Mystery|Thriller\r\n", "65982,Outlander (2008),Action|Adventure|Sci-Fi\r\n", "66090,Eden Lake (2008),Horror|Thriller\r\n", "66097,Coraline (2009),Animation|Fantasy|Thriller\r\n", "66171,Push (2009),Sci-Fi|Thriller\r\n", "66198,\"International, The (2009)\",Drama|Thriller\r\n", "66203,He's Just Not That Into You (2009),Comedy|Drama|Romance\r\n", "66240,Dead Like Me: Life After Death (2009),Comedy|Fantasy\r\n", "66297,Futurama: Into the Wild Green Yonder (2009),Action|Animation|Comedy|Sci-Fi\r\n", "66310,Frontière(s) (2007),Drama|Horror|Thriller\r\n", "66320,\"11th Hour, The (2007)\",Documentary\r\n", "66335,Afro Samurai: Resurrection (2009),Animation\r\n", "66371,Departures (Okuribito) (2008),Drama\r\n", "66427,My Name Is Bruce (2007),Comedy|Horror\r\n", "66509,Funny People (2009),Comedy|Drama\r\n", "66511,Berlin Calling (2008),Comedy|Drama\r\n", "66544,Nuremberg (2000),Drama|War\r\n", "66665,Away We Go (2009),Comedy|Drama|Romance\r\n", "66744,\"Divo, Il (2008)\",Drama\r\n", "66783,Friday the 13th (2009),Horror\r\n", "66785,\"Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)\",Action|Adventure|Comedy|Western\r\n", "66798,\"Pink Panther 2, The (2009)\",Adventure|Comedy|Mystery\r\n", "66915,Rock-A-Doodle (1991),Adventure|Animation|Children|Musical\r\n", "66934,Dr. Horrible's Sing-Along Blog (2008),Comedy|Drama|Musical|Sci-Fi\r\n", "66943,\"Cottage, The (2008)\",Comedy|Crime|Horror|Thriller\r\n", "67087,\"I Love You, Man (2009)\",Comedy\r\n", "67168,Dance of the Dead (2008),Adventure|Comedy|Horror\r\n", "67186,\"Haunting in Connecticut, The (2009)\",Horror|Thriller\r\n", "67193,Duplicity (2009),Crime|Romance|Thriller\r\n", "67197,Knowing (2009),Action|Drama|Mystery|Sci-Fi|Thriller\r\n", "67255,\"Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)\",Crime|Drama|Mystery|Thriller\r\n", "67267,Sunshine Cleaning (2008),Comedy|Drama\r\n", "67295,Kung Fu Panda: Secrets of the Furious Five (2008),Action|Animation|Children|Comedy\r\n", "67361,Echelon Conspiracy (2009),Action|Mystery|Thriller\r\n", "67408,Monsters vs. Aliens (2009),Animation|Sci-Fi|IMAX\r\n", "67508,\"Baader Meinhof Komplex, Der (2008)\",Action|Crime|Drama|Thriller\r\n", "67534,Big Stan (2007),Comedy\r\n", "67618,Strictly Sexual (2008),Comedy|Drama|Romance\r\n", "67665,Anvil! The Story of Anvil (2008),Documentary|Musical\r\n", "67695,Observe and Report (2009),Action|Comedy\r\n", "67734,Adventureland (2009),Comedy|Drama\r\n", "67788,Confessions of a Shopaholic (2009),Comedy|Romance\r\n", "67799,The Butterfly Effect 3: Revelations (2009),Drama|Fantasy|Sci-Fi|Thriller\r\n", "67888,Man on the Flying Trapeze (1935),Comedy\r\n", "67923,\"Fast & Furious (Fast and the Furious 4, The) (2009)\",Action|Crime|Drama|Thriller\r\n", "67997,In the Loop (2009),Comedy\r\n", "68073,Pirate Radio (2009),Comedy|Drama\r\n", "68135,17 Again (2009),Comedy|Drama\r\n", "68157,Inglourious Basterds (2009),Action|Drama|War\r\n", "68159,State of Play (2009),Crime|Drama|Thriller\r\n", "68194,\"Damned United, The (2009)\",Drama\r\n", "68205,Crank: High Voltage (2009),Action|Comedy|Crime\r\n", "68237,Moon (2009),Drama|Mystery|Sci-Fi|Thriller\r\n", "68269,\"Young Victoria, The (2009)\",Drama|Romance\r\n", "68319,X-Men Origins: Wolverine (2009),Action|Sci-Fi|Thriller\r\n", "68347,Sin Nombre (2009),Crime|Drama|Thriller\r\n", "68358,Star Trek (2009),Action|Adventure|Sci-Fi|IMAX\r\n", "68444,\"Great Buck Howard, The (2008)\",Comedy\r\n", "68480,Flatfoot on the Nile (Piedone d'Egitto) (1980),Action|Comedy|Crime\r\n", "68486,Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009),Action|Drama|War\r\n", "68522,Earth (2007),Documentary\r\n", "68536,Stanley Kubrick: A Life in Pictures (2001),Documentary\r\n", "68552,Crossing Over (2009),Drama\r\n", "68554,Angels & Demons (2009),Crime|Drama|Mystery|Thriller\r\n", "68597,Scorpio (1973),Action|Drama|Thriller\r\n", "68600,Balls Out: Gary the Tennis Coach (2009),Comedy\r\n", "68650,Powder Blue (2009),Drama\r\n", "68659,Fanboys (2009),Adventure|Comedy|Drama\r\n", "68791,Terminator Salvation (2009),Action|Adventure|Sci-Fi|Thriller\r\n", "68793,Night at the Museum: Battle of the Smithsonian (2009),Action|Comedy|IMAX\r\n", "68835,Were the World Mine (2008),Adventure|Fantasy|Musical|Romance\r\n", "68848,\"Brothers Bloom, The (2008)\",Adventure|Comedy|Crime|Romance\r\n", "68872,Paisan (Paisà) (1946),Drama|War\r\n", "68886,I Do: How to Get Married and Stay Single (Prête-moi ta main) (2006),Comedy|Romance\r\n", "68932,\"Soloist, The (2009)\",Drama|Musical\r\n", "68945,Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei) (1997),Action|Animation|Mystery|Sci-Fi\r\n", "68952,Drag Me to Hell (2009),Comedy|Horror\r\n", "68954,Up (2009),Adventure|Animation|Children|Drama\r\n", "68959,Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005),Action|Adventure|Animation|Drama\r\n", "69069,Fired Up (2009),Comedy\r\n", "69118,In the Electric Mist (2009),Drama|Mystery\r\n", "69122,\"Hangover, The (2009)\",Comedy|Crime\r\n", "69131,Killshot (2008),Action|Crime|Drama|Thriller\r\n", "69134,Antichrist (2009),Drama|Fantasy\r\n", "69140,Sweeney Todd (2006),Crime|Drama|Horror|Thriller\r\n", "69211,Boy Eats Girl (2005),Comedy|Horror\r\n", "69224,Marius and Jeanette (Marius et Jeannette) (1997),Comedy|Drama|Romance\r\n", "69227,Ernest Rides Again (1993),Children|Comedy\r\n", "69251,Special (2006),Drama|Fantasy\r\n", "69275,Dead Snow (Død snø) (2009),Action|Adventure|Comedy|Horror\r\n", "69278,Land of the Lost (2009),Action|Adventure|Comedy|Sci-Fi\r\n", "69304,Imagine That (2009),Comedy|Drama|Fantasy\r\n", "69306,\"Taking of Pelham 1 2 3, The (2009)\",Crime|Drama|Thriller\r\n", "69394,\"Stoning of Soraya M., The (2008)\",Crime|Drama\r\n", "69406,\"Proposal, The (2009)\",Comedy|Romance\r\n", "69436,Year One (2009),Adventure|Comedy\r\n", "69453,\"Land That Time Forgot, The (1975)\",Adventure|Sci-Fi\r\n", "69469,Garfield's Pet Force (2009),Animation\r\n", "69481,\"Hurt Locker, The (2008)\",Action|Drama|Thriller|War\r\n", "69495,Breakfast with Scot (2007),Drama|Romance\r\n", "69516,\"Limits of Control, The (2009)\",Crime|Drama|Film-Noir\r\n", "69524,Raiders of the Lost Ark: The Adaptation (1989),Action|Adventure|Thriller\r\n", "69526,Transformers: Revenge of the Fallen (2009),Action|Adventure|Sci-Fi|IMAX\r\n", "69529,Home (2009),Documentary\r\n", "69604,Whatever Works (2009),Comedy|Romance\r\n", "69606,Ghosts of Girlfriends Past (2009),Comedy|Fantasy|Romance\r\n", "69640,Public Enemies (2009),Crime|Drama|Thriller\r\n", "69644,Ice Age: Dawn of the Dinosaurs (2009),Action|Adventure|Animation|Children|Comedy|Romance\r\n", "69654,Prison Break: The Final Break (2009),Action|Drama|Thriller\r\n", "69685,Daria: Is It College Yet? (2002),Animation|Comedy\r\n", "69712,My Sister's Keeper (2009),Drama\r\n", "69720,Hood of Horror (2006),Comedy|Drama|Horror\r\n", "69746,Watchmen: Tales of the Black Freighter (2009),Action|Adventure|Animation|Horror\r\n", "69757,(500) Days of Summer (2009),Comedy|Drama|Romance\r\n", "69784,Brüno (Bruno) (2009),Comedy\r\n", "69805,\"Librarian, The: The Curse of the Judas Chalice (2008)\",Action|Adventure|Fantasy\r\n", "69844,Harry Potter and the Half-Blood Prince (2009),Adventure|Fantasy|Mystery|Romance|IMAX\r\n", "69849,Roots (1977),Drama|War\r\n", "69860,Eichmann (2007),Drama|War\r\n", "69904,Open Water 2: Adrift (2006),Drama|Thriller\r\n", "69951,\"Imaginarium of Doctor Parnassus, The (2009)\",Drama|Fantasy\r\n", "69953,9to5: Days in Porn (a.k.a. 9 to 5: Days in Porn) (2008),Documentary\r\n", "69988,Humpday (2009),Comedy\r\n", "70015,Polytechnique (2009),Crime|Drama\r\n", "70159,Orphan (2009),Drama|Horror|Mystery|Thriller\r\n", "70183,\"Ugly Truth, The (2009)\",Comedy|Drama|Romance\r\n", "70206,\"Collector, The (2009)\",Crime|Horror|Thriller\r\n", "70208,\"Perfect Getaway, A (2009)\",Horror|Thriller\r\n", "70286,District 9 (2009),Mystery|Sci-Fi|Thriller\r\n", "70293,Julie & Julia (2009),Comedy|Drama|Romance\r\n", "70301,Obsessed (2009),Crime|Drama|Thriller\r\n", "70305,Race to Witch Mountain (2009),Adventure|Children|Fantasy|Sci-Fi|Thriller\r\n", "70334,Hannah Montana: The Movie (2009),Comedy|Drama|Musical|Romance\r\n", "70336,G.I. Joe: The Rise of Cobra (2009),Action|Adventure|Sci-Fi|Thriller\r\n", "70361,12 Rounds (2009),Action|Thriller\r\n", "70451,Max Manus (2008),Action|Drama|War\r\n", "70492,Winds of the Wasteland (1936),Western\r\n", "70521,Lost in Austen (2008),Drama|Fantasy|Romance|Sci-Fi\r\n", "70533,Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007),Action|Animation|Sci-Fi\r\n", "70545,\"Deal, The (2008)\",Comedy\r\n", "70565,\"Goods: Live Hard, Sell Hard, The (2009)\",Comedy\r\n", "70599,\"Time Traveler's Wife, The (2009)\",Drama|Romance|Sci-Fi\r\n", "70637,I Can't Think Straight (2007),Drama|Romance\r\n", "70641,Miss March (2009),Comedy\r\n", "70663,\"I Love You, Beth Cooper (2009)\",Comedy|Romance\r\n", "70687,Paper Heart (2009),Comedy|Documentary|Drama|Romance\r\n", "70697,G-Force (2009),Action|Adventure|Children|Fantasy\r\n", "70703,Christopher Columbus: The Discovery (1992),Adventure\r\n", "70708,Tetro (2009),Drama|Mystery\r\n", "70728,Bronson (2009),Action|Comedy|Drama|Thriller\r\n", "70862,It Might Get Loud (2008),Documentary\r\n", "70932,My Life in Ruins (2009),Comedy\r\n", "70946,Troll 2 (1990),Fantasy|Horror\r\n", "70984,Taking Woodstock (2009),Comedy\r\n", "70990,If These Walls Could Talk (1996),Drama\r\n", "70994,Halloween II (2009),Horror|Thriller\r\n", "71033,\"Secret in Their Eyes, The (El secreto de sus ojos) (2009)\",Crime|Drama|Mystery|Romance|Thriller\r\n", "71057,9 (2009),Adventure|Animation|Sci-Fi\r\n", "71106,Frequently Asked Questions About Time Travel (2009),Comedy|Sci-Fi\r\n", "71108,\"White Ribbon, The (Das weiße Band) (2009)\",Drama|Mystery\r\n", "71129,Green Lantern: First Flight (2009),Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "71131,\"Most Hated Family in America, The (2007)\",Documentary\r\n", "71135,Pandorum (2009),Horror|Sci-Fi|Thriller\r\n", "71147,Death of a Cyclist (Muerte de un ciclista) (1955),Drama\r\n", "71156,\"Men Who Stare at Goats, The (2009)\",Action|Comedy|Drama\r\n", "71160,\"Hunt For Gollum, The (2009)\",Action|Adventure|Fantasy\r\n", "71205,Jennifer's Body (2009),Comedy|Horror|Sci-Fi|Thriller\r\n", "71211,\"Informant!, The (2009)\",Comedy|Crime|Drama|Thriller\r\n", "71248,Extract (2009),Comedy\r\n", "71252,\"Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)\",Horror|Thriller\r\n", "71254,Gamer (2009),Action|Sci-Fi|Thriller\r\n", "71264,Cloudy with a Chance of Meatballs (2009),Animation|Children|Fantasy|IMAX\r\n", "71268,Tyler Perry's I Can Do Bad All by Myself (2009),Comedy|Drama\r\n", "71282,\"Food, Inc. (2008)\",Documentary\r\n", "71302,Attack of the 50 Foot Woman (1958),Comedy|Sci-Fi\r\n", "71304,Thirst (Bakjwi) (2009),Drama|Horror\r\n", "71327,Bright Star (2009),Drama|Romance\r\n", "71341,Blood Creek (a.k.a. Town Creek) (2009),Horror\r\n", "71379,Paranormal Activity (2009),Horror|Thriller\r\n", "71429,World's Greatest Dad (2009),Comedy|Drama\r\n", "71438,Still Walking (Aruitemo aruitemo) (2008),Drama\r\n", "71453,\"Blood of the Beasts (Sang des bêtes, Le) (1949)\",Documentary|Drama\r\n", "71462,\"Cove, The (2009)\",Documentary\r\n", "71464,\"Serious Man, A (2009)\",Comedy|Drama\r\n", "71466,City Island (2009),Comedy|Drama\r\n", "71468,Ink (2009),Action|Fantasy|Sci-Fi\r\n", "71484,Metropia (2009),Animation|Sci-Fi\r\n", "71494,\"Haunted World of El Superbeasto, The (2009)\",Action|Animation|Comedy|Horror|Thriller\r\n", "71500,Trick 'r Treat (2007),Comedy|Horror|Thriller\r\n", "71518,Whip It (2009),Comedy|Drama\r\n", "71520,\"Invention of Lying, The (2009)\",Comedy\r\n", "71530,Surrogates (2009),Action|Sci-Fi|Thriller\r\n", "71535,Zombieland (2009),Action|Comedy|Horror\r\n", "71550,Assassination of a High School President (2008),Comedy|Drama|Mystery\r\n", "71579,\"Education, An (2009)\",Drama|Romance\r\n", "71619,Coco Before Chanel (Coco avant Chanel) (2009),Drama\r\n", "71640,Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008),Documentary\r\n", "71668,Couples Retreat (2009),Comedy|Romance\r\n", "71732,I Sell the Dead (2008),Comedy|Horror\r\n", "71745,Where the Wild Things Are (2009),Adventure|Children|Drama|Fantasy|IMAX\r\n", "71810,Legionnaire (1998),Action|Adventure|Drama|War\r\n", "71823,\"New York, I Love You (2009)\",Drama|Romance\r\n", "71838,Law Abiding Citizen (2009),Drama|Thriller\r\n", "71867,\"Misfortunates, The (De helaasheid der dingen) (2009)\",Drama\r\n", "71899,Mary and Max (2009),Animation|Comedy|Drama\r\n", "71902,Spread (2009),Drama|Romance\r\n", "71910,\"Tournament, The (2009)\",Action\r\n", "71970,\"Princess and the Pirate, The (1944)\",Adventure|Comedy|Romance\r\n", "71999,Aelita: The Queen of Mars (Aelita) (1924),Action|Adventure|Drama|Fantasy|Romance|Sci-Fi|Thriller\r\n", "72011,Up in the Air (2009),Drama|Romance\r\n", "72104,Balance (1989),Animation|Drama|Mystery|Sci-Fi|Thriller\r\n", "72129,Saw VI (2009),Crime|Horror|Mystery|Thriller\r\n", "72142,Love Exposure (Ai No Mukidashi) (2008),Action|Comedy|Drama|Romance\r\n", "72165,Cirque du Freak: The Vampire's Assistant (2009),Action|Adventure|Comedy|Fantasy|Horror|Thriller\r\n", "72167,\"Boondock Saints II: All Saints Day, The (2009)\",Action|Crime|Drama|Thriller\r\n", "72171,Black Dynamite (2009),Action|Comedy\r\n", "72178,Welcome to Dongmakgol (2005),Comedy|Drama|War\r\n", "72224,Gentlemen Broncos (2009),Comedy\r\n", "72226,Fantastic Mr. Fox (2009),Adventure|Animation|Children|Comedy|Crime\r\n", "72294,\"Christmas Carol, A (2009)\",Animation|Children|Drama|Fantasy|IMAX\r\n", "72308,Battlestar Galactica: The Plan (2009),Action|Adventure|Drama|Sci-Fi\r\n", "72330,\"Private Lives of Pippa Lee, The (2009)\",Drama\r\n", "72356,Partly Cloudy (2009),Animation|Children|Comedy|Fantasy\r\n", "72378,2012 (2009),Action|Drama|Sci-Fi|Thriller\r\n", "72395,Precious (2009),Drama\r\n", "72405,Bad Lieutenant: Port of Call New Orleans (2009),Crime|Drama\r\n", "72407,\"Twilight Saga: New Moon, The (2009)\",Drama|Fantasy|Horror|Romance|Thriller\r\n", "72424,Derailed (2002),Action|Thriller\r\n", "72479,\"Messenger, The (2009)\",Drama|Romance|War\r\n", "72489,Ninja Assassin (2009),Action|Crime|Drama|Thriller\r\n", "72554,Cell 211 (Celda 211) (2009),Action|Drama\r\n", "72591,\"Patriot, The (1998)\",Action|Thriller\r\n", "72601,Teenage Mutant Ninja Turtles: Turtles Forever (2009),Action|Adventure|Animation|Comedy|Thriller\r\n", "72603,Merry Madagascar (2009),Animation\r\n", "72605,Brothers (2009),Drama|Thriller|War\r\n", "72624,Garage (2007),Drama\r\n", "72641,\"Blind Side, The (2009)\",Drama\r\n", "72692,Mickey's Once Upon a Christmas (1999),Animation|Comedy|Fantasy\r\n", "72694,Shrink (2009),Drama\r\n", "72696,Old Dogs (2009),Comedy\r\n", "72701,Planet 51 (2009),Adventure|Animation|Children|Comedy|Sci-Fi\r\n", "72714,Earthlings (2006),Documentary\r\n", "72720,\"Single Man, A (2009)\",Drama\r\n", "72731,\"Lovely Bones, The (2009)\",Crime|Drama|Fantasy|Horror|Thriller\r\n", "72733,Invictus (2009),Drama\r\n", "72737,\"Princess and the Frog, The (2009)\",Animation|Children|Fantasy|Musical|Romance\r\n", "72874,\"Peacekeeper, The (1997)\",Action\r\n", "72919,Did You Hear About the Morgans? (2009),Comedy|Crime|Drama|Romance\r\n", "72921,Snow White (1916),Fantasy|Romance\r\n", "72982,Alice (2009),Action|Adventure|Fantasy\r\n", "72998,Avatar (2009),Action|Adventure|Sci-Fi|IMAX\r\n", "73015,It's Complicated (2009),Comedy|Romance\r\n", "73017,Sherlock Holmes (2009),Action|Crime|Mystery|Thriller\r\n", "73023,Crazy Heart (2009),Drama|Romance\r\n", "73042,Alvin and the Chipmunks: The Squeakquel (2009),Animation|Children|Comedy|Musical\r\n", "73106,American Pie Presents: The Book of Love (American Pie 7: The Book of Love) (2009),Comedy\r\n", "73160,Sorority Babes in the Slimeball Bowl-O-Rama (1988),Comedy|Horror\r\n", "73211,Pontypool (2008),Horror|Thriller\r\n", "73266,Youth in Revolt (2009),Comedy|Drama|Romance\r\n", "73268,Daybreakers (2010),Action|Drama|Horror|Thriller\r\n", "73290,Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009),Drama\r\n", "73319,Leap Year (2010),Comedy|Romance\r\n", "73321,\"Book of Eli, The (2010)\",Action|Adventure|Drama\r\n", "73323,\"Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)\",Action|Crime|Mystery\r\n", "73344,\"Prophet, A (Un Prophète) (2009)\",Crime|Drama\r\n", "73386,Staten Island (2009),Crime|Drama\r\n", "73431,\"Maiden Heist, The (2009)\",Comedy|Crime\r\n", "73488,Blood: The Last Vampire (2009),Action|Horror|Thriller\r\n", "73499,MacGyver: Lost Treasure of Atlantis (1994),Action|Adventure\r\n", "73501,Pekka ja Pätkä Suezilla (1958),Comedy\r\n", "73515,Bart Got a Room (2008),Comedy|Romance\r\n", "73569,Project A 2 ('A' gai wak juk jap) (1987),Action|Comedy|Crime\r\n", "73676,Robin-B-Hood (Bo bui gai wak) (2006),Action|Comedy|Drama\r\n", "73681,\"Concert, Le (2009)\",Comedy|Drama\r\n", "73741,Ninja (2009),Action|Crime|Drama|Thriller\r\n", "73804,Asterix at the Olympic Games (Astérix aux jeux olympiques) (2008),Adventure|Children|Comedy|Fantasy\r\n", "73808,\"Chaser, The (Chugyeogja) (2008)\",Crime|Drama|Thriller\r\n", "73822,Meantime (1984),Comedy|Drama\r\n", "73854,\"Rudolph, the Red-Nosed Reindeer (1964)\",Adventure|Animation|Children|Fantasy|Musical\r\n", "73858,\"Dennis the Menace Christmas, A (2007)\",Comedy\r\n", "73876,Undisputed II: Last Man Standing (2006),Action|Crime|Drama\r\n", "73881,3 Idiots (2009),Comedy|Drama|Romance\r\n", "73929,Legion (2010),Action|Fantasy|Horror|Thriller\r\n", "74075,Stan Helsing (2009),Comedy|Horror\r\n", "74089,Peter Pan (1960),Children|Fantasy|Musical\r\n", "74095,Wicked City (Yôjû toshi) (1987),Animation|Fantasy|Horror|Sci-Fi\r\n", "74154,When in Rome (2010),Comedy|Romance\r\n", "74226,\"Dream of Light (a.k.a. Quince Tree Sun, The) (Sol del membrillo, El) (1992)\",Documentary|Drama\r\n", "74228,Triangle (2009),Drama|Horror|Mystery|Thriller\r\n", "74275,I Love You Phillip Morris (2009),Comedy|Drama|Romance\r\n", "74282,Anne of Green Gables: The Sequel (a.k.a. Anne of Avonlea) (1987),Children|Drama|Romance\r\n", "74324,Temple Grandin (2010),Drama\r\n", "74342,\"Captain Newman, M.D. (1963)\",Comedy|Drama|War\r\n", "74370,\"House of the Devil, The (2009)\",Horror|Thriller\r\n", "74450,Valentine's Day (2010),Comedy|Romance\r\n", "74452,\"Wolfman, The (2010)\",Horror|Thriller\r\n", "74458,Shutter Island (2010),Drama|Mystery|Thriller\r\n", "74508,Persuasion (2007),Drama|Romance\r\n", "74510,\"Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)\",Action|Crime|Drama|Mystery|Thriller\r\n", "74530,Percy Jackson & the Olympians: The Lightning Thief (2010),Adventure|Fantasy\r\n", "74532,Cop Out (2010),Action|Comedy|Crime\r\n", "74545,\"Ghost Writer, The (2010)\",Drama|Mystery|Thriller\r\n", "74553,\"Secret of Kells, The (2009)\",Animation|Fantasy\r\n", "74580,\"Spy Next Door, The (2010)\",Action|Children|Comedy\r\n", "74624,Agora (2009),Adventure|Drama|Romance\r\n", "74647,Motherhood (2009),Comedy\r\n", "74668,District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009),Action|Sci-Fi\r\n", "74677,\"Yes Men Fix the World, The (2009)\",Documentary\r\n", "74683,Mike Bassett: England Manager (2001),Comedy\r\n", "74685,\"Crazies, The (2010)\",Action|Drama|Horror|Sci-Fi|Thriller\r\n", "74688,Dear John (2010),Drama|Romance|War\r\n", "74696,Last Train Home (2009),Documentary|Drama\r\n", "74698,Tooth Fairy (2010),Comedy|Fantasy\r\n", "74727,Gentlemen of Fortune (Dzhentlmeny udachi) (1972),Comedy|Crime|Drama|Mystery\r\n", "74750,[REC]² (2009),Horror|Thriller\r\n", "74754,\"Room, The (2003)\",Comedy|Drama|Romance\r\n", "74789,Alice in Wonderland (2010),Adventure|Fantasy|IMAX\r\n", "74791,\"Town Called Panic, A (Panique au village) (2009)\",Animation\r\n", "74795,Green Zone (2010),Action|Drama|Thriller|War\r\n", "74851,From Paris with Love (2010),Action|Crime\r\n", "74868,Dorian Gray (2009),Drama|Horror|Sci-Fi\r\n", "74916,Greenberg (2010),Comedy|Drama\r\n", "74946,She's Out of My League (2010),Comedy\r\n", "74948,Harry Brown (2009),Crime|Drama|Thriller\r\n", "75341,Remember Me (2010),Drama|Romance\r\n", "75389,\"Burrowers, The (2008)\",Horror|Thriller|Western\r\n", "75395,Frozen (2010),Drama|Horror|Thriller\r\n", "75416,Generation X (1996),Action|Adventure|Sci-Fi\r\n", "75446,Little Ashes (2008),Drama\r\n", "75803,Our Family Wedding (2010),Comedy\r\n", "75805,\"Bounty Hunter, The (2010)\",Action|Comedy|Romance\r\n", "75813,Leaves of Grass (2009),Comedy|Crime|Drama|Thriller\r\n", "75816,Women in Trouble (2009),Comedy\r\n", "75947,Mondo Cane (1962),Documentary\r\n", "75985,Repo Men (2010),Action|Sci-Fi|Thriller\r\n", "76030,Case 39 (2009),Horror|Thriller\r\n", "76054,Oceans (Océans) (2009),Documentary|Drama\r\n", "76060,\"Slammin' Salmon, The (2009)\",Comedy\r\n", "76077,Hot Tub Time Machine (2010),Comedy|Sci-Fi\r\n", "76091,Mother (Madeo) (2009),Crime|Drama|Mystery|Thriller\r\n", "76093,How to Train Your Dragon (2010),Adventure|Animation|Children|Fantasy|IMAX\r\n", "76143,\"Bone Man, The (Der Knochenmann) (2009)\",Crime|Thriller\r\n", "76173,Micmacs (Micmacs à tire-larigot) (2009),Comedy|Crime\r\n", "76175,Clash of the Titans (2010),Action|Adventure|Drama|Fantasy\r\n", "76251,Kick-Ass (2010),Action|Comedy\r\n", "76293,Date Night (2010),Action|Comedy|Romance\r\n", "76301,\"Emperor's New Groove 2: Kronk's New Groove, The (2005)\",Animation|Children|Comedy|Romance\r\n", "76738,Steam of Life (Miesten vuoro) (2010),Documentary\r\n", "76743,Mortadelo & Filemon: The Big Adventure (La gran aventura de Mortadelo y Filemón) (2003),Action|Adventure|Comedy\r\n", "76751,American Drug War: The Last White Hope (2007),Crime|Documentary\r\n", "76763,\"Runaways, The (2010)\",Drama|Musical\r\n", "77177,Wild China (2008),Documentary\r\n", "77191,Death at a Funeral (2010),Comedy\r\n", "77201,Valhalla Rising (2009),Action|Drama|War\r\n", "77206,Diary of a Wimpy Kid (2010),Children|Comedy\r\n", "77233,\"Union: The Business Behind Getting High, The (2007)\",Comedy|Documentary\r\n", "77266,Disgrace (2008),Drama\r\n", "77364,\"Losers, The (2010)\",Action|Adventure|Drama|Mystery|Thriller\r\n", "77414,\"Last Song, The (2010)\",Drama|Romance\r\n", "77421,Cyrus (2010),Comedy|Drama|Romance\r\n", "77427,\"Human Centipede, The (First Sequence) (2009)\",Horror\r\n", "77455,Exit Through the Gift Shop (2010),Comedy|Documentary\r\n", "77561,Iron Man 2 (2010),Action|Adventure|Sci-Fi|Thriller|IMAX\r\n", "77667,MacGruber (2010),Action|Comedy\r\n", "77688,Three Men and a Cradle (3 hommes et un couffin) (1985),Comedy\r\n", "77709,\"Sky Crawlers, The (Sukai kurora) (2008)\",Adventure|Animation|Drama\r\n", "77795,Cargo (2009),Sci-Fi\r\n", "77798,\"Nightmare on Elm Street, A (2010)\",Fantasy|Horror|Thriller\r\n", "77800,Four Lions (2010),Comedy|Drama\r\n", "77841,St Trinian's 2: The Legend of Fritton's Gold (2009),Adventure|Comedy\r\n", "77846,12 Angry Men (1997),Crime|Drama\r\n", "77866,Robin Hood (2010),Action|Adventure|Drama|Romance|War\r\n", "77881,Lovers & Leavers (Kuutamolla) (2002),Drama|Romance\r\n", "77893,Merantau (2009),Action|Drama\r\n", "77931,Stingray Sam (2009),Comedy|Musical|Sci-Fi|Western\r\n", "78034,Cemetery Junction (2010),Comedy|Drama|Romance\r\n", "78039,Blue Valentine (2010),Drama|Romance\r\n", "78041,Killers (2010),Action|Comedy\r\n", "78088,Buried (2010),Mystery|Thriller\r\n", "78103,Shake Hands with the Devil (2007),Drama|War\r\n", "78105,Prince of Persia: The Sands of Time (2010),Action|Adventure|Fantasy|Romance|IMAX\r\n", "78116,Please Give (2010),Comedy|Drama\r\n", "78142,Baarìa (2009),Comedy|Drama|War\r\n", "78160,Ricky Gervais Live: Animals (2003),Comedy\r\n", "78174,Sex and the City 2 (2010),Comedy|Drama|Romance\r\n", "78209,Get Him to the Greek (2010),Comedy\r\n", "78218,Unthinkable (2010),Drama|Thriller\r\n", "78264,\"Back-up Plan, The (2010)\",Comedy|Romance\r\n", "78266,Splice (2009),Horror|Sci-Fi|Thriller\r\n", "78316,Letters to Juliet (2010),Drama|Romance\r\n", "78349,Exam (2009),Mystery|Thriller\r\n", "78467,Jonah Hex (2010),Action|Drama|Thriller|Western\r\n", "78469,\"A-Team, The (2010)\",Action|Comedy|Thriller\r\n", "78499,Toy Story 3 (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX\r\n", "78544,Ricky Gervais Live 3: Fame (2007),Comedy\r\n", "78574,Winter's Bone (2010),Drama|Thriller\r\n", "78620,\"Scalphunters, The (1968)\",Comedy|Western\r\n", "78626,Barking Dogs Never Bite (Flandersui gae) (2000),Comedy|Horror\r\n", "78637,Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX\r\n", "78703,TiMER (2009),Comedy|Drama|Fantasy|Romance\r\n", "78746,Best Worst Movie (2009),Documentary\r\n", "78772,\"Twilight Saga: Eclipse, The (2010)\",Fantasy|Romance|Thriller|IMAX\r\n", "78836,Enter the Void (2009),Drama\r\n", "78893,\"Last Airbender, The (2010)\",Action|Adventure|Fantasy\r\n", "78959,Endgame (2009),Drama\r\n", "79006,Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004),Documentary\r\n", "79008,South Park: Imaginationland (2008),Animation|Comedy|Fantasy\r\n", "79057,Predators (2010),Action|Sci-Fi|Thriller\r\n", "79073,When You're Strange (2009),Documentary\r\n", "79091,Despicable Me (2010),Animation|Children|Comedy|Crime\r\n", "79132,Inception (2010),Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX\r\n", "79134,Grown Ups (2010),Comedy\r\n", "79139,\"Sorcerer's Apprentice, The (2010)\",Action|Adventure|Children|Comedy|Fantasy\r\n", "79185,Knight and Day (2010),Action|Comedy|Romance\r\n", "79224,\"Karate Kid, The (2010)\",Action|Children|Drama\r\n", "79242,\"Kids Are All Right, The (2010)\",Comedy|Drama\r\n", "79251,\"Serbian Film, A (Srpski film) (2010)\",Horror|Thriller\r\n", "79259,Cherrybomb (2009),Drama|Thriller\r\n", "79274,Batman: Under the Red Hood (2010),Action|Animation\r\n", "79293,Salt (2010),Action|Thriller\r\n", "79299,\"No. 1 Ladies' Detective Agency, The (2008)\",Comedy|Crime|Mystery\r\n", "79333,Watch Out for the Automobile (Beregis avtomobilya) (1966),Comedy|Crime|Romance\r\n", "79357,Mr. Nobody (2009),Drama|Fantasy|Romance|Sci-Fi\r\n", "79428,Dinner for Schmucks (2010),Comedy\r\n", "79501,Deadly Outlaw: Rekka (a.k.a. Violent Fire) (Jitsuroku Andô Noboru kyôdô-den: Rekka) (2002),Crime|Drama|Thriller\r\n", "79536,Hellsinki (Rööperi) (2009),Crime\r\n", "79553,Ip Man 2 (2010),Action\r\n", "79572,Ramona and Beezus (2010),Children|Comedy\r\n", "79590,\"Rebound, The (2009)\",Comedy|Romance\r\n", "79592,\"Other Guys, The (2010)\",Action|Comedy\r\n", "79677,\"Two Escobars, The (2010)\",Crime|Documentary\r\n", "79684,Paper Man (2009),Comedy|Drama\r\n", "79695,\"Expendables, The (2010)\",Action|Adventure|Thriller\r\n", "79702,Scott Pilgrim vs. the World (2010),Action|Comedy|Fantasy|Musical|Romance\r\n", "79798,I Killed My Mother (J'ai tué ma mère) (2009),Drama\r\n", "79868,Heartless (2009),Fantasy|Horror|Mystery|Thriller\r\n", "79879,Piranha (Piranha 3D) (2010),Action|Horror|Thriller\r\n", "79895,\"Extraordinary Adventures of Adèle Blanc-Sec, The (2010)\",Action|Adventure|Fantasy|Mystery\r\n", "79897,Get Low (2009),Comedy|Drama|Mystery\r\n", "79946,\"Joneses, The (2009)\",Comedy|Drama\r\n", "80083,Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989),Action|Adventure|Animation|Fantasy|Sci-Fi\r\n", "80094,\"Last Exorcism, The (2010)\",Horror|Thriller\r\n", "80124,Sisters (Syostry) (2001),Action|Crime|Drama\r\n", "80126,\"American, The (2010)\",Drama|Thriller\r\n", "80139,Jackass 2.5 (2007),Comedy|Documentary\r\n", "80162,\"Horde, The (La Horde) (2009)\",Action|Horror|Thriller\r\n", "80166,\"Switch, The (2010)\",Comedy|Romance\r\n", "80219,Machete (2010),Action|Adventure|Comedy|Crime|Thriller\r\n", "80241,Going the Distance (2010),Comedy|Romance\r\n", "80363,Resident Evil: Afterlife (2010),Action|Horror|Sci-Fi|Thriller|IMAX\r\n", "80454,Princess (Prinsessa) (2010),Drama\r\n", "80463,\"Social Network, The (2010)\",Drama\r\n", "80478,\"Man Vanishes, A (Ningen Johatsu) (1967)\",Documentary|Drama|Mystery\r\n", "80489,\"Town, The (2010)\",Crime|Drama|Thriller\r\n", "80549,Easy A (2010),Comedy|Romance\r\n", "80551,Eat Pray Love (2010),Drama|Romance\r\n", "80553,Howl (2010),Drama\r\n", "80572,I'm Still Here (2010),Comedy|Drama\r\n", "80584,\"Patrik Age 1.5 (Patrik 1,5) (2008)\",Comedy|Drama|Romance\r\n", "80586,Flipped (2010),Comedy|Drama|Romance\r\n", "80590,Wall Street: Money Never Sleeps (2010),Drama\r\n", "80615,Legend of the Guardians: The Owls of Ga'Hoole (2010),Adventure|Animation|Fantasy|IMAX\r\n", "80693,It's Kind of a Funny Story (2010),Comedy|Drama\r\n", "80727,Middle Men (2009),Comedy|Crime|Drama\r\n", "80748,Alice in Wonderland (1933),Adventure|Children|Fantasy\r\n", "80831,Let Me In (2010),Drama|Horror|Mystery\r\n", "80834,Sintel (2010),Animation|Fantasy\r\n", "80839,Secretariat (2010),Adventure|Drama\r\n", "80846,Devil (2010),Horror|Mystery|Thriller\r\n", "80858,You Again (2010),Comedy\r\n", "80860,Life as We Know It (2010),Comedy|Romance\r\n", "80862,Catfish (2010),Documentary|Mystery\r\n", "80864,You Will Meet a Tall Dark Stranger (2010),Comedy|Romance\r\n", "80880,Stone (2010),Drama|Thriller\r\n", "80906,Inside Job (2010),Documentary\r\n", "80917,Monsters (2010),Drama|Sci-Fi\r\n", "80969,Never Let Me Go (2010),Drama|Romance|Sci-Fi\r\n", "81018,\"Illusionist, The (L'illusionniste) (2010)\",Animation\r\n", "81087,Luck by Chance (2009),Drama\r\n", "81132,Rubber (2010),Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western\r\n", "81156,Jackass 3D (2010),Action|Comedy|Documentary\r\n", "81158,Restrepo (2010),Documentary|War\r\n", "81191,Waiting for 'Superman' (2010),Documentary\r\n", "81229,Red (2010),Action|Comedy\r\n", "81257,In a Better World (Hævnen) (2010),Drama\r\n", "81383,Heartbreaker (L'Arnacoeur) (2010),Comedy|Romance\r\n", "81417,Paranormal Activity 2 (2010),Horror|IMAX\r\n", "81456,Heartbeats (Les amours imaginaires) (2010),Drama|Romance\r\n", "81512,Hereafter (2010),Drama|Fantasy\r\n", "81520,Undisputed III: Redemption (2010),Action|Crime|Drama\r\n", "81535,Saw VII 3D - The Final Chapter (2010),Horror|Mystery|Thriller\r\n", "81537,Due Date (2010),Comedy\r\n", "81562,127 Hours (2010),Adventure|Drama|Thriller\r\n", "81564,Megamind (2010),Action|Animation|Children|Comedy|Sci-Fi|IMAX\r\n", "81591,Black Swan (2010),Drama|Thriller\r\n", "81681,I Shot Jesse James (1949),Drama|Romance|Western\r\n", "81782,Unstoppable (2010),Action|Drama|Thriller\r\n", "81784,Morning Glory (2010),Comedy|Drama|Romance\r\n", "81786,Certified Copy (Copie conforme) (2010),Drama\r\n", "81788,\"Next Three Days, The (2010)\",Crime|Drama|Romance|Thriller\r\n", "81791,Somewhere (2010),Drama\r\n", "81819,Biutiful (2010),Drama\r\n", "81831,\"First Beautiful Thing, The (La prima cosa bella) (2010)\",Comedy|Drama\r\n", "81834,Harry Potter and the Deathly Hallows: Part 1 (2010),Action|Adventure|Fantasy|IMAX\r\n", "81845,\"King's Speech, The (2010)\",Drama\r\n", "81847,Tangled (2010),Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX\r\n", "81910,\"Art of the Steal, The (2009)\",Documentary\r\n", "81932,\"Fighter, The (2010)\",Drama\r\n", "81949,\"Romantics, The (2010)\",Comedy|Drama|Romance\r\n", "82041,\"Loved Ones, The (2009)\",Horror\r\n", "82053,Casino …" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: 1 intermediate output message was discarded.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "WARNING: some intermediate output was truncated.\n" ] } ], "source": [ "!cat ./movielens/movies.csv" ] }, { "cell_type": "code", "execution_count": 171, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "movieId,title,genres\r\n", "1,Toy Story (1995),Adventure|Animation|Children|Comedy|Fantasy\r\n", "2,Jumanji (1995),Adventure|Children|Fantasy\r\n", "3,Grumpier Old Men (1995),Comedy|Romance\r\n", "4,Waiting to Exhale (1995),Comedy|Drama|Romance\r\n" ] } ], "source": [ "!head -5 ./movielens/movies.csv" ] }, { "cell_type": "code", "execution_count": 0, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "\n", "\n", "\n", "CSS Template\n", "\n", "\n", "\n", "\n", "\n", "\n", "

CSS Layout Float TEST

\n", "

In this example, we have created a header, two columns/boxes and a footer. On smaller screens, the columns will stack on top of each other.

\n", "

Resize the browser window to see the responsive effect (you will learn more about this in our next chapter - HTML Responsive.)

\n", "\n", "
\n", "

Cities

\n", "
\n", "\n", "
\n", " \n", " \n", "
\n", "

London

\n", "

London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.

\n", "

Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.

\n", "
\n", "
\n", "\n", "\n", "\n", "\n", "\n" ] }, { "cell_type": "code", "execution_count": 0, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "The above layout test didn't seem to work very well. It's supposed to separate the document into a few columns." ] }, { "cell_type": "code", "execution_count": 0, "metadata": { "collapsed": false }, "outputs": [ ], "source": [ ] } ], "metadata": { "kernelspec": { "display_name": "SageMath (stable)", "language": "sagemath", "name": "sagemath" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.15" } }, "nbformat": 4, "nbformat_minor": 0 }